/* Contact Page Styles */
.contact-page {
	--contact-primary: #f9a634;
	--contact-accent: #f9a634;
	--contact-text: #333333;
	--contact-muted: #687782;
	--contact-line: #dce3e7;
	--contact-bg: #f8f9fa;
	width: 100%;
	color: var(--contact-text);
	font-family: Roboto, Arial, sans-serif;
}

/* Icon Fonts - Ensure proper font-family application */
.contact-info-card__icon i[class^="icomoon-"],
.contact-info-card__icon i[class*=" icomoon-"] {
	font-family: "icomoon" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 48px;
}

.contact-info-card__icon i[class^="icofont-"],
.contact-info-card__icon i[class*=" icofont-"] {
	font-family: "IcoFont" !important;
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 48px;
}

.contact-container {
	width: min(1200px, calc(100% - 40px));
	margin-inline: auto;
}

/* Banner Section - Match Resource Page Style */
.contact-banner {
	position: relative;
	display: flex;
	min-height: 340px;
	padding: 32px 16px;
	background: #f5a623 center/cover no-repeat;
	color: #fff;
	align-items: center;
	justify-content: center;
}

.contact-banner__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 31, 55, 0.3);
}

.contact-banner__inner {
	position: relative;
	z-index: 1;
	display: flex;
	width: min(1280px, calc(100% - 32px));
	margin-inline: auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	text-align: center;
}

.contact-banner h1 {
	max-width: 100%;
	margin: 0;
	color: #fff;
	font: 400 48px/1.2 'Fjalla One', Impact, sans-serif;
}

.contact-banner p {
	max-width: 720px;
	margin: 0;
	color: #fff;
	font: 400 18px/1.5 Roboto, sans-serif;
}

/* Intro Section */
.contact-intro {
	padding: 80px 20px 40px;
	text-align: center;
}

.contact-intro__content {
	max-width: 800px;
	margin: 0 auto;
}

.contact-eyebrow {
	display: inline-block;
	margin: 0 0 16px;
	padding: 6px 16px;
	background: rgba(233, 30, 99, 0.1);
	color: var(--contact-accent);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	border-radius: 20px;
}

.contact-intro h2 {
	margin: 0 0 24px;
	color: var(--contact-primary);
	font: 600 36px/1.3 Roboto, sans-serif;
}

.contact-intro p {
	margin: 0;
	color: var(--contact-muted);
	font-size: 16px;
	line-height: 1.8;
}

/* Contact Info Cards */
.contact-info {
	padding: 40px 20px 80px;
}

.contact-info__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
}

.contact-info-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 24px;
	background: #fff;
	text-align: center;
	border: 1px solid var(--contact-line);
	border-radius: 8px;
	transition: all 0.3s ease;
}

.contact-info-card:hover {
	border-color: var(--contact-accent);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.contact-info-card__icon {
	display: flex;
	width: 72px;
	height: 72px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #f5a623, #d48f1c);
	color: #333333;
	font-size: 32px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: transform 0.3s ease;
}

.contact-info-card__icon i {
	color: #fff;
	font-weight: normal;
	font-style: normal;
}

.contact-info-card:hover .contact-info-card__icon {
	transform: scale(1.1);
}

.contact-info-card h3 {
	margin: 0 0 12px;
	color: var(--contact-primary);
	font: 600 20px/1.3 Roboto, sans-serif;
}

.contact-info-card p,
.contact-info-card a {
	margin: 0;
	color: var(--contact-muted);
	font-size: 15px;
	line-height: 1.7;
	text-decoration: none;
	word-break: break-word;
}

.contact-info-card a:hover {
	color: var(--contact-accent);
}

/* Contact Form Section */
.contact-form-section {
	padding: 60px 20px 80px;
/* 	background: var(--contact-bg); */
}

.contact-form-wrapper {
	max-width: 900px;
	margin: 0 auto;
	padding: 60px 40px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-intro {
	margin-bottom: 40px;
	text-align: center;
}

.contact-form-intro h2 {
	margin: 0 0 16px;
	color: var(--contact-primary);
	font: 600 32px/1.3 Roboto, sans-serif;
}

.contact-form-intro p {
	margin: 0;
	color: var(--contact-muted);
	font-size: 16px;
	line-height: 1.6;
}

.contact-form-content {
	margin-top: 32px;
}

/* Style Contact Form 7 */
.contact-form-content .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-form-content .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.contact-form-content input[type="text"],
.contact-form-content input[type="email"],
.contact-form-content input[type="tel"],
.contact-form-content input[type="url"],
.contact-form-content textarea,
.contact-form-content select {
	width: 100%;
	padding: 14px 18px;
	background: #fff;
	color: var(--contact-text);
	font-family: inherit;
	font-size: 15px;
	border: 1px solid var(--contact-line);
	border-radius: 6px;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.contact-form-content input:focus,
.contact-form-content textarea:focus,
.contact-form-content select:focus {
	outline: none;
	border-color: var(--contact-accent);
	box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.contact-form-content textarea {
	min-height: 140px;
	resize: vertical;
}

.contact-form-content input[type="submit"],
.contact-form-content button[type="submit"] {
	width: auto;
	min-width: 180px;
	padding: 14px 32px;
	background: var(--contact-accent);
	color: #fff;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.contact-form-content input[type="submit"]:hover,
.contact-form-content button[type="submit"]:hover {
	background: #c2185b;
	box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
	transform: translateY(-2px);
}

.contact-form-content .wpcf7-not-valid-tip {
	margin-top: 6px;
	color: #d32f2f;
	font-size: 13px;
}

.contact-form-content .wpcf7-response-output {
	margin: 24px 0 0;
	padding: 16px 20px;
	font-size: 14px;
	border-radius: 6px;
	border: 1px solid;
}

.contact-form-content .wpcf7-validation-errors {
	background: #fff3cd;
	color: #856404;
	border-color: #ffeaa7;
}

.contact-form-content .wpcf7-mail-sent-ok {
	background: #d4edda;
	color: #155724;
	border-color: #c3e6cb;
}

/* Map Section */
.contact-map {
	width: 100%;
	height: 450px;
	margin-top: 0;
}

.contact-map__embed {
	width: 100%;
	height: 100%;
}

.contact-map__embed iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
	.contact-banner h1 {
		font-size: 36px;
	}

	.contact-banner p {
		font-size: 16px;
	}

	.contact-intro {
		padding: 60px 20px 30px;
	}

	.contact-intro h2 {
		font-size: 28px;
	}

	.contact-info {
		padding: 30px 20px 60px;
	}

	.contact-info__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contact-form-wrapper {
		padding: 40px 24px;
	}

	.contact-form-intro h2 {
		font-size: 26px;
	}

	.contact-map {
		height: 350px;
	}
}

@media (max-width: 480px) {
	.contact-banner {
		min-height: 280px;
	}

	.contact-banner h1 {
		font-size: 30px;
	}

	.contact-intro h2 {
		font-size: 24px;
	}

	.contact-form-wrapper {
		padding: 32px 20px;
	}

	.contact-info-card {
		padding: 32px 20px;
	}

	.contact-info-card__icon {
		width: 64px;
		height: 64px;
		font-size: 28px;
	}
}
