/* ==========================================================================
   KADIOS ENERGY PARTNERS — COMPLETE PREMIUM REWRITE 2026
   Design: Dark industrial, premium gold accents, trust blue, energy red CTAs
   Palette: #0A0A0A / #D4AF37 / #0B3D91 / #C8102E / #FFFFFF
   Fonts: Poppins (display), Roboto (body)
   Features: Mesh gradients, glassmorphism, floating blobs, wave dividers,
             bento grid, service carousel, FAQ accordion, cursor glow,
             floating CTA bar, custom scrollbar, animated reveals,
             organic border radii, typing animation, 3D team tilt,
             process timeline, service subpages
   ========================================================================== */


/* ==========================================================================
   1. CUSTOM PROPERTIES (~100 lines)
   ========================================================================== */
:root {
  /* Brand */
  --black: #0A0A0A;
  --gold: #D4AF37;
  --gold-light: #E5C65A;
  --gold-dark: #B8952E;
  --blue: #0B3D91;
  --blue-light: #1A5CC7;
  --blue-dark: #082B6B;
  --red: #C8102E;
  --red-light: #E8233D;
  --red-dark: #9A0C22;
  --white: #FFFFFF;

  /* Surfaces */
  --bg: #0A0A0A;
  --bg2: #0F0F0F;
  --bg3: #141414;
  --card: #141414;
  --card-h: #1A1A1A;
  --card-glass: rgba(20, 20, 20, 0.85);
  --navy: #0B1D32;
  --navy-light: #122845;
  --charcoal: #1A1A1A;

  /* Text */
  --t1: #FFFFFF;
  --t2: #C8C8C8;
  --t3: #888888;
  --t4: #555555;

  /* Borders */
  --b0: rgba(212, 175, 55, 0.08);
  --b1: rgba(212, 175, 55, 0.18);
  --b2: rgba(212, 175, 55, 0.35);
  --bw: rgba(255, 255, 255, 0.06);
  --bw2: rgba(255, 255, 255, 0.12);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #D4AF37, #E5C65A);
  --grad-blue: linear-gradient(135deg, #0B3D91, #1A5CC7);
  --grad-red: linear-gradient(135deg, #C8102E, #E8233D);
  --grad-dark: linear-gradient(180deg, #0A0A0A, #141414);
  --grad-navy: linear-gradient(180deg, #0B1D32, #0A0A0A);
  --grad-gold-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));

  /* Shadows — gold-tinted, not gray */
  --sh-xs: 0 1px 3px rgba(0, 0, 0, 0.3);
  --sh-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --sh-md: 0 8px 28px rgba(0, 0, 0, 0.45);
  --sh-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --sh-xl: 0 24px 64px rgba(0, 0, 0, 0.55);
  --sh-gold: 0 8px 32px rgba(212, 175, 55, 0.2);
  --sh-gold-lg: 0 16px 48px rgba(212, 175, 55, 0.25);
  --sh-blue: 0 8px 32px rgba(11, 61, 145, 0.2);
  --sh-red: 0 8px 32px rgba(200, 16, 46, 0.2);
  --sh-card: 0 4px 20px rgba(0, 0, 0, 0.35);
  --sh-card-h: 0 16px 44px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.2);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-full: 9999px;

  /* Organic border radii */
  --r-organic-1: 62% 38% 52% 48% / 55% 42% 58% 45%;
  --r-organic-2: 45% 55% 38% 62% / 52% 48% 55% 45%;
  --r-organic-3: 50% 50% 42% 58% / 60% 40% 55% 45%;

  /* Type */
  --f-display: 'Poppins', system-ui, sans-serif;
  --f-body: 'Roboto', system-ui, sans-serif;

  /* Layout */
  --max-w: 1280px;
  --header-h: 88px;
  --section-gap: 110px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s;
  --t-base: 0.35s;
  --t-slow: 0.6s;

  /* Glass */
  --glass-bg: rgba(20, 20, 20, 0.85);
  --glass-blur: blur(20px) saturate(1.4);
  --glass-border: 1px solid rgba(212, 175, 55, 0.08);
}


/* ==========================================================================
   2. RESET
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--t2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

a:hover {
  color: var(--gold-light);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
}


/* ==========================================================================
   3. LANGUAGE TOGGLE
   ========================================================================== */
.lang-es {
  display: none;
}

body.es .lang-en {
  display: none;
}

body.es .lang-es {
  display: inline;
}

body.es h1.lang-en,
body.es h2.lang-en,
body.es h3.lang-en,
body.es h4.lang-en,
body.es p.lang-en,
body.es span.lang-en,
body.es div.lang-en,
body.es a.lang-en,
body.es li.lang-en {
  display: none;
}

body.es h1.lang-es,
body.es h2.lang-es,
body.es h3.lang-es,
body.es h4.lang-es,
body.es p.lang-es,
body.es div.lang-es,
body.es a.lang-es,
body.es li.lang-es {
  display: block;
}

body.es span.lang-es {
  display: inline;
}


/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  color: var(--t1);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

h5 {
  font-size: 0.95rem;
  font-weight: 600;
}

h6 {
  font-size: 0.85rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

p + p {
  margin-top: 0;
}

.highlight {
  color: var(--gold);
}

.gradient-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

strong {
  font-weight: 700;
  color: var(--t1);
}


/* ==========================================================================
   5. LAYOUT
   ========================================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

.section-sm {
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background: var(--bg);
}

.section-navy {
  background: var(--navy);
}

.section-charcoal {
  background: var(--charcoal);
}

.section-raised {
  background: var(--bg2);
}

.section-gradient {
  background: var(--grad-navy);
}


/* ==========================================================================
   6. SECTION LABELS / TITLES
   ========================================================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: var(--r-full);
}

.text-center .section-label {
  justify-content: center;
}

.text-center .section-label::before {
  display: none;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--t3);
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.text-center {
  text-align: center;
}

.gold-divider {
  width: 80px;
  height: 3px;
  background: var(--grad-gold);
  margin: 1.5rem auto 2.5rem;
  border-radius: var(--r-full);
}


/* ==========================================================================
   7. GRID SYSTEM
   ========================================================================== */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1200px) {
  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-6 {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   8. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
}

.btn i {
  font-size: 0.85em;
  transition: transform var(--t-base) var(--ease);
}

.btn:hover i {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--grad-gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--sh-gold-lg), 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.btn-red {
  background: var(--grad-red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--sh-red);
}

.btn-red:hover {
  background: var(--red-light);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(200, 16, 46, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--sh-gold);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 18px 38px;
  font-size: 1rem;
}


/* ==========================================================================
   9. NAVIGATION — GLASSMORPHIC
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  padding: 0.25rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo .logo-icon {
  height: 120px;
  width: auto;
  transition: height 0.3s var(--ease);
}

.navbar-logo .logo-text {
  display: none;
}

.navbar.scrolled .navbar-logo .logo-icon {
  height: 64px;
}

.navbar.scrolled .navbar-logo .logo-text {
  display: none;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar-links a {
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  transition: all var(--t-base) var(--ease);
  position: relative;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--white);
  background: rgba(212, 175, 55, 0.08);
}

.navbar-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: var(--r-full);
}

/* Services Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 16px;
  padding: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--t2);
  transition: all 0.2s var(--ease);
}

.nav-dropdown-menu a:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--white);
}

.nav-dropdown-menu a i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.nav-dropdown-trigger,
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-trigger i.fa-chevron-down,
.nav-dropdown-toggle i.fa-chevron-down {
  font-size: 0.6rem;
  transition: transform 0.3s var(--ease);
}

.nav-dropdown:hover .nav-dropdown-trigger i.fa-chevron-down,
.nav-dropdown:hover .nav-dropdown-toggle i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  gap: 2px;
  margin-left: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-full);
  padding: 3px;
}

.lang-toggle button {
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--t3);
  background: transparent;
  border: none;
  padding: 6px 14px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  letter-spacing: 1px;
}

.lang-toggle button.active {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.lang-toggle button:hover:not(.active) {
  color: var(--t1);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-base) var(--ease);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .nav-hamburger {
    display: flex;
  }
  .navbar-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
  }
  .navbar-links.open {
    display: flex;
  }
  .navbar-links a {
    font-size: 1.1rem;
    padding: 14px 24px;
  }
  .lang-toggle {
    margin-left: 0;
    margin-top: 16px;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    background: rgba(20, 20, 20, 0.6);
    border: none;
    padding: 8px;
    min-width: auto;
    margin-top: 4px;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }
}


/* ==========================================================================
   9b. MEGA MENU — multi-column desktop panel, mobile accordion
   ========================================================================== */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 860px;
  background: rgba(11, 29, 50, 0.97);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 20px;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
  pointer-events: none;
  z-index: 1001;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.06);
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr 1fr;
  gap: 28px;
}

