*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	background: var(--color-paper);
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: var(--font-size-body);
	line-height: var(--line-height-body);
	overflow-x: hidden;
}

img,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

a {
	color: var(--color-accent);
}

.container {
	width: min(100% - 2rem, var(--content-width));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 100;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: normal;
	background: var(--color-ink);
	color: var(--color-surface);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	border-bottom: 1px solid var(--color-border);
	background: var(--color-surface);
}

.site-header--over-hero {
	position: absolute;
	width: 100%;
	border-bottom-color: transparent;
	border-bottom-color: rgba(255, 255, 255, 0.24);
	background: transparent;
	color: var(--color-white);
}

.site-header--over-hero.is-scrolled {
	position: fixed;
	border-bottom-color: var(--color-border);
	background: var(--color-navy);
	box-shadow: 0 0.5rem 1.5rem rgba(18, 40, 63, 0.16);
}

.site-header__inner,
.site-footer__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 1.25rem;
}

.site-title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
}

.site-title a {
	color: inherit;
	text-decoration: none;
}

.site-branding {
	flex: 1 1 auto;
}

.custom-logo {
	max-height: 3.25rem;
	width: auto;
}

.menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation {
	max-height: 0;
	overflow: hidden;
	flex-basis: 100%;
	opacity: 0;
	transition: max-height 240ms ease, opacity 180ms ease;
}

.primary-navigation.is-open {
	max-height: 40rem;
	opacity: 1;
}

.menu--wordpress,
.menu--services {
	align-items: center;
}

.primary-navigation .menu-item a,
.submenu-toggle {
	display: inline-flex;
	align-items: center;
	gap: var(--space-1);
	padding-block: var(--space-2);
	border: 0;
	background: transparent;
	color: var(--color-navy);
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
	font-weight: 700;
	text-decoration: none;
}

.site-header--over-hero:not(.is-scrolled) .primary-navigation .menu-item a,
.site-header--over-hero:not(.is-scrolled) .submenu-toggle,
.site-header--over-hero:not(.is-scrolled) .header-contact__phone {
	color: var(--color-white);
}

.primary-navigation .menu-item a:hover,
.primary-navigation .menu-item a:focus-visible,
.submenu-toggle:hover,
.submenu-toggle:focus-visible {
	color: var(--color-blue);
}

.submenu-toggle {
	cursor: pointer;
}

.submenu-toggle span {
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1;
}

.sub-menu {
	display: none;
	padding: var(--space-2) 0;
	margin: 0;
	list-style: none;
}

.services-menu-item.is-open .sub-menu {
	display: grid;
	gap: var(--space-1);
}

.menu-toggle {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	padding: var(--space-2);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: var(--color-white);
	color: var(--color-navy);
	cursor: pointer;
}

.menu-toggle__label {
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
	font-weight: 700;
}

.menu-toggle__icon {
	display: grid;
	gap: 0.25rem;
	width: 1.25rem;
}

.menu-toggle__icon span {
	display: block;
	height: 2px;
	background: currentColor;
	transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:first-child {
	transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:last-child {
	transform: translateY(-6px) rotate(-45deg);
}

.header-contact {
	display: none;
	align-items: center;
	gap: var(--space-3);
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
}

.header-contact__phone {
	color: var(--color-navy);
	font-weight: 700;
	text-decoration: none;
}

.header-contact__whatsapp {
	display: inline-flex;
	align-items: center;
	gap: var(--space-1);
	padding: var(--space-2) var(--space-3);
	border-radius: var(--radius-sm);
	background: #1f9d55;
	color: var(--color-white);
	font-weight: 700;
	text-decoration: none;
}

.header-contact__whatsapp span {
	font-size: 0.7rem;
}

.site-main {
	min-height: 60vh;
}

.content-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-8);
}

.site-sidebar {
	padding-bottom: var(--space-12);
}

.widget {
	padding: var(--space-5);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
}

.widget + .widget {
	margin-top: var(--space-4);
}

.widget-title {
	margin-top: 0;
	color: var(--color-navy);
	font-family: var(--font-sans);
	font-size: var(--font-size-h6);
}

.contact-widget {
	display: grid;
	gap: var(--space-2);
}

.contact-widget h2 {
	margin: 0 0 var(--space-2);
	font-family: var(--font-sans);
	font-size: var(--font-size-h5);
}

.contact-widget a {
	font-family: var(--font-sans);
	font-weight: 700;
}

.content-area,
.front-page-hero {
	padding-block: 3rem;
}

.front-page-details {
	background: var(--color-light-gray);
}

.front-page-details__content {
	padding-block: 3rem;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

.front-page-hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: min(48rem, 88vh);
	overflow: hidden;
	padding-block: 9rem 4rem;
	background: var(--color-navy);
	color: var(--color-white);
}

.front-page-hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(9, 25, 40, 0.94), rgba(18, 40, 63, 0.62) 52%, rgba(18, 40, 63, 0.2));
}

/* Background slideshow: 5 photos crossfading with a slow Ken-Burns zoom,
   each getting its own slot in one shared 25s loop via animation-delay.
   The wrapper (not the individual images) is what the GSAP scroll parallax
   in front-page.js translates, so the whole stack of photos moves as one
   layer regardless of which slide is currently visible — same reason it's
   also the wrapper that carries the extra height/offset buffer, so that
   translate never exposes an edge underneath. .front-page-hero__image is
   kept as the first slide's own class name (nothing else changes about
   it) because the header-footer plugin's featured-image/hero-video swap
   regexes key off that exact class. */
.front-page-hero__bg {
	position: absolute;
	top: -15%;
	left: 0;
	right: 0;
	height: 130%;
	overflow: hidden;
}

.front-page-hero__bg img,
.front-page-hero__bg video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	animation: hero-crossfade 25s infinite;
}

.front-page-hero__bg img:first-child,
.front-page-hero__bg video:first-child {
	animation-name: hero-crossfade-first;
}

.front-page-hero__bg img:nth-child(2) {
	animation-delay: 5s;
}

