/*
Theme Name: KHAAN Contractors
Theme URI: https://khaancontractors.com
Author: KHAAN Contractors
Description: Custom WordPress theme for KHAAN Contractors, a construction and contracting company in Saudi Arabia.
Version: 1.0.0
Text Domain: khaan-contractors
*/

/* ==========================================================================
   KHAAN Contractors — main stylesheet
   Units: px everywhere except line-height (em), per project spec.
   ========================================================================== */

:root {
	--color-gold: #d4a53a;
	--color-gold-hero: #d6a738;
	--color-navy-950: #0a0f1e;
	--color-navy-900: #0f172a;
	--color-navy-800: #13284b;
	--color-navy-link: #14294d;
	--color-heading: #1d283a;
	--color-muted: #65758b;
	--color-border: #e1e7ef;
	--color-bg-light: #f6f7f9;
	--color-white: #ffffff;

	--font-heading: 'Space Grotesk', Arial, sans-serif;
	--font-body: 'Inter', Arial, sans-serif;

	--container-width: 1536px;
	--container-pad: 16px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }

body {
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--color-heading);
	line-height: 1.5em;
	background: var(--color-white);
	-webkit-font-smoothing: antialiased;
}

.page-template-page-about-php { overflow-x: hidden; }

h1, h2, h3, h4 {
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--color-heading);
}

.container {
	max-width: var(--container-width);
	margin-inline: auto;
	padding-inline: var(--container-pad);
}

.text-gold { color: var(--color-gold); }

.section-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 768px;
	margin-inline: auto;
	text-align: center;
}

.eyebrow {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4286em;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--color-gold);
	margin-bottom: 12px;
}

.section-head h2 {
	font-size: 48px;
	line-height: 1em;
}

.section-head > p {
	margin-top: 16px;
	font-size: 18px;
	line-height: 1.5556em;
	color: var(--color-muted);
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5em;
	white-space: nowrap;
	border-radius: 14px;
	padding: 16px 32px;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
	background: var(--color-gold-hero);
	color: var(--color-white);
}
.btn--gold:hover { box-shadow: 0 10px 24px rgba(212, 165, 58, .35); }

.btn--outline {
	background: rgba(255, 255, 255, 0);
	border: 1px solid rgba(255, 255, 255, .2);
	color: var(--color-white);
}
.btn--outline:hover { background: rgba(255, 255, 255, .1); }

.btn--navy {
	background: var(--color-navy-800);
	color: var(--color-white);
	border-radius: 999px;
	font-weight: 600;
}
.btn--navy:hover { background: var(--color-navy-900); }

.btn--pill { border-radius: 999px; font-weight: 700; }
.btn--lg { height: 56px; }

/* ---------- Animations ---------- */
[data-animate] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .7s ease, transform .7s ease;
}
[data-animate="fade-in-left"] { transform: translateX(-0px); }
[data-animate="fade-in-right"] { transform: translateX(0px); }
[data-animate].is-visible {
	opacity: 1;
	transform: translate(0, 0);
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent;
	transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
	background: rgba(15, 23, 42, .92);
	backdrop-filter: blur(8px);
	box-shadow: 0 1px 12px rgba(0, 0, 0, .15);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding-block: 20px;
}

.nav__logo { margin-right: auto; }
.nav__logo img { width: auto; height: 80px; }

.nav__panel { display: contents; }

.nav__links {
	display: flex;
	align-items: center;
	gap: 32px;
}
.nav__links a {
	font-size: 14px;
	line-height: 1.4286em;
	font-weight: 500;
	color: rgba(255, 255, 255, .9);
	transition: color .2s ease;
}
.nav__links a:hover { color: var(--color-gold); }

.nav__cta { height: 56px; padding: 16px 32px; }

.nav__toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
}
.nav__toggle span {
	display: block;
	height: 2px;
	width: 24px;
	background: var(--color-white);
	transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	position: relative;
	min-height: 911px;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: var(--color-white);
}
.hero__media { position: absolute; inset: 0; }
.hero__bg { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, .9) 0%, rgba(15, 23, 42, .7) 50%, rgba(15, 23, 42, .9) 100%);
}

.hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 1536px;
	padding-top: 182px;
}

.hero__title {
	font-size: 72px;
	line-height: 1.25em;
	max-width: 896px;
	color: var(--color-white);
}

.hero__subtitle {
	margin-top: 24px;
	max-width: 672px;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 400;
	color: rgba(255, 255, 255, .8);
}

.hero__actions {
	margin-top: 40px;
	display: flex;
	gap: 16px;
}

.hero__stats {
	margin-top: 64px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	display: flex;
	gap: 48px;
}
.hero__stat { display: flex; align-items: center; gap: 8px; }
.hero__stat-num {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 20px;
	line-height: 1.4em;
	letter-spacing: .4px;
	color: var(--color-gold-hero);
}
.hero__stat-label {
	font-size: 16px;
	line-height: 1.5em;
	font-weight: 500;
	letter-spacing: .4px;
	color: rgba(255, 255, 255, .9);
}

.hero__floating {
	position: absolute;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 17px;
	border-radius: 16px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .2);
	font-size: 16px;
	line-height: 1.5em;
	font-weight: 500;
	color: var(--color-white);
	white-space: nowrap;
}
.hero__floating-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: rgba(214, 167, 56, .2);
}
.hero__floating--1 { left: 40px; top: 227.75px; }
.hero__floating--2 { right: 40px; top: 533.34px; }
.hero__floating--3 { right: 40px; top: 303.66px; }

/* ==========================================================================
   Trust slider section
   ========================================================================== */
.trust-slider { position: relative; width: calc(100% - 32px); max-width: 1180px; height: 710px; margin: 80px auto; overflow: hidden; border-radius: 24px; color: var(--color-white); }
.trust-slider__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: scale(1.08);
	background-size: cover;
	background-position: center;
	transition: opacity 1.2s ease, transform 6s ease;
}
.trust-slider__slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.trust-slider__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(180deg, rgba(15, 23, 42, .88) 0%, rgba(15, 23, 42, .78) 50%, rgba(15, 23, 42, .92) 100%);
}
.trust-slider__content { position: relative; z-index: 3; height: 100%; display: flex; align-items: center; justify-content: center; }
.trust-slider__card {
	max-width: 800px;
	width: 100%;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .15);
	backdrop-filter: blur(12px);
	border-radius: 24px;
	padding: 48px;
	text-align: center;
}
.trust-slider__card .eyebrow { justify-content: center; }
.trust-slider__card h2 { margin-top: 16px; font-size: 36px; line-height: 1.25em; color: var(--color-white); }
.trust-slider__list { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; text-align: left; }
.trust-slider__list li { display: flex; flex-direction: column; gap: 4px; }
.trust-slider__list li strong { font-size: 16px; line-height: 1.5em; font-weight: 600; color: var(--color-white); }
.trust-slider__list li span { font-size: 14px; line-height: 1.5em; font-weight: 400; color: rgba(255, 255, 255, .75); }
.trust-slider__actions { margin-top: 40px; }
.trust-slider__dots { position: absolute; z-index: 3; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 8px; }
.trust-slider__dots button {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .35);
	transition: width .25s ease, background-color .25s ease;
}
.trust-slider__dots button.is-active { width: 32px; background: var(--color-gold); }

