/* ==========================================================================
   AKS Global Maintenance Facility Management Services — public site
   Palette taken from the logo: royal blue and orange.
   ========================================================================== */

:root {
    --navy: #0a2a4d;
    --navy-deep: #071d38;
    --blue: #0b57a8;
    --blue-700: #084585;
    --blue-50: #eaf2fb;
    --accent: #fb8c1a;
    --accent-600: #e06f00;
    --accent-700: #9a4a00;
    --accent-50: #fff2e2;
    --orange: #b85608;
    --coral: #d95b39;
    --ink: #1b2a41;
    --muted: #56657c;
    --line: #e2e8f0;
    --soft: #f4f7fb;
    --white: #fff;
    --green: #0f7a40;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 1px 2px rgba(10, 42, 77, .06), 0 8px 24px rgba(10, 42, 77, .08);
    --shadow-lg: 0 2px 4px rgba(10, 42, 77, .06), 0 20px 50px rgba(10, 42, 77, .16);
    --font: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    /* Used sparingly, for decorative accent words/headings only — never body text, nav, buttons or forms. */
    --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
    --topbar-h: 40px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
[id] { scroll-margin-top: 110px; }
img, svg { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--blue-700); }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; color: var(--navy); letter-spacing: -.01em; font-family: var(--font); }
h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
address { font-style: normal; }
sup { font-size: .6em; line-height: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.icon { flex: none; vertical-align: middle; }

.container { width: min(1200px, 100% - 40px); margin-inline: auto; }
.narrow { max-width: 820px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Buttons ---------- */
/* Hover: a colour (--slide) slides in from the left across the button and the label colour follows. */
.btn {
    position: relative; overflow: hidden; isolation: isolate;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 22px; border-radius: 999px; border: 2px solid transparent;
    font: inherit; font-weight: 700; font-size: .95rem; line-height: 1.2; text-decoration: none; cursor: pointer;
    --slide: var(--navy); --slide-text: #fff;
    transition: color .35s ease .05s, transform .25s, box-shadow .25s, border-color .25s;
}
.btn::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: var(--slide); transform: translateX(-101%);
    transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}
.btn:hover::before, .btn:focus-visible::before { transform: translateX(0); }
.btn:hover, .btn:focus-visible { color: var(--slide-text); transform: translateY(-1px); }
.btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.btn:disabled::before { display: none; }
.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(11, 87, 168, .25); --slide: var(--navy); --slide-text: #fff; }
.btn--accent { background: var(--accent); color: var(--navy); box-shadow: 0 6px 16px rgba(224, 111, 0, .30); --slide: var(--navy); --slide-text: #fff; }
.btn--outline { border-color: var(--blue); color: var(--blue); background: transparent; --slide: var(--blue); --slide-text: #fff; }
.btn--outline-light { border-color: rgba(255, 255, 255, .65); color: #fff; background: transparent; --slide: #fff; --slide-text: var(--navy); }
.btn--whatsapp { background: var(--green); color: #fff; --slide: #0b6535; --slide-text: #fff; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: calc(var(--topbar-h) * -1); z-index: 100; background: #fff; }
.topbar { height: var(--topbar-h); background: var(--navy); color: rgba(255, 255, 255, .85); font-size: .85rem; }
.topbar__inner { height: 100%; display: flex; align-items: center; justify-content: center; gap: 16px; text-align: center; }
.topbar p { margin: 0; font-weight: 500; letter-spacing: .01em; }
.navbar { background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 2px 12px rgba(10, 42, 77, .05); position: relative; }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 96px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand__logo { height: 76px; width: auto; max-width: 260px; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 24px; }
.nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav ul a { display: block; padding: 10px 14px; border-radius: 999px; color: var(--ink); font-weight: 600; font-size: .95rem; text-decoration: none; }
.nav ul a:hover { background: var(--blue-50); color: var(--blue); }
.nav ul a.is-active { color: var(--blue); background: var(--blue-50); box-shadow: inset 0 -3px 0 var(--accent); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--navy); cursor: pointer; border-radius: 10px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: inline-block; }

/* ---------- Section scaffolding ---------- */
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--soft { background: var(--soft); }
.section--blue { background: linear-gradient(125deg, var(--navy) 0%, var(--blue) 100%); color: rgba(255, 255, 255, .88); position: relative; overflow: hidden; }
.section--blue h2, .section--blue h3 { color: #fff; }
.section--blue::after { content: ""; position: absolute; right: -80px; top: 0; bottom: 0; width: 260px; background: linear-gradient(135deg, rgba(251, 140, 26, .38), rgba(251, 140, 26, 0)); clip-path: polygon(45% 0, 100% 0, 55% 100%, 0 100%); pointer-events: none; }
.section__actions { margin-top: 36px; text-align: center; }

.eyebrow { margin: 0 0 10px; font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.eyebrow--light { color: #ffc27a; }
.section-head { margin-bottom: 44px; }
.section-head--center { text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: 44px; }
.section-head--left { max-width: 720px; }
.section-head__lead { color: var(--muted); font-size: 1.05rem; margin: 0; }
.lead-text { font-size: 1.15rem; color: var(--muted); text-align: center; margin: 0; }
.empty { text-align: center; color: var(--muted); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--navy) 0%, var(--blue) 75%); color: #fff; padding: 52px 0 56px; }
.page-hero::before, .page-hero::after { content: ""; position: absolute; top: 0; bottom: 0; clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%); pointer-events: none; }
.page-hero::before { right: 13%; width: 220px; background: rgba(255, 255, 255, .07); }
.page-hero::after { right: 9%; width: 72px; background: linear-gradient(160deg, #ffb45c, #f57c00); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 12px; max-width: 800px; }
.page-hero__lead { font-size: 1.12rem; max-width: 680px; color: rgba(255, 255, 255, .9); margin: 0; }
/* Uploaded banner photo (admin > Banners & SEO): a dark blue overlay keeps the title readable */
.page-hero.has-banner { padding: 104px 0 112px; background: linear-gradient(105deg, rgba(7, 29, 56, .9) 0%, rgba(10, 42, 77, .72) 45%, rgba(11, 87, 168, .4) 100%), var(--hero-image) center / cover no-repeat; }
.page-hero.has-banner::before, .page-hero.has-banner::after { display: none; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 4px 8px; list-style: none; padding: 0; margin: 0 0 18px; font-size: .88rem; }
.crumbs li { color: rgba(255, 255, 255, .8); }
.crumbs li + li::before { content: "/"; margin-right: 8px; opacity: .55; }
.crumbs a { color: #fff; text-underline-offset: 3px; }
.crumbs [aria-current] { color: #ffc27a; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #f3f8ff 0%, #fff 100%); }
.hero::before, .hero::after { content: ""; position: absolute; top: 0; bottom: 0; clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%); }
.hero::before { right: 0; width: 56%; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-600) 100%); transform: translateX(-28px); }
.hero::after { right: 0; width: 56%; background: linear-gradient(140deg, var(--blue) 0%, var(--navy) 100%); }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 72px 0 96px; }
.hero h1 { font-size: clamp(2.1rem, 4.8vw, 3.5rem); line-height: 1.1; margin-bottom: 18px; }
/* Instrument Serif, used sparingly for this one decorative accent phrase only. */
.hero h1 .accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--blue); background: linear-gradient(transparent 68%, rgba(251, 140, 26, .38) 68%); }
.hero__lead { font-size: 1.15rem; color: var(--muted); max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 24px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; padding: 0; margin: 0; font-size: .92rem; font-weight: 600; color: var(--navy); }
.hero__points li { display: inline-flex; align-items: center; gap: 6px; }
.hero__points .icon { color: var(--green); }
.hero__media { position: relative; }
.hero__media > img { width: 100%; aspect-ratio: 991 / 700; object-fit: cover; border-radius: 24px; border: 6px solid #fff; box-shadow: var(--shadow-lg); }
.hero__badge { position: absolute; left: -28px; bottom: 26px; display: flex; align-items: center; gap: 12px; background: #fff; padding: 12px 18px 12px 14px; border-radius: 16px; box-shadow: var(--shadow-lg); }
.hero__badge img { height: 40px; width: auto; max-width: 90px; object-fit: contain; }
.hero__badge strong { display: block; color: var(--navy); font-size: 1rem; line-height: 1.2; }
.hero__badge span { font-size: .82rem; color: var(--muted); }

/* ---------- Stats ---------- */
.stats { position: relative; z-index: 2; margin-top: -44px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 26px 12px; }
.stat { text-align: center; padding: 4px 12px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat strong { display: block; font-size: 1.9rem; font-weight: 700; line-height: 1.2; color: var(--blue); }
.stat span { font-size: .9rem; color: var(--muted); }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.card--pad { padding: 28px; }

.icon-badge { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; background: var(--blue-50); color: var(--blue); margin-bottom: 16px; flex: none; }
.icon-badge--accent { background: var(--accent-50); color: var(--accent-700); }

.service-card, .category-card {
    display: flex; flex-direction: column; align-items: flex-start;
    padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    text-decoration: none; color: var(--ink); box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover, .category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #c8d8ee; color: var(--ink); }
.service-card h3, .category-card h3 { margin-bottom: 8px; }
.service-card p, .category-card p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.service-card__more { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .9rem; color: var(--blue); }
.service-card:hover .service-card__more .icon { transform: translateX(3px); }
.service-card__more .icon { transition: transform .2s; }
.category-card p { margin-bottom: 0; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--top { align-items: start; }
.split__media img { width: 100%; border-radius: 24px; box-shadow: var(--shadow-lg); }
.split__copy p { color: var(--muted); }
.section--blue .split__copy p { color: rgba(255, 255, 255, .85); }
.quote { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 1.15rem; color: var(--blue) !important; border-left: 4px solid var(--accent); padding-left: 16px; }
.feature-list { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .icon { color: var(--green); margin-top: 2px; }
.feature-list strong { display: block; color: var(--navy); }
.feature-list span { color: var(--muted); font-size: .95rem; }

/* ---------- Clients: scrolling text strip ---------- */
.clients-section { padding-bottom: 0; }
.clients-section .section-head { margin-bottom: 36px; }
.marquee { overflow: hidden; background: linear-gradient(90deg, var(--navy-deep), var(--navy) 50%, var(--navy-deep)); padding: 30px 0; }
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex: none; min-width: 100vw; justify-content: space-around; gap: 48px; padding: 0 24px; margin: 0; list-style: none; }
.marquee__group li { flex: none; white-space: nowrap; color: #fff; font-weight: 700; font-size: clamp(1.35rem, 2.6vw, 2.2rem); letter-spacing: -.01em; line-height: 1.2; }
.marquee__group li.marquee__sep { display: flex; }
.marquee__star { width: 20px; height: 20px; fill: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* Reduced motion: no scrolling - show the names as a centred, wrapping list instead. */
@media (prefers-reduced-motion: reduce) {
    .marquee__track { width: auto; animation: none; }
    .marquee__group { min-width: 0; flex-wrap: wrap; justify-content: center; gap: 14px 36px; padding: 0 20px; }
    .marquee__group[aria-hidden="true"] { display: none; }
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.gallery--preview { grid-template-columns: repeat(3, 1fr); }
.gallery__item { position: relative; display: block; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--soft); box-shadow: var(--shadow); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__caption { position: absolute; inset: auto 0 0 0; padding: 30px 14px 12px; color: #fff; font-weight: 600; font-size: .92rem; background: linear-gradient(transparent, rgba(7, 29, 56, .85)); }

.lightbox { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 14px; padding: 24px; background: rgba(6, 20, 40, .93); }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: min(94vw, 1200px); max-height: 78vh; border-radius: 8px; object-fit: contain; }
.lightbox__caption { color: #fff; text-align: center; max-width: 720px; margin: 0; min-height: 1.4em; }
.lightbox button { position: absolute; background: rgba(255, 255, 255, .14); color: #fff; border: 0; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; }
.lightbox button:hover { background: rgba(255, 255, 255, .28); }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev { left: 18px; top: 50%; transform: translateY(-50%) rotate(180deg); }
.lightbox__next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- Jobs ---------- */
.job-list { display: grid; gap: 18px; }
.job-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.job-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.job-card h3 a { color: var(--navy); text-decoration: none; }
.job-card h3 a:hover { color: var(--blue); }
.job-card p { margin: 10px 0 0; color: var(--muted); }
.job-card .btn { flex: none; }
.meta { display: flex; flex-wrap: wrap; gap: 6px 18px; list-style: none; padding: 0; margin: 0; font-size: .9rem; color: var(--muted); }
.meta li { display: inline-flex; align-items: center; gap: 6px; }
.meta .icon { color: var(--blue); }
.meta--light { margin-top: 18px; color: rgba(255, 255, 255, .92); }
.meta--light .icon { color: #ffc27a; }

/* ---------- Detail pages (service / job) ---------- */
.detail { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 52px; align-items: start; }
.detail__main h2 { margin-top: 1.4em; font-size: 1.5rem; }
.detail__main h2:first-child { margin-top: 0; }
.detail__main p { color: #34455e; max-width: 72ch; }
.detail__image { width: 100%; border-radius: var(--radius); margin-bottom: 28px; box-shadow: var(--shadow); }
.detail__side { display: grid; gap: 22px; }
.side-card h2 { font-size: 1.25rem; }
.side-card p { color: var(--muted); }
.side-card .btn { margin-top: 10px; }
.side-list { list-style: none; padding: 0; margin: 0; }
.side-list a { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; font-weight: 600; }
.side-list li:last-child a { border-bottom: 0; }
.side-list a:hover { color: var(--blue); }
.side-list .icon { color: var(--blue); }
.check-list { list-style: none; padding: 0; margin: 0 0 1em; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: #34455e; }
.check-list .icon { color: var(--green); margin-top: 1px; }
.facts { margin: 0; }
.facts div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.facts div:last-child { border-bottom: 0; }
.facts dt { color: var(--muted); }
.facts dd { margin: 0; font-weight: 700; color: var(--navy); text-align: right; }

/* ---------- Service listing ---------- */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.filter-tabs a { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; border-radius: 999px; background: #fff; border: 1.5px solid #cfdcef; color: var(--navy); font-weight: 700; font-size: .95rem; text-decoration: none; transition: background .15s, color .15s, border-color .15s; }
.filter-tabs a span { min-width: 26px; padding: 0 8px; border-radius: 999px; background: var(--blue-50); color: var(--blue); font-size: .8rem; line-height: 1.7; text-align: center; }
.filter-tabs a:hover { border-color: var(--blue); color: var(--blue); }
.filter-tabs a.is-active { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(11, 87, 168, .25); }
.filter-tabs a.is-active span { background: var(--accent); color: var(--navy); }
.service-group { margin-top: 48px; }
.service-group[hidden] { display: none; }
.service-group__head { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.service-group__head .icon-badge { margin: 0; }
.service-group__head h2 { margin-bottom: 4px; }
.service-group__head p { margin: 0; color: var(--muted); max-width: 640px; }

/* ---------- About ---------- */
/* Vision & mission: photo background under a dark blue overlay, frosted-glass cards */
.vm-section { padding: 80px 56px 72px; border-radius: 40px; color: #fff; text-align: center; overflow: hidden;
    background: linear-gradient(rgba(7, 29, 56, .78), rgba(11, 87, 168, .66)), url('../img/office.jpg') center / cover no-repeat;
    box-shadow: 0 30px 70px rgba(10, 42, 77, .22); }
.vm-section__title { margin: 0 0 48px; color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.15; }
.vm-section__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; text-align: center; }
.vm-card { padding: 40px 36px; border-radius: 28px; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .34);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: 0 18px 40px rgba(0, 0, 0, .18); }
.vm-card h3 { margin: 0 0 16px; color: #fff; font-size: 1.6rem; }
.vm-card p { margin: 0; color: rgba(255, 255, 255, .95); font-size: 1.05rem; line-height: 1.85; }
.vm-section__action { margin-top: 44px; }
.btn--caps { text-transform: uppercase; letter-spacing: .14em; font-size: .9rem; padding: 17px 40px; }

.leader { display: grid; grid-template-columns: 330px 1fr; gap: 48px; align-items: center; margin-bottom: 48px; background: var(--soft); border-radius: 28px; padding: 32px; }
.leader img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 20px; box-shadow: 12px 12px 0 var(--accent); }
.leader p { color: #34455e; }
.team__member { text-align: left; }
.team__role { color: var(--orange); font-weight: 700; font-size: .9rem; margin-bottom: 8px; }
.team__member p:last-child { margin: 0; color: var(--muted); }
.avatar { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff; font-weight: 700; font-size: 1.35rem; margin-bottom: 14px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-quick { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 16px; }
.contact-quick li { display: flex; gap: 14px; align-items: center; }
.contact-quick .icon { flex: none; width: 46px; height: 46px; padding: 12px; border-radius: 12px; background: var(--blue-50); color: var(--blue); }
.contact-quick span { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.contact-quick a { font-weight: 700; font-size: 1.05rem; color: var(--navy); text-decoration: none; }
.contact-quick a:hover { color: var(--blue); }
.contact-info__lead { color: var(--muted); max-width: 460px; }
.offices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 32px; }
.office { display: flex; flex-direction: column; align-items: flex-start; padding: 28px; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); transition: border-color .2s, box-shadow .2s; }
.office.is-active { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11, 87, 168, .14), var(--shadow); }
.office h3 { margin: 0 0 6px; font-size: 1.1rem; }
.office address { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.office .link-btn { margin-top: auto; }
.link-btn { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; padding: 0; background: none; border: 0; color: var(--blue); font: inherit; font-weight: 700; font-size: .9rem; cursor: pointer; }
.link-btn:hover { color: var(--blue-700); text-decoration: underline; }
.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--line); }
.map iframe { display: block; width: 100%; height: 420px; border: 0; }
.map__link { margin: 14px 0 0; font-weight: 600; }

/* ---------- Forms ---------- */
.form { padding: 28px; }
.form h2 { font-size: 1.35rem; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.field--full { grid-column: 1 / -1; }
.form > .field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 6px; font-weight: 700; font-size: .9rem; color: var(--navy); }
.req { color: var(--coral); }
.field input, .field select, .field textarea {
    display: block; width: 100%; padding: 12px 14px; font: inherit; color: var(--ink);
    background: #fff; border: 1.5px solid #cdd7e5; border-radius: var(--radius-sm);
    transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input[type="file"] { padding: 10px; background: var(--soft); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11, 87, 168, .16); }
.has-error input, .has-error select, .has-error textarea { border-color: #c0392b; background: #fffafa; }
.field__error { margin: 6px 0 0; color: #b3261e; font-size: .86rem; font-weight: 600; }
.field__hint { margin: 6px 0 0; color: var(--muted); font-size: .84rem; }
.form__note { margin: 14px 0 0; text-align: center; font-size: .82rem; color: var(--muted); }
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.alert { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 12px; margin-bottom: 20px; font-size: .95rem; border: 1px solid transparent; }
.alert .icon { margin-top: 1px; }
.alert--success { background: #e8f6ee; border-color: #b4e0c5; color: #14532d; }
.alert--error { background: #fdecec; border-color: #f3b9b9; color: #7f1d1d; }
.alert--warning { background: #fff4e0; border-color: #f1d49b; color: #7a4b00; }
.alert a { color: inherit; font-weight: 700; }

/* ---------- Empty / error states ---------- */
.empty-state { text-align: center; max-width: 560px; margin: 24px auto; padding: 24px 0; color: var(--muted); }
.empty-state > .icon { color: var(--blue); margin-bottom: 8px; }
.empty-state h1, .empty-state h2 { margin-bottom: 10px; }
.empty-state__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 8px; }
.error-code { font-size: 5rem; font-weight: 700; line-height: 1; margin: 0 0 8px; color: var(--accent-600); }

/* ---------- CTA band ---------- */
.cta-band { padding: 12px 0 88px; }
.cta-box {
    position: relative; overflow: hidden; text-align: center; color: #fff;
    padding: 76px 40px; border-radius: 48px;
    background: linear-gradient(135deg, #1d6fd6 0%, var(--blue) 48%, var(--navy) 100%);
    box-shadow: 0 30px 70px rgba(10, 42, 77, .22);
}
/* soft decorative circles, top-right and bottom-left */
.cta-box::before, .cta-box::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.cta-box::before { width: 320px; height: 320px; right: -90px; top: -110px; background: rgba(255, 255, 255, .09); }
.cta-box::after { width: 200px; height: 200px; left: -60px; bottom: -70px; background: rgba(251, 140, 26, .22); }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { max-width: 820px; margin: 0 auto 18px; color: #fff; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.15; }
.cta-box p { max-width: 640px; margin: 0 auto 34px; font-size: 1.15rem; color: rgba(255, 255, 255, .92); }
.cta-box__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.btn--glass { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .38); color: #fff; --slide: rgba(255, 255, 255, .34); --slide-text: #fff; }
.btn--white { background: #fff; color: var(--navy); box-shadow: 0 12px 26px rgba(0, 0, 0, .2); --slide: var(--accent); --slide-text: var(--navy); }

/* ---------- Pagination ---------- */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination__item { min-width: 42px; padding: 8px 14px; text-align: center; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); text-decoration: none; font-weight: 600; }
a.pagination__item:hover { border-color: var(--blue); color: var(--blue); }
.pagination__item.is-current { background: var(--blue); border-color: var(--blue); color: #fff; }
.pagination__item.is-disabled { opacity: .45; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, .76); font-size: .95rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr .9fr 1fr 1.7fr; gap: 44px; padding: 64px 0 44px; }
.site-footer a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }
.footer__logo { display: inline-block; margin-bottom: 16px; }
.footer__logo:hover { text-decoration: none !important; }
.footer__logo img { width: 170px; height: auto; }
.footer__logo--badge { padding: 12px 14px; background: #fff; border-radius: 16px; }
.footer__logo--badge img { width: 150px; }
.footer__tagline { margin-bottom: 6px; color: #fff; font-weight: 600; }
.footer__name { color: #fff; font-weight: 700; letter-spacing: .04em; margin-bottom: 8px; }
.footer__slogan { font-family: var(--font-serif); color: var(--accent); font-style: italic; font-size: 1.1rem; margin: 0; }
.footer__title { font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact .icon { color: var(--accent); margin-top: 3px; }
.footer__contact strong { color: #fff; }
.footer__bar { border-top: 1px solid rgba(255, 255, 255, .12); padding: 18px 0; font-size: .86rem; }
.footer__bar p { margin: 0; }

/* ---------- Mobile quick-contact bar ---------- */
.mobile-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; grid-template-columns: repeat(3, 1fr); background: var(--navy); box-shadow: 0 -4px 20px rgba(0, 0, 0, .2); }
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 6px; color: #fff; font-weight: 700; font-size: .9rem; text-decoration: none; }
.mobile-bar a + a { border-left: 1px solid rgba(255, 255, 255, .15); }
.mobile-bar a:nth-child(2) { background: var(--green); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .detail { grid-template-columns: minmax(0, 1fr) 340px; gap: 36px; }
}

@media (max-width: 960px) {
    :root { --topbar-h: 0px; }
    .topbar { display: none; }
    body { padding-bottom: 56px; }
    .mobile-bar { display: grid; }

    .nav-toggle { display: inline-flex; }
    .nav { position: absolute; left: 0; right: 0; top: 100%; display: none; flex-direction: column; align-items: stretch; gap: 14px; padding: 16px 20px 22px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(10, 42, 77, .12); }
    .nav.is-open { display: flex; }
    .nav ul { flex-direction: column; gap: 2px; }
    .nav ul a { padding: 13px 14px; border-radius: 10px; }
    .nav__cta { width: 100%; }

    /* The desktop diagonal band would run behind the text; frame the photo instead. */
    .hero::before, .hero::after { display: none; }
    .hero__inner { grid-template-columns: 1fr; gap: 36px; padding: 44px 0 72px; }
    .hero__media { max-width: 560px; padding: 12px; border-radius: 30px; background: linear-gradient(140deg, var(--blue), var(--navy)); box-shadow: 10px 10px 0 var(--accent); }
    .hero__media > img { border: 0; border-radius: 20px; box-shadow: none; }
    .hero__badge { left: 24px; bottom: -22px; }
    .stats { margin-top: -28px; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
    .stat:nth-child(3) { border-left: 0; }

    .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .offices { grid-template-columns: 1fr; }
    .split__media { max-width: 560px; }
    .detail { grid-template-columns: 1fr; }
    .leader { grid-template-columns: 1fr; padding: 22px; gap: 28px; }
    .leader img { max-width: 340px; }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 60px 0; }
    .job-card { flex-direction: column; align-items: flex-start; }
    .page-hero::before { display: none; }
    .page-hero::after { opacity: .35; right: -10px; width: 56px; }
}

@media (max-width: 600px) {
    .container { width: calc(100% - 32px); }
    .brand__logo { height: 60px; }
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery--preview { grid-template-columns: repeat(2, 1fr); }
    .form { padding: 20px; }
    .form__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 32px; }
    .cta-band { padding: 8px 0 60px; }
    .cta-box { padding: 48px 22px; border-radius: 34px; }
    .page-hero.has-banner { padding: 72px 0 76px; }
    .vm-section { padding: 48px 18px 40px; border-radius: 30px; }
    .vm-section__grid { grid-template-columns: 1fr; gap: 18px; }
    .vm-card { padding: 30px 22px; }
    .cta-box__actions, .cta-box__actions .btn { width: 100%; }
    .hero__actions .btn { width: 100%; }
    .service-group__head { align-items: flex-start; }
    .map iframe { height: 320px; }
    .lightbox__prev { left: 8px; }
    .lightbox__next { right: 8px; }
}

@media print {
    .site-header, .mobile-bar, .cta-band, .form { display: none !important; }
}