.front-page-hero__bg img:nth-child(3) {
	animation-delay: 10s;
}

.front-page-hero__bg img:nth-child(4) {
	animation-delay: 15s;
}

.front-page-hero__bg img:nth-child(5) {
	animation-delay: 20s;
}

@keyframes hero-crossfade {
	0% {
		opacity: 0;
		transform: scale(1.08);
	}
	3% {
		opacity: 1;
	}
	17% {
		opacity: 1;
	}
	20% {
		opacity: 0;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1);
	}
}

@keyframes hero-crossfade-first {
	0% {
		opacity: 1;
		transform: scale(1.08);
	}
	17% {
		opacity: 1;
	}
	20% {
		opacity: 0;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.front-page-hero__bg img,
	.front-page-hero__bg video {
		animation: none !important;
		opacity: 0 !important;
		transform: none !important;
	}

	.front-page-hero__bg img:first-child,
	.front-page-hero__bg video:first-child {
		opacity: 1 !important;
	}
}

.front-page-hero__inner {
	position: relative;
	z-index: 1;
}

.front-page-hero__eyebrow {
	margin: 0 0 var(--space-4);
	color: var(--color-gold);
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	animation: hero-reveal 700ms ease-out both;
}

.front-page-hero h1,
.page-header h1,
.no-results h1 {
	max-width: 42rem;
	margin-top: 0;
	font-size: clamp(2.25rem, 8vw, 4.5rem);
	line-height: 1.05;
}

.front-page-hero h1 {
	margin-bottom: var(--space-4);
	animation: hero-reveal 700ms 100ms ease-out both;
}

.front-page-hero__content {
	max-width: 42rem;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.65;
	animation: hero-reveal 700ms 200ms ease-out both;
}

.front-page-hero__cta {
	gap: var(--space-3);
	margin-top: var(--space-4);
	animation: hero-reveal 700ms 300ms ease-out both;
}

.front-page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
	margin-top: var(--space-6);
	animation: hero-reveal 700ms 300ms ease-out both;
}

.front-page-hero__actions .btn-outline {
	border-color: var(--color-white);
	color: var(--color-white);
}

.front-page-hero__actions .btn-outline:hover,
.front-page-hero__actions .btn-outline:focus-visible {
	background: var(--color-white);
	color: var(--color-navy);
}

.trust-bar {
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border);
}

.trust-bar__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-stat {
	display: grid;
	gap: var(--space-1);
	min-height: 7rem;
	place-content: center;
	padding: var(--space-4);
	border-right: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	text-align: center;
}

.trust-stat:nth-child(even) {
	border-right: 0;
}

.trust-stat:nth-last-child(-n + 2) {
	border-bottom: 0;
}

.trust-stat strong {
	color: var(--color-navy);
	font-family: var(--font-sans);
	font-size: 1.65rem;
}

.trust-stat span {
	color: var(--color-muted);
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
	font-weight: 700;
}

.services-section {
	padding-block: var(--space-16);
}

.section-heading {
	max-width: 42rem;
	margin-bottom: var(--space-8);
}

.section-heading__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0 0 var(--space-2);
	color: var(--color-blue);
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section-heading__eyebrow::before {
	content: '';
	display: inline-block;
	width: 1.5rem;
	height: 3px;
	background: var(--color-gold);
	flex-shrink: 0;
}

/* Every hero sits on a dark photo, where the default --color-blue eyebrow
   (tuned for the white/light-gray section backgrounds it's used on
   elsewhere) reads as a barely-visible dark smudge — same white family as
   the heading and subtitle beside it, just slightly dimmer for hierarchy,
   instead of a clashing third color. */
.front-page-hero__inner .section-heading__eyebrow,
.category-hero__inner .section-heading__eyebrow,
.about-page-hero__inner .section-heading__eyebrow,
.contact-page-hero__inner .section-heading__eyebrow,
.projects-page-hero__inner .section-heading__eyebrow {
	color: rgba(255, 255, 255, 0.85);
}

.section-heading h2 {
	margin: 0 0 var(--space-3);
	color: var(--color-navy);
	font-size: var(--font-size-h2);
	line-height: var(--line-height-tight);
}

.section-heading > p:last-child {
	margin: 0;
	color: var(--color-muted);
}

.service-card {
	padding: 0;
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
	transform: translateY(-0.25rem);
	box-shadow: 0 1rem 2rem rgba(18, 40, 63, 0.12);
}

.service-card__body {
	position: relative;
	padding: var(--space-5);
}

.service-card__number {
	position: absolute;
	top: var(--space-5);
	right: var(--space-5);
	color: var(--color-gold);
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
	font-weight: 700;
}

.service-card h3 {
	max-width: 13rem;
	margin: 0 0 var(--space-2);
	color: var(--color-navy);
	font-size: var(--font-size-h5);
	line-height: var(--line-height-tight);
}

.service-card p {
	margin: 0 0 var(--space-4);
	color: var(--color-muted);
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
}

.service-card__link {
	color: var(--color-blue);
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
	font-weight: 700;
	text-decoration: none;
}

.service-card__link:hover {
	color: var(--color-navy);
}

.about-section {
	padding-block: var(--space-16);
}

.about-section__grid {
	display: grid;
	gap: var(--space-8);
	align-items: center;
}

.about-section__media {
	position: relative;
}

.about-section__media img {
	width: 100%;
	height: 20rem;
	object-fit: cover;
	border-radius: var(--radius-md);
}

.about-section__stamp {
	position: absolute;
	right: var(--space-4);
	bottom: var(--space-4);
	display: grid;
	place-content: center;
	width: 5.5rem;
	height: 5.5rem;
	border-radius: 0;
	background: var(--color-gold);
	color: var(--color-navy);
	font-family: var(--font-sans);
	font-size: var(--font-size-h5);
	font-weight: 800;
	line-height: 1;
	text-align: center;
}

.about-section__stamp small {
	margin-top: var(--space-1);
	font-size: 0.6rem;
	font-weight: 700;
	text-transform: uppercase;
}