/* ==========================================================================
   Featured Services
   ========================================================================== */
.featured-services { background: var(--color-white); padding-block: 96px; }

.featured-services__list {
	margin-top: 80px;
	display: flex;
	flex-direction: column;
	gap: 112px;
}

.featured-service { display: flex; align-items: center; gap: 64px; }
.featured-service--reverse { flex-direction: row-reverse; }

.featured-service__visual {
	position: relative;
	flex: 1 1 50%;
	min-width: 0;
	aspect-ratio: 4 / 3;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 30px rgba(20, 41, 77, .12);
}
.featured-service__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.featured-service:hover .featured-service__visual img { transform: scale(1.05); }

.featured-service--primary .featured-service__visual {
	box-shadow: 0 0 0 4px rgba(212, 165, 58, .3), 0 20px 30px rgba(20, 41, 77, .16);
}

.featured-service__badge {
	position: absolute;
	top: 20px;
	inset-inline-start: 20px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--color-gold-hero);
	color: var(--color-white);
	font-size: 14px;
	font-weight: 700;
	padding: 8px 18px;
	border-radius: 999px;
	box-shadow: 0 10px 20px rgba(212, 165, 58, .35);
}

.featured-service__content { flex: 1 1 50%; min-width: 0; }

.featured-service__meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.featured-service__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: rgba(20, 41, 77, .05);
	flex-shrink: 0;
}
.featured-service__number {
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 700;
	line-height: 1em;
	color: var(--color-border);
}
.featured-service--primary .featured-service__number { color: rgba(212, 165, 58, .45); }

.featured-service__content h3 { font-size: 32px; line-height: 1.25em; margin-bottom: 16px; }

.featured-service__content > p {
	font-size: 16px;
	line-height: 1.625em;
	color: var(--color-muted);
	max-width: 520px;
	margin-bottom: 28px;
}

.featured-service__includes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 24px;
	margin-bottom: 36px;
	max-width: 520px;
}
.featured-service__includes li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 500;
	color: var(--color-heading);
}
.featured-service__includes li img { flex-shrink: 0; }

.featured-service__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.btn--whatsapp {
	background: var(--color-white);
	border: 1.5px solid var(--color-navy-800);
	color: var(--color-navy-800);
}
.btn--whatsapp:hover { background: var(--color-navy-800); color: var(--color-white); }

.icon-whatsapp {
	display: inline-block;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask-image: url("assets/svg/icon-whatsapp-navy.svg");
	mask-image: url("assets/svg/icon-whatsapp-navy.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.icon-whatsapp-outline {
	display: inline-block;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask-image: url("assets/svg/icon-whatsapp.svg");
	mask-image: url("assets/svg/icon-whatsapp.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.featured-services__cta {
	margin: 96px auto 0;
	max-width: 720px;
	padding: 56px 48px;
	text-align: center;
	background: var(--color-bg-light);
	border: 1px solid var(--color-border);
	border-radius: 24px;
}
.featured-services__cta h3 { font-size: 28px; line-height: 1.3em; margin-bottom: 12px; }
.featured-services__cta p { font-size: 16px; line-height: 1.5556em; color: var(--color-muted); margin-bottom: 28px; }

@media (max-width: 900px) {
	.featured-service, .featured-service--reverse { flex-direction: column; gap: 32px; }
	.featured-services__list { gap: 72px; }
	.featured-service__visual { flex-basis: auto; width: 100%; aspect-ratio: 16 / 11; }
	.featured-service__content { flex-basis: auto; width: 100%; }
	.featured-service__includes { grid-template-columns: 1fr; max-width: none; }
	.featured-service__content > p { max-width: none; }
	.featured-service__actions .btn { flex: 1 1 auto; }
	.featured-services__cta { padding: 40px 24px; }
}

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why {
	position: relative;
	background: var(--color-navy-900);
	padding-block: 96px;
	overflow: hidden;
}
.why__bg-tint {
	position: absolute;
	inset: 0;
	opacity: .05;
	background-image: linear-gradient(180deg, var(--color-gold) 0%, transparent 0%), linear-gradient(90deg, var(--color-gold) 0%, transparent 0%);
}
.why__inner {
	position: relative;
	display: grid;
	grid-template-columns: 720px 720px;
	justify-content: space-between;
	align-items: center;
}
.why__content { color: var(--color-white); }
.why__content h2 {
	margin-top: 16px;
	font-size: 48px;
	line-height: 1.25em;
	color: var(--color-white);
}
.why__intro { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.why__intro p { font-size: 16px; line-height: 1.625em; color: rgba(255, 255, 255, .75); }
.why__subhead { margin-top: 32px; font-family: var(--font-heading); font-weight: 700; font-size: 20px; line-height: 1.4em; color: var(--color-gold); }
.why__subhead + .why__list { margin-top: 16px; }
.why__cta { margin-top: 40px; }
.why__list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.why__list li { display: flex; align-items: flex-start; gap: 12px; }
.why__list img { margin-top: 2px; flex-shrink: 0; filter: brightness(0) invert(1); }
.why__list span {
	font-size: 16px;
	line-height: 1.5em;
	color: rgba(255, 255, 255, .8);
}
.why__stats { margin-top: 48px; display: flex; gap: 40px; }
.why__stat { display: flex; flex-direction: column; }
.why__stat-num {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 36px;
	line-height: 1.1111em;
	color: var(--color-gold);
}
.why__stat-label {
	margin-top: 4px;
	font-size: 14px;
	line-height: 1.4286em;
	color: rgba(255, 255, 255, .6);
}

.why__media { position: relative; }
.why__media-frame {
	height: 900px;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}
.why__media-frame::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15, 23, 42, .6), rgba(0, 0, 0, 0));
}
.why__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.why__badge {
	position: absolute;
	left: -24px;
	bottom: 80px;
	width: 179px;
	background: var(--color-gold);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 20px 12.5px rgba(0, 0, 0, .1), 0 8px 5px rgba(0, 0, 0, .1);
	display: flex;
	flex-direction: column;
}
.why__badge-num {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 30px;
	line-height: 1.2em;
	color: var(--color-navy-900);
}
.why__badge-label {
	font-size: 14px;
	line-height: 1.4286em;
	font-weight: 500;
	color: rgba(15, 23, 42, .8);
}

/* ==========================================================================
   Process timeline
   ========================================================================== */
