/* =========================================================
   MAAS Infra & Logistics Ltd. — Premium Enterprise Design
   Brand: Deep Navy #061B2E / Dark Blue #082A45 /
          Orange #F7941D / White / Light #F5F7F9 /
          Text #101820 / Grey #667085
   ========================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
  --navy-950: #04101F;
  --navy-900: #061B2E;
  --navy-800: #082A45;
  --navy-700: #0C3760;
  --navy-600: #114A7F;

  --orange-600: #F7941D;
  --orange-500: #F79E38;
  --orange-100: #FEF1E0;

  --ink: #101820;
  --slate: #667085;
  --slate-light: #98A2B3;
  --line: #E4E7EC;

  --grey-50: #F5F7F9;
  --grey-100: #EDF0F3;
  --grey-200: #E4E8EC;

  --white: #FFFFFF;
  --success: #16A34A;
  --error: #DC2626;

  --navy-text: #D9E2EE;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(6,27,46,.06), 0 1px 3px rgba(6,27,46,.08);
  --shadow-md: 0 10px 30px -10px rgba(6,27,46,.16);
  --shadow-lg: 0 28px 60px -20px rgba(6,27,46,.28);
  --shadow-orange: 0 14px 30px -10px rgba(247,148,29,.45);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 32px);
  --header-h: 84px;
  --radius-btn: 8px;

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head: "Manrope", "Inter", system-ui, sans-serif;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange-500); }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Accessible focus */
:focus-visible { outline: 3px solid var(--orange-500); outline-offset: 2px; border-radius: 4px; }
a:focus-visible, button:focus-visible { outline-offset: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy-900); color: #fff;
  padding: 12px 20px; border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