.about-section__copy h2 {
	margin: 0 0 var(--space-4);
	color: var(--color-navy);
	font-size: var(--font-size-h2);
	line-height: var(--line-height-tight);
}

.about-section__copy > p:not(.section-heading__eyebrow) {
	margin: 0 0 var(--space-5);
	color: var(--color-muted);
	line-height: var(--line-height-loose);
}

.about-section__cta {
	margin-top: var(--space-8);
}

.section-heading--split {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space-4);
	max-width: none;
}

@media (min-width: 48rem) {
	.section-heading--split {
		flex-direction: row;
		align-items: end;
		justify-content: space-between;
	}
}

.section-heading--split .btn-outline {
	flex-shrink: 0;
	border-color: var(--color-navy);
	color: var(--color-navy);
}

.projects-showcase {
	display: grid;
	grid-auto-columns: minmax(15rem, 78vw);
	grid-auto-flow: column;
	gap: var(--space-4);
	overflow-x: auto;
	padding-bottom: var(--space-2);
	scroll-snap-type: x mandatory;
}

.project-tile {
	position: relative;
	height: 18rem;
	overflow: hidden;
	border-radius: var(--radius-md);
	background: var(--color-navy);
	color: var(--color-white);
	scroll-snap-align: start;
	text-decoration: none;
}

.project-tile::after {
	position: absolute;
	inset: 35% 0 0;
	background: linear-gradient(transparent, rgba(18, 40, 63, 0.9));
	content: '';
}

.project-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.project-tile:hover img {
	transform: scale(1.05);
}

.projects-showcase-empty {
	padding: var(--space-8);
	border: 1px dashed var(--color-border);
	color: var(--color-muted);
	text-align: center;
}


.testimonials-section {
	background: var(--color-light-gray);
}

.testimonials-section__inner {
	display: grid;
	gap: var(--space-8);
}

.testimonial-slider {
	max-width: 52rem;
}

.testimonial-slides {
	min-height: 14rem;
}

.testimonial-slide {
	display: none;
	margin: 0;
	animation: testimonial-in 400ms ease both;
}

.testimonial-slide.is-active {
	display: block;
}

.testimonial-slide blockquote {
	margin: 0 0 var(--space-6);
	color: var(--color-navy);
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 700;
	line-height: 1.25;
}

.testimonial-slide figcaption {
	display: grid;
	gap: var(--space-1);
	font-family: var(--font-sans);
}

.testimonial-slide figcaption span {
	color: var(--color-muted);
	font-size: var(--font-size-small);
}

.testimonial-controls {
	display: flex;
	align-items: center;
	gap: var(--space-3);
}

.testimonial-arrow {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid var(--color-navy);
	border-radius: 0;
	background: transparent;
	color: var(--color-navy);
	cursor: pointer;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
	background: var(--color-navy);
	color: var(--color-white);
}

.testimonial-dots {
	display: flex;
	gap: var(--space-2);
	margin-inline: auto;
}

.testimonial-dots button {
	width: 0.55rem;
	height: 0.55rem;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: var(--color-border);
	cursor: pointer;
}

.testimonial-dots button.is-active {
	background: var(--color-gold);
	transform: scale(1.35);
}

@keyframes testimonial-in {
	from { opacity: 0; transform: translateX(1rem); }
	to { opacity: 1; transform: translateX(0); }
}

.bottom-cta {
	background: var(--color-navy);
	color: var(--color-white);
}

.bottom-cta__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-6);
	padding-block: var(--space-12);
}

.bottom-cta h2 {
	margin: 0;
	font-size: var(--font-size-h2);
	line-height: var(--line-height-tight);
}

.bottom-cta .section-heading__eyebrow {
	margin-bottom: var(--space-2);
	color: var(--color-gold);
}

.bottom-cta__lead {
	max-width: 38rem;
	margin-top: var(--space-2);
	color: rgba(255, 255, 255, 0.85);
}

.bottom-cta__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--space-4);
}

.bottom-cta__actions .btn-outline {
	border-color: var(--color-white);
	color: var(--color-white);
}

.bottom-cta__actions .btn-outline:hover,
.bottom-cta__actions .btn-outline:focus-visible {
	background: var(--color-white);
	color: var(--color-navy);
}

.category-hero {
	position: relative;
	min-height: 24rem;
	overflow: hidden;
	background: var(--color-navy);
	color: var(--color-white);
}

/* Background slideshow: this page's own photo plus its related services'
   (the same set the .category-slider strip further down uses) crossfading
   with a slow zoom — always exactly 4 images, so a fixed 20s/4-slide cycle
   is fine here (the home page's equivalent has 5 and runs 25s). Reuses the
   home page's keyframes since the percentages are duration-relative, not
   image-count-specific. */
.category-hero__bg {
	position: absolute;
	inset: 0;
}

.category-hero__bg img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	animation: hero-crossfade 20s infinite;
}

.category-hero__bg img:first-child {
	animation-name: hero-crossfade-first;
}

.category-hero__bg img:nth-child(2) {
	animation-delay: 5s;
}

.category-hero__bg img:nth-child(3) {
	animation-delay: 10s;
}

.category-hero__bg img:nth-child(4) {
	animation-delay: 15s;
}

@media (prefers-reduced-motion: reduce) {
	.category-hero__bg img {
		animation: none !important;
		opacity: 0 !important;
	}

	.category-hero__bg img:first-child {
		opacity: 1 !important;
	}
}

.category-hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(18, 40, 63, 0.94), rgba(18, 40, 63, 0.42));
}

.category-hero__inner {
	position: relative;
	display: grid;
	align-content: end;
	min-height: 24rem;
	padding-block: 7rem 3rem;
}

.category-hero h1 {
	max-width: 48rem;
	margin: 0 0 var(--space-3);
	font-size: clamp(2.25rem, 7vw, 4.5rem);
	line-height: var(--line-height-tight);
}

.category-hero p:last-child {
	max-width: 40rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.15rem;
}

.category-description h2,
.category-features h2,
.related-categories h2,
.quote-request h2 {
	margin: 0 0 var(--space-4);
	color: var(--color-navy);
	font-size: var(--font-size-h2);
	line-height: var(--line-height-tight);
}