.process { background: var(--color-bg-light); padding-block: 96px; }
.process__grid {
	margin-top: 64px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.process-card {
	position: relative;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	padding: 33px;
}
.process-card__head {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}
.process-card__num {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 48px;
	line-height: 1em;
	color: rgba(212, 165, 58, .2);
}
.process-card__head h3 {
	padding-top: 8px;
	font-size: 20px;
	line-height: 1.4em;
}
.process-card p {
	margin-top: 16px;
	font-size: 16px;
	line-height: 1.625em;
	color: var(--color-muted);
}
.process-card__line {
	margin-top: 24px;
	display: block;
	height: 2px;
	width: 100%;
	background: linear-gradient(to right, rgba(212, 165, 58, .6), rgba(0, 0, 0, 0));
}

/* ==========================================================================
   Projects
   ========================================================================== */
.projects { background: var(--color-white); padding-block: 96px; }
.projects__filters {
	margin-top: 32px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}
.projects__filter {
	height: 36px;
	padding: 8px 20px;
	border-radius: 999px;
	background: var(--color-bg-light);
	color: var(--color-muted);
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4286em;
	transition: background-color .2s ease, color .2s ease;
}
.projects__filter.is-active,
.projects__filter:hover {
	background: var(--color-navy-800);
	color: var(--color-white);
}

.projects__grid {
	margin-top: 48px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.project-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 364 / 485.33;
	transition: opacity .3s ease, transform .3s ease;
}
.project-card.is-hidden { display: none; }
.project-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.project-card:hover > img { transform: scale(1.06); }
.project-card__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 23px 20px;
	background: linear-gradient(to top, rgba(10, 15, 30, .92), rgba(10, 15, 30, 0));
	display: flex;
	flex-direction: column;
}
.project-card__tag {
	font-weight: 600;
	font-size: 12px;
	line-height: 1.3333em;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--color-gold);
}
.project-card__title {
	margin-top: 4px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5em;
	color: var(--color-white);
}
.project-card__link {
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	line-height: 1.4286em;
	color: rgba(255, 255, 255, .8);
}
.projects__cta { margin-top: 48px; display: flex; justify-content: center; }

/* ==========================================================================
   Safety
   ========================================================================== */
.safety { position: relative; background: var(--color-navy-800); padding-block: 96px; overflow: hidden; }
.safety__bg-tint {
	position: absolute;
	inset: 0;
	opacity: .04;
	background-image: linear-gradient(180deg, var(--color-gold) 0%, transparent 0%), linear-gradient(90deg, var(--color-gold) 0%, transparent 0%);
}
.safety__inner {
	position: relative;
	display: grid;
	grid-template-columns: 720px 720px;
	justify-content: space-between;
	align-items: center;
}
.safety__media { border-radius: 16px; overflow: hidden; height: 900px; }
.safety__media img { width: 100%; height: 100%; object-fit: cover; }

.safety__content { color: var(--color-white); }
.safety__content h2 {
	margin-top: 16px;
	font-size: 48px;
	line-height: 1.25em;
	color: var(--color-white);
}
.safety__lead {
	margin-top: 24px;
	font-size: 18px;
	line-height: 1.625em;
	color: rgba(255, 255, 255, .7);
}
.safety__grid {
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.safety-card {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	padding: 21px;
}
.safety-card h3 {
	margin-top: 12px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5em;
	color: var(--color-white);
}
.safety-card p {
	margin-top: 4px;
	font-size: 14px;
	line-height: 1.4286em;
	color: rgba(255, 255, 255, .6);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { background: var(--color-bg-light); padding-block: 96px; }
.testimonial-slider { margin-top: 56px; max-width: 896px; margin-inline: auto; }
.testimonial-slider__track { position: relative; min-height: 340px; }
.testimonial-card {
	position: absolute;
	inset: 0;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	padding: 49px;
	box-shadow: 0 10px 7.5px rgba(0, 0, 0, .1), 0 4px 3px rgba(0, 0, 0, .1);
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s ease;
}
.testimonial-card.is-active { opacity: 1; visibility: visible; position: relative; }
.testimonial-card__stars { display: flex; gap: 4px; }
.testimonial-card__quote {
	margin-top: 24px;
	font-size: 20px;
	line-height: 1.625em;
	color: var(--color-heading);
}
.testimonial-card__author { margin-top: 32px; display: flex; align-items: center; gap: 16px; }
.testimonial-card__avatar {
	width: 56px;
	height: 56px;
	border-radius: 999px;
	object-fit: cover;
	border: 2px solid rgba(212, 165, 58, .3);
}
.testimonial-card__name { font-family: var(--font-heading); font-weight: 700; font-size: 16px; line-height: 1.5em; }
.testimonial-card__role { font-size: 14px; line-height: 1.4286em; color: var(--color-muted); }
.testimonial-card__project { margin-top: 2px; font-weight: 600; font-size: 12px; line-height: 1.3333em; color: var(--color-gold); }

.testimonial-slider__controls {
	margin-top: 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.testimonial-slider__dots { display: flex; align-items: center; gap: 8px; }
.testimonial-slider__dots button {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(19, 40, 75, .2);
	transition: width .25s ease, background-color .25s ease;
}
.testimonial-slider__dots button.is-active { width: 32px; background: var(--color-gold); }
.testimonial-slider__arrows { display: flex; gap: 12px; }
.testimonial-slider__arrows button {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color .2s ease;
}
.testimonial-slider__arrows button:hover { background: var(--color-bg-light); }

section#projects {
    display: none !important;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.cta-final { position: relative; background: var(--color-navy-900); padding-block: 112px 128px; overflow: hidden; }
.cta-final__glow {
	position: absolute;
	top: -6.5px;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 600px;
	border-radius: 999px;
	background: rgba(212, 165, 58, .05);
	filter: blur(64px);
}
.cta-final__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.cta-final__inner h2 {
	margin-top: 20px;
	max-width: 768px;
	font-size: 60px;
	line-height: 1.25em;
	color: var(--color-white);
}
.cta-final__actions { margin-top: 40px; display: flex; gap: 16px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--color-navy-950); }
.footer__top {
	padding-block: 64px;
	display: grid;
	grid-template-columns: 346px 346px 346px 346px;
	justify-content: space-between;
	gap: 32px;
}
.footer__col--brand { display: flex; flex-direction: column; gap: 20px; }
.footer__logo { height: 100px; width: auto; align-self: flex-start; }
.footer__col--brand p {
	font-size: 14px;
	line-height: 1.625em;
	color: rgba(255, 255, 255, .6);
}
.footer__social { display: flex; gap: 12px; }
.footer__social-link {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color .2s ease, border-color .2s ease;
}
.footer__social-link:hover { background: rgba(255, 255, 255, .05); border-color: var(--color-gold); }

.footer__col h4 {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5em;
	color: rgba(255, 255, 255, .9);
}
.footer__col ul { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.footer__col ul a,
.footer__col ul span {
	font-size: 14px;
	line-height: 1.4286em;
	color: rgba(255, 255, 255, .6);
	transition: color .2s ease;
}
.footer__col ul a:hover { color: var(--color-gold); }
.footer__contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.footer__contact-list img { margin-top: 2px; }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .05); }
.footer__bottom-inner {
	padding-block: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer__bottom-inner p {
	font-size: 14px;
	line-height: 1.4286em;
	color: rgba(255, 255, 255, .4);
}
.footer__bottom-tagline { text-align: center; }
.footer__credit-link {
	color: var(--color-gold);
	font-weight: 700;
	text-decoration: underline;
}

/* ==========================================================================
   Page hero (Services / About / Contact)
   ========================================================================== */
.page-hero { position: relative; overflow: hidden; color: var(--color-white); }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__bg { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(15, 23, 42, .95) 0%, rgba(15, 23, 42, .8) 50%, rgba(15, 23, 42, .5) 100%);
}
.page-hero__tint {
	position: absolute;
	inset: 0;
	opacity: .04;
	background-image: linear-gradient(180deg, var(--color-gold) 0%, transparent 0%), linear-gradient(90deg, var(--color-gold) 0%, transparent 0%);
}
.page-hero__content { position: relative; z-index: 2; max-width: 1536px; }

.page-hero--services { min-height: 638px; padding-bottom: 64px; }
.page-hero--services .page-hero__content { padding-top: 171px; }
.page-hero--about { min-height: 820px; padding-bottom: 64px; }
.page-hero--about .page-hero__content { padding-top: 138px; }
.page-hero--contact { min-height: 729px; padding-bottom: 64px; }
.page-hero--contact .page-hero__content { padding-top: 50px !important; }

.breadcrumb { display: flex; align-items: center; gap: 8px; }
.breadcrumb a { font-size: 14px; line-height: 1.4286em; color: rgba(255, 255, 255, .5); transition: color .2s ease; }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb span { font-size: 14px; line-height: 1.4286em; color: var(--color-white); }
.breadcrumb img { width: 14px; height: 14px; }

.page-hero__eyebrow {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4286em;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--color-gold);
}
.page-hero__title {
	margin-top: 16px;
	font-size: 60px;
	line-height: 1.25em;
	color: var(--color-white);
	max-width: 768px;
}
.page-hero__subtitle {
	margin-top: 24px;
	font-size: 18px;
	line-height: 1.625em;
	color: rgba(255, 255, 255, .75);
	max-width: 768px;
}
.page-hero__actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.page-hero__trustline { margin-top: 28px; font-size: 14px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255, 255, 255, .7); }

