/* ===== CONTACT PAGE STYLES ===== */

/* --- Page Banner --- */
.contact-banner {
	position: relative;
	background: linear-gradient(135deg, var(--color-primary-bg) 0%, #5c1a18 100%);
	padding: 120px 0 60px;
	color: #fff;
	overflow: hidden;
}

.contact-banner::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(244, 197, 66, 0.12) 0%,
		transparent 70%
	);
	border-radius: 50%;
	pointer-events: none;
}

.contact-banner::after {
	content: "";
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 350px;
	height: 350px;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.06) 0%,
		transparent 70%
	);
	border-radius: 50%;
	pointer-events: none;
}

.banner-content {
	position: relative;
	z-index: 2;
}

.banner-content h1 {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800;
	margin: 12px 0 16px;
	line-height: 1.15;
}

.banner-tagline {
	font-size: clamp(16px, 2.2vw, 22px);
	font-weight: 300;
	opacity: 0.9;
	max-width: 650px;
	line-height: 1.5;
}

/* --- Breadcrumb --- */
.breadcrumb-list {
	gap: 8px;
	flex-wrap: wrap;
	font-size: 14px;
}

.breadcrumb-list li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.breadcrumb-list li + li::before {
	content: "/";
	opacity: 0.5;
}

.breadcrumb-list li a {
	color: rgba(255, 255, 255, 0.75);
	transition: color 0.2s;
}

.breadcrumb-list li a:hover {
	color: var(--color-cta-bg);
}

.breadcrumb-list li.active span {
	color: #fff;
	font-weight: 500;
}

/* --- Section Titles --- */
.section-title {
	font-size: clamp(26px, 3.5vw, 38px);
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.primary-blue {
	color: var(--color-primary-bg);
}

.sub-heading {
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 700;
	line-height: 1.2;
}

.sub-text {
	font-size: 16px;
	color: #555;
	margin-top: 8px;
}

.text-muted {
	color: #888;
	font-size: 14px;
	margin-top: 4px;
}

/* ===== CONTACT MAIN (Info + Form) ===== */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

/* --- Contact Details Cards --- */
.contact-details {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-card {
	display: flex;
	gap: 18px;
	padding: 24px;
	background: #fff;
	border-radius: 14px;
	border: 1px solid #eee;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.contact-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(139, 46, 43, 0.1);
}

.contact-card-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	background: rgba(139, 46, 43, 0.08);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-card-body h3 {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 8px;
}

.contact-card-body p {
	font-size: 15px;
	color: #444;
	line-height: 1.6;
}

.contact-link {
	display: block;
	font-size: 15px;
	color: var(--color-primary-bg);
	font-weight: 500;
	margin-top: 4px;
	transition: color 0.2s;
}

.contact-link:hover {
	color: #5c1a18;
	text-decoration: underline;
}

.map-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-primary-bg);
	margin-top: 10px;
	transition: color 0.2s;
}

.map-link:hover {
	color: #5c1a18;
	text-decoration: underline;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
	background: #fff;
	border-radius: 16px;
	padding: 36px;
	border: 1px solid #eee;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-group label {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.form-group label .req {
	color: #e53935;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	font-size: 15px;
	font-family: "Roboto", sans-serif;
	color: #333;
	background: #f9f9fb;
	border: 1.5px solid #ddd;
	border-radius: 10px;
	outline: none;
	transition:
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--color-primary-bg);
	box-shadow: 0 0 0 3px rgba(139, 46, 43, 0.1);
	background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #aaa;
}

.form-group select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
	cursor: pointer;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.char-count {
	font-size: 12px;
	color: #999;
	text-align: right;
}

.submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 32px;
	font-size: 16px;
	cursor: pointer;
	border: none;
	align-self: flex-start;
}

.submit-btn:active {
	transform: translateY(0);
}

/* ===== HELPLINE SECTION ===== */
.helpline-section {
	background: linear-gradient(135deg, var(--color-primary-bg) 0%, #5c1a18 100%);
	padding: 60px 0;
	color: #fff;
}

.helpline-inner {
	text-align: center;
}

.helpline-text h2 {
	font-size: clamp(26px, 3.5vw, 38px);
	font-weight: 800;
	margin-bottom: 10px;
}

.helpline-text p {
	font-size: 17px;
	opacity: 0.85;
	max-width: 550px;
	margin: 0 auto 40px;
	line-height: 1.6;
}

.helpline-cards {
	gap: 24px;
	justify-content: center;
}

.helpline-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 32px 28px;
	text-align: center;
	min-width: 240px;
	flex: 1;
	max-width: 320px;
	transition:
		transform 0.25s ease,
		background 0.25s ease;
}

.helpline-card:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.16);
}

.helpline-card-icon {
	width: 64px;
	height: 64px;
	background: rgba(244, 197, 66, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.helpline-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
}

.helpline-card a {
	display: block;
	font-size: 15px;
	color: var(--color-cta-bg);
	font-weight: 500;
	margin-top: 6px;
	transition: color 0.2s;
}

.helpline-card a:hover {
	color: #fff;
	text-decoration: underline;
}

/* ===== MAP SECTION ===== */
.map-section {
	line-height: 0;
}

.map-container iframe {
	width: 100%;
	height: 420px;
	display: block;
}

/* ===== CTA SECTION ===== */
.overview-cta {
	background: linear-gradient(135deg, var(--color-primary-bg) 0%, #5c1a18 100%);
	padding: 60px 0;
}

.cta-content {
	gap: 30px;
}

.cta-text h2 {
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 800;
	color: #fff;
	margin-bottom: 10px;
}

.cta-text p {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.85);
}

.cta-actions {
	gap: 16px;
	flex-shrink: 0;
}

.overview-cta .cta-btn.apply {
	padding: 14px 36px;
	font-size: 16px;
	border-radius: 10px;
	display: inline-block;
}

.cta-btn-outline {
	display: inline-block;
	padding: 14px 36px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 10px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	color: #fff;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cta-btn-outline:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: #fff;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

@media (max-width: 768px) {
	.contact-banner {
		padding: 100px 0 48px;
	}

	.contact-form-wrap {
		padding: 24px 20px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.helpline-cards {
		flex-direction: column;
		align-items: center;
	}

	.helpline-card {
		max-width: 100%;
		min-width: unset;
	}

	.helpline-section {
		padding: 40px 0;
	}

	.map-container iframe {
		height: 300px;
	}

	.overview-cta .cta-content {
		flex-direction: column;
		text-align: center;
	}

	.overview-cta .cta-actions {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.contact-card {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
	}

	.submit-btn {
		width: 100%;
	}
}