.mega-menu-col h5 {
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.mega-menu-item {
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  margin-bottom: 2px;
}

.mega-menu-item:hover {
  background: rgba(212, 175, 55, 0.06);
}

.mega-menu-item i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s var(--ease);
}

.mega-menu-item:hover i {
  background: rgba(212, 175, 55, 0.14);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

.mega-menu-item-text {
  display: flex;
  flex-direction: column;
}

.mega-menu-item-text span:first-child {
  font-family: var(--f-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--t1);
  line-height: 1.3;
}

.mega-menu-item-text span:last-child {
  font-size: 0.78rem;
  color: var(--t3);
  line-height: 1.45;
  margin-top: 2px;
}

/* Mega menu simple link (no icon, no description) */
.mega-menu-link {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--f-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--t2);
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.mega-menu-link:hover {
  background: rgba(212, 175, 55, 0.06);
  color: var(--t1);
}

/* Mega menu featured panel (CTA) */
.mega-menu-featured {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.mega-menu-featured h5 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 4px;
  font-size: 0.82rem;
}

.mega-menu-featured p {
  font-size: 0.82rem;
  color: var(--t3);
  line-height: 1.6;
  margin: 0;
}

.mega-menu-featured .btn {
  margin-top: auto;
  font-size: 0.78rem;
  padding: 10px 20px;
}

/* Mega menu mobile */
@media (max-width: 900px) {
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: none;
    background: rgba(11, 29, 50, 0.6);
    border-radius: 12px;
    margin-top: 4px;
    box-shadow: none;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  .nav-dropdown.open .mega-menu {
    opacity: 1;
    visibility: visible;
    max-height: 800px;
    padding: 16px;
    transform: none;
  }
  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mega-menu-featured {
    margin-top: 8px;
  }
}


/* ==========================================================================
   10. HERO (Homepage) — ANIMATED MESH GRADIENT
   ========================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.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(to right, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.5) 100%),
    linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
}

/* Animated Mesh Gradient Overlay */
.hero-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  z-index: 1;
  background:
    radial-gradient(ellipse 50% 50% at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(11, 61, 145, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 35% 35% at 50% 50%, rgba(200, 16, 46, 0.08) 0%, transparent 70%);
  background-size: 200% 200%, 200% 200%, 200% 200%;
  animation: mesh-shift 12s ease-in-out infinite alternate;
}

@keyframes mesh-shift {
  0% {
    background-position: 0% 0%, 100% 100%, 50% 50%;
  }
  100% {
    background-position: 100% 100%, 0% 0%, 80% 20%;
  }
}

/* Floating Decorative Blobs in Hero */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  top: -15%;
  right: -10%;
  pointer-events: none;
  z-index: 1;
  animation: blob-float-1 18s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(11, 61, 145, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -10%;
  left: -8%;
  pointer-events: none;
  z-index: 1;
  animation: blob-float-2 20s ease-in-out infinite alternate;
}

@keyframes blob-float-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.05); }
  100% { transform: translate(20px, -30px) scale(0.95); }
}