.hero-badges { margin-top: 56px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); border-radius: 16px; padding: 17px 25px; }
.hero-badge__num { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 24px; line-height: 1.3333em; color: var(--color-gold); }
.hero-badge__label { display: block; font-size: 14px; line-height: 1.4286em; color: rgba(255, 255, 255, .7); }

.hero-tags { margin-top: 48px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-tag { display: flex; align-items: center; gap: 12px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); border-radius: 16px; padding: 13px 21px; }
.hero-tag__text { display: flex; flex-direction: column; }
.hero-tag__title { font-size: 14px; line-height: 1.4286em; font-weight: 600; color: var(--color-white); }
.hero-tag__sub { font-size: 12px; line-height: 1.3333em; color: rgba(255, 255, 255, .6); }

/* ==========================================================================
   Mid CTA banner (Services)
   ========================================================================== */
.cta-mid { position: relative; background: var(--color-navy-800); padding-block: 80px; overflow: hidden; }
.cta-mid__tint {
	position: absolute;
	inset: 0;
	opacity: .04;
	background-image: linear-gradient(180deg, var(--color-gold) 0%, transparent 0%), linear-gradient(90deg, var(--color-gold) 0%, transparent 0%);
}
.cta-mid__inner { position: relative; max-width: 768px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.cta-mid__inner h2 { margin-top: 16px; font-size: 36px; line-height: 1.25em; color: var(--color-white); }
.cta-mid__inner p { margin-top: 24px; font-size: 18px; line-height: 1.625em; color: rgba(255, 255, 255, .7); }
.cta-mid__actions { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Our Story (About)
   ========================================================================== */
.story { background: var(--color-white); padding-block: 96px; }
.story__inner { display: grid; grid-template-columns: 720px 720px; justify-content: space-between; align-items: start; }
.story__media { position: relative; }
.story__media-frame { height: 900px; border-radius: 16px; overflow: hidden; }
.story__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.story__content .eyebrow { margin-bottom: 0; }
.story__content h2 { margin-top: 16px; font-size: 36px; line-height: 1.25em; }
.story__content p { margin-top: 20px; font-size: 16px; line-height: 1.625em; color: var(--color-muted); }
.story__content p:first-of-type { margin-top: 24px; }

/* ==========================================================================
   Mission & Vision (About)
   ========================================================================== */
.mv { background: var(--color-bg-light); padding-block: 96px; }
.mv__grid { margin-top: 56px; max-width: 896px; margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card { border-radius: 16px; padding: 32px; }
.mv-card--navy { background: var(--color-navy-800); }
.mv-card--gold { background: var(--color-gold); }
.mv-card__icon { width: 48px; height: 48px; border-radius: 20px; display: flex; align-items: center; justify-content: center; }
.mv-card--navy .mv-card__icon { background: rgba(212, 165, 58, .2); }
.mv-card--gold .mv-card__icon { background: rgba(15, 23, 42, .2); }
.mv-card h3 { margin-top: 24px; font-size: 20px; line-height: 1.4em; }
.mv-card--navy h3 { color: var(--color-white); }
.mv-card--gold h3 { color: var(--color-navy-900); }
.mv-card p { margin-top: 12px; font-size: 16px; line-height: 1.625em; }
.mv-card--navy p { color: rgba(255, 255, 255, .75); }
.mv-card--gold p { color: rgba(15, 23, 42, .8); }

/* ==========================================================================
   Values (About)
   ========================================================================== */
.values { background: var(--color-white); padding-block: 96px; }
.values__grid { margin-top: 56px; max-width: 1024px; margin-inline: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: 16px; padding: 29px; }
.value-card__icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(20, 41, 77, .05); display: flex; align-items: center; justify-content: center; }
.value-card h3 { margin-top: 20px; font-size: 18px; line-height: 1.5556em; }
.value-card p { margin-top: 8px; font-size: 14px; line-height: 1.625em; color: var(--color-muted); }

/* ==========================================================================
   Glass image badges (About story / why-choose-us media overlays)
   ========================================================================== */
.image-badge {
	position: absolute;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 16px;
	padding: 21px;
	display: flex;
	flex-direction: column;
}
.image-badge__num { font-family: var(--font-heading); font-weight: 700; font-size: 24px; line-height: 1.3333em; color: var(--color-gold); }
.image-badge__label { font-size: 14px; line-height: 1.4286em; color: rgba(255, 255, 255, .7); }
.image-badge--top-left { left: -24px; top: 24px; }
.image-badge--bottom-right { left: auto; right: -24px; bottom: 24px; top: auto; }

.story__badge {
	position: absolute;
	right: -24px;
	bottom: 80px;
	width: 209px;
	background: var(--color-navy-800);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 20px 12.5px rgba(0, 0, 0, .1), 0 8px 5px rgba(0, 0, 0, .1);
	display: flex;
	flex-direction: column;
}
.story__badge-num { font-family: var(--font-heading); font-weight: 700; font-size: 30px; line-height: 1.2em; color: var(--color-gold); }
.story__badge-label { font-size: 14px; line-height: 1.4286em; color: rgba(255, 255, 255, .8); }

/* ==========================================================================
   Our Expertise (About)
   ========================================================================== */
.expertise { background: var(--color-bg-light); padding-block: 96px; }
.expertise__grid { margin-top: 56px; max-width: 896px; margin-inline: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.expertise-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	padding: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform .25s ease, box-shadow .25s ease;
}
.expertise-card:hover { transform: translateY(-4px); box-shadow: 0 12px 20px rgba(20, 41, 77, .1); }
.expertise-card__icon { width: 56px; height: 56px; border-radius: 20px; background: rgba(20, 41, 77, .05); display: flex; align-items: center; justify-content: center; }
.expertise-card h3 { margin-top: 16px; font-family: var(--font-heading); font-weight: 600; font-size: 14px; line-height: 1.4286em; color: var(--color-heading); }

/* ==========================================================================
   Our Team (About)
   ========================================================================== */
.team { background: var(--color-white); padding-block: 96px; }
.team__inner { max-width: 1024px; margin-inline: auto; display: grid; grid-template-columns: 480px 480px; justify-content: space-between; align-items: start; }
.team__text h2 { margin-top: 16px; font-size: 36px; line-height: 1.25em; }
.team__text p { margin-top: 16px; font-size: 16px; line-height: 1.625em; color: var(--color-muted); }
.team__text p:first-of-type { margin-top: 24px; }
.team__media { margin-top: 54px; border-radius: 16px; overflow: hidden; height: 360px; }
.team__media img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Safety & Quality alt layout (About)
   ========================================================================== */
.safety-alt { position: relative; background: var(--color-navy-800); padding-block: 96px; overflow: hidden; }
.safety-alt__tint {
	position: absolute;
	inset: 0;
	opacity: .04;
	background-image: linear-gradient(180deg, var(--color-gold) 0%, transparent 0%), linear-gradient(90deg, var(--color-gold) 0%, transparent 0%);
}
.safety-alt__inner { position: relative; display: grid; grid-template-columns: 720px 720px; justify-content: space-between; align-items: center; }
.safety-alt__content h2 { margin-top: 16px; font-size: 36px; line-height: 1.25em; color: var(--color-white); }
.safety-alt__grid { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.safety-alt-card { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: 20px; padding: 21px; }
.safety-alt-card h4 { margin-top: 12px; font-family: var(--font-heading); font-weight: 600; font-size: 14px; line-height: 1.4286em; color: var(--color-white); }
.safety-alt-card p { margin-top: 4px; font-size: 14px; line-height: 1.625em; color: rgba(255, 255, 255, .55); }
.safety-alt__media { border-radius: 16px; overflow: hidden; height: 900px; }
.safety-alt__media img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Quick contact cards (Contact)
   ========================================================================== */
.quick-contact { background: var(--color-white); padding-block: 64px; }
.quick-contact__grid { max-width: 896px; margin-inline: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quick-contact-card {
	background: var(--color-bg-light);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	padding: 29px;
	text-align: center;
	transition: transform .25s ease, box-shadow .25s ease;
}
.quick-contact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 20px rgba(20, 41, 77, .1); }
.quick-contact-card__icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(20, 41, 77, .05); margin-inline: auto; display: flex; align-items: center; justify-content: center; }
.quick-contact-card h3 { margin-top: 16px; font-size: 16px; line-height: 1.5em; }
.quick-contact-card p { margin-top: 4px; font-size: 14px; line-height: 1.4286em; color: var(--color-muted); }
.quick-contact-card__link { margin-top: 8px; display: inline-block; font-size: 14px; line-height: 1.4286em; font-weight: 600; color: var(--color-gold); }

/* ==========================================================================
   Request a quote form (Contact)
   ========================================================================== */
.quote-form-section { background: var(--color-bg-light); padding-block: 96px; }
.quote-form-grid { margin-top: 56px; max-width: 1152px; margin-inline: auto; display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.quote-form-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	padding: 33px;
	box-shadow: 0 1px 1.5px rgba(0, 0, 0, .1), 0 1px 1px rgba(0, 0, 0, .1);
}
.quote-form-card h3 { font-size: 20px; line-height: 1.4em; }
.quote-form { margin-top: 24px; 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; }
.form-group label { font-size: 14px; font-weight: 500; color: var(--color-heading); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	border: 1px solid var(--color-border);
	border-radius: 14px;
	padding: 9px 13px;
	font-size: 14px;
	font-family: var(--font-body);
	color: var(--color-heading);
	background: var(--color-white);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .1);
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2365758B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; }
.form-group textarea { min-height: 130px; resize: vertical; font-family: var(--font-body); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-muted); }
.form-submit {
	margin-top: 4px;
	width: 100%;
	height: 56px;
	border-radius: 20px;
	background: var(--color-gold);
	color: var(--color-white);
	font-weight: 700;
	font-size: 16px;
	transition: transform .2s ease, box-shadow .2s ease;
	border: 0 !important;
}
.form-submit:hover { box-shadow: 0 10px 24px rgba(212, 165, 58, .35); transform: translateY(-2px); }