::selection { background: var(--orange-500); color: #fff; }

/* ---------- 3. Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 8vw, 108px); }
.section-sm { padding-block: clamp(48px, 6vw, 72px); }
.section-dark { background: var(--navy-900); color: var(--navy-text); }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4 { color: #fff; }
.section-grey { background: var(--grey-50); }

/* ---------- 4. Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange-600);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--orange-600); border-radius: 2px; }
.eyebrow-center { justify-content: center; }
.eyebrow-center::before { display: none; }
.eyebrow-center::after { content: ""; width: 28px; height: 2px; background: var(--orange-600); border-radius: 2px; }
.eyebrow-light { color: var(--orange-500); }
.eyebrow-light::before, .eyebrow-light::after { background: var(--orange-500); }

.h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.05; }
.h2 { font-size: clamp(2rem, 4.2vw, 3.15rem); line-height: 1.12; }
.h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.2; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.1875rem); color: var(--slate); line-height: 1.7; }
.text-white { color: #fff !important; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

.section-head { margin-bottom: clamp(36px, 5vw, 60px); }
.section-head p { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center p { margin-inline: auto; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--radius-btn);
  font-family: var(--font-head); font-size: 15px; font-weight: 700; line-height: 1;
  letter-spacing: 0.01em; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
  text-align: center;
}
.btn .arr { transition: transform .18s ease; display: inline-block; }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary { background: var(--orange-600); color: #1C1407; }
.btn-primary:hover { background: var(--orange-500); color: #1C1407; box-shadow: var(--shadow-orange); transform: translateY(-1px); }

.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--navy-900); color: var(--navy-900); background: var(--grey-50); transform: translateY(-1px); }

.btn-ghost-light { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

.btn-white { background: #fff; color: var(--navy-900); }
.btn-white:hover { background: var(--grey-100); color: var(--navy-900); box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-sm { padding: 11px 18px; font-size: 14px; }

/* ---------- 6. Header / Navigation ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease, padding .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header .header-inner {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center; gap: 24px; height: var(--header-h);
  transition: height .3s ease;
}
.site-header.scrolled { background: rgba(6,27,46,.97); backdrop-filter: blur(12px); box-shadow: 0 4px 24px rgba(4,16,31,.35); border-color: rgba(255,255,255,.08); }
.site-header.scrolled .header-inner { height: 70px; }

.header-brand img { transition: filter .3s ease; }
.header-brand { display: inline-flex; align-items: center; }

.header-nav { display: flex; align-items: center; justify-content: center; min-width: 0; }
.nav-list { display: flex; align-items: center; justify-content: space-between; gap: 3px; width: 100%; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px; font-family: var(--font-head); font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,.92); border-radius: 8px;
  transition: color .2s ease, background-color .2s ease;
  white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-link .chev { font-size: 11px; transition: transform .2s ease; }
.nav-item.active > .nav-link { color: #fff; }
.nav-item.active > .nav-link::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2.5px;
  background: var(--orange-500); border-radius: 2px;
}
.nav-item:hover .chev { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 250px; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 10px;
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 50;
  border: 1px solid var(--line);
}
.dropdown-menu::before {
  content: ""; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line);
  transform-origin: center;
}
.dropdown-menu a {
  display: block; padding: 11px 14px; border-radius: 8px;
  color: var(--ink); font-family: var(--font-head); font-size: 15px; font-weight: 600;
  transition: background-color .15s ease, color .15s ease, padding-left .15s ease;
}
.dropdown-menu a:hover { background: var(--orange-100); color: var(--orange-600); padding-left: 18px; }
.nav-item:hover .dropdown-menu, .nav-item:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.header-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.nav-toggle {
  display: none; width: 46px; height: 46px;
  border: none; background: transparent; border-radius: 10px; cursor: pointer;
  position: relative; z-index: 120;
}
.nav-toggle .bar {
  position: absolute; left: 12px; right: 12px; height: 2px; background: #fff;
  border-radius: 2px; transition: transform .3s ease, opacity .3s ease, top .3s ease, background-color .3s;
}
.nav-toggle .bar:nth-child(1) { top: 16px; }
.nav-toggle .bar:nth-child(2) { top: 23px; }
.nav-toggle .bar:nth-child(3) { top: 30px; }
.nav-toggle.open .bar:nth-child(1) { top: 23px; transform: rotate(45deg); background: #fff; }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { top: 23px; transform: rotate(-45deg); background: #fff; }
.site-header.menu-open { background: var(--navy-900); border-color: transparent; box-shadow: none; }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; background: var(--navy-900); z-index: 110;
  padding: calc(var(--header-h) + 16px) var(--gutter) 40px; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu .m-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 6px; color: #fff; font-family: var(--font-head); font-size: 20px; font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu .m-link:hover { color: var(--orange-500); }
.mobile-menu .m-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mobile-menu .m-row .m-link { flex: 1; min-width: 0; }
.mobile-menu .m-sub { display: none; padding: 4px 0 16px 14px; }
.mobile-menu .m-sub.open { display: block; }
.mobile-menu .m-sub a { display: block; padding: 11px 6px; color: #C6D3E6; font-size: 16px; font-weight: 500; }
.mobile-menu .m-sub a:hover { color: #fff; }
.mobile-menu .m-toggle { background: none; border: none; color: var(--orange-500); font-size: 20px; padding: 6px; cursor: pointer; }
.mobile-menu .m-cta { margin-top: 26px; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative; min-height: min(100vh, 900px); color: #fff;
  overflow: hidden; background: var(--navy-950);
  display: flex; align-items: center;
}

/* Rotating background slider */
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease-in-out; will-change: opacity; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4,16,31,.94) 0%, rgba(6,27,46,.78) 50%, rgba(6,27,46,.5) 100%),
              linear-gradient(0deg, rgba(4,16,31,.68) 0%, rgba(4,16,31,.14) 45%);
  z-index: 1;
}
.hero-slide.active .hero-slide-img { animation: heroKenBurns 8s ease forwards; }
@keyframes heroKenBurns { from { transform: scale(1); } to { transform: scale(1.08); } }

/* Hero slider controls */
.hero-sync { position: absolute; right: 0; left: 0; top: 50%; z-index: 3; transform: translateY(-50%); pointer-events: none; }
.hero-arrows { display: flex; justify-content: flex-end; gap: 12px; pointer-events: auto; }
.hero-arrow {
  width: 52px; height: 52px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.28); color: #fff;
  font-size: 30px; line-height: 1; cursor: pointer; transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.hero-arrow:hover { background: var(--orange-500); border-color: var(--orange-500); transform: scale(1.08); }

.hero-dots {
  position: absolute; left: 0; right: 0; bottom: 34px; z-index: 4;
  display: flex; justify-content: center; gap: 10px;
}
.hero-dot {
  width: 12px; height: 12px; border-radius: 50%; padding: 0; border: 2px solid rgba(255,255,255,.55);
  background: transparent; cursor: pointer; transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.hero-dot:hover { transform: scale(1.2); }
.hero-dot.active { background: var(--orange-500); border-color: var(--orange-500); }

.hero-inner {
  position: relative; z-index: 3; width: 100%;
  padding-block: calc(var(--header-h) + 60px) 120px; max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange-500); margin-bottom: 24px;
  opacity: 0; animation: heroFade .8s .1s ease forwards;
}
.hero-eyebrow::before { content: ""; width: 36px; height: 2.5px; background: var(--orange-500); border-radius: 2px; }
.hero h1 { color: #fff; margin-bottom: 24px; opacity: 0; animation: heroFadeUp .8s .25s ease forwards; }
.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: #D5DEEA; max-width: 620px;
  margin-bottom: 36px; line-height: 1.7;
  opacity: 0; animation: heroFadeUp .8s .4s ease forwards;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; opacity: 0; animation: heroFadeUp .8s .55s ease forwards; }