@keyframes blob-float-2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.08); }
  100% { transform: translate(-20px, 30px) scale(0.96); }
}

/* Grid Pattern Overlay */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  z-index: 1;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 160px 0 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-inner {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.06);
}

.hero-visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Hero trust points */
.hero-trust-points {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--t2);
  font-weight: 500;
}

.hero-trust-point i {
  color: var(--gold);
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding: 120px 0 60px;
  }
  .hero-visual {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-layout {
    padding: 110px 0 50px;
  }
  .hero-trust-points {
    flex-direction: column;
    gap: 12px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-eyebrow .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--t2);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Typing Subtitle Animation */
.typing-cursor::after {
  content: '|';
  animation: blink 0.8s step-end infinite;
  color: var(--gold);
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Hero Proof Points */
.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--t2);
}

.hero-proof-item i {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--r-full);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero-scroll i {
  color: var(--gold);
  font-size: 0.65rem;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}


/* ==========================================================================
   11. PAGE HERO (Inner Pages)
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.page-hero .hero-bg::after {
  background:
    radial-gradient(ellipse 60% 60% at 50% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.92) 100%);
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  max-width: 700px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
}

.page-hero .hero-sub {
  font-size: 1.1rem;
  color: var(--t2);
  margin: 0 auto 28px;
  line-height: 1.75;
}

.page-hero .hero-actions {
  margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--t3);
  margin-top: 8px;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb span {
  color: var(--t4);
}


/* ==========================================================================
   12. STATS BAR — Glassmorphism, negative margin overlapping hero
   ========================================================================== */
.stats-bar {
  position: relative;
  z-index: 10;
  margin-top: -48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--b1);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg), 0 0 60px rgba(212, 175, 55, 0.06);
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition: all var(--t-base) var(--ease);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--b1);
}

.stat-item:hover {
  background: rgba(212, 175, 55, 0.03);
}

.stat-number {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--t3);
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .stat-item:nth-child(1)::after,
  .stat-item:nth-child(3)::after {
    display: block;
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--b0);
  }
}

@media (max-width: 480px) {
  .stats-bar {
    margin-top: -32px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ==========================================================================
   13. TRUST STRIP — pill badges with gold border, horizontal scrollable
   ========================================================================== */
.trust-strip {
  background: var(--card);
  border-top: 1px solid var(--b0);
  border-bottom: 1px solid var(--b0);
  padding: 18px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.trust-strip::-webkit-scrollbar {
  display: none;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  min-width: max-content;
  padding: 0 28px;
}

.trust-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--t3);
  font-weight: 500;
  padding: 8px 20px;
  border: 1px solid var(--b0);
  border-radius: var(--r-full);
  background: rgba(212, 175, 55, 0.03);
  white-space: nowrap;
  transition: all var(--t-base) var(--ease);
}

.trust-strip-item:hover {
  border-color: var(--b1);
  background: rgba(212, 175, 55, 0.06);
  color: var(--t2);
}

.trust-strip-item i {
  color: var(--gold);
  font-size: 0.9rem;
}

.trust-strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--t4);
  flex-shrink: 0;
}


/* ==========================================================================
   14. CONTENT SPLIT — Image + Text with shape-outside
   ========================================================================== */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-split.reverse {
  direction: rtl;
}

.content-split.reverse > * {
  direction: ltr;
}

.content-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-lg);
}

.content-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 1px solid rgba(212, 175, 55, 0.15);
  pointer-events: none;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}

.content-image:hover img {
  transform: scale(1.03);
}

.content-text .section-label {
  margin-bottom: 16px;
}

.content-text h2 {
  margin-bottom: 18px;
}

.content-text p {
  color: var(--t3);
  line-height: 1.75;
}

/* Shape outside for organic text wrapping */
.content-text .shape-wrap {
  float: left;
  width: 120px;
  height: 120px;
  shape-outside: circle(50%);
  margin: 0 20px 10px 0;
}

@media (max-width: 900px) {
  .content-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .content-split.reverse {
    direction: ltr;
  }
}


/* ==========================================================================
   15. CARDS — gold top-bar on hover, gold-tinted shadows
   ========================================================================== */
.card {
  background: var(--card);
  border: 1px solid var(--bw);
  border-radius: var(--r-md);
  padding: 32px;
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}

.card:hover {
  background: var(--card-h);
  border-color: var(--b1);
  transform: translateY(-6px);
  box-shadow: var(--sh-card-h);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.12);
  transition: all var(--t-base) var(--ease);
}

/* Icon morphing on hover */
.card:hover .card-icon {
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.14);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--t3);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Value Card Variant */
.value-card .card-icon {
  background: rgba(11, 61, 145, 0.12);
  color: var(--blue-light);
  border-color: rgba(11, 61, 145, 0.18);
}