.contact-info-card { background: var(--color-navy-800); border-radius: 16px; padding: 28px; color: var(--color-white); }
.contact-info-card h3 { font-size: 18px; line-height: 1.5556em; }
.contact-info-list { margin-top: 24px; display: flex; flex-direction: column; gap: 20px; }
.contact-info-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-info-list img { margin-top: 2px; flex-shrink: 0; }
.contact-info-list .info-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; color: rgba(255, 255, 255, .5); }
.contact-info-list .info-value { display: block; margin-top: 2px; font-size: 14px; line-height: 1.4286em; color: rgba(255, 255, 255, .85); }

.whatsapp-box { margin-top: 20px; background: var(--color-gold); border-radius: 16px; padding: 28px; }
.whatsapp-box h3 { margin-top: 12px; font-size: 18px; line-height: 1.5556em; color: var(--color-navy-900); }
.whatsapp-box p { margin-top: 8px; font-size: 14px; line-height: 1.4286em; color: rgba(15, 23, 42, .75); }
.whatsapp-box__btn { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; background: var(--color-navy-900); color: var(--color-white); border-radius: 999px; padding: 12px 24px; font-size: 14px; font-weight: 600; transition: opacity .2s ease; }
.whatsapp-box__btn:hover { opacity: .85; }

/* ==========================================================================
   Coverage (Contact)
   ========================================================================== */