.hero-chips {
  display: flex; flex-wrap: wrap; gap: 14px 30px;
  opacity: 0; animation: heroFadeUp .8s .7s ease forwards;
}
.hero-chip { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 600; color: #E9EFF5; }
.hero-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 0 4px rgba(247,148,29,.16); }

@keyframes heroFadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- 8. Stats panel (overlapping) ---------- */
.stats {
  position: relative; z-index: 6; margin-top: -86px;
  padding-bottom: clamp(48px, 6vw, 72px);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--navy-800); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stat {
  position: relative; text-align: center; padding: 30px 20px 26px;
}
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 26px; bottom: 26px; width: 1px; background: rgba(255,255,255,.1);
}
.stat-value {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; color: #fff; line-height: 1.05; letter-spacing: -0.02em;
}
.stat-value .u { color: var(--orange-500); }
.stat-label { margin-top: 8px; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #A9BED6; }

/* ---------- 9. Cards & grids ---------- */
.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Service card */
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card .sc-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.service-card .sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.service-card:hover .sc-img img { transform: scale(1.07); }
.service-card .sc-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,16,31,.32), rgba(4,16,31,0) 55%); }
.service-card .sc-num {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(6,27,46,.72); border: 1px solid rgba(255,255,255,.28);
  color: var(--orange-500); font-family: var(--font-head); font-weight: 800; font-size: 13px;
  padding: 5px 12px; border-radius: 999px; letter-spacing: .04em;
}
.service-card .sc-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.service-card .sc-icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 18px;
  display: grid; place-items: center; background: var(--orange-100); color: var(--orange-600);
}
.service-card .sc-title { font-size: 21px; margin-bottom: 10px; }
.service-card .sc-desc { color: var(--slate); font-size: 15.5px; line-height: 1.65; margin-bottom: 18px; flex: 1; }
.service-card .sc-link {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy-800);
}
.service-card .sc-link .arr { transition: transform .2s ease; }
.service-card:hover .sc-link .arr { transform: translateX(5px); }
.service-card .sc-link:hover { color: var(--orange-600); }

/* Capability card (dark) */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cap-card {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background-color .25s ease, transform .25s ease, border-color .25s ease;
}
.cap-card:hover { background: rgba(255,255,255,.08); border-color: rgba(247,148,29,.45); transform: translateY(-4px); }
.cap-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(247,148,29,.16); color: var(--orange-500); }
.cap-card h3 { font-size: 17px; color: #fff; }
.cap-card p { font-size: 14px; color: #A9BED6; line-height: 1.6; }
.cap-icon svg { display: block; }

/* Light-theme capability cards (grey sections) */
.section-grey .cap-card {
  background: #fff; border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(6,27,46,.04);
}
.section-grey .cap-card:hover {
  background: #fff; border-color: rgba(247,148,29,.5); box-shadow: var(--shadow-md);
}
.section-grey .cap-card .cap-icon {
  background: linear-gradient(135deg, rgba(6,27,46,.06), rgba(247,148,29,.12));
  color: var(--orange-600); border: 1px solid rgba(247,148,29,.25);
}
.section-grey .cap-card h3 { color: var(--navy-900); }
.section-grey .cap-card p { color: var(--slate); }

/* Why card */
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #F3D3A6; }
.why-card .w-num {
  position: absolute; top: 16px; right: 22px;
  font-family: var(--font-head); font-size: 46px; font-weight: 800; line-height: 1;
  color: #F0F2F5; transition: color .25s ease;
}
.why-card:hover .w-num { color: var(--orange-100); }
.why-card .w-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--orange-100); color: var(--orange-600); margin-bottom: 18px; }
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p { color: var(--slate); font-size: 15px; line-height: 1.65; }