.category-description__rich-text {
	color: var(--color-muted);
	font-size: 1.1rem;
	line-height: var(--line-height-loose);
}

.category-description__rich-text > :first-child {
	margin-top: 0;
}

.category-description__rich-text ul {
	margin: 0 0 var(--space-4);
	padding: 0;
	list-style: none;
}

.category-description__rich-text li {
	position: relative;
	padding-left: var(--space-6);
	margin-bottom: var(--space-2);
}

.category-description__rich-text li::before {
	content: "";
	position: absolute;
	top: 0.6em;
	left: 0.2rem;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 0;
	background: var(--color-gold);
}

.category-description__rich-text a {
	color: var(--color-blue);
	font-weight: 700;
}

.category-features-section,
.related-categories,
.quote-request {
	padding-block: var(--space-12);
}

/* --- Photo slider: a short, continuously auto-scrolling strip (this page's
   own photo plus each related service's), pausable on hover/focus. The
   track is the image list rendered twice back to back; animating exactly
   -50% of its width loops it seamlessly regardless of how many photos are
   in the real (first) half. prefers-reduced-motion already collapses any
   animation to a single instant frame via the global rule in this file. --- */
.category-slider {
	overflow: hidden;
	background: var(--color-navy);
}

.category-slider__track {
	display: flex;
	width: max-content;
	animation: category-slider-scroll 32s linear infinite;
}

.category-slider:hover .category-slider__track,
.category-slider:focus-within .category-slider__track {
	animation-play-state: paused;
}

.category-slider__slide {
	flex: 0 0 auto;
	width: 16rem;
	height: 9rem;
}

.category-slider__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes category-slider-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (min-width: 48rem) {
	.category-slider__slide {
		width: 20rem;
		height: 11rem;
	}
}

/* --- Intro: the brief, full width now that the photo lives in the slider
   above --- */
.category-intro {
	padding-block: var(--space-12);
}

.category-intro__copy {
	max-width: 42rem;
}

.category-intro__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
	margin-top: var(--space-6);
}

.category-features-section {
	padding-inline: var(--space-8);
	background: var(--color-navy);
	color: var(--color-white);
}

.category-features-section .section-heading__eyebrow {
	color: var(--color-gold);
}

.category-features-section h2 {
	color: var(--color-white);
}

.category-features {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-4);
}

.category-feature {
	padding: var(--space-5);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-md);
	transition: border-color 160ms ease, background-color 160ms ease;
}

.category-feature:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--color-gold);
}

.category-feature__icon {
	display: grid;
	place-items: center;
	width: 2.25rem;
	height: 2.25rem;
	margin-bottom: var(--space-4);
	border-radius: 0;
	background: var(--color-gold);
	color: var(--color-navy);
	font-family: var(--font-sans);
	font-weight: 800;
}

.category-feature h3 {
	margin: 0 0 var(--space-2);
	color: var(--color-white);
	font-size: var(--font-size-h6);
}

.category-feature p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: var(--font-size-small);
	line-height: var(--line-height-body);
}

/* --- Related categories: real product photo + hover lift, matching the
   home page service cards for one consistent visual language site-wide. --- */
.related-category-card {
	display: flex;
	flex-direction: column;
	padding: 0;
	overflow: hidden;
	color: var(--color-navy);
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-category-card:hover {
	transform: translateY(-0.25rem);
	box-shadow: 0 1rem 2rem rgba(18, 40, 63, 0.12);
}

.related-category-card__media {
	height: 10rem;
	overflow: hidden;
}

.related-category-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.related-category-card__icon {
	display: grid;
	place-items: center;
	height: 10rem;
	background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
	color: var(--color-gold);
	font-size: 1.75rem;
}

.related-category-card__body {
	padding: var(--space-5);
}

.related-category-card h3 {
	margin: 0 0 var(--space-3);
	font-size: var(--font-size-h6);
}

.category-faqs {
	max-width: 48rem;
}

.category-faqs__list {
	display: grid;
	gap: var(--space-3);
}

.category-faq {
	padding: var(--space-4) var(--space-5);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
}

.category-faq summary {
	position: relative;
	padding-right: var(--space-8);
	color: var(--color-navy);
	font-family: var(--font-sans);
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.category-faq summary::-webkit-details-marker {
	display: none;
}

.category-faq summary::after {
	content: "+";
	position: absolute;
	top: -0.1em;
	right: 0;
	color: var(--color-gold);
	font-size: 1.25rem;
	font-weight: 700;
}

.category-faq[open] summary::after {
	content: "\2212";
}

.category-faq p {
	margin: var(--space-3) 0 0;
	color: var(--color-muted);
	line-height: var(--line-height-body);
}

.quote-request {
	display: grid;
	gap: var(--space-8);
	background: var(--color-light-gray);
}

.quote-request__intro p:last-child {
	max-width: 34rem;
	margin-bottom: 0;
	color: var(--color-muted);
}

.quote-form {
	padding: var(--space-6);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: 0 1.5rem 3rem rgba(18, 40, 63, 0.08);
}

.quote-form__grid {
	display: grid;
	gap: var(--space-4);
	margin-bottom: var(--space-5);
}

.quote-form label {
	display: grid;
	gap: var(--space-2);
	color: var(--color-navy);
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
	font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
	width: 100%;
	padding: var(--space-3);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: var(--color-white);
	color: var(--color-text);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
	outline: 2px solid var(--color-blue);
	outline-offset: 2px;
}

.quote-form__status {
	margin: var(--space-3) 0 0;
	color: var(--color-blue);
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: center;
	padding: var(--space-4);
	background: rgba(9, 25, 40, 0.94);
}

.lightbox[hidden] {
	display: none;
}

.lightbox img {
	max-width: min(100%, 70rem);
	max-height: 90vh;
	object-fit: contain;
}

.lightbox__close {
	position: absolute;
	top: var(--space-4);
	right: var(--space-4);
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 0;
	background: transparent;
	color: var(--color-white);
	font-size: 1.75rem;
	cursor: pointer;
}

.projects-page-hero {
	position: relative;
	overflow: hidden;
	background: var(--color-navy);
	color: var(--color-white);
}

.projects-page-hero__inner {
	padding-block: 7rem var(--space-12);
}

.projects-page-hero h1 {
	max-width: 42rem;
	margin: 0 0 var(--space-3);
	font-size: clamp(2.5rem, 7vw, 4.75rem);
	line-height: var(--line-height-tight);
}

.projects-page-hero p:last-child {
	max-width: 38rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.15rem;
}

.portfolio-filters {
	display: flex;
	gap: var(--space-2);
	overflow-x: auto;
	padding-bottom: var(--space-3);
	margin-bottom: var(--space-6);
}

.portfolio-filter {
	flex: 0 0 auto;
	padding: var(--space-2) var(--space-3);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
	background: var(--color-white);
	color: var(--color-navy);
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
	font-weight: 700;
	cursor: pointer;
}

.portfolio-filter:hover,
.portfolio-filter.is-active {
	border-color: var(--color-navy);
	background: var(--color-navy);
	color: var(--color-white);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-6);
}

.portfolio-card {
	overflow: hidden;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
}

.portfolio-card.is-hidden {
	display: none;
}

.portfolio-card__image {
	display: block;
	width: 100%;
	height: 15rem;
	padding: 0;
	border: 0;
	background: var(--color-navy);
	overflow: hidden;
	cursor: zoom-in;
}

.portfolio-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease, opacity 300ms ease;
}

