/* ── Contact section ── */
.contact-section {
	padding: 60px 0;
	background: #f8f9fa;
}
.contact-box {
	background: #fff;
	padding: 40px;
	border-radius: 6px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.07);
	margin-bottom: 30px;
	height: 100%;
}
.contact-box h3 {
	font-size: 20px;
	font-weight: 700;
	color: #293681;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #4274D9;
}
.contact-box h3 i { color: #4274D9; margin-right: 8px; }
.contact-info-item {
	margin-bottom: 22px;
	display: flex;
	align-items: flex-start;
}
.contact-info-item i {
	font-size: 20px;
	color: #4274D9;
	margin-right: 15px;
	margin-top: 3px;
	min-width: 22px;
}
.contact-info-item div { flex: 1; }
.contact-info-item strong {
	display: block;
	color: #777;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}
.contact-info-item p {
	margin: 0;
	color: #293681;
	font-size: 15px;
	line-height: 1.6;
}
.contact-info-item a {
	color: #293681;
	text-decoration: none;
}
.contact-info-item a:hover { color: #4274D9; }

/* ── Contact form ── */
.contact-form-box {
	background: #fff;
	padding: 40px;
	border-radius: 6px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.07);
}
.contact-form-box h3 {
	font-size: 20px;
	font-weight: 700;
	color: #293681;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #4274D9;
}
.contact-form-box h3 i { color: #4274D9; margin-right: 8px; }
.form-group label {
	font-weight: 600;
	color: #293681;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin-bottom: 7px;
}
.form-control {
	border-radius: 3px;
	border: 1px solid #e0e0e0;
	padding: 12px 15px;
	font-size: 14px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control:focus {
	border-color: #4274D9;
	box-shadow: 0 0 0 3px rgba(66, 116, 217, 0.1);
	outline: none;
}
.btn-submit {
	background: #4274D9;
	color: #fff;
	border: none;
	padding: 13px 40px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 3px;
	cursor: pointer;
	transition: all 0.3s ease;
	letter-spacing: 0.3px;
}
.btn-submit:hover { background: #293681; transform: translateY(-1px); }

/* ── Location badge ── */
.location-badge {
	display: inline-block;
	background: #4274D9;
	color: #fff;
	padding: 5px 14px;
	border-radius: 3px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 18px;
}

/* ── Map ── */
.map-section { margin-top: 50px; }
.section-heading {
	text-align: center;
	margin-bottom: 35px;
}
.section-heading h2 {
	font-size: 26px;
	font-weight: 700;
	color: #293681;
	margin-bottom: 10px;
}
.section-heading .heading-line {
	width: 50px;
	height: 3px;
	background: #4274D9;
	margin: 0 auto 12px;
}
.section-heading p { color: #777; font-size: 15px; }
.map-wrapper {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.map-wrapper iframe {
	width: 100%;
	height: 480px;
	border: 0;
	display: block;
}
.map-open-btn {
	display: inline-block;
	margin-top: 18px;
	background: #4274D9;
	color: #fff;
	padding: 11px 26px;
	border-radius: 3px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.3s;
}
.map-open-btn:hover { background: #293681; color: #fff; text-decoration: none; }
.map-open-btn i { margin-right: 7px; }
.map-cta { text-align: center; margin-top: 18px; }