/* Check list */
.check-list { display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); font-size: 15.5px; }
.check-list .tick {
  flex: 0 0 20px; width: 20px; height: 20px; margin-top: 3px;
  border-radius: 50%; background: var(--orange-100); color: var(--orange-600);
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}
.check-list-light li { color: #D9E2EE; }
.check-list-light .tick { background: rgba(247,148,29,.22); color: var(--orange-500); }

/* Icon badge */
.icon-badge { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: var(--grey-100); color: var(--navy-800); }

/* ---------- 10. Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.split-media { position: relative; }
.split-media .main-img { width: 100%; aspect-ratio: 4/4.4; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.split-media .float-img {
  position: absolute; bottom: -30px; left: -26px; width: 44%;
  aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-lg);
  border: 6px solid #fff; box-shadow: var(--shadow-md);
}
.exp-badge {
  position: absolute; top: 22px; right: -14px;
  background: var(--orange-600); color: #1C1407;
  border-radius: var(--radius-md); padding: 18px 22px; box-shadow: var(--shadow-lg); text-align: center;
}
.exp-badge .n { font-family: var(--font-head); font-size: 28px; font-weight: 800; line-height: 1; color: #1C1407; }
.exp-badge .l { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; font-weight: 700; opacity: .85; }

/* ---------- 11. Trust band ---------- */
.trust-band { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.trust-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,27,46,.95) 30%, rgba(6,27,46,.72) 62%, rgba(6,27,46,.55)), url("../images/opt/trust-bg.webp") center/cover no-repeat;
}
.trust-band .tb-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px,6vw,90px); align-items: center; }
.trust-band h2 { color: #fff; margin-bottom: 20px; }
.trust-band .tb-sub { color: #B9C6DA; margin-bottom: 28px; max-width: 560px; }
.trust-band .tb-cta { margin-top: 12px; }

/* ---------- 12. Capacity ---------- */
.capacity { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px,5vw,80px); align-items: center; }
.capacity-media { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.capacity-media img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.capacity-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,27,46,.35), transparent 45%); }
.cap-stats { display: grid; gap: 16px; }
.cap-stat { display: flex; align-items: center; gap: 22px; background: var(--grey-50); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 20px 24px; transition: transform .2s ease, box-shadow .2s ease; border-left: 4px solid var(--orange-600); }
.cap-stat:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.cap-stat .v { font-family: var(--font-head); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; color: var(--navy-900); line-height: 1; white-space: nowrap; }
.cap-stat .v small { color: var(--orange-600); }
.cap-stat .l { color: var(--slate); font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- 13. Locations ---------- */
.loc-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,4vw,56px); align-items: stretch; }
.loc-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 460px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.loc-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.loc-list { display: grid; gap: 18px; align-content: start; }
.loc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px 24px; display: grid; gap: 8px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s; border-left: 4px solid transparent; }
.loc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-left-color: var(--orange-600); }
.loc-card .lc-tag { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-600); display: inline-flex; align-items: center; gap: 8px; }
.loc-card h3 { font-size: 19px; }
.loc-card p { color: var(--slate); font-size: 15px; }
.loc-card .lc-links { display: flex; gap: 18px; margin-top: 6px; }
.loc-card .lc-links a { font-size: 14.5px; font-weight: 700; font-family: var(--font-head); }
.dist-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.dist-chip { background: var(--orange-100); color: var(--orange-600); font-size: 14px; font-weight: 700; font-family: var(--font-head); padding: 8px 16px; border-radius: 999px; }
.dist-chip b { color: var(--navy-900); }

/* ---------- 14. Industries ---------- */
.industry {
  display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 30px 16px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.industry:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #F3D3A6; }
.industry .i-icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: var(--grey-100); color: var(--navy-800); transition: background-color .22s ease, color .22s ease; }
.industry:hover .i-icon { background: var(--orange-600); color: #1C1407; }
.industry .i-name { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: var(--ink); }

/* ---------- 15. Clients ---------- */
.client-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: center; }
.client-logo { display: grid; place-items: center; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); min-height: 92px; transition: transform .2s ease, box-shadow .2s ease; }
.client-logo:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.client-logo img { max-height: 52px; width: auto; object-fit: contain; transition: transform .3s ease; filter: grayscale(100%); opacity: .75; }
.client-logo:hover img { transform: scale(1.04); filter: grayscale(0); opacity: 1; }