.portfolio-card__image:hover img {
	transform: scale(1.04);
	opacity: 0.84;
}

.portfolio-card__body {
	padding: var(--space-5);
}

.portfolio-card__body h3 {
	margin: var(--space-3) 0;
	color: var(--color-navy);
	font-size: var(--font-size-h5);
}

.portfolio-card__body > a {
	color: var(--color-blue);
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
	font-weight: 700;
	text-decoration: none;
}

.portfolio-card__body > a:hover {
	color: var(--color-navy);
}

@media (min-width: 48rem) {
	.category-features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.quote-request {
		grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
		align-items: start;
		gap: var(--space-12);
	}

	.quote-form__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.quote-form__message {
		grid-column: span 2;
	}

	.portfolio-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.front-page-hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-6);
	margin-top: var(--space-12);
	padding-top: var(--space-4);
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	animation: hero-reveal 700ms 400ms ease-out both;
}

.front-page-hero__facts div {
	display: grid;
	gap: var(--space-1);
	min-width: 7rem;
}

.front-page-hero__facts strong {
	color: var(--color-gold);
	font-family: var(--font-sans);
	font-size: 1.45rem;
}

.front-page-hero__facts span {
	color: rgba(255, 255, 255, 0.7);
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

@keyframes hero-reveal {
	from {
		opacity: 0;
		transform: translateY(1rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.post-list {
	display: grid;
	gap: 1.5rem;
}

.post-card {
	padding: 1.5rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
}

.post-card__title {
	margin: 0;
	font-size: 1.5rem;
}

.post-card__title a {
	color: inherit;
}

.post-card__meta {
	margin-bottom: 0;
	color: var(--color-muted);
	font-size: 0.9rem;
}

.site-footer {
	position: relative;
	border-top: 3px solid var(--color-gold);
	background-color: var(--color-navy);
	background-image: 
		linear-gradient(180deg, rgba(8, 20, 38, 0.94) 0%, rgba(10, 25, 47, 0.85) 45%, rgba(6, 15, 30, 0.98) 100%),
		url('/baq/wp-content/uploads/2026/08/burj-portrait-1.jpg');
	background-position: center 25%;
	background-size: cover;
	background-repeat: no-repeat;
	color: var(--color-surface);
	overflow: hidden;
}

.footer-columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-8);
	padding-block: var(--space-12) var(--space-10);
}

.footer-column:not(:first-child) {
	padding-top: var(--space-8);
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-column h2 {
	margin: 0 0 var(--space-4);
	color: var(--color-gold);
	font-family: var(--font-sans);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.footer-column p {
	max-width: 22rem;
	margin-top: 0;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.75;
}

.footer-about h2 {
	color: var(--color-white);
	font-size: var(--font-size-h5);
	letter-spacing: 0;
	text-transform: none;
}

.footer-menu,
.footer-contact address {
	display: grid;
	gap: var(--space-2);
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-menu li,
.footer-contact address span,
.footer-contact address a {
	font-family: var(--font-sans);
	font-size: 0.9rem;
	line-height: 1.5;
}

.footer-contact address {
	font-style: normal;
}

.footer-contact a,
.footer-menu a {
	color: var(--color-white);
	text-decoration: none;
}

.footer-contact a:hover,
.footer-menu a:hover {
	color: var(--color-gold);
}

.social-links {
	display: flex;
	gap: var(--space-2);
	margin-top: var(--space-4);
}

.social-links a {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	border: 1px solid var(--color-gold);
	border-radius: var(--radius-pill);
	color: var(--color-gold);
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
	font-weight: 700;
}

.footer-contact {
	padding: var(--space-5);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.05);
}

.footer-contact h2 {
	margin-bottom: var(--space-3);
}

.map-embed {
	height: 13rem;
	padding-bottom: var(--space-10);
}

.map-embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: var(--radius-md);
	filter: grayscale(1) contrast(0.9);
	opacity: 0.82;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom__inner {
	display: flex;
	justify-content: space-between;
	padding-block: var(--space-4);
}

.footer-bottom p {
	margin: 0;
	color: #d9e0e7;
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
}

.site-footer a {
	color: inherit;
}

.site-footer__copyright {
	margin: 0;
	color: #d9d5ca;
	font-size: 0.9rem;
}

@media (min-width: 48rem) {
	.container {
		width: min(100% - 4rem, var(--content-width));
	}

	.content-area,
	.front-page-hero {
		padding-block: 5rem;
	}

	.post-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-section__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: var(--space-12);
	}

	.about-section__media img {
		height: 28rem;
	}

	.projects-showcase {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-columns: auto;
		grid-auto-flow: row;
		overflow: visible;
	}

	.project-tile {
		height: 19rem;
	}

	.content-layout {
		grid-template-columns: minmax(0, 1fr) minmax(15rem, 20rem);
	}

	.site-sidebar {
		padding-block: 3rem 5rem;
	}

	.footer-columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.projects-showcase .project-tile:first-child {
		grid-row: span 2;
		height: 39rem;
	}

	.projects-showcase.is-single {
		grid-template-columns: minmax(0, 1fr);
	}

	.projects-showcase.is-single .project-tile:first-child {
		grid-row: auto;
		height: 26rem;
	}

	.trust-bar__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.trust-stat {
		border-right: 1px solid var(--color-border);
		border-bottom: 0;
	}

	.trust-stat:nth-child(even) {
		border-right: 1px solid var(--color-border);
	}

	.trust-stat:last-child {
		border-right: 0;
	}
}

@media (min-width: 64rem) {
	.menu-toggle {
		display: none;
	}

	.primary-navigation {
		display: flex;
	max-height: none;
	overflow: visible;
	opacity: 1;
		flex: 1 1 auto;
		justify-content: center;
		flex-basis: auto;
	}

	.primary-navigation > .menu--wordpress,
	.primary-navigation > .menu--services {
		margin-inline: var(--space-2);
	}

	.sub-menu {
		position: absolute;
		top: calc(100% + var(--space-2));
		left: 50%;
		min-width: 17rem;
		padding: var(--space-2);
		transform: translateX(-50%);
		background: var(--color-white);
		border: 1px solid var(--color-border);
		box-shadow: 0 0.75rem 2rem rgba(18, 40, 63, 0.12);
	}

	.services-menu-item {
		position: relative;
	}

	.services-menu-item:hover .sub-menu,
	.services-menu-item:focus-within .sub-menu,
	.services-menu-item.is-open .sub-menu {
		display: grid;
	}

	.header-contact {
		display: flex;
	}

	.footer-columns {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		column-gap: var(--space-8);
	}

	.footer-column:not(:first-child) {
		padding-top: 0;
		padding-left: var(--space-6);
		border-top: 0;
		border-left: 1px solid rgba(255, 255, 255, 0.14);
	}
}

/* About and contact page layouts */
.about-page-hero,
.contact-page-hero {
	position: relative;
	overflow: hidden;
	background: var(--color-navy);
	color: var(--color-white);
}

.about-page-hero__inner,
.contact-page-hero__inner {
	padding-block: 7rem var(--space-12);
}

.about-page-hero h1,
.contact-page-hero h1 {
	max-width: 50rem;
	margin: 0 0 var(--space-3);
	font-size: clamp(2.5rem, 7vw, 4.75rem);
	line-height: var(--line-height-tight);
}

.about-page-hero p:last-child,
.contact-page-hero p:last-child {
	max-width: 40rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.15rem;
}

.about-story__grid,
.about-facility__grid,
.contact-page-grid {
	display: grid;
	gap: var(--space-8);
	align-items: center;
}

.about-story h2,
.about-facility h2,
.about-locations h2,
.about-values h2,
.contact-page__details h2,
.contact-map h2 {
	margin: 0 0 var(--space-4);
	color: var(--color-navy);
	font-size: var(--font-size-h2);
	line-height: var(--line-height-tight);
}

.about-story__content,
.about-facility__grid > div > p:last-child,
.contact-page__details > p {
	color: var(--color-muted);
	line-height: var(--line-height-loose);
}

.about-story__image-wrap img,
.about-facility__grid img {
	width: 100%;
	height: 22rem;
	object-fit: cover;
	border-radius: var(--radius-md);
}

.about-locations,
.contact-map {
	background: var(--color-light-gray);
}

.about-locations__grid,
.about-values__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-4);
}

.about-location,
.about-value {
	padding: var(--space-5);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-location:hover,
.about-value:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-location > span,
.about-value__icon {
	color: var(--color-gold);
	font-family: var(--font-sans);
	font-weight: 700;
}

.about-location h3,
.about-value h3 {
	margin: var(--space-3) 0 var(--space-2);
	color: var(--color-navy);
	font-size: var(--font-size-h5);
}

.about-location p,
.about-value p {
	margin: 0;
	color: var(--color-muted);
	font-size: var(--font-size-small);
}

.about-value {
	background: var(--color-navy);
}

.about-value h3 {
	color: var(--color-white);
}

.about-value p {
	color: rgba(255, 255, 255, 0.72);
}

.about-value__icon {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0;
	background: var(--color-gold);
	color: var(--color-navy);
	font-weight: 800;
}

.contact-page-grid {
	align-items: start;
}

.contact-page__details address {
	display: grid;
	gap: var(--space-2);
	margin: var(--space-6) 0;
	font-style: normal;
}

.contact-page__details address a {
	color: var(--color-blue);
	font-family: var(--font-sans);
	font-weight: 700;
}

.contact-page__details h3 {
	margin-bottom: var(--space-2);
	color: var(--color-navy);
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
	text-transform: uppercase;
}

.contact-form h2 {
	margin-top: 0;
	color: var(--color-navy);
	font-size: var(--font-size-h3);
}

.contact-map iframe {
	width: 100%;
	height: 22rem;
	border: 0;
	border-radius: var(--radius-md);
	filter: grayscale(1) contrast(0.9);
}

.form-error {
	color: #a62f2f;
}

@media (min-width: 48rem) {
	.about-story__grid,
	.about-facility__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--space-12);
	}

	.about-locations__grid,
	.about-values__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.contact-page-grid {
		grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
		gap: var(--space-12);
	}
}