.value-card:hover .card-icon {
  background: rgba(11, 61, 145, 0.2);
  box-shadow: 0 0 20px rgba(11, 61, 145, 0.15);
}

/* Card Link */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 16px;
  transition: all var(--t-fast) var(--ease);
}

.card-link i {
  font-size: 0.75rem;
  transition: transform var(--t-fast) var(--ease);
}

.card-link:hover {
  color: var(--gold-light);
}

.card-link:hover i {
  transform: translateX(4px);
}


/* ==========================================================================
   16. SERVICE CAROUSEL
   ========================================================================== */
.carousel-viewport {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 99px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold);
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.carousel-btn-prev {
  left: -22px;
}

.carousel-btn-next {
  right: -22px;
}

@media (max-width: 1024px) {
  .carousel-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 640px) {
  .carousel-card {
    flex: 0 0 100%;
  }
  .carousel-btn-prev {
    left: 8px;
  }
  .carousel-btn-next {
    right: 8px;
  }
}


/* ==========================================================================
   17. BENTO GRID — asymmetric nth-child column spans
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: bento-counter;
}

.bento-grid .card {
  border-radius: var(--r-md);
  counter-increment: bento-counter;
  position: relative;
  padding: 32px 28px;
  border-left: 3px solid transparent;
  transition: all var(--t-base) var(--ease);
}

.bento-grid .card:hover {
  border-left-color: var(--gold);
}

.bento-grid .card::before {
  content: "0" counter(bento-counter);
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.25);
  letter-spacing: 1px;
}

.bento-grid .card .card-icon {
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.bento-grid .card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.bento-grid .card p {
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   18. SECTOR ICONS — 6-column grid with hover glow
   ========================================================================== */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.sector-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bw);
  border-radius: var(--r-md);
  transition: all var(--t-base) var(--ease);
  text-align: center;
}

.sector-item:hover {
  border-color: var(--b1);
  background: rgba(212, 175, 55, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.08);
}

.sector-item i {
  font-size: 1.8rem;
  color: var(--gold);
  transition: all var(--t-base) var(--ease);
}

.sector-item:hover i {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: scale(1.1);
}

.sector-item h4 {
  font-size: 0.82rem;
  color: var(--t2);
  font-weight: 600;
}

/* Sector Card Variant (richer cards with descriptions) */
.sector-card {
  background: var(--card);
  border: 1px solid var(--bw);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}

.sector-card:hover {
  border-color: var(--b1);
  transform: translateY(-6px);
  box-shadow: var(--sh-card-h);
}

.sector-card:hover::before {
  opacity: 1;
}

.sector-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 16px;
  transition: all var(--t-base) var(--ease);
}

.sector-card:hover .sector-card-icon {
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.14);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.sector-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.sector-card p {
  font-size: 0.88rem;
  color: var(--t3);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .sector-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==========================================================================
   19. CAPABILITY CARDS — parallax background, glassmorphism
   ========================================================================== */
.capability-card {
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--bw2);
  border-radius: var(--r-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.capability-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}

.capability-card:hover {
  border-color: var(--b1);
  transform: translateY(-4px);
  box-shadow: var(--sh-card-h);
  background: rgba(212, 175, 55, 0.04);
}

.capability-card:hover::before {
  opacity: 1;
}

.capability-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
  transition: all var(--t-base) var(--ease);
  position: relative;
  z-index: 1;
}

.capability-card:hover i {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.capability-card h4 {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.capability-card p {
  font-size: 0.92rem;
  color: var(--t3);
  line-height: 1.65;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Parallax background strip for capability section */
.capabilities-parallax {
  position: relative;
  overflow: hidden;
}

.capabilities-parallax .hero-bg {
  position: absolute;
  inset: 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.capabilities-parallax .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--bg) 0%, rgba(10, 10, 10, 0.85) 20%, rgba(10, 10, 10, 0.85) 80%, var(--bg) 100%);
}


/* ==========================================================================
   20. TEAM CARDS — photo cards with 3D tilt perspective
   ========================================================================== */
.team-card {
  background: var(--card);
  border: 1px solid var(--bw);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--t-base) var(--ease);
  text-align: center;
  perspective: 800px;
}

.team-card:hover {
  border-color: var(--b1);
  transform: translateY(-8px) rotateX(2deg) rotateY(-1deg);
  box-shadow: var(--sh-card-h);
}

.team-photo-wrap {
  overflow: hidden;
  position: relative;
}

.team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 20%;
  transition: transform var(--t-slow) var(--ease);
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}

.team-info {
  padding: 24px 20px;
  position: relative;
}

.team-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}

.team-card:hover .team-info::before {
  opacity: 1;
}

.team-info h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--t3);
  margin-top: 10px;
  line-height: 1.6;
}

/* Team card social icons */
.team-social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.team-social a {
  width: 34px;
  height: 34px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bw);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  font-size: 0.8rem;
  transition: all var(--t-base) var(--ease);
}

.team-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}


/* ==========================================================================
   21. TEAM DETAIL — full profile cards for team page
   ========================================================================== */
.team-detail {
  background: var(--card);
  border: 1px solid var(--bw);
  border-radius: var(--r-lg);
  padding: 40px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  transition: all var(--t-base) var(--ease);
}

.team-detail:hover {
  border-color: var(--b1);
  box-shadow: var(--sh-card-h);
}

