/* ============================================================
   RODMOL GROUP — MASTER STYLESHEET
   Premium EPC Corporate Identity
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --navy:        #002B5B;
  --navy-dark:   #001529;
  --navy-mid:    #003d80;
  --orange:      #FF6200;
  --orange-dark: #d95200;
  --orange-light:#FF8533;
  --gray:        #4A4A4A;
  --gray-light:  #7A7A7A;
  --teal:        #00D4FF;
  --teal-dark:   #00A8CC;
  --white:       #FFFFFF;
  --off-white:   #F5F7FA;
  --light-gray:  #E8ECF0;
  --dark-text:   #1A1A2E;
  --body-text:   #3D3D3D;

  /* Gradients */
  --gradient-hero:   linear-gradient(135deg, #001529 0%, #002B5B 40%, #003d80 100%);
  --gradient-orange: linear-gradient(135deg, #FF6200 0%, #FF8533 100%);
  --gradient-teal:   linear-gradient(135deg, #00D4FF 0%, #00A8CC 100%);
  --gradient-card:   linear-gradient(180deg, rgba(0,43,91,0.0) 0%, rgba(0,43,91,0.85) 100%);

  /* Typography */
  --font-heading: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body:    'Inter', 'Segoe UI', Arial, sans-serif;

  /* Spacing */
  --section-pad:    72px;
  --section-pad-sm: 44px;
  --container-max:  100%;
  --container-pad:  60px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --shadow-xl:  0 40px 80px rgba(0,0,0,0.25);

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Better keyboard accessibility */
:focus-visible {
  outline: 3px solid rgba(0, 212, 255, 0.7);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol { list-style: none; }

/* ============================================================
   3. TYPOGRAPHY SYSTEM
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

.display-1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; }
.display-2 { font-size: clamp(2.2rem, 4.5vw, 4rem);  font-weight: 800; line-height: 1.1;  letter-spacing: -0.015em; }
.h1        { font-size: clamp(1.8rem, 3.5vw, 3rem);  font-weight: 700; }
.h2        { font-size: clamp(1.5rem, 2.8vw, 2.5rem); font-weight: 700; }
.h3        { font-size: clamp(1.2rem, 2vw, 1.75rem);  font-weight: 600; }
.h4        { font-size: 1.25rem; font-weight: 600; }
.lead      { font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 400; line-height: 1.8; color: var(--gray); }
.overline  { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); }

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section { padding: var(--section-pad) 0; }
.section-sm { padding: var(--section-pad-sm) 0; }

/* ============================================================
  4A. PAGE DENSITY BALANCING
  ============================================================ */
/* Projects: intentionally compact and fast-scanning */
body.page-projects .section { padding: 56px 0; }
body.page-projects .section-sm { padding: 34px 0; }
body.page-projects .section-header.centered { margin-bottom: 22px; }
body.page-projects .stats-bar { padding: 34px 0; }
body.page-projects .filter-bar { margin-bottom: 20px; }

/* About: slightly more breathing room for narrative content */
body.page-about .section { padding: 80px 0; }
body.page-about .section-sm { padding: 52px 0; }
body.page-about .section-header.centered { margin-bottom: 36px; }
body.page-about .ceo-feature { gap: 56px; }
body.page-about .timeline-item { margin-bottom: 36px !important; }
body.page-about .timeline-item:last-child { margin-bottom: 0 !important; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-orange { color: var(--orange) !important; }
.text-navy { color: var(--navy) !important; }
.text-teal { color: var(--teal) !important; }

.bg-navy { background-color: var(--navy); }
.bg-navy-dark { background-color: var(--navy-dark); }
.bg-off-white { background-color: var(--off-white); }
.bg-white { background-color: var(--white); }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ============================================================
   5. NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(0, 21, 41, 0.84);
  backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 8px 36px rgba(0,0,0,0.28);
  height: 70px;
}

.site-nav.solid {
  background: rgba(0, 21, 41, 0.92);
  backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 8px 36px rgba(0,0,0,0.28);
  height: 70px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .wordmark {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--white);
}

.nav-logo .wordmark span { color: var(--orange); }

.nav-logo .group-tag {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }

.nav-links a.active-page {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-links a.active-page::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  transition: background 0.3s var(--ease), transform 0.2s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

/* Mobile Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--navy-dark);
  padding: 24px 40px 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--orange); }

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ff7a2a 100%);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,98,0,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: var(--navy-dark);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,212,255,0.4);
}

.btn-lg { padding: 20px 44px; font-size: 0.9rem; }
.btn-sm { padding: 10px 20px; font-size: 0.75rem; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   7. SECTION HEADERS
   ============================================================ */
.section-header {
  max-width: 720px;
}
.section-header.centered {
  text-align: center;
  margin: 0 auto 28px;
}

.section-header .overline { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { color: var(--gray); line-height: 1.85; }

.accent-line {
  width: 56px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 24px 0;
}
.accent-line.centered { margin: 24px auto; }

/* ============================================================
   8. HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,21,41,0.88) 0%,
    rgba(0,43,91,0.75) 50%,
    rgba(0,21,41,0.65) 100%
  );
}

/* Blueprint grid overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,98,0,0.15);
  border: 1px solid rgba(255,98,0,0.4);
  border-radius: 40px;
  padding: 8px 20px;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

.hero-badge span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero .tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  max-width: 680px;
  margin-bottom: 34px;
}

.hero .tagline strong { color: var(--teal); font-weight: 600; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero stats strip */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(0,21,41,0.7);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number .accent { color: var(--orange); }

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Sub-page hero (shorter) */
.hero-sub {
  min-height: 360px;
  padding-top: 80px;
}

.hero-sub .hero-content { padding: 56px 0 36px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.scroll-indicator .mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}

/* ============================================================
   9. DIVISIONS SECTION
   ============================================================ */
.divisions {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.division-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}

.division-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.division-card-top {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.division-card-top img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.division-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  z-index: 1;
}

.division-icon-wrap svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.division-card-body { padding: 32px; }

.division-card-body .overline { margin-bottom: 8px; }
.division-card-body h3 { margin-bottom: 14px; }
.division-card-body p { color: var(--gray); font-size: 0.9rem; margin-bottom: 24px; }

.division-card-body .features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.division-card-body .features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray);
}

.division-card-body .features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Division backgrounds */
.div-road { background: linear-gradient(135deg, #002B5B 0%, #003d80 100%); }
.div-modular { background: linear-gradient(135deg, #001529 0%, #002B5B 100%); }
.div-logistics { background: linear-gradient(135deg, #0a2440 0%, #003d80 100%); }

/* Geometric pattern for division cards */
.division-card-top::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.division-card-top::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 150px; height: 150px;
  border: 2px solid rgba(255,98,0,0.2);
  border-radius: 50%;
  z-index: 1;
}

/* ============================================================
   10. WHY RODMOL SECTION
   ============================================================ */
.why-section {
  padding: var(--section-pad) 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,98,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-card {
  background: rgba(0,21,41,0.8);
  padding: 30px 24px;
  transition: background 0.3s var(--ease);
  position: relative;
  border: 1px solid rgba(255,255,255,0.04);
}

.why-card:hover { background: rgba(0,43,91,0.6); }

.why-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255,98,0,0.12);
  border: 1px solid rgba(255,98,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.why-card-icon svg { width: 28px; height: 28px; color: var(--orange); }

.why-card h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ============================================================
   11. MAP SECTION
   ============================================================ */
.map-section {
  padding: var(--section-pad) 0;
  background: var(--white);
  overflow: hidden;
}

.map-wrapper {
  position: relative;
  background: var(--navy-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 40px;
  min-height: 460px;
}

.map-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.world-map-svg {
  width: 100%;
  height: auto;
  max-height: 400px;
  opacity: 0.35;
  position: relative;
  z-index: 1;
}

.map-markers {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transform: translate(-50%, -100%);
}

.map-pin-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid rgba(255,98,0,0.4);
  box-shadow: 0 0 0 6px rgba(255,98,0,0.15);
  animation: ping 2.5s infinite;
  position: relative;
  z-index: 1;
}

.map-pin-label {
  background: rgba(0,43,91,0.9);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  margin-bottom: 4px;
}

.map-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.map-stat {
  text-align: center;
  padding: 24px;
  background: rgba(0,43,91,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
}

.map-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}

.map-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   12. PROJECTS CARDS
   ============================================================ */
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.project-card-image {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.project-card-image img,
.project-card-image .img-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}

.project-card:hover .project-card-image img,
.project-card:hover .project-card-image .img-bg { transform: scale(1.05); }

.project-card-image .overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  z-index: 1;
}

.project-card-image .project-region {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: rgba(0,21,41,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.project-card-image .project-year {
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
}

.project-card-body { padding: 28px; }
.project-card-body .overline { margin-bottom: 8px; }
.project-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.project-card-body p { color: var(--gray); font-size: 0.875rem; line-height: 1.75; margin-bottom: 20px; }

.project-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.project-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-light);
}

.project-meta-item svg { width: 14px; height: 14px; color: var(--teal); }

/* Project image backgrounds (CSS art) */
.proj-img-africa { background: linear-gradient(160deg, #8B5E1A 0%, #4A3000 30%, #1a2a1a 60%, #002B5B 100%); }
.proj-img-bridge { background: linear-gradient(160deg, #001f4a 0%, #003366 40%, #004080 70%, #002B5B 100%); }
.proj-img-smart  { background: linear-gradient(160deg, #001529 0%, #002B5B 50%, #003d80 100%); }
.proj-img-restore{ background: linear-gradient(160deg, #2a3a0a 0%, #1a2a10 40%, #001529 100%); }
.proj-img-mining { background: linear-gradient(160deg, #3A2000 0%, #5A3500 30%, #2A1500 60%, #001529 100%); }
.proj-img-euro   { background: linear-gradient(160deg, #1a1a2a 0%, #2a2a4a 50%, #002B5B 100%); }
.proj-img-sahara { background: linear-gradient(160deg, #6B4F00 0%, #3A2800 40%, #001529 100%); }
.proj-img-pacific{ background: linear-gradient(160deg, #003344 0%, #004455 50%, #002B5B 100%); }

/* ============================================================
   13. VALUES SECTION
   ============================================================ */
.values-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.value-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.value-icon svg { width: 24px; height: 24px; color: var(--white); }

.value-card h4 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }

/* ============================================================
   14. STATS BAR (Projects page)
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 42px 0;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.stats-bar-item {
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 16px 20px;
  text-align: center;
}

.stats-bar-item .num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stats-bar-item .num .accent { color: var(--orange); }
.stats-bar-item .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   15. CAREERS PAGE STYLES
   ============================================================ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 40px;
  border: 1.5px solid var(--light-gray);
  background: var(--white);
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
}

/* Job Cards */
.job-card {
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.job-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.job-card-left { flex: 1; }

.job-dept {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.dept-engineering { background: rgba(0,212,255,0.12); color: var(--teal-dark); }
.dept-construction { background: rgba(255,98,0,0.1); color: var(--orange-dark); }
.dept-logistics    { background: rgba(0,43,91,0.1); color: var(--navy); }
.dept-support      { background: rgba(74,74,74,0.1); color: var(--gray); }

.job-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy); }
.job-card .job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--gray-light);
  font-weight: 500;
}

.job-meta-item svg { width: 13px; height: 13px; }
.job-card .job-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }

.job-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.job-urgent {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,98,0,0.08);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Application Form */
.app-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 860px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-grid-compact {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.complaints-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group label span { color: var(--orange); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark-text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,43,91,0.1);
}

.form-control::placeholder { color: rgba(74,74,74,0.4); }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A4A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.file-upload {
  border: 2px dashed var(--light-gray);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.file-upload:hover { border-color: var(--orange); background: rgba(255,98,0,0.02); }
.file-upload-icon { color: var(--orange); margin: 0 auto 12px; }
.file-upload p { font-size: 0.875rem; color: var(--gray); }
.file-upload strong { color: var(--navy); }

/* Mobile Workforce Banner */
.workforce-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.workforce-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.workforce-banner-content { position: relative; z-index: 1; }

.destination-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.destination-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

.destination-pill .flag { font-size: 1rem; }

/* ============================================================
   16. EXECUTIVE / ABOUT PAGE
   ============================================================ */
.exec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.exec-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.exec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.exec-card-portrait {
  height: 320px;
  position: relative;
  overflow: hidden;
}

.exec-portrait-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.exec-portrait-initials {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  letter-spacing: -0.05em;
  line-height: 1;
}

.exec-portrait-silhouette {
  width: 160px;
  height: 240px;
  position: relative;
  z-index: 1;
}

.exec-card-body { padding: 28px 28px 32px; }
.exec-card-body .overline { margin-bottom: 6px; }
.exec-card-body h3 { font-size: 1.2rem; margin-bottom: 4px; }
.exec-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 16px;
}
.exec-card-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.75; margin-bottom: 20px; }

.exec-social { display: flex; gap: 10px; }
.exec-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  transition: var(--transition);
}
.exec-social a:hover { border-color: var(--navy); color: var(--navy); }

/* Executive portrait backgrounds */
.exec-bg-1 { background: linear-gradient(160deg, #1a3050 0%, #002B5B 60%, #001529 100%); }
.exec-bg-2 { background: linear-gradient(160deg, #1a0a30 0%, #2a1050 60%, #001529 100%); }
.exec-bg-3 { background: linear-gradient(160deg, #003028 0%, #002B5B 60%, #001529 100%); }
.exec-bg-4 { background: linear-gradient(160deg, #002040 0%, #003060 60%, #001529 100%); }
.exec-bg-5 { background: linear-gradient(160deg, #301a00 0%, #402010 50%, #001529 100%); }
.exec-bg-6 { background: linear-gradient(160deg, #0a1a30 0%, #001840 60%, #001529 100%); }

/* CEO Feature */
.ceo-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: var(--section-pad) 0;
}

.ceo-portrait-wrap {
  position: relative;
}

.ceo-portrait-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 460px;
  position: relative;
}

.ceo-portrait-card .exec-bg-1 {
  height: 100%;
}

.ceo-accent-box {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
}

.ceo-accent-box .stat {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.ceo-accent-box .label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.ceo-quote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  border-left: 4px solid var(--orange);
  padding-left: 24px;
  margin: 32px 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding: var(--section-pad) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--teal));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 32px;
  align-items: center;
}

.timeline-item:nth-child(odd) .tl-content { grid-column: 1; text-align: right; padding-right: 32px; }
.timeline-item:nth-child(odd) .tl-dot     { grid-column: 2; }
.timeline-item:nth-child(odd) .tl-empty   { grid-column: 3; }

.timeline-item:nth-child(even) .tl-empty   { grid-column: 1; }
.timeline-item:nth-child(even) .tl-dot     { grid-column: 2; }
.timeline-item:nth-child(even) .tl-content { grid-column: 3; text-align: left; padding-left: 32px; }

.tl-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--orange);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tl-year {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 6px;
}

.tl-content h4 { font-size: 1rem; margin-bottom: 6px; }
.tl-content p  { font-size: 0.85rem; color: var(--gray); }

/* ============================================================
   17. FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .wordmark { color: var(--white); }
.footer-brand .wordmark span { color: var(--orange); }

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.8;
  margin: 20px 0 28px;
  color: rgba(255,255,255,0.45);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,98,0,0.1);
}

.social-btn svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links a:hover { color: var(--orange); }

.footer-cert-badges {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.cert-badge {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   18. ANIMATIONS
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(255,98,0,0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(255,98,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,98,0,0); }
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

@keyframes scroll-dot {
  0%   { opacity: 0; transform: translateX(-50%) translateY(0); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Utility UI: scroll progress and back-to-top */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1500;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.35);
  transition: width 0.12s linear;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,21,41,0.88);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.32);
  cursor: pointer;
  z-index: 1200;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), background 0.2s var(--ease);
}

.back-to-top:hover {
  background: var(--navy);
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.stagger-children.revealed > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger-children.revealed > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
.stagger-children.revealed > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.24s; }
.stagger-children.revealed > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.36s; }
.stagger-children.revealed > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.48s; }
.stagger-children.revealed > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.60s; }

/* ============================================================
   19. TESTIMONIAL / CTA BAND
   ============================================================ */
.cta-band {
  padding: 72px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero .badge-strip {
  margin-top: 38px !important;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-band-content { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 16px; }
.cta-band p  { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============================================================
   20A. REAL SCENES GALLERY
   ============================================================ */
.scene-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.scene-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.scene-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  filter: saturate(1.04) contrast(1.04);
}

.scene-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,21,41,0.9) 0%, rgba(0,21,41,0.22) 55%, rgba(0,21,41,0.05) 100%);
  z-index: 1;
}

.scene-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.2;
  z-index: 2;
  pointer-events: none;
}

.scene-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.08);
}

.scene-card.featured {
  grid-row: span 2;
}

.scene-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 3;
}

.scene-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
}

.scene-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
}

.scene-sub {
  margin-top: 4px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   20B. LIVE MEDIA SHOWCASE
   ============================================================ */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.media-video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
}

.media-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}

/* Shield overlay — blocks YouTube logo/info links; play controls remain usable */
.video-container {
  position: relative;
}

/* Top shield: covers YouTube title, info cards, and top-right overflow menu */
.video-shield {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  z-index: 2;
  background: transparent;
  pointer-events: auto;
  cursor: default;
}

/* Bottom-right shield: covers the YouTube logo that appears on hover */
.video-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  height: 50px;
  z-index: 2;
  pointer-events: auto;
  cursor: default;
}

/* Bottom-left shield: covers watch-later / share buttons that appear on hover */
.video-container::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 50px;
  z-index: 2;
  pointer-events: auto;
  cursor: default;
}

.media-meta {
  padding: 12px 14px 14px;
}

.media-title {
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.media-source {
  margin-top: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.media-link {
  display: inline-flex;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
}

.media-link:hover {
  color: var(--orange);
}

.media-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.media-photo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1px solid var(--light-gray);
}

.media-photo-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.media-photo-caption {
  padding: 10px 12px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
}

.media-photo-caption a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

.media-photo-caption a:hover {
  color: var(--orange);
}

.equipment-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.equipment-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1px solid var(--light-gray);
}

.equipment-frame {
  position: relative;
  overflow: hidden;
}

.equipment-frame img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.equipment-card:hover .equipment-frame img {
  transform: scale(1.04);
}

.equipment-copy {
  padding: 12px 14px 14px;
}

.equipment-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
}

/* ============================================================
   20. MISC COMPONENTS
   ============================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.tag-navy  { background: rgba(0,43,91,0.1); color: var(--navy); }
.tag-orange{ background: rgba(255,98,0,0.12); color: var(--orange-dark); }
.tag-teal  { background: rgba(0,212,255,0.12); color: var(--teal-dark); }

.divider {
  height: 1px;
  background: var(--light-gray);
  margin: 48px 0;
}

.divider.dark { background: rgba(255,255,255,0.08); }

.badge-strip {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.badge-item svg { width: 16px; height: 16px; color: var(--teal); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.breadcrumb a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover { color: var(--orange); }

.breadcrumb .sep {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

.breadcrumb .current {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   21. MEDIA QUERIES — RESPONSIVE
   ============================================================ */
/* ============================================================
   22. EXECUTIVE CARD — portrait variant used in about.html
   ============================================================ */
.exec-portrait {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.exec-portrait svg,
.exec-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exec-name-plate {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,21,41,0.95) 0%, transparent 100%);
  z-index: 2;
}

.exec-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.exec-title-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.exec-body {
  padding: 24px 28px 28px;
}

.exec-body .exec-role {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

.exec-bio {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.exec-highlights {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.exec-highlights span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,43,91,0.08);
  color: var(--navy);
  border: 1px solid rgba(0,43,91,0.15);
  border-radius: 20px;
  padding: 4px 12px;
}

@media (max-width: 1200px) {
  :root { --container-pad: 40px; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 60px;
    --section-pad-sm: 38px;
  }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .exec-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .ceo-feature { gap: 48px; }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 48px 1fr; }
  .timeline-item:nth-child(odd) .tl-content,
  .timeline-item:nth-child(even) .tl-content { grid-column: 2; text-align: left; padding: 0 0 0 24px; }
  .timeline-item:nth-child(odd) .tl-dot,
  .timeline-item:nth-child(even) .tl-dot { grid-column: 1; margin: 0 auto; }
  .timeline-item:nth-child(odd) .tl-empty,
  .timeline-item:nth-child(even) .tl-empty { display: none; }

  .scene-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .scene-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .media-grid,
  .media-photo-row,
  .equipment-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 44px;
    --section-pad-sm: 32px;
    --container-pad: 20px;
  }

  .site-nav {
    padding: 0 20px;
    height: 72px;
  }
  .site-nav.scrolled,
  .site-nav.solid {
    height: 64px;
  }
  .mobile-menu {
    top: 64px;
    padding: 20px 20px 28px;
  }
  .nav-logo .wordmark { font-size: 1.25rem; }
  .nav-logo .group-tag { font-size: 0.55rem; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .exec-grid { grid-template-columns: 1fr; }

  .hero-sub {
    min-height: 340px;
    padding-top: 64px;
  }
  .hero-sub .hero-content { padding: 56px 0 36px; }
  .hero .tagline { margin-bottom: 32px; }
  .stat-item { padding: 20px 12px; }

  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  .ceo-feature { grid-template-columns: 1fr; gap: 28px; }
  .ceo-portrait-card { height: 340px; }

  .app-form { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid-compact { grid-template-columns: 1fr; }
  .complaints-grid { grid-template-columns: 1fr; gap: 20px; }
  .form-group.full-width { grid-column: auto; }

  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .map-stats-row { grid-template-columns: repeat(2, 1fr); }
  .map-wrapper { padding: 24px 18px; }

  .equipment-strip { grid-template-columns: 1fr; }

  .workforce-banner { padding: 30px 20px; }

  .job-card { flex-direction: column; }
  .job-card-right { flex-direction: row; align-items: center; }
  .division-card-top { height: 200px; }
  .project-card-image { height: 220px; }
  .project-card-body,
  .division-card-body,
  .exec-card-body { padding: 22px; }

  .scene-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .scene-card.featured {
    grid-column: auto;
  }

  .media-grid,
  .media-photo-row {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }

  body.page-projects .section { padding: 42px 0; }
  body.page-projects .section-sm { padding: 28px 0; }
  body.page-projects .section-header.centered { margin-bottom: 18px; }

  body.page-about .section { padding: 52px 0; }
  body.page-about .section-sm { padding: 36px 0; }
  body.page-about .section-header.centered { margin-bottom: 26px; }
  body.page-about .timeline-item { margin-bottom: 24px !important; }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 36px;
    --section-pad-sm: 26px;
  }

  :root { --container-pad: 16px; }

  .site-nav {
    padding: 0 14px;
    height: 68px;
  }
  .site-nav.scrolled,
  .site-nav.solid { height: 60px; }
  .mobile-menu {
    top: 60px;
    padding: 16px 14px 22px;
  }
  .hero-content { padding-top: 72px; }
  .hero-badge { margin-bottom: 20px; }
  .hero .tagline { line-height: 1.75; }
  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .hero-stats .container { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
  .map-stats-row { grid-template-columns: 1fr 1fr; }
  .badge-strip { flex-direction: column; align-items: flex-start; }
  .map-wrapper { padding: 24px 16px; min-height: 420px; }
  .app-form { padding: 24px 16px; }
  .workforce-banner { padding: 28px 18px; }
  .section-header.centered { margin: 0 auto 28px; }

  body.page-projects .section { padding: 34px 0; }
  body.page-projects .section-sm { padding: 22px 0; }

  body.page-about .section { padding: 42px 0; }
  body.page-about .section-sm { padding: 30px 0; }
  body.page-about .timeline-item { margin-bottom: 18px !important; }
}

@media (max-width: 380px) {
  .stats-bar-grid,
  .hero-stats .container,
  .map-stats-row {
    grid-template-columns: 1fr;
  }
  .stat-item,
  .stats-bar-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:last-child,
  .stats-bar-item:last-child { border-bottom: none; }
}

@media (prefers-reduced-motion: reduce) {
  html,
  html:focus-within {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