/* --- NEW STYLES: FRONT PAGE HERO BADGE & FEATURES --- */
.front-page-hero__badge-row {
	margin-bottom: var(--space-4);
	display: flex;
	align-items: center;
}

.uae-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.25rem 1rem;
	border: 1px solid var(--color-gold);
	border-radius: 0;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	color: var(--color-white);
	background: rgba(10, 25, 47, 0.4);
}

.uae-flag {
	font-size: 1.25rem;
	line-height: 1;
}

.front-page-hero__features-pill {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: var(--space-6);
	padding: 1rem;
	background: rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-md);
	backdrop-filter: blur(4px);
}

.front-page-hero__features-pill span {
	color: var(--color-white);
	font-size: 0.875rem;
	font-weight: 500;
}

@media (min-width: 48rem) {
	.front-page-hero__features-pill {
		flex-direction: row;
		align-items: center;
		border-radius: 0;
		padding: 0.5rem 1.5rem;
	}
	
	.front-page-hero__features-pill span {
		position: relative;
	}
	
	.front-page-hero__features-pill span:not(:last-child)::after {
		content: "";
		position: absolute;
		right: -0.5rem;
		top: 50%;
		transform: translateY(-50%);
		height: 12px;
		width: 1px;
		background: rgba(255, 255, 255, 0.3);
	}
}