.team-detail-photo {
  width: 200px;
  height: 240px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--r-md);
  border: 2px solid var(--b0);
}

.team-detail h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.team-detail .team-role {
  display: block;
  margin-bottom: 16px;
}

.team-detail p {
  font-size: 0.95rem;
  color: var(--t3);
  line-height: 1.75;
}

.team-detail-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.team-detail-credentials span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--b0);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
}

@media (max-width: 768px) {
  .team-detail {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}


/* ==========================================================================
   22. SERVICE DETAIL — for services hub page
   ========================================================================== */
.service-detail {
  background: var(--card);
  border: 1px solid var(--bw);
  border-radius: var(--r-lg);
  padding: 40px;
  margin-bottom: 24px;
  transition: all var(--t-base) var(--ease);
}

.service-detail:hover {
  border-color: var(--b1);
  box-shadow: var(--sh-card-h);
}

.service-detail-header {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.service-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--b0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: all var(--t-base) var(--ease);
}

.service-detail:hover .service-detail-icon {
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.service-detail-header h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.service-detail-header p {
  color: var(--t3);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg2);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--t2);
  transition: all var(--t-fast) var(--ease);
}

.service-feature:hover {
  background: rgba(212, 175, 55, 0.05);
}

.service-feature i {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.service-detail-cta {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .service-features {
    grid-template-columns: 1fr;
  }
  .service-detail-header {
    flex-direction: column;
  }
}


/* ==========================================================================
   23. SERVICE SUBPAGE — staffing, consulting, compliance, maintenance
   ========================================================================== */

/* Subpage Overview */
.subpage-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}

.subpage-overview-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--b0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  flex-shrink: 0;
}

.subpage-overview h2 {
  margin-bottom: 12px;
}

.subpage-overview p {
  color: var(--t3);
  font-size: 1rem;
  line-height: 1.75;
}

@media (max-width: 640px) {
  .subpage-overview {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .subpage-overview-icon {
    margin: 0 auto;
  }
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--bw);
  border-radius: var(--r-md);
  transition: all var(--t-base) var(--ease);
}

.capability-item:hover {
  border-color: var(--b1);
  background: rgba(212, 175, 55, 0.03);
  transform: translateY(-2px);
}

.capability-item i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.capability-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.capability-item p {
  font-size: 0.88rem;
  color: var(--t3);
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--grad-gold);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--black);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.1);
  position: relative;
  z-index: 2;
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--t3);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }
}

/* Subpage FAQ reuses .faq-item styles from module 26 */
.subpage-faq .faq-item {
  max-width: 100%;
}


/* ==========================================================================
   24. MISSION / VISION CARDS
   ========================================================================== */
.mv-card {
  background: var(--card);
  border: 1px solid var(--bw);
  border-radius: var(--r-lg);
  padding: 40px;
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}

.mv-card:hover {
  border-color: var(--b1);
  transform: translateY(-4px);
  box-shadow: var(--sh-card-h);
}

.mv-card:hover::before {
  opacity: 1;
}

.mv-card h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.mv-card h3 i {
  color: var(--gold);
  font-size: 1.3rem;
}

.mv-card p {
  color: var(--t3);
  font-size: 0.95rem;
  line-height: 1.75;
}


/* ==========================================================================
   25. CERTIFICATIONS — cert badges with hover glow
   ========================================================================== */
.cert-section {
  background: var(--navy);
  position: relative;
}

.cert-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 32px 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  transition: all var(--t-base) var(--ease);
  min-width: 200px;
}

.cert-badge:hover {
  border-color: var(--b1);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-4px);
  box-shadow: var(--sh-gold), 0 0 40px rgba(212, 175, 55, 0.08);
}

.cert-badge i {
  font-size: 2rem;
  color: var(--gold);
}

.cert-badge strong {
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--t1);
}

.cert-badge span {
  font-size: 0.85rem;
  color: var(--t3);
}


/* ==========================================================================
   26. FAQ ACCORDION — 2-column layout, max-height animation, gold border
   ========================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro .section-label {
  margin-bottom: 16px;
}

.faq-intro h2 {
  margin-bottom: 16px;
}

.faq-intro p {
  color: var(--t3);
  line-height: 1.75;
  margin-bottom: 24px;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-left: 3px solid transparent;
  padding: 0;
  margin-bottom: 8px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s;
}

.faq-item.active {
  border-left-color: var(--gold);
  background: rgba(212, 175, 55, 0.04);
  border-color: rgba(212, 175, 55, 0.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--t1);
  font-size: 0.95rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question i {
  transition: transform 0.3s;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--t3);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-intro {
    position: static;
  }
}


/* ==========================================================================
   27. CTA SECTION — mesh gradient overlay
   ========================================================================== */
.cta-section {
  position: relative;
  padding: var(--section-gap) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.92), rgba(11, 61, 145, 0.6));
}

/* CTA Mesh Gradient */
/* .cta-mesh — REMOVED */
.cta-mesh, .mesh-overlay, .cta-mesh-overlay { display: none !important; }

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 18px;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--t2);
  margin-bottom: 32px;
}

.cta-content .hero-actions {
  justify-content: center;
}


