/* Breadcrumb */
.breadcrumb {
	background-color: transparent;
	padding: 10px 0;
}

.breadcrumb-item a {
	color: var(--primary-color);
	text-decoration: none;
}

/* Hero Section */
.contact-hero {
	background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.8)), url('https://cdn.sarvjobs.com/uploads/1404/08/13/sarvjobs.com_14040813200642_700043974.jpg') center/cover no-repeat;
	color: white;
	padding: 80px 0;
	margin-bottom: 60px;
	border-radius: 10px;
}

.hero-title {
	font-weight: 700;
	margin-bottom: 20px;
}

.hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 30px;
	opacity: 0.9;
}

/* Contact Cards */
.contact-cards {
	margin-bottom: 60px;
}

.contact-card {
	background: white;
	border-radius: 10px;
	padding: 30px 25px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	height: 100%;
	margin-bottom: 30px;
	border-top: 4px solid var(--primary-color);
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-icon {
	width: 70px;
	height: 70px;
	background-color: rgba(46, 125, 50, 0.1);
	color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 1.8rem;
}

.contact-title {
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--text-color);
}

.contact-info {
	color: var(--light-text);
	margin-bottom: 10px;
}

.contact-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
}

.contact-link:hover {
	color: var(--primary-dark);
}

/* Contact Form & Map Section */
.contact-form-section {
	margin-bottom: 60px;
}

.contact-form {
	background: white;
	border-radius: 10px;
	padding: 40px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	height: 100%;
}

.section-title {
	color: var(--primary-color);
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	right: 0;
	width: 60px;
	height: 3px;
	background-color: var(--primary-color);
}

.form-control:focus, .form-select:focus {
	border-color: var(--primary-light);
	box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

.form-label {
	font-weight: 500;
	margin-bottom: 8px;
	color: var(--text-color);
}

.map-container {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	height: 100%;
}

.map-placeholder {
	height: 100%;
	min-height: 400px;
	background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
				linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
				linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
				linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
	background-size: 20px 20px;
	background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--light-text);
	flex-direction: column;
}

.map-placeholder i {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 15px;
}

/* Office Info Section */
.office-info {
	margin-bottom: 60px;
}

.office-card {
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	height: 100%;
	margin-bottom: 30px;
}

.office-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.office-icon {
	width: 50px;
	height: 50px;
	background-color: rgba(46, 125, 50, 0.1);
	color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 15px;
	font-size: 1.3rem;
	flex-shrink: 0;
}

.office-title {
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--text-color);
}

.office-subtitle {
	color: var(--light-text);
	font-size: 0.9rem;
}

.office-details {
	list-style: none;
	padding: 0;
	margin: 0;
}

.office-details li {
	margin-bottom: 12px;
	display: flex;
	align-items: flex-start;
}

.office-details li i {
	color: var(--primary-color);
	margin-left: 10px;
	margin-top: 3px;
	flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
	margin-bottom: 60px;
}

.accordion-button:not(.collapsed) {
	background-color: rgba(46, 125, 50, 0.1);
	color: var(--primary-color);
}

.accordion-button:focus {
	box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	color: white;
	padding: 60px 0;
	border-radius: 10px;
	text-align: center;
	margin-bottom: 60px;
}

.cta-title {
	font-weight: 700;
	margin-bottom: 20px;
}

.cta-text {
	font-size: 1.1rem;
	margin-bottom: 30px;
	opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.contact-hero {
		padding: 60px 0;
	}
	
	.contact-form {
		padding: 30px 25px;
	}
	
	.office-card {
		padding: 25px;
	}
}

@media (max-width: 576px) {
	.hero-title {
		font-size: 1.8rem;
	}
	
	.section-title {
		font-size: 1.5rem;
	}
	
	.contact-form {
		padding: 25px 20px;
	}
}