.coverage { background: var(--color-white); padding-block: 80px; }
.coverage__inner { max-width: 1024px; margin-inline: auto; display: grid; grid-template-columns: 472px 472px; justify-content: space-between; align-items: start; gap: 32px; }
.coverage__text h2 { margin-top: 16px; font-size: 36px; line-height: 1.25em; }
.coverage__text p { margin-top: 20px; font-size: 16px; line-height: 1.625em; color: var(--color-muted); }
.coverage__tags { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.city-tag { background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: 999px; padding: 7px 17px; font-size: 14px; font-weight: 500; color: var(--color-heading); }
.coverage-card { margin-top: 25px; background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: 16px; padding: 33px; text-align: center; }
.coverage-card__icon { display: flex; align-items: center; justify-content: center; }
.coverage-card h3 { margin-top: 16px; font-size: 30px; line-height: 1.2em; }
.coverage-card p { margin-top: 8px; font-size: 16px; line-height: 1.5em; color: var(--color-muted); }
.coverage-card__stats { margin-top: 24px; display: flex; gap: 16px; justify-content: center; }
.coverage-stat { background: var(--color-white); border: 1px solid var(--color-border); border-radius: 20px; padding: 17px; min-width: 195px; text-align: center; }
.coverage-stat__num { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 24px; line-height: 1.3333em; color: var(--color-gold); }
.coverage-stat__label { display: block; font-size: 12px; line-height: 1.3333em; color: var(--color-muted); }

/* ==========================================================================
   FAQ (Contact)
   ========================================================================== */
.faq { background: var(--color-bg-light); padding-block: 96px; }
.faq__list { margin-top: 48px; max-width: 736px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--color-border); border-radius: 16px; background: var(--color-white); overflow: hidden; }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px; font-family: var(--font-heading); font-weight: 600; font-size: 16px; line-height: 1.5em; color: var(--color-heading); text-align: left; }
.faq-item__q img { flex-shrink: 0; transition: transform .25s ease; }
.faq-item.is-open .faq-item__q img { transform: rotate(180deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item__a p { padding: 0 24px 24px; font-size: 15px; line-height: 1.6em; color: var(--color-muted); }

/* ==========================================================================
   Alt final CTA (Contact)
   ========================================================================== */
.cta-alt { position: relative; background: var(--color-navy-900); padding-block: 112px; overflow: hidden; }
.cta-alt__glow {
	position: absolute;
	top: -79px;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 600px;
	border-radius: 999px;
	background: rgba(212, 165, 58, .06);
	filter: blur(64px);
}
.cta-alt__inner { position: relative; max-width: 1536px; margin-inline: auto; text-align: center; }
.cta-alt__inner h2 { font-size: 48px; line-height: 1em; color: var(--color-white); }
.cta-alt__inner p { margin-top: 16px; font-size: 18px; line-height: 1.5556em; color: rgba(255, 255, 255, .7); max-width: 576px; margin-inline: auto; }
.cta-alt__actions { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Services page: Introduction
   ========================================================================== */
.intro { background: var(--color-white); padding-block: 96px; }
.intro__inner { max-width: 896px; margin-inline: auto; text-align: center; }
.intro__inner p { margin-top: 24px; font-size: 18px; line-height: 1.625em; color: var(--color-muted); }
.intro__stats { margin-top: 40px; display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.intro__stat { display: flex; flex-direction: column; align-items: center; }
.intro__stat-num { font-family: var(--font-heading); font-weight: 700; font-size: 36px; line-height: 1.1111em; color: var(--color-gold); }
.intro__stat-label { margin-top: 4px; font-size: 14px; line-height: 1.4286em; color: var(--color-muted); }

/* ==========================================================================
   Services page: Category accordion (Core / Additional Services)
   ========================================================================== */
.service-group { padding-block: 96px; }
.service-group--alt { background: var(--color-bg-light); }
.service-accordion { margin-top: 56px; display: flex; flex-direction: column; gap: 16px; }
.service-cat { border: 1px solid var(--color-border); border-radius: 16px; background: var(--color-white); overflow: hidden; transition: box-shadow .2s ease; }
.service-cat.is-open { box-shadow: 0 10px 24px rgba(20, 41, 77, .08); }
.service-cat__head { width: 100%; display: flex; align-items: center; gap: 20px; padding: 24px 28px; text-align: left; }
.service-cat__icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 16px; background: rgba(20, 41, 77, .05); display: flex; align-items: center; justify-content: center; }
.service-cat__title-group { flex-grow: 1; }
.service-cat__title-group h3 { font-family: var(--font-heading); font-weight: 700; font-size: 20px; line-height: 1.4em; color: var(--color-heading); }
.service-cat__title-group p { margin-top: 4px; font-size: 14px; line-height: 1.4286em; color: var(--color-muted); }
.service-cat__count { flex-shrink: 0; font-size: 13px; font-weight: 600; color: var(--color-gold); background: rgba(212, 165, 58, .1); border-radius: 999px; padding: 4px 12px; white-space: nowrap; }
.service-cat__chevron { flex-shrink: 0; transition: transform .25s ease; }
.service-cat.is-open .service-cat__chevron { transform: rotate(180deg); }
.service-cat__body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.service-cat__list { padding: 0 28px 28px; margin-top: 4px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 24px; border-top: 1px solid var(--color-border); padding-top: 20px; }
.service-cat__list li { display: flex; align-items: center; gap: 8px; font-size: 15px; line-height: 1.4667em; color: var(--color-muted); }
.service-cat__list li img { flex-shrink: 0; }

/* ==========================================================================
   Services page: Industries We Serve
   ========================================================================== */
.industries { background: var(--color-white); padding-block: 96px; }
.industries__grid { margin-top: 56px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.industry-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: 16px; padding: 28px 16px; transition: transform .25s ease, box-shadow .25s ease; }
.industry-card:hover { transform: translateY(-4px); box-shadow: 0 12px 20px rgba(20, 41, 77, .1); }
.industry-card__icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(20, 41, 77, .05); display: flex; align-items: center; justify-content: center; }
.industry-card h3 { margin-top: 16px; font-family: var(--font-heading); font-weight: 600; font-size: 14px; line-height: 1.4286em; color: var(--color-heading); }

/* ==========================================================================
   Services page: Why Choose Us grid (3-col variant)
   ========================================================================== */
.why-grid { background: var(--color-bg-light); padding-block: 96px; }
.why-grid__cards { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ==========================================================================
   Services Page — category highlights
   ========================================================================== */
.category-highlights { margin-top: 56px; display: flex; justify-content: center; flex-wrap: nowrap; gap: 32px; }
.category-highlight { display: flex; flex: 1 1 0; min-width: 0; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; max-width: 320px; }
.category-highlight__icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(20, 41, 77, .05);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.category-highlight h3 { font-size: 18px; line-height: 1.4em; margin-bottom: 4px; }
.category-highlight p { font-size: 14px; line-height: 1.5714em; color: var(--color-muted); }


/* ==========================================================================
   Services Page — additional services grid
   ========================================================================== */
.additional-services { background: var(--color-white); padding-block: 96px; }
.additional-services__grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.service-grid-card {
	display: flex;
	flex-direction: column;
	background: var(--color-bg-light);
	border: 1px solid var(--color-border);
	border-radius: 20px;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
}
.service-grid-card:hover { transform: translateY(-6px); box-shadow: 0 20px 30px rgba(20, 41, 77, .12); }

.service-grid-card__image { aspect-ratio: 4 / 3; overflow: hidden; }
.service-grid-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-grid-card:hover .service-grid-card__image img { transform: scale(1.05); }

.service-grid-card__body { padding: 28px; display: flex; flex-direction: column; flex-grow: 1; }
.service-grid-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.service-grid-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(20, 41, 77, .05);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.service-grid-card h3 { font-size: 19px; line-height: 1.35em; }
.service-grid-card__body > p { margin-top: 4px; font-size: 14px; line-height: 1.6em; color: var(--color-muted); margin-bottom: 16px; }

.service-grid-card__includes { display: flex; flex-direction: column; gap: 8px; }
.service-grid-card__includes li,
.service-grid-card__more ul li { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--color-heading); }
.service-grid-card__includes li img,
.service-grid-card__more ul li img { flex-shrink: 0; }

.service-grid-card__more { margin-top: 8px; margin-bottom: 20px; }
.service-grid-card__more summary {
	cursor: pointer;
	font-size: 13px;
	font-weight: 700;
	color: var(--color-gold);
	list-style: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border: 1px solid var(--color-gold);
	border-radius: 999px;
	transition: background-color .2s ease, color .2s ease;
}
.service-grid-card__more summary:hover { background: var(--color-gold); color: var(--color-white); }
.service-grid-card__more summary:hover .service-grid-card__more-chevron { filter: brightness(0) invert(1); }
.service-grid-card__more summary::-webkit-details-marker { display: none; }
.service-grid-card__more-chevron { transition: transform .2s ease; }
.service-grid-card__more[open] .service-grid-card__more-chevron { transform: rotate(180deg); }
.service-grid-card__more ul { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }

.service-grid-card__actions { margin-top: auto; display: flex; gap: 12px; align-items: center; }
.service-grid-card__actions .btn { flex: 1 1 auto; height: 44px; padding: 0 16px; font-size: 14px; }
.service-grid-card__wa {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1.5px solid var(--color-navy-800);
	color: var(--color-navy-800);
	flex-shrink: 0;
	transition: background-color .2s ease, color .2s ease;
}
.service-grid-card__wa:hover { background: var(--color-navy-800); color: var(--color-white); }

/* ==========================================================================
   Responsive breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
	.trust__grid { grid-template-columns: repeat(3, 1fr); }
	.services__grid { grid-template-columns: repeat(2, 1fr); }
	.process__grid { grid-template-columns: repeat(2, 1fr); }
	.projects__grid { grid-template-columns: repeat(3, 1fr); }
	.why__inner,
	.safety__inner { grid-template-columns: 1fr; gap: 48px; }
	.why__media-frame,
	.safety__media { height: 560px; }
	.hero__floating { display: none; }
	.footer__top { grid-template-columns: 1fr 1fr; }

	.story__inner,
	.safety-alt__inner { grid-template-columns: 1fr; gap: 48px; }
	.story__media-frame,
	.safety-alt__media { height: 560px; }
	.team__inner { grid-template-columns: 1fr; }
	.team__media { margin-top: 32px; height: 320px; }
	.coverage__inner { grid-template-columns: 1fr; }
	.quote-form-grid { grid-template-columns: 1fr; }

	.industries__grid { grid-template-columns: repeat(3, 1fr); }
	.why-grid__cards { grid-template-columns: repeat(2, 1fr); }
	.service-cat__list { grid-template-columns: repeat(2, 1fr); }
	.additional-services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
	.hero { min-height: auto; padding-block: 160px 64px; }
	.hero__content { padding-top: 0; }
	.hero__title { font-size: 56px; }
	.nav__links { gap: 20px; }

	.page-hero--services,
	.page-hero--about,
	.page-hero--contact { height: auto; min-height: auto; padding-block: 70px; }
	.page-hero__content { padding-top: 0; }
	.page-hero__title { font-size: 48px; }
	.mv__grid,
	.values__grid,
	.expertise__grid { grid-template-columns: repeat(2, 1fr); }
	.quick-contact__grid { grid-template-columns: 1fr; }

	.section-head h2 { font-size: 40px; }
	.why__content h2,
	.safety__content h2 { font-size: 40px; }
	.cta-final__inner h2 { font-size: 48px; }
	.cta-mid__inner h2,
	.story__content h2,
	.team__text h2,
	.safety-alt__content h2,
	.coverage__text h2 { font-size: 32px; }
	.trust-slider__card h2 { font-size: 32px; }
	.featured-service__content h3 { font-size: 28px; }
	.featured-services__cta h3 { font-size: 26px; }
	.coverage-card h3 { font-size: 28px; }
	.process-card__num { font-size: 40px; }

	.featured-services,
	.process,
	.projects,
	.safety,
	.testimonials,
	.cta-final,
	.cta-mid,
	.story,
	.mv,
	.values,
	.expertise,
	.team,
	.safety-alt,
	.quick-contact,
	.quote-form-section,
	.coverage,
	.faq,
	.cta-alt,
	.intro,
	.service-group,
	.industries,
	.why-grid,
	.additional-services { padding-block: 80px; }
}

@media (max-width: 900px) {
	.site-header { padding-top: 0; }
	.nav__logo img { height: 64px; }
	section#services { padding-top: 0px !important; }
	.page-hero--services .page-hero__content { padding-top: 60px; }
	.page-hero--about .page-hero__content { padding-top: 40px !important; }
	.container.hero__content { padding-top: 53px; }
	.hero__stats.is-visible {
		margin-top: 20px;
		padding-top: 20px !important;
	}
	.why__media-frame,
	.safety__media,
	.story__media-frame,
	.safety-alt__media { height: 340px; }
	.nav__toggle { display: flex; }

	.nav__panel {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		width: min(320px, 80vw);
		background: rgba(10, 15, 30, .98);
		padding: 100px 24px 24px;
		overflow-y: auto;
		transform: translateX(-100%);
		transition: transform .35s ease;
		z-index: 99;
	}
	.nav.is-open .nav__panel { transform: translateX(0); }

	.nav__links {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		gap: 0;
	}
	.nav__links li { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }

	.nav__cta { margin-top: 24px; }

	.services__grid { grid-template-columns: 1fr; }
	.process__grid { grid-template-columns: 1fr; }
	.process-card { padding: 24px; }
	.process-card__num { font-size: 36px; }
	.projects__grid { grid-template-columns: repeat(2, 1fr); }
	.safety__grid { grid-template-columns: 1fr; }
	.footer__top { grid-template-columns: 1fr; }

	.trust-slider { height: 560px; }
	.trust-slider__card { padding: 32px; }
	.trust-slider__card h2 { font-size: 28px; }

	.hero__title { font-size: 44px; }
	.hero__subtitle { font-size: 18px; }
	.section-head h2 { font-size: 36px; }
	.why__content h2,
	.safety__content h2 { font-size: 36px; }
	.cta-final__inner h2 { font-size: 40px; }
	.cta-mid__inner h2,
	.story__content h2,
	.team__text h2,
	.safety-alt__content h2,
	.coverage__text h2 { font-size: 30px; }
	.featured-service__content h3 { font-size: 26px; }
	.featured-services__cta h3 { font-size: 24px; }
	.coverage-card h3 { font-size: 26px; }
	.intro__inner p { margin-top: 12px; }

	.page-hero__title { font-size: 36px; }
	.mv__grid { grid-template-columns: 1fr; }
	.values__grid { grid-template-columns: 1fr 1fr; }
	.expertise__grid { grid-template-columns: repeat(2, 1fr); }
	.safety-alt__grid { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }
	.cta-alt__inner h2 { font-size: 36px; }
	.hero-badges { flex-wrap: nowrap; gap: 12px; }
	.hero-tags { gap: 12px; }
	.hero-badge { flex: 1 1 0; min-width: 0; padding: 14px 16px; }

	.industries__grid { grid-template-columns: repeat(2, 1fr); }
	.why-grid__cards { grid-template-columns: 1fr; }
	.service-cat__head { flex-wrap: wrap; }
	.service-cat__count { order: 1; }

	.category-highlights { gap: 20px; }
	.category-highlight { max-width: none; }
	.service-discovery__filters { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
	.service-discovery__filters .service-filter { flex-shrink: 0; }
}

@media (max-width: 640px) {
	.btn { padding: 14px 22px; font-size: 15px; white-space: normal; text-align: center; }

	.hero { padding-block: 60px; }
	.hero__actions { flex-direction: column; width: 100%; }
	.hero__actions .btn { width: 100%; }
	.hero__stats { flex-wrap: nowrap; gap: 8px; }
	.hero__stat { flex: 1 1 0; min-width: 0; flex-direction: column; align-items: center; text-align: center; gap: 2px; }
	.hero__stat-num { font-size: 16px; }
	.hero__stat-label { font-size: 10px; }

	.projects__grid { grid-template-columns: 1fr; }

	.trust-slider { height: auto; }
	.trust-slider__content { height: auto; padding-block: 72px; }
	.trust-slider__card { padding: 28px; }
	.trust-slider__list { grid-template-columns: 1fr; }

	.hero__title { font-size: 32px; }
	.hero-badges { gap: 8px; }
	.hero-badge { padding: 10px 8px; text-align: center; }
	.hero-badge__num { font-size: 18px; }
	.hero-badge__label { font-size: 10px; }
	.hero-tags { flex-wrap: nowrap; gap: 8px; }
	.hero-tag { flex: 1 1 0; min-width: 0; flex-direction: column; align-items: center; text-align: center; padding: 10px 8px; gap: 6px; }
	.hero-tag img { width: 14px; height: 14px; flex-shrink: 0; }
	.hero-tag__text { align-items: center; }
	.hero-tag__title { font-size: 11px; }
	.hero-tag__sub { font-size: 9px; }
	.section-head h2 { font-size: 28px; }
	.why__content h2,
	.safety__content h2 { font-size: 28px; }
	.cta-final__inner h2 { font-size: 28px; }
	.cta-final__actions { flex-direction: column; width: 100%; }
	.cta-final__actions .btn { width: 100%; }

	.testimonial-card { padding: 28px; }
	.testimonial-card__quote { font-size: 17px; }

	.footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

	.page-hero--services,
	.page-hero--about,
	.page-hero--contact { padding-block: 70px; }
	.page-hero--services .page-hero__content,
	.page-hero--about .page-hero__content,
	.page-hero--contact .page-hero__content { padding-top: 0; }
	.page-hero--services .page-hero__content { padding-top: 60px; }
	.page-hero--about .page-hero__content { padding-top: 40px !important; }

	.featured-services,
	.process,
	.projects,
	.safety,
	.testimonials,
	.cta-final,
	.cta-mid,
	.story,
	.mv,
	.values,
	.expertise,
	.team,
	.safety-alt,
	.quick-contact,
	.quote-form-section,
	.coverage,
	.faq,
	.cta-alt,
	.intro,
	.service-group,
	.industries,
	.why-grid,
	.additional-services { padding-block: 60px; }

	.page-hero__title { font-size: 28px; }
	.page-hero__actions { flex-direction: column; width: 100%; }
	.page-hero__actions .btn { width: 100%; }
	.values__grid,
	.quote-form-grid,
	.coverage-card__stats { grid-template-columns: 1fr; }
	.coverage-card__stats { display: flex; flex-direction: column; }
	.cta-mid__inner h2,
	.mv__grid,
	.mv-card,
	.story__content h2,
	.team__text h2,
	.safety-alt__content h2,
	.coverage__text h2 { font-size: inherit; }
	.cta-mid__inner h2 { font-size: 28px; }
	.story__content h2,
	.team__text h2,
	.safety-alt__content h2,
	.coverage__text h2 { font-size: 26px; }
	.cta-alt__inner h2 { font-size: 28px; }
	.cta-alt__actions,
	.cta-mid__actions { flex-direction: column; width: 100%; }
	.cta-alt__actions .btn,
	.cta-mid__actions .btn { width: 100%; }
	.form-row { grid-template-columns: 1fr; }

	.industries__grid { grid-template-columns: repeat(2, 1fr); }
	.service-cat__list { grid-template-columns: 1fr; }
	.service-cat__head { padding: 20px; gap: 12px; }
	.service-cat__icon { width: 44px; height: 44px; }
	.intro__stats { gap: 24px; }

	.additional-services__grid { grid-template-columns: 1fr; }
	.service-grid-card__actions .btn { width: 100%; }

	.expertise__grid { grid-template-columns: repeat(2, 1fr); }
	.category-highlights { gap: 12px; }
	.category-highlight__icon { width: 40px; height: 40px; border-radius: 12px; }
	.category-highlight h3 { font-size: 15px; }
	.category-highlight p { font-size: 12px; }

	.featured-service__actions { flex-direction: column; width: 100%; }
	.featured-service__actions .btn { width: 100%; }

	.trust-slider__card h2 { font-size: 24px; }
	.featured-service__content h3 { font-size: 22px; }
	.featured-services__cta h3 { font-size: 20px; }
	.coverage-card h3 { font-size: 22px; }

	.process-card { padding: 20px; }
	.process-card__head { gap: 12px; }
	.process-card__num { font-size: 28px; }
	.process-card__head h3 { font-size: 17px; }

	.hero__subtitle,
	.page-hero__subtitle,
	.section-head > p,
	.safety__lead,
	.cta-mid__inner p,
	.cta-alt__inner p,
	.intro__inner p { font-size: 16px; }
}

/* ==========================================================================
   Language switcher (header)
   ========================================================================== */
.nav__lang { display: flex; align-items: center; gap: 8px; font-size: 14px; line-height: 1.4286em; font-weight: 500; }
.nav__lang-link { color: rgba(255, 255, 255, .6); transition: color .2s ease; }
.nav__lang-link:hover { color: var(--color-white); }
.nav__lang-link.is-active { color: var(--color-gold); font-weight: 600; }
.nav__lang-sep { color: rgba(255, 255, 255, .3); }