/* ==========================================================================
   28. CONTACT FORM — gold focus border
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--bw);
}

.contact-info-card:last-child {
  border-bottom: none;
}

.contact-info-card i {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--b0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-info-card p {
  color: var(--t3);
  font-size: 0.92rem;
  margin: 0;
}

.contact-info-card a {
  color: var(--t2);
}

.contact-info-card a:hover {
  color: var(--gold);
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--t2);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg2);
  border: 1px solid var(--bw2);
  border-radius: var(--r-sm);
  color: var(--t1);
  font-family: var(--f-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--t-fast) var(--ease);
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
  color: var(--t4);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23888888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   29. FOOTER — 4-column grid, WAVE DIVIDER on top, social icons
   ========================================================================== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--bw);
  padding: 60px 0 80px;
  position: relative;
  z-index: 10;
  isolation: isolate;
}

/* Wave Divider on footer top — disabled, was blocking content */

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.12));
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--t3);
  line-height: 1.7;
}

.footer h4 {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--t1);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--t3);
  font-size: 0.9rem;
  transition: all var(--t-fast) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--t3);
}

.footer-contact-item i {
  color: var(--gold);
  width: 18px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid var(--bw);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--t4);
  margin: 0;
}

.footer-social {
  display: none;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bw);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  font-size: 0.85rem;
  transition: all var(--t-base) var(--ease);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--sh-gold);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-logo-img {
    height: 130px !important;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-logo-img {
    height: 100px !important;
  }
}


/* ==========================================================================
   30. FLOATING CTA BAR — fixed bottom, glassmorphism
   ========================================================================== */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding: 14px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.floating-cta.visible {
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.floating-cta-text {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--t1);
}

.floating-cta-text span {
  color: var(--gold);
}

.floating-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.floating-cta-inner span {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.floating-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .floating-cta .container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .floating-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}


/* 31. CURSOR GLOW — REMOVED */
.cursor-glow { display: none !important; }


/* ==========================================================================
   32. CUSTOM SCROLLBAR — gold thumb on dark track
   ========================================================================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #D4AF37, #B8952E);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #E5C65A, #D4AF37);
}

html {
  scrollbar-width: thin;
  scrollbar-color: #D4AF37 #0A0A0A;
}


/* ==========================================================================
   33. BACK TO TOP — fixed bottom-right, gold circle
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  z-index: 900;
  box-shadow: var(--sh-gold);
  transition: all var(--t-base) var(--ease);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-gold-lg);
}


/* ==========================================================================
   34. PROGRESS BAR — fixed top, gold gradient, 2px
   ========================================================================== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--grad-gold);
  z-index: 1100;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  transition: width 0.1s linear;
}


/* ==========================================================================
   35. SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.48s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.56s; opacity: 1; transform: none; }


/* 36. FLOATING BLOBS — REMOVED */


/* ==========================================================================
   37. WAVE DIVIDERS — reusable top/bottom classes
   ========================================================================== */
.wave-divider-top {
  position: relative;
}

.wave-divider-top::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg2);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 2;
}

.wave-divider-bottom {
  position: relative;
}

.wave-divider-bottom::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg2);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 2;
}

/* Dark variant */
.wave-divider-top.wave-dark::before {
  background: var(--bg);
}

.wave-divider-bottom.wave-dark::after {
  background: var(--bg);
}

/* Navy variant */
.wave-divider-top.wave-navy::before {
  background: var(--navy);
}

.wave-divider-bottom.wave-navy::after {
  background: var(--navy);
}


/* ==========================================================================
   38. ORGANIC BORDER RADII — asymmetric shapes
   ========================================================================== */
.organic-1 {
  border-radius: var(--r-organic-1);
}

.organic-2 {
  border-radius: var(--r-organic-2);
}

.organic-3 {
  border-radius: var(--r-organic-3);
}

.organic-img {
  border-radius: 62% 38% 52% 48% / 55% 42% 58% 45%;
  overflow: hidden;
}