/* --- NEW STYLES: SERVICE CARD MEDIA ---
   The baq-header-footer plugin ships its own .service-card__media-wrap /
   .service-card__image / .service-card__tag rules (loaded before this
   stylesheet) for a top-left pill-shaped tag. Because that rule and this one
   each set a different subset of properties on the same selectors, the
   browser merges the two instead of one cleanly replacing the other — e.g.
   the plugin's `top: 0.9rem` was never cancelled here, so combined with this
   file's `bottom: 0` the tag stretched to fill almost the whole image, and
   the plugin's pill `border-radius` only got overridden on one corner by
   `border-top-right-radius`, leaving three corners fully round. Every
   property either rule sets is now declared explicitly below so this rule
   is the complete, self-contained result regardless of stylesheet order. */
.service-card__media-wrap {
	position: relative;
	overflow: hidden;
	height: 14rem;
	border-radius: var(--radius-md);
}

.service-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card__tag {
	position: absolute;
	top: auto;
	right: auto;
	bottom: 0;
	left: 0;
	width: auto;
	height: auto;
	background: var(--color-gold);
	color: var(--color-navy);
	border: 0;
	padding: 0.25rem 0.75rem;
	border-radius: 0 var(--radius-md) 0 0;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: normal;
	text-transform: uppercase;
	backdrop-filter: none;
}

.service-card--top {
	border-color: var(--color-gold);
	border-width: 2px;
}

.service-card__top-badge {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: var(--color-navy);
	color: var(--color-gold);
	padding: 0.25rem 0.75rem;
	border-bottom-right-radius: var(--radius-md);
	font-family: var(--font-sans);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.service-card__media-wrap--placeholder {
	display: grid;
	place-items: center;
	height: 14rem;
	background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
}

.service-card__placeholder-icon {
	font-size: 3rem;
	line-height: 1;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

/* --- NEW STYLES: ABOUT SECTION BULLETS --- */
.about-section__bullets {
	list-style: none;
	padding: 0;
	margin: var(--space-6) 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.about-bullet {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	font-size: 1rem;
	color: var(--color-ink);
}

.about-bullet__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	background: var(--color-gold);
	color: var(--color-navy);
	border-radius: 0;
	font-size: 0.875rem;
	font-weight: bold;
}

/* --- NEW STYLES: UAE PILLARS GRID --- */
.uae-pillars-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-4);
	margin: var(--space-8) 0;
}

@media (min-width: 48rem) {
	.uae-pillars-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 64rem) {
	.uae-pillars-grid,
	.category-features {
		grid-template-columns: repeat(4, 1fr);
	}
}

.uae-pillar-card {
	background: var(--color-navy);
	color: var(--color-white);
	padding: var(--space-5);
	border-radius: var(--radius-md);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.uae-pillar-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	background: var(--color-gold);
	color: var(--color-navy);
	border-radius: 0;
	margin-bottom: var(--space-4);
	font-size: 1.25rem;
}

.uae-pillar-card h3 {
	color: var(--color-white);
	margin: 0 0 var(--space-2);
	font-size: 1.125rem;
}

.uae-pillar-card p {
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	font-size: 0.875rem;
}

/* Horizontally-scrolling strips (portfolio filters, project tiles) share
   the same dark, thin scrollbar treatment instead of each browser's default
   light-grey bar, which read as unstyled/unfinished. */
.portfolio-filters,
.projects-showcase {
	scrollbar-width: thin;
	scrollbar-color: var(--color-navy) transparent;
}

.portfolio-filters::-webkit-scrollbar,
.projects-showcase::-webkit-scrollbar {
	height: 6px;
}

.portfolio-filters::-webkit-scrollbar-track,
.projects-showcase::-webkit-scrollbar-track {
	background: transparent;
}

.portfolio-filters::-webkit-scrollbar-thumb,
.projects-showcase::-webkit-scrollbar-thumb {
	background-color: var(--color-navy);
	border-radius: var(--radius-pill);
}

/* --- Project tile caption overlay: an absolutely-positioned flex column
   pinned to the tile's bottom, so .project-tile__loc and .project-tile__title
   stack normally as its children instead of each needing its own
   positioning (a leftover bare `.project-tile span` rule used to give both
   spans the same absolute bottom/left/right independently, stacking them
   directly on top of each other instead of one above the other). --- */
.project-tile__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: var(--space-4);
}

.project-tile__loc {
	color: rgba(255, 255, 255, 0.8);
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.25rem;
}

.project-tile__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2);
	color: var(--color-white);
	font-family: var(--font-sans);
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0;
}

/* --- NEW STYLES: DESIGN POLISH --- */
.category-page-content {
	border-top: 1px solid var(--color-border);
	padding-top: var(--space-8);
	margin-top: var(--space-8);
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-up,
section.is-visible {
	animation: fadeUp 0.6s ease forwards;
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
	opacity: 0;
	transform: translateY(1.5rem);
	transition: opacity 600ms ease, transform 600ms ease;
}

.reveal--visible {
	opacity: 1;
	transform: translateY(0);
}

/* --- BREADCRUMB NAVIGATION --- */
.breadcrumbs {
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border);
}