/* ---------- 16. Testimonials ---------- */
.tst-bg { position: relative; background: var(--navy-900); overflow: hidden; }
.tst-bg::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(6,27,46,.9), rgba(6,27,46,.94)), url("../images/opt/tst-bg.webp") center/cover no-repeat; }
.tst-wrap { position: relative; z-index: 2; max-width: 900px; margin-inline: auto; }
.tst-track { overflow: hidden; }
.tst-slide { display: none; text-align: center; padding: 10px 8px 26px; }
.tst-slide.active { display: block; animation: fadeUp .5s ease both; }
.tst-slide .qmark { width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%; background: rgba(247,148,29,.18); color: var(--orange-500); display: grid; place-items: center; font-family: Georgia, serif; font-size: 34px; font-weight: 700; }
.tst-slide blockquote { font-family: var(--font-head); font-size: clamp(1.25rem, 2.6vw, 1.65rem); font-weight: 700; line-height: 1.5; letter-spacing: -0.01em; color: #F2F5F9; margin-bottom: 26px; }
.tst-slide .tst-meta { display: flex; flex-direction: column; gap: 2px; align-items: center; }
.tst-slide .tst-name { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: #fff; }
.tst-slide .tst-co { font-size: 14px; color: #A9BED6; }
.tst-dots { display: flex; justify-content: center; gap: 10px; margin-top: 6px; }
.tst-dots button { width: 10px; height: 10px; border-radius: 999px; border: none; cursor: pointer; background: rgba(255,255,255,.28); transition: background-color .2s ease, width .2s ease; }
.tst-dots button.active { background: var(--orange-500); width: 28px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- 17. CTA band ---------- */
.cta-band { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; padding-block: clamp(70px, 9vw, 110px); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(6,27,46,.94) 30%, rgba(6,27,46,.55)), url("../images/opt/cta-bg.webp") center/cover no-repeat; }
.cta-band .cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #C6D3E6; max-width: 560px; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-contact { margin-top: 18px; display: flex; gap: 28px; flex-wrap: wrap; }
.cta-contact a { display: inline-flex; align-items: center; gap: 10px; color: #C6D3E6; font-weight: 600; font-size: 15.5px; }
.cta-contact a:hover { color: #fff; }
.cta-contact .ico { color: var(--orange-500); }

/* ---------- 18. Page hero (inner pages) ---------- */
.page-hero { position: relative; background: var(--navy-950); color: #fff; padding: calc(var(--header-h) + 64px) 0 76px; overflow: hidden; }
.page-hero .ph-media { position: absolute; inset: 0; }
.page-hero .ph-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .ph-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,16,31,.9) 0%, rgba(6,27,46,.66) 60%, rgba(6,27,46,.42)); }
.page-hero .ph-inner { position: relative; z-index: 2; max-width: 780px; }
.page-hero .ph-eyebrow { color: var(--orange-500); font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 16px; }
.page-hero p { color: #D5DEEA; max-width: 620px; font-size: clamp(1rem, 1.5vw, 1.15rem); }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 22px; font-size: 14px; font-weight: 500; }
.breadcrumb a { color: #A9BED6; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,.4); }
.breadcrumb .current { color: #fff; }

/* ---------- 19. Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(24px, 4vw, 40px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 14px; font-weight: 600; color: var(--ink); font-family: var(--font-head); }
.form-label .req { color: var(--error); }
.form-control { width: 100%; padding: 13px 16px; border: 1.5px solid var(--grey-200); border-radius: var(--radius-sm); background: var(--grey-50); font-size: 15.5px; transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease; }
.form-control:focus { outline: none; border-color: var(--orange-600); background: #fff; box-shadow: 0 0 0 4px rgba(247,148,29,.14); }
.form-control::placeholder { color: var(--slate-light); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23667085' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-error { font-size: 13px; color: var(--error); display: none; }
.form-group.invalid .form-control { border-color: var(--error); }
.form-group.invalid .form-error { display: block; }
.form-note { font-size: 13.5px; color: var(--slate); margin-top: 12px; }
.form-status { display: none; margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; }
.form-status.ok { display: block; background: #EAF8F0; color: var(--success); border: 1px solid #BFE8CF; }
.form-status.err { display: block; background: #FEF0F0; color: var(--error); border: 1px solid #F5C6C6; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- 20. Footer ---------- */
.site-footer { background: var(--navy-950); color: #A9BED6; }
.footer-top { padding-block: clamp(52px, 7vw, 84px) clamp(36px, 5vw, 56px); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 60px); }
.site-footer h4 { color: #fff; font-size: 16px; letter-spacing: .04em; margin-bottom: 20px; font-weight: 700; }
.footer-about p { font-size: 15px; line-height: 1.7; margin-top: 18px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06); color: #C6D3E6;
  border: 1px solid rgba(255,255,255,.1);
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--orange-600); color: #1C1407; transform: translateY(-3px); }
.footer-links { display: grid; gap: 12px; }
.footer-links a { color: #A9BED6; font-size: 15px; transition: color .18s ease, padding-left .18s ease; }
.footer-links a:hover { color: #fff; padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; font-size: 15px; margin-bottom: 15px; line-height: 1.6; }
.footer-contact .fi { color: var(--orange-500); margin-top: 3px; flex: 0 0 auto; }
.footer-contact a { color: #C6D3E6; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 22px; }
.footer-bottom .fb-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; }
.footer-bottom a { color: #A9BED6; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom nav { display: flex; gap: 22px; }

/* ---------- 21. FAQ accordion ---------- */
.faq-layout { display: grid; grid-template-columns: 280px 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.faq-nav { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 8px; }
.faq-nav h3 { margin-bottom: 10px; font-size: 18px; }
.faq-nav a { display: block; padding: 12px 16px; border-radius: var(--radius-sm); font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--slate); border: 1px solid var(--line); transition: all .2s ease; }
.faq-nav a:hover { color: var(--orange-600); border-color: #F3D3A6; }
.faq-nav a.active { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.faq-nav .btn { margin-top: 10px; }
.faq-group { margin-bottom: 44px; scroll-margin-top: calc(var(--header-h) + 20px); }
.faq-group h2 { margin-bottom: 18px; font-size: 24px; }
.accordion { display: grid; gap: 14px; }
.accordion-item { border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.accordion-item.open { border-color: #F3D3A6; box-shadow: var(--shadow-sm); }
.accordion-item.open .acc-title { color: var(--orange-600); }
.acc-title { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 22px; background: none; border: none; cursor: pointer; font-family: var(--font-head); font-size: 16.5px; font-weight: 700; text-align: left; color: var(--ink); }
.acc-icon { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 8px; background: var(--grey-100); color: var(--navy-900); display: grid; place-items: center; transition: transform .25s ease, background-color .25s ease; font-size: 16px; }
.accordion-item.open .acc-icon { transform: rotate(45deg); background: var(--orange-600); color: #1C1407; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-body-inner { padding: 0 22px 22px; color: var(--slate); font-size: 15.5px; line-height: 1.7; }
.acc-body-inner ul { list-style: disc; padding-left: 20px; display: grid; gap: 6px; margin-top: 8px; }

/* ---------- 22. Careers ---------- */
.role-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px; display: flex; flex-direction: column; gap: 10px; transition: transform .2s ease, box-shadow .2s ease; border-top: 4px solid var(--orange-600); }
.role-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.role-card .r-tag { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-600); }
.role-card h3 { font-size: 19px; }
.role-card p { font-size: 14.5px; color: var(--slate); }
.roles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.perk { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; }
.perk .icon-badge { flex-shrink: 0; }
.perk h3 { font-size: 17px; }
.perk p { font-size: 14.5px; color: var(--slate); }

/* ---------- 23. Team ---------- */
.team-card { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card .team-photo { aspect-ratio: 1/1; overflow: hidden; }
.team-card .team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-card h3 { font-size: 19px; padding-top: 20px; }
.team-card p { font-size: 14px; font-weight: 700; color: var(--orange-600); letter-spacing: .04em; text-transform: uppercase; padding: 4px 18px 24px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lead-quote { text-align: center; max-width: 820px; margin-inline: auto; }
.lead-quote .qmark { width: 70px; height: 70px; margin: 0 auto 24px; border-radius: 50%; background: var(--orange-100); color: var(--orange-600); display: grid; place-items: center; font-family: Georgia, serif; font-size: 38px; font-weight: 700; }
.lead-quote blockquote { font-family: var(--font-head); font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 700; line-height: 1.4; color: var(--ink); margin-bottom: 20px; }
.lead-quote .tst-name { font-family: var(--font-head); font-weight: 700; }

/* ---------- 24. Service detail ---------- */
.sd-layout { display: grid; grid-template-columns: 1fr 320px; gap: clamp(32px, 4vw, 56px); align-items: start; }
.sd-main { display: grid; gap: 40px; }
.sd-block h2 { margin-bottom: 16px; }
.sd-block p { color: var(--slate); font-size: 16px; margin-bottom: 14px; }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.spec-list li { display: flex; gap: 12px; align-items: center; background: var(--grey-50); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; font-size: 15px; font-weight: 500; }
.spec-list .tick { color: var(--orange-600); background: var(--orange-100); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; flex: 0 0 auto; }
.sd-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sd-gallery figure { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); }
.sd-gallery img { aspect-ratio: 16/10; object-fit: cover; width: 100%; transition: transform .5s ease; cursor: pointer; }
.sd-gallery figure:hover img { transform: scale(1.04); }
.sd-aside { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 20px; }
.sd-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; }
.sd-box h3 { font-size: 17px; margin-bottom: 14px; }
.sd-box .svc-link { display: block; padding: 12px 16px; border-radius: var(--radius-sm); border: 1px solid var(--line); font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink); margin-bottom: 10px; transition: all .2s ease; }
.sd-box .svc-link:hover, .sd-box .svc-link.active { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.sd-help { background: var(--navy-800); color: #fff; border-radius: var(--radius-md); padding: 26px; }
.sd-help h3 { color: #fff; }
.sd-help p { color: #B9C6DA; font-size: 15px; margin-bottom: 18px; }
.sd-help .btn { width: 100%; }
.sd-contact-line { display: flex; gap: 12px; align-items: center; margin-top: 16px; font-size: 15px; color: #C6D3E6; }
.sd-contact-line a { color: #fff; font-weight: 600; }
.sd-contact-line .fi { color: var(--orange-500); }

/* ---------- 25. Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px,4vw,56px); align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px; transition: transform .2s ease, box-shadow .2s ease; border-top: 4px solid var(--orange-600); margin-bottom: 18px; }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card h3 { font-size: 18px; margin-bottom: 10px; }
.contact-card p { color: var(--slate); font-size: 15px; line-height: 1.65; }
.contact-card a { font-weight: 600; }
.contact-card .c-lines, .contact-card .c-links { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; color: var(--slate); }
.contact-card .c-lines a, .contact-card .c-links a { color: var(--navy-800); font-weight: 700; font-family: var(--font-head); }
.contact-card .c-lines a:hover, .contact-card .c-links a:hover { color: var(--orange-600); }
.map-full { min-height: 420px; }
.prose .sd-block { margin-bottom: 10px; }

/* ---------- 26. Quote mini / side card ---------- */
.quote-card { background: var(--navy-800); color: #fff; border-radius: var(--radius-lg); padding: 34px 30px; position: relative; overflow: hidden; }
.quote-card::before { content: ""; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(247,148,29,.16); }
.quote-card::after { content: ""; position: absolute; bottom: -80px; left: -40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(247,148,29,.08); }
.quote-card h3 { color: #fff; margin-bottom: 10px; position: relative; z-index: 1; }
.quote-card p { color: #C6D3E6; font-size: 15px; margin-bottom: 20px; position: relative; z-index: 1; }
.quote-card .qc-contact { border-top: 1px solid rgba(255,255,255,.1); margin-top: 22px; padding-top: 18px; display: grid; gap: 10px; font-size: 15px; position: relative; z-index: 1; }
.quote-card .qc-contact a { color: #A9BED6; font-weight: 600; }
.quote-card .qc-contact a:hover { color: var(--orange-500); }
.quote-card .check-list { position: relative; z-index: 1; }
.quote-card .check-list li { color: #D9E2EE; }
.quote-card .check-list .tick { background: rgba(247,148,29,.25); color: var(--orange-500); }

/* ---------- 27. Scroll top ---------- */
.to-top { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 46px; height: 46px; border-radius: 12px; background: var(--navy-800); color: #fff; border: none; cursor: pointer; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s ease; box-shadow: var(--shadow-md); }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--orange-600); }

/* ---------- 28. Projects / Facility gallery ---------- */
.project-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 220px; gap: 18px; }
.project-item { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; background: var(--navy-900); }
.project-item.tall { grid-row: span 2; }
.project-item.wide { grid-column: span 2; }
.project-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease, opacity .5s ease; opacity: .92; }
.project-item:hover img { transform: scale(1.08); opacity: 1; }
.project-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,16,31,.75), rgba(4,16,31,0) 50%); opacity: .85; transition: opacity .4s ease; }
.project-item:hover::after { opacity: 1; }
.project-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 20px; color: #fff;
  transform: translateY(8px); transition: transform .35s ease;
}
.project-item:hover .project-cap { transform: translateY(0); }
.project-cap .pc-icon { color: var(--orange-500); font-size: 20px; margin-bottom: 8px; }
.project-cap h3 { color: #fff; font-size: 17px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(4,16,31,.94); display: flex; align-items: center; justify-content: center; padding: 40px; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: min(1100px, 92vw); max-height: 86vh; text-align: center; }
.lightbox img { width: 100%; max-height: 72vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox figcaption { color: #D9E2EE; font-family: var(--font-head); font-weight: 700; font-size: 17px; margin-top: 18px; }
.lightbox .lb-close { position: absolute; top: 26px; right: 30px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); color: #fff; font-size: 22px; cursor: pointer; display: grid; place-items: center; }
.lightbox .lb-close:hover { background: var(--orange-600); color: #1C1407; }
.lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08);
  color: #fff; font-size: 26px; cursor: pointer; display: grid; place-items: center;
}
.lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: var(--orange-600); color: #1C1407; }
.lightbox .lb-prev { left: 26px; }
.lightbox .lb-next { right: 26px; }
.lightbox .lb-count { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: #A9BED6; font-family: var(--font-head); font-weight: 700; }

/* ---------- 28b. Mission / team / faq / extra page components ---------- */
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mission-card { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--orange-600); border-radius: var(--radius-md); padding: 30px 28px; transition: transform .25s ease, box-shadow .25s ease; }
.mission-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mission-card h3 { font-size: 21px; margin-bottom: 12px; }
.mission-card p { color: var(--slate); font-size: 15.5px; line-height: 1.7; }

.cap-stats-light .cap-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-left: 4px solid var(--orange-500); }
.cap-stats-light .cap-stat .v { color: #fff; }
.cap-stats-light .cap-stat .v small { color: var(--orange-500); }
.cap-stats-light .cap-stat .l { color: #A9BED6; }

/* FAQ (direct markup used by faqs.php) */
.faq-wrap { display: grid; grid-template-columns: 280px 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.faq-wrap .faq-nav { position: sticky; top: calc(var(--header-h) + 20px); }
.faq-wrap .faq-nav h3 { margin-bottom: 14px; font-size: 18px; }
.faq-wrap .faq-nav ul { display: grid; gap: 8px; margin-bottom: 14px; }
.faq-content { min-width: 0; }
.faq-group { margin-bottom: 44px; scroll-margin-top: calc(var(--header-h) + 20px); }
.faq-group h2 { margin-bottom: 18px; font-size: 24px; }
.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.open { border-color: #F3D3A6; box-shadow: var(--shadow-sm); }
.faq-item.open .faq-q { color: var(--orange-600); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 22px; background: none; border: none; cursor: pointer; font-family: var(--font-head); font-size: 16.5px; font-weight: 700; text-align: left; color: var(--ink); }
.faq-icon { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 8px; background: var(--grey-100); color: var(--navy-900); display: grid; place-items: center; transition: transform .25s ease, background-color .25s ease; font-size: 18px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange-600); color: #1C1407; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 22px; color: var(--slate); font-size: 15.5px; line-height: 1.7; }

.c-addr { margin-bottom: 12px; }
.map-full { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-full iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- 29. Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- 30. Responsive ---------- */
@media (max-width: 1180px) {
  .cap-grid { grid-template-columns: repeat(3, 1fr); }
  .header-inner { gap: 14px; }
  .nav-link { padding: 8px 8px; font-size: 13.5px; }
  .header-brand img { width: 128px; height: auto; }
  .btn-header { padding: 11px 15px; font-size: 13.5px; }
}
@media (max-width: 1024px) {
  :root { --header-h: 74px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .capacity, .loc-wrap, .contact-grid { grid-template-columns: 1fr; }
  .trust-band .tb-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }
  .sd-layout { grid-template-columns: 1fr; }
  .sd-aside { position: static; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-nav { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .client-strip { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .split-media { margin-bottom: 10px; }
  .split-media .float-img { left: 10px; }
  .loc-map { min-height: 380px; }
  .exp-badge { right: 10px; }
  .project-grid { grid-auto-rows: 200px; }
}
@media (max-width: 900px) {
  .header-nav, .header-cta .btn-header { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 700px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .project-item.wide { grid-column: span 2; }
  .hero-inner { padding-top: calc(var(--header-h) + 40px); padding-bottom: 104px; }
  .hero-actions .btn { flex: 1; min-width: 200px; }
  .hero-chips { gap: 12px 20px; }
  .hero-arrows { justify-content: center; }
  .hero-arrow { width: 44px; height: 44px; font-size: 24px; }
  .hero-dots { bottom: 20px; }
  .hero-sync { top: auto; bottom: 66px; transform: none; }
  .stats { margin-top: -60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .client-strip { grid-template-columns: repeat(2, 1fr); }
  .spec-list { grid-template-columns: 1fr; }
  .sd-gallery { grid-template-columns: 1fr; }
  .cta-band .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-band .cta-actions .btn { flex: 1; }
  .breadcrumb { font-size: 13px; }
  .lightbox .lb-prev { left: 10px; }
  .lightbox .lb-next { right: 10px; }
  .lightbox { padding: 30px 14px; }
}
@media (max-width: 380px) {
  .cap-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .project-item.wide, .project-item.tall { grid-column: span 1; grid-row: span 1; }
}