.organic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==========================================================================
   39. UTILITIES
   ========================================================================== */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-6 { margin-bottom: 4rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 4rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.text-left { text-align: left; }
.text-right { text-align: right; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-none { display: none; }

.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }

.w-100 { width: 100%; }
.max-w-sm { max-width: 480px; }
.max-w-md { max-width: 680px; }
.max-w-lg { max-width: 900px; }

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ==========================================================================
   40. RESPONSIVE — breakpoints at 1200, 1024, 900, 768, 640, 480
   ========================================================================== */

/* 1200px — container adjustments */
@media (max-width: 1200px) {
  :root {
    --max-w: 1080px;
  }
  .footer-grid {
    gap: 36px;
  }
}

/* 1024px — grid-4 becomes grid-2, bento becomes single column */
@media (max-width: 1024px) {
  :root {
    --section-gap: 90px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-grid > :nth-child(1),
  .carousel-card {
    flex: 0 0 calc(50% - 10px);
  }
}

/* 900px — hamburger shows, content-split stacks, faq-grid stacks */
@media (max-width: 900px) {
  .navbar-logo .logo-icon {
    height: 90px;
  }
  .navbar.scrolled .navbar-logo .logo-icon {
    height: 56px;
  }
  .nav-hamburger {
    display: flex;
  }
  .navbar-links {
    display: none;
  }
  .navbar-links.open {
    display: flex;
  }
  .content-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .content-split.reverse {
    direction: ltr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-intro {
    position: static;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .sector-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline::before {
    display: none;
  }
}

/* 768px — hero adjustments, stats bar 2-col */
@media (max-width: 768px) {
  .hero-content {
    padding: 120px 0 60px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .section {
    padding: 72px 0;
  }
  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .stat-item:nth-child(1)::after,
  .stat-item:nth-child(3)::after {
    display: block;
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--b0);
  }
  .team-detail {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .service-features {
    grid-template-columns: 1fr;
  }
  .service-detail-header {
    flex-direction: column;
  }
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    min-height: 40vh;
  }
}

/* 640px — grid-2/3 become 1-col */
@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-6 {
    grid-template-columns: 1fr;
  }
  .carousel-card {
    flex: 0 0 100%;
  }
  .carousel-btn-prev {
    left: 8px;
  }
  .carousel-btn-next {
    right: 8px;
  }
  .floating-cta .container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .subpage-overview {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .subpage-overview-icon {
    margin: 0 auto;
  }
}

/* 480px — final mobile tweaks */
@media (max-width: 480px) {
  .navbar-logo .logo-icon {
    height: 72px;
  }
  .navbar.scrolled .navbar-logo .logo-icon {
    height: 48px;
  }
  .container {
    padding: 0 20px;
  }
  .hero-content {
    padding: 110px 0 50px;
  }
  .cert-badges {
    gap: 16px;
  }
  .cert-badge {
    min-width: 0;
    padding: 24px 20px;
  }
  .stats-bar {
    margin-top: -32px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .hero::before,
  .hero::after {
    width: 300px;
    height: 300px;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}


/* ==========================================================================
   CINEMATIC SECTION — full-width image with text overlay
   ========================================================================== */
.cinematic-section {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cinematic-bg {
  position: absolute;
  inset: 0;
}

.cinematic-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinematic-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.65) 50%, rgba(10, 10, 10, 0.4) 100%);
}

.cinematic-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 80px 0;
}

.cinematic-content h2 {
  margin-bottom: 16px;
}

.cinematic-content p {
  font-size: 1.05rem;
  color: var(--t2);
  line-height: 1.8;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .cinematic-section {
    min-height: 40vh;
  }
  .cinematic-bg::after {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.7) 100%);
  }
}


/* ==========================================================================
   OPERATIONAL CAPACITY SECTION
   ========================================================================== */
.capacity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.capacity-card {
  background: var(--card);
  border: 1px solid var(--bw);
  border-radius: var(--r-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.capacity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}

.capacity-card:hover {
  border-color: var(--b1);
  transform: translateY(-6px);
  box-shadow: var(--sh-card-h);
}

.capacity-card:hover::before {
  opacity: 1;
}

.capacity-number {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.capacity-label {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 8px;
}

.capacity-desc {
  font-size: 0.85rem;
  color: var(--t3);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .capacity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .capacity-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   EXPERTISE STRIP (parallax background section)
   ========================================================================== */
.expertise-strip {
  position: relative;
  padding: var(--section-gap) 0;
  overflow: hidden;
}

.expertise-strip .hero-bg::after {
  background:
    linear-gradient(to bottom, var(--bg) 0%, rgba(10, 10, 10, 0.85) 20%, rgba(10, 10, 10, 0.85) 80%, var(--bg) 100%);
}


/* ==========================================================================
   ADDITIONAL ANIMATIONS
   ========================================================================== */
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes rotate-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.float-animation {
  animation: float-slow 6s ease-in-out infinite;
}

.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--gold-dark) 0%,
    var(--gold-light) 25%,
    var(--gold) 50%,
    var(--gold-light) 75%,
    var(--gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}


/* ==========================================================================
   QA FIXES — Class alignment, missing styles, spacing consistency
   ========================================================================== */

/* Background image coverage for sections using <img> tags */
.hero-bg img,
.hero-bg video,
.cta-bg img,
.parallax-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section header bottom spacing */
.section-header {
  margin-bottom: 40px;
}

/* Section CTA wrapper centering */
div.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* CTA section overflow */
section.section-cta {
  overflow: hidden;
}

/* CTA overlay gradient */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.05) 0%, rgba(10, 10, 10, 0.3) 100%);
  z-index: 1;
}

/* CTA buttons flex layout */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats bar — .stat-card alignment */
.stat-card {
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition: all var(--t-base) var(--ease);
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--b1);
}

.stat-card:hover {
  background: rgba(212, 175, 55, 0.03);
}

@media (max-width: 768px) {
  .stat-card:nth-child(2)::after {
    display: none;
  }
  .stat-card:nth-child(1),
  .stat-card:nth-child(2) {
    border-bottom: 1px solid var(--b0);
  }
}

/* Trust strip — .trust-pills, .trust-pill, .trust-dot */
.trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  min-width: max-content;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--t3);
  font-weight: 500;
  white-space: nowrap;
}

.trust-pill i {
  color: var(--gold);
  font-size: 0.9rem;
}

.trust-pill a {
  color: var(--t3);
  transition: color var(--t-fast) var(--ease);
}

.trust-pill a:hover {
  color: var(--gold);
}

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--t4);
  flex-shrink: 0;
}

/* Team carousel — homepage */
.team-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 24px;
  scrollbar-width: none;
}

.team-carousel::-webkit-scrollbar {
  display: none;
}

.team-carousel .team-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.team-carousel .team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform var(--t-slow) var(--ease);
}

.team-carousel .team-card:hover img {
  transform: scale(1.06);
}

.team-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  pointer-events: none;
}

.team-card-overlay h3 {
  font-size: 1rem;
  margin: 0 0 4px;
  color: #fff;
}

.team-card-overlay .team-card-role {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  margin: 0;
}

.team-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.team-carousel-nav button {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--bw);
  color: var(--t2);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-carousel-nav button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

@media (max-width: 768px) {
  .team-carousel .team-card {
    flex: 0 0 220px;
  }
}

/* Content split — .content-split-media, .content-split-text */
.content-split-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-lg);
}

.content-split-media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 1px solid rgba(212, 175, 55, 0.15);
  pointer-events: none;
}