.breadcrumbs__inner {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	padding-block: var(--space-3);
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
}

.breadcrumbs a {
	color: var(--color-muted);
	text-decoration: none;
	transition: color 160ms ease;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
	color: var(--color-blue);
}

.breadcrumbs span[aria-hidden] {
	color: var(--color-border);
}

.breadcrumbs [aria-current="page"] {
	color: var(--color-navy);
	font-weight: 700;
}

/* A low-opacity UAE flag fills the whole "Where We Serve" section as a
   background, with a gentle continuous ripple (SVG feTurbulence/
   feDisplacementMap — a real cloth-like wave, not a static tilted
   rectangle) so it reads as fabric moving in the wind. GSAP (front-page.js)
   fades/scales it in on scroll; the ripple itself runs natively via SVG
   SMIL, so it keeps animating regardless. Everything else in the section
   gets position:relative + z-index so it paints above this. */
.areas-map-section {
	position: relative;
	overflow: hidden;
}

.areas-map-section > .section-heading,
.areas-map-section > .areas-globe,
.areas-map-section > .areas-chips,
.areas-map-section > .areas-chips__detail {
	position: relative;
	z-index: 1;
}

.areas-map-section__flag {
	position: absolute;
	inset: 0;
	opacity: 0.34;
	pointer-events: none;
	z-index: 0;
	filter: url('#uae-flag-wave');
	background: linear-gradient(
		180deg,
		#00732f 0%,
		#00732f 33.333%,
		#ffffff 33.333%,
		#ffffff 66.666%,
		#000000 66.666%,
		#000000 100%
	);
}

.areas-map-section__flag::before {
	content: '';
	position: absolute;
	inset: 0;
	width: 25%;
	background: #ff0000;
}

/* --- GLOBE (home page, "Where We Serve") ---
   .areas-globe__fallback is a lightweight static SVG rendered by PHP and
   shown immediately; areas-globe.js swaps it for a real, rotating D3 globe
   (world-atlas country shapes, UAE highlighted) once D3 + the world-atlas
   data have both loaded — if either fails (CDN down, offline), the fallback
   simply stays visible instead of leaving an empty gap. */

.areas-globe {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: var(--space-6);
}

.areas-globe__fallback {
	width: 100%;
	max-width: 30rem;
	height: auto;
}

/* The sitewide `svg { display: block; }` reset is an author rule, so it
   silently defeats the UA stylesheet's `[hidden] { display: none }` — this
   re-establishes it specifically for the fallback globe once areas-globe.js
   hides it, or the wireframe fallback stays stacked behind the live one. */
.areas-globe__fallback[hidden] {
	display: none;
}

.areas-globe__canvas {
	width: 100%;
	max-width: 30rem;
}

.areas-globe__canvas svg {
	display: block;
	width: 100%;
	height: auto;
	cursor: grab;
	touch-action: none;
}

.areas-globe__canvas svg:active {
	cursor: grabbing;
}

@media (min-width: 60rem) {
	.areas-globe__fallback,
	.areas-globe__canvas {
		max-width: 36rem;
	}
}

.areas-globe__grid {
	fill: none;
	stroke: var(--color-border);
	stroke-width: 1;
}

.areas-globe__sphere {
	fill: none;
	stroke: var(--color-navy);
	stroke-width: 2;
}

.areas-globe__pin-dot {
	fill: var(--color-gold);
	stroke: var(--color-navy);
	stroke-width: 2;
}

.areas-globe__pin-pulse {
	fill: var(--color-gold);
	opacity: 0.55;
	transform-box: fill-box;
	transform-origin: center;
	animation: areas-globe-pulse 2.2s ease-out infinite;
}

.areas-globe__pin-label {
	fill: var(--color-navy);
	font-family: var(--font-sans);
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.04em;
}

@keyframes areas-globe-pulse {
	0% {
		transform: scale(1);
		opacity: 0.55;
	}
	100% {
		transform: scale(3.2);
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.areas-globe__pin-pulse {
		animation: none;
		opacity: 0.25;
	}
}

/* Live D3 globe */
.areas-globe__ocean {
	fill: var(--color-light-gray);
}

.areas-globe__graticule {
	fill: none;
	stroke: var(--color-border);
	stroke-width: 0.5;
}

.areas-globe__country {
	fill: #c7d2e0;
	stroke: var(--color-white);
	stroke-width: 0.5;
}

.areas-globe__country.is-uae {
	fill: var(--color-gold);
	stroke: var(--color-navy);
	stroke-width: 1;
}

.areas-globe__outline {
	fill: none;
	stroke: var(--color-navy);
	stroke-width: 2;
}

/* --- EMIRATE CHIPS (home page, "Where We Serve") --- */

.areas-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-2);
	max-width: 48rem;
	margin-inline: auto;
}

.areas-chip {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	padding: var(--space-2) var(--space-4);
	border: 2px solid var(--color-navy);
	background: var(--color-white);
	color: var(--color-navy);
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 0.92rem;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.areas-chip:hover,
.areas-chip:focus-visible,
.areas-chip.is-active {
	background: var(--color-gold);
	border-color: var(--color-gold);
	color: var(--color-navy);
	transform: translateY(-0.15rem);
}

.areas-chip.is-hub {
	border-color: var(--color-gold);
}

.areas-chip .badge {
	background: var(--color-navy);
}

.areas-chips__detail {
	margin: var(--space-4) 0 0;
	color: var(--color-muted);
	font-size: 0.95rem;
	text-align: center;
}

/* --- PRINT STYLES --- */
@media print {
	.site-header,
	.site-footer,
	.mobile-nav,
	.breadcrumbs,
	.bottom-cta,
	.lightbox,
	.menu-toggle,
	.header-contact,
	.map-embed,
	nav {
		display: none !important;
	}

	body {
		background: white;
		color: black;
	}

	a { color: inherit; }

	* {
		box-shadow: none !important;
		text-shadow: none !important;
	}

	img {
		max-width: 100% !important;
	}
}

