/* --- CONTACT CARDS (BLUE THEME) --- */
.contact-info-section {
	padding: 60px 5%;
	background: #fff;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: -80px;
	position: relative;
	z-index: 2;
}

.contact-card {
	/* 🔥 CARD BACKGROUND - SITE BLUE 🔥 */
	background: #002850;
	padding: 40px 30px;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, border-bottom 0.3s ease;
	border-bottom: 4px solid transparent;
}

.contact-card:hover {
	transform: translateY(-10px);
	border-bottom: 4px solid #f39c12;
	/* Hover line Orange */
}

.contact-card i {
	font-size: 40px;
	color: #f39c12;
	/* Icon Orange */
	margin-bottom: 20px;
	display: inline-block;
}

.contact-card h3 {
	font-size: 20px;
	margin-bottom: 10px;
	color: #f39c12;
	/* 🔥 Title Text Orange 🔥 */
	font-weight: 600;
}

.contact-card p,
.contact-card a {
	color: #ffffff;
	/* 🔥 Body Text White 🔥 */
	font-size: 15px;
	line-height: 1.6;
	text-decoration: none;
}

.contact-card a:hover {
	color: #f39c12;
}


/* --- FORM & MAP SECTION --- */
.form-map-section {
	padding: 80px 5%;
	background: #f9f9f9;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: stretch;
}

/* FORM STYLES */
.contact-form-wrapper {
	flex: 1;
	min-width: 350px;
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.section-title h2 {
	font-size: 28px;
	margin-bottom: 10px;
	color: #2c3e50;
}

.section-title p {
	color: #777;
	margin-bottom: 30px;
}

.form-group {
	position: relative;
	margin-bottom: 20px;
}

.form-control {
	width: 100%;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 15px;
	outline: none;
	transition: 0.3s;
	background: #fcfcfc;
}

.form-control:focus {
	border-color: #f39c12;
	background: #fff;
}

textarea.form-control {
	resize: none;
	height: 120px;
}

.btn-submit {
	background: #f39c12;
	color: #fff;
	padding: 15px 35px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.3s;
	width: 100%;
}

.btn-submit:hover {
	background: #d35400;
	transform: translateY(-2px);
}

/* MAP STYLES */
.map-wrapper {
	flex: 1;
	min-width: 350px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	position: relative;
	min-height: 400px;
}

.map-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
	.contact-grid {
		margin-top: 0;
	}

	.form-map-section {
		flex-direction: column;
		padding: 40px 15px;
	}

	/* Order: Map First */
	.map-wrapper {
		order: 1;
		width: 100%;
		height: 400px;
		aspect-ratio: 1 / 1;
	}

	.contact-form-wrapper {
		order: 2;
		width: 100%;
		min-width: auto;
	}
}


/* ============================
           MODERN POPUP STYLING (Glassy)
           ============================ */
:root {
	--brand-primary: #0067fc;
	--success-green: #2ecc71;
}

.success-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(8px);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	animation: fadeIn 0.3s ease;
}

.success-card {
	background: rgba(255, 255, 255, 0.98);
	width: 90%;
	max-width: 450px;
	padding: 40px 30px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.3);
	animation: popUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes popUp {
	from {
		transform: scale(0.8);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.success-icon {
	width: 70px;
	height: 70px;
	background: var(--success-green);
	color: white;
	font-size: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

.success-card h2 {
	color: #333;
	font-weight: 600;
	margin-bottom: 10px;
}

.success-card p {
	color: #666;
	line-height: 1.6;
	font-size: 15px;
	margin-bottom: 0;
}

.btn-close-popup {
	margin-top: 25px;
	padding: 12px 40px;
	background: var(--brand-primary);
	color: white;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
}

.btn-close-popup:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 103, 252, 0.4);
}

/* Form Control Improvements */
.contact-form-container {
	max-width: 600px;
	margin: 50px auto;
	padding: 20px;
}

.form-group {
	margin-bottom: 20px;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-family: 'Poppins', sans-serif;
}

.btn-submit {
	width: 100%;
	padding: 15px;
	background: #333;
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
}