/* ============================================
	 CONTACT SECTION (Bootstrap two columns)
	 ============================================ */

.contact {
	background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
	padding: 80px 0;
}

.contact-content {
	display: block; /* Bootstrap row/col handles layout */
	margin-top: 24px;
}

/* Left column: info cards */
.contact-info {
	display: grid;
	gap: 12px;
}

.contact-card {
	background: #ffffff;
	border: 1px solid rgba(12,27,51,0.10);
	border-radius: 14px;
	box-shadow: 0 6px 18px rgba(12,27,51,0.07);
	padding: 14px;
}

.contact-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	color: #fff;
	background: linear-gradient(135deg, #2563eb, #06b6d4);
	font-size: 18px;
}

.contact-card h3 {
	margin: 0 0 4px;
	color: #0f172a; /* visible heading */
	font-weight: 600;
	font-size: 1rem;
}

.contact-card p {
	margin: 0;
	color: #334155; /* visible body text */
	line-height: 1.6;
}

/* Map card */
.contact .card {
	border-radius: 16px;
	border: 1px solid rgba(12,27,51,0.10);
	box-shadow: 0 8px 24px rgba(12,27,51,0.08);
	overflow: hidden;
}

.contact iframe { border: 0; }

/* Right column: form */
.contact-form-wrapper {
	background: #ffffff;
	border: 1px solid rgba(12,27,51,0.10);
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(12,27,51,0.08);
	padding: 24px;
}

.contact-form .form-group label { color: #0f172a; font-weight: 600; }

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	border: 1px solid rgba(12,27,51,0.15);
	border-radius: 12px;
	padding: 12px 14px;
	background: #fff;
	color: #0f172a;
}

.contact .btn-submit { display: inline-flex; align-items: center; gap: 8px; }

/* Keep content visible despite AOS */
/* AOS visibility now handled via consolidated selectors in common.css */

/* Desktop: ensure left column stacks info then map */
@media (min-width: 992px) {
	.contact .row { align-items: start; }
	.contact .col-lg-6:first-child { display: flex; flex-direction: column; }
	.contact .col-lg-6:first-child .card { margin-top: 12px; }
	/* Make info two columns to reduce height and pull map up */
	.contact-info { grid-template-columns: 1fr 1fr; }
}

/* Mobile tweaks */
@media (max-width: 576px) {
	.contact-form-wrapper { padding: 18px; }
	.contact-card { padding: 16px; }
}
