/**
 * Contact page styles.
 */

body.page-template-template-contact,
body.page-slug-contact,
body.page-slug-contact-us,
.contact-page-main,
.contact-section {
	background: #ffffff !important;
}

.contact-page-main {
	direction: rtl;
	text-align: right;
}

.contact-hero-card {
	min-height: 650px;
}

.contact-hero-content {
	max-width: 880px;
}

.contact-hero-content .services-hero-desc {
	max-width: 760px;
}

.contact-hero-strip .strip-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-section {
	padding: 100px 0 115px;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
	gap: 54px;
	align-items: center;
}

.contact-copy h2 {
	max-width: 620px;
	margin: 0 0 18px;
	color: var(--blue-dark, #102b46);
	font-size: clamp(1.9rem, 3.4vw, 2.9rem);
	font-weight: 900;
	line-height: 1.28;
}

.contact-copy > p {
	max-width: 610px;
	margin: 0;
	color: var(--muted, #6b7280);
	font-size: 1.08rem;
	font-weight: 600;
	line-height: 1.9;
}

.contact-details {
	margin: 34px 0 0;
	padding: 0;
}

.contact-details > div {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 24px;
	padding: 10px 0;
}

.contact-details > div + div {
	margin-top: 12px;
}

.contact-details dt {
	color: var(--gold, #c79a3c);
	font-weight: 900;
}

.contact-details dd {
	margin: 0;
	color: var(--blue-dark, #102b46);
	font-weight: 800;
	line-height: 1.75;
}

.contact-details strong,
.contact-details span {
	display: block;
}

.contact-details span {
	margin-top: 4px;
	color: var(--muted, #6b7280);
	font-weight: 600;
	direction: ltr;
	text-align: right;
}

.contact-details a {
	color: var(--blue, #256fdc);
	text-decoration: none;
}

.contact-details a:hover {
	color: var(--gold, #c79a3c);
}

.contact-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.contact-social-links a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 8px 12px;
	border: 1px solid rgba(37, 111, 220, 0.18);
	border-radius: 6px;
	background: rgba(37, 111, 220, 0.06);
	font-size: 0.92rem;
	line-height: 1;
}

.contact-social-links a:hover {
	border-color: rgba(199, 154, 60, 0.42);
	background: rgba(199, 154, 60, 0.10);
}

.contact-social-links i {
	font-size: 0.95rem;
}

.contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.contact-map-panel {
	min-width: 0;
}

.contact-map-frame {
	position: relative;
	min-height: 610px;
	overflow: hidden;
	border-radius: 28px;
	background: var(--blue-dark, #102b46);
	box-shadow: var(--shadow, 0 24px 70px rgba(16, 43, 70, 0.10));
}

.contact-map-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.contact-map-caption {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-top: 18px;
	color: var(--blue-dark, #102b46);
	font-weight: 900;
}

.contact-map-caption a {
	color: var(--blue, #256fdc);
	text-decoration: none;
	white-space: nowrap;
}

.contact-map-caption a:hover {
	color: var(--gold, #c79a3c);
}

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

	.contact-map-frame {
		min-height: 500px;
	}
}

@media (max-width: 767px) {
	.contact-hero-card {
		min-height: 620px;
	}

	.contact-hero-strip .strip-grid {
		grid-template-columns: 1fr;
	}

	.contact-section {
		padding: 74px 0 86px;
	}

	.contact-details > div {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.contact-map-frame {
		min-height: 390px;
		border-radius: 20px;
	}

	.contact-map-caption {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}
}