.content-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}

.content-split-media:hover img {
  transform: scale(1.03);
}

.content-split-text .section-label {
  margin-bottom: 16px;
}

.content-split-text h2 {
  margin-bottom: 18px;
}

.content-split-text p {
  color: var(--t3);
  line-height: 1.75;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--t3);
  font-family: var(--f-display);
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-bounce 2s ease-in-out infinite;
}

/* Expertise / Parallax section */
.section-parallax {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: 0;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(10, 10, 10, 0.82) 15%, rgba(10, 10, 10, 0.82) 85%, var(--bg) 100%);
  z-index: 1;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.expertise-card {
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--bw2);
  border-radius: var(--r-md);
  padding: 36px 28px;
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.expertise-card:hover {
  border-color: var(--b1);
  transform: translateY(-4px);
  box-shadow: var(--sh-card-h);
  background: rgba(212, 175, 55, 0.04);
}

.expertise-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 16px;
  transition: all var(--t-base) var(--ease);
}

.expertise-card:hover .expertise-card-icon {
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.14);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.expertise-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.expertise-card p {
  font-size: 0.92rem;
  color: var(--t3);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

/* Bento card (team page values) */
.bento-card {
  background: var(--card);
  border: 1px solid var(--bw);
  border-radius: var(--r-md);
  padding: 32px;
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}

.bento-card:hover {
  background: var(--card-h);
  border-color: var(--b1);
  transform: translateY(-6px);
  box-shadow: var(--sh-card-h);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card .card-icon {
  margin-bottom: 20px;
}

.bento-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.bento-card p {
  font-size: 0.95rem;
  color: var(--t3);
  line-height: 1.7;
  margin: 0;
}

/* Footer column list styling */
.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: var(--t3);
  font-size: 0.9rem;
  transition: all var(--t-fast) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul a:hover {
  color: var(--gold);
}

/* Footer bottom social — hidden */
.footer-bottom-social {
  display: none;
}

.footer-bottom-social a {
  width: 34px;
  height: 34px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bw);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  font-size: 0.8rem;
  transition: all var(--t-base) var(--ease);
}

.footer-bottom-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* Footer wave — hide SVG, rely on ::before */
.footer-wave {
  display: none;
}


/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
  .navbar,
  .back-to-top,
  .floating-cta,
  .progress-bar,
  .cursor-glow,
  .hero-scroll {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  .section {
    padding: 24px 0;
  }
  .card {
    border: 1px solid #ccc;
    box-shadow: none;
  }
}


/* ==========================================================================
   LOGO CAROUSEL — CSS-only infinite scroll
   ========================================================================== */
.logo-carousel {
  padding: 48px 0;
  background: var(--bg2);
  border-top: 1px solid var(--b0);
  border-bottom: 1px solid var(--b0);
  overflow: hidden;
  position: relative;
}

.logo-carousel .section-label {
  text-align: center;
  margin-bottom: 32px;
}

.logo-carousel-track {
  display: flex;
  gap: 48px;
  animation: logo-scroll 40s linear infinite;
  width: max-content;
}

.logo-carousel-track:hover {
  animation-play-state: paused;
}

.logo-carousel-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 64px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-sm);
  transition: all var(--t-base) var(--ease);
}

.logo-carousel-item img {
  max-height: 44px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-carousel-item:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 1);
  transform: scale(1.04);
}

@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Fade edges */
.logo-carousel::before,
.logo-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg2), transparent);
}
.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg2), transparent);
}

@media (max-width: 768px) {
  .logo-carousel-track { gap: 32px; }
  .logo-carousel-item { min-width: 120px; padding: 8px 14px; height: 52px; }
  .logo-carousel-item img { max-height: 36px; max-width: 110px; }
}


/* ==========================================================================
   VENEZUELAN HERITAGE DECORATION
   ========================================================================== */
.heritage-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  color: var(--t2);
  margin-top: 16px;
}
.heritage-badge i {
  color: var(--gold);
}
.heritage-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  opacity: 0.7;
}


/* ==========================================================================
   FOOTER LEGAL LINKS
   ========================================================================== */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  font-size: 0.85rem;
}
.footer-legal a {
  color: var(--t3);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.footer-legal a:hover {
  color: var(--gold);
}
.footer-legal > span {
  color: var(--t4);
}


/* ==========================================================================
   COVERAGE MAP SECTION
   ========================================================================== */
/* Coverage region cards */
.coverage-regions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.coverage-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--b0);
  border-radius: var(--r-md);
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.coverage-card:hover {
  border-color: var(--b1);
  box-shadow: var(--sh-gold);
  transform: translateY(-2px);
}
.coverage-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-gold-subtle);
  border: 1px solid var(--b0);
  border-radius: var(--r-sm);
  font-size: 1.25rem;
  color: var(--gold);
}
.coverage-card-content h3 {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 4px;
}
.coverage-card-focus {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}
.coverage-card-content p:last-child {
  font-size: 0.9rem;
  color: var(--t3);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .coverage-regions {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Coverage stats row */
.coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 40px;
}
.coverage-stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--card);
  border: 1px solid var(--b0);
  border-radius: var(--r-md);
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.coverage-stat:hover {
  border-color: var(--b1);
  box-shadow: var(--sh-gold);
}
.coverage-stat-number {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 6px;
}
.coverage-stat-label {
  font-size: 0.85rem;
  color: var(--t3);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .coverage-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .coverage-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .coverage-stat {
    padding: 18px 12px;
  }
}
