/* ===== SOMBREIRO GLOBAL STYLES =====
   Unified with nav.css color palette
   Tailwind handles responsive utilities
   ===================================== */

:root {
  /* Brand Colors - Single Source of Truth */
  --orange: #D94E0F;
  --green: #1A5C2A;
  --blue: #2196F3;
  --sand: #F5F0E8;
  --gold: #C9943A;
  --dark: #1A1A1A;
  --mid: #4A5568;
  --border: #E2E8F0;
  --light: #F7F8FA;
  
  /* Layout */
  --nav-h: 137px;
  --util-h: 36px;
}

/* Accessibility: Skip to main content link */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only:focus {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--green);
  color: white;
  text-decoration: underline;
}

/* Focus states for better keyboard navigation */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: #ffffff;
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: var(--nav-h);
      background: url('https://images.unsplash.com/photo-1590496793907-4d66e2994b4d?q=80&w=1391&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
      background-color: #071017; /* fallback */
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10, 15, 25, 0.78) 0%, rgba(10, 15, 25, 0.55) 45%, rgba(10, 15, 25, 0.82) 100%);
      z-index: 0;
    }

    .hero-slides {
      position: relative;
      z-index: 1;
      width: 100%;
      height: calc(100vh - 72px);
      min-height: 680px;
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 5rem 2rem 2rem;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(24px);
      transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.1s ease;
      background: transparent;
      z-index: 0;
    }

    .hero-slide.active {
      position: relative;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
      z-index: 2;
    }

    .hero-slide-copy {
      max-width: 640px;
      width: 100%;
      margin: 0 auto;
      text-align: left;
      color: #f8fafc;
    }

    .hero-carousel-controls {
      position: absolute;
      left: 50%;
      bottom: 2rem;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 1rem;
      z-index: 2;
    }

    .hero-arrow {
      width: 48px;
      height: 48px;
      border-radius: 999px;
      border: none;
      background: rgba(255,255,255,0.16);
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform 0.2s ease, background 0.2s ease;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .hero-arrow:hover {
      background: rgba(255,255,255,0.3);
      transform: translateY(-2px);
    }

    .hero-arrow:focus {
      outline: 2px solid rgba(255,255,255,0.8);
      outline-offset: 2px;
    }

    .hero-dots {
      display: flex;
      gap: 0.75rem;
      align-items: center;
    }

    .hero-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,0.35);
      cursor: pointer;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .hero-dot:focus {
      outline: 2px solid rgba(255,255,255,0.8);
      outline-offset: 2px;
    }

    .hero-dot.active {
      background: rgba(255,255,255,0.95);
      transform: scale(1.15);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(26,92,42,0.04) 0%, rgba(255,255,255,0) 60%),
        linear-gradient(to bottom, #ffffff, #f8faf8);
    }

    /* Delta wave SVG pattern */
    .delta-pattern {
      position: absolute;
      right: -60px;
      top: 50%;
      transform: translateY(-50%);
      width: 55%;
      opacity: 0.06;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 5rem 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 1.25rem;
    }

    .hero-eyebrow::before {
      content: '';
      width: 28px; height: 2px;
      background: var(--orange);
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      font-weight: 900;
      line-height: 1.1;
      color: #ffffff;
      margin-bottom: 1.5rem;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--green);
    }

    .hero h1 span {
      color: var(--orange);
    }

    .hero-desc {
      font-size: 1.1rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.85);
      max-width: 480px;
      margin-bottom: 2.5rem;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .hero-slide-copy .hero-eyebrow {
      color: var(--orange);
    }

    .hero-slide-copy .btn-secondary {
      border-color: rgba(255,255,255,0.75);
      color: #ffffff;
    }

    .hero-slide-copy .btn-secondary:hover {
      color: #ffffff;
      border-color: var(--green);
    }

    .btn-primary {
      background: var(--green);
      color: white;
      padding: 0.9rem 2rem;
      border-radius: 4px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 4px 16px rgba(26,92,42,0.25);
      border: 2px solid transparent;
    }

    .btn-primary:hover {
      background: var(--orange);
      box-shadow: 0 4px 20px rgba(217,78,15,0.35);
      transform: translateY(-1px);
    }

    .btn-primary:focus {
      outline: 2px solid var(--orange);
      outline-offset: 2px;
      box-shadow: 0 4px 20px rgba(217,78,15,0.35);
    }

    .btn-secondary {
      border: 2px solid var(--dark);
      color: var(--dark);
      padding: 0.9rem 2rem;
      border-radius: 4px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-secondary:hover {
      border-color: var(--green);
      color: var(--green);
      transform: translateY(-1px);
    }

    .btn-secondary:focus {
      outline: 2px solid var(--green);
      outline-offset: 2px;
      border-color: var(--green);
    }

    /* Glass card utility */
    .glass-card {
      width: 240px;
      height: 360px;
      background: rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(11px);
      -webkit-backdrop-filter: blur(11px);
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 36px 18px rgba(255, 255, 255, 1.8);
      position: relative;
      overflow: hidden;
    }

    .glass-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
      );
    }

    .glass-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 1px;
      height: 100%;
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.8),
        transparent,
        rgba(255, 255, 255, 0.3)
      );
    }

    /* Glass button variant (use alongside existing btn classes) */
    .glass-btn {
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.18);
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      border-radius: 12px;
      transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    }
    .glass-btn:hover { transform: translateY(-3px); background: rgba(255,255,255,0.18); }

    /* Solid hover colors for buttons (including glass-btn combinations) */
    .btn-primary:hover,
    .btn-primary.glass-btn:hover {
      background: var(--orange);
      color: #ffffff;
      box-shadow: 0 6px 22px rgba(217,78,15,0.35);
      transform: translateY(-1px);
    }

    .btn-secondary:hover,
    .btn-secondary.glass-btn:hover {
      background: var(--green);
      color: #ffffff;
      border-color: var(--green);
      box-shadow: 0 6px 18px rgba(26,92,42,0.25);
      transform: translateY(-1px);
    }

    .btn-white:hover,
    .btn-white.glass-btn:hover {
      background: var(--orange);
      color: #ffffff;
      transform: translateY(-1px);
    }

    /* Hero visual */
    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .hero-logo-wrap {
      position: relative;
      width: 420px;
      height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-logo-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1px solid rgba(26,92,42,0.12);
      animation: spinSlow 25s linear infinite;
    }

    .hero-logo-ring-2 {
      position: absolute;
      inset: 30px;
      border-radius: 50%;
      border: 1px dashed rgba(217,78,15,0.15);
      animation: spinSlow 18s linear infinite reverse;
    }

    .hero-logo-main {
      width: 280px;
      height: auto;
      position: relative;
      z-index: 2;
      filter: drop-shadow(0 20px 60px rgba(26,92,42,0.18));
      animation: floatLogo 5s ease-in-out infinite;
    }

    /* Floating badges */
    .hero-badge {
      position: absolute;
      background: white;
      border-radius: 12px;
      padding: 0.75rem 1rem;
      box-shadow: 0 8px 32px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      font-weight: 600;
      white-space: nowrap;
      animation: floatBadge 4s ease-in-out infinite;
      border: 1px solid rgba(0,0,0,0.06);
    }

    .hero-badge:nth-child(2) { top: 60px; left: -20px; animation-delay: 0.5s; }
    .hero-badge:nth-child(3) { bottom: 80px; right: -10px; animation-delay: 1.5s; }
    .hero-badge:nth-child(4) { top: 50%; left: -30px; transform: translateY(-50%); animation-delay: 1s; }

    .badge-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
    }

    /* Stats strip */
    .stats-strip {
      background: var(--dark);
      color: white;
      padding: 2rem;
    }

    .stats-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
    }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--orange);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-top: 0.4rem;
    }

    /* ── DELTA STORY ── */
    .delta-section {
      padding: 7rem 2rem;
      background: var(--sand);
      position: relative;
      overflow: hidden;
    }

    .delta-section::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, var(--green), var(--orange));
    }

    .delta-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .section-label::before {
      content: '';
      width: 20px; height: 2px;
      background: var(--orange);
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 700;
      line-height: 1.2;
      color: var(--dark);
      margin-bottom: 1.5rem;
    }

    .section-title em {
      font-style: normal;
      color: var(--green);
    }

    .delta-text p {
      font-size: 1rem;
      line-height: 1.8;
      color: #4a5568;
      margin-bottom: 1rem;
    }

    .delta-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-top: 2rem;
    }

    .value-card {
      background: white;
      border-radius: 8px;
      padding: 1.25rem;
      border-left: 3px solid var(--green);
    }

    .value-card h4 {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--dark);
      margin-bottom: 0.25rem;
    }

    .value-card p {
      font-size: 0.8rem;
      color: #718096;
      line-height: 1.5;
      margin: 0 !important;
    }

    .delta-visual {
      position: relative;
    }

    .delta-map-block {
      background: var(--green);
      border-radius: 16px;
      padding: 3rem 2rem;
      color: white;
      position: relative;
      overflow: hidden;
      min-height: 380px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .delta-map-block::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 20%, rgba(201,148,58,0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(217,78,15,0.2) 0%, transparent 50%);
    }

    .river-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0.15;
    }

    .delta-map-content {
      position: relative;
      z-index: 2;
    }

    .delta-map-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .delta-map-content p {
      font-size: 0.9rem;
      opacity: 0.85;
      line-height: 1.6;
    }

    .ports-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .port-tag {
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.25);
      color: white;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.3rem 0.75rem;
      border-radius: 20px;
    }

    /* ── SERVICES ── */
    .services-section {
      padding: 7rem 2rem;
      background: white;
    }

    .services-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .services-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 4rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      perspective: 1400px;
    }

    .service-card {
      /* glass look for service cards */
      background: rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(11px);
      -webkit-backdrop-filter: blur(11px);
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.3);
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
      padding: 2rem;
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
      position: relative;
      overflow: hidden;
      transform-style: preserve-3d;
      will-change: transform;
    }

    .service-card:hover {
      border-color: rgba(26,92,42,0.25);
      box-shadow: 0 22px 60px rgba(0,0,0,0.12);
      transform: translateY(-10px) rotateX(2deg) rotateY(-1deg);
    }

    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(to right, var(--green), var(--orange));
      transform: scaleX(0);
      transition: transform 0.3s;
      transform-origin: left;
    }

    .service-card:hover {
      border-color: rgba(26,92,42,0.2);
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
      transform: translateY(-4px);
    }

    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: rgba(26,92,42,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
    }

    .service-icon svg {
      width: 28px;
      height: 28px;
      color: var(--green);
    }

    .service-icon .material-icons-outlined {
      font-size: 28px;
      color: var(--green);
      font-weight: 300;
    }

    .dna-card-icon {
      width: 56px; height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      background: rgba(255,255,255,0.08);
      margin-bottom: 1.25rem;
    }

    .dna-card-icon svg {
      width: 28px;
      height: 28px;
      color: white;
    }

    .service-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.75rem;
    }

    .service-card p {
      font-size: 0.875rem;
      line-height: 1.7;
      color: #718096;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--green);
      text-decoration: none;
      margin-top: 1.25rem;
      transition: gap 0.2s;
    }

    .service-link:hover { gap: 0.6rem; }

    /* ── WHY US ── */
    .why-section {
      padding: 7rem 2rem;
      background: var(--dark);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .why-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top right, rgba(217,78,15,0.12), transparent 30%),
        radial-gradient(circle at bottom left, rgba(201,148,58,0.08), transparent 28%);
      pointer-events: none;
    }

    .why-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .why-left .section-label { color: var(--gold); }
    .why-left .section-label::before { background: var(--gold); }

    .why-left .section-title { color: white; }
    .why-left .section-title em { color: var(--orange); }

    .why-left p {
      color: rgba(255,255,255,0.65);
      line-height: 1.8;
      font-size: 1rem;
    }

    .why-reasons {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .reason {
      position: relative;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.35rem 1.35rem 1.2rem;
      border-radius: 18px;
      border: 1px solid transparent;
      background:
        linear-gradient(180deg, rgba(24,24,24,0.98), rgba(17,17,17,0.98)) padding-box,
        linear-gradient(135deg, rgba(217,78,15,0.95), rgba(201,148,58,0.72)) border-box;
      box-shadow: 0 14px 30px rgba(0,0,0,0.18);
      overflow: hidden;
    }

    .reason::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent 55%);
      pointer-events: none;
    }

    .reason-num {
      flex-shrink: 0;
      width: 2.7rem;
      height: 2.7rem;
      border-radius: 999px;
      display: grid;
      place-items: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: white;
      line-height: 1;
      background: linear-gradient(135deg, var(--orange), #f08a2d);
      box-shadow: 0 8px 18px rgba(217,78,15,0.28);
    }

    .reason-text h4 {
      font-weight: 700;
      color: white;
      margin-bottom: 0.35rem;
      font-size: 1rem;
      letter-spacing: 0.01em;
      position: relative;
      z-index: 1;
    }

    .reason-text p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.68);
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    /* ── CTA BANNER ── */
    .cta-section {
      padding: 6rem 2rem;
      background: linear-gradient(135deg, var(--green) 0%, #0f3d1a 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(201,148,58,0.2) 0%, transparent 70%);
    }

    .cta-inner {
      position: relative;
      z-index: 2;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-inner h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: white;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .cta-inner p {
      color: rgba(255,255,255,0.75);
      font-size: 1.05rem;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }

    .btn-white {
      background: white;
      color: var(--green);
      padding: 1rem 2.5rem;
      border-radius: 4px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }

    .btn-white:hover {
      background: var(--orange);
      color: white;
      transform: translateY(-2px);
    }

    /* ── FOOTER ── */
    footer {
      background: #0d0d0d;
      color: rgba(255,255,255,0.6);
      padding: 4rem 2rem 2rem;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand img { height: 56px; margin-bottom: 1rem; }

    .footer-brand p {
      font-size: 0.875rem;
      line-height: 1.7;
      max-width: 280px;
    }

    .footer-col h4 {
      color: white;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
    }

    .footer-col ul { list-style: none; }

    .footer-col ul li {
      margin-bottom: 0.65rem;
    }

    .footer-col ul li a {
      text-decoration: none;
      color: rgba(255,255,255,0.55);
      font-size: 0.875rem;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover { color: var(--orange); }

    .address-label {
      color: var(--orange);
      font-weight: 700;
    }
    
    /* Social icons in footer */
    .footer-socials { display: flex; align-items: center; gap: 1rem; }
    .social-list { list-style: none; display: flex; gap: 0.5rem; margin: 0; padding: 0; }
    .social-link {
      display: inline-flex;
      width: 40px; height: 40px;
      align-items: center; justify-content: center;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.95);
      text-decoration: none;
      background: transparent;
      transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.12s ease;
    }
    .social-link img,
    .social-link svg { width: 18px; height: 18px; display: block; }
    .social-link:hover { background: var(--orange); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(217,78,15,0.18); }


    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
    }

    .footer-bottom a {
      color: var(--orange);
      text-decoration: none;
    }

    /* ── ANIMATIONS ── */
    @keyframes spinSlow {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes floatLogo {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    @keyframes floatBadge {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    .hero-logo-ring { transform-origin: center center; }

    /* Fade in on load */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-content { grid-template-columns: 1fr; text-align: center; }
      .hero-slide-copy { text-align: center; }
      .hero-desc { margin: 0 auto 2.5rem; }
      .hero-actions { justify-content: center; }
      .hero-visual { display: none; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .delta-inner { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .why-inner { grid-template-columns: 1fr; }
      .why-reasons { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }

    @media (max-width: 767px) {
      .hero-content { padding: 4rem 1.25rem; }
      .services-grid { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
      .delta-values { grid-template-columns: 1fr; }
      .why-section { padding: 5.5rem 1.25rem; }
      .reason { padding: 1.15rem; }
    }

/* ===== about.html ===== */
:root {
      --orange: #D94E0F;
      --green: #1A5C2A;
      --dark: #1A1A1A;
      --mid: #4A5568;
      --light: #F7F8FA;
      --border: #E2E8F0;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; color: var(--dark); background: #fff; overflow-x: hidden; }

    /* Shared nav styling lives in css/nav.css. */

    /* ── ABOUT HERO ── */
    .about-page .hero {
      min-height: 88vh;
      background: linear-gradient(to bottom, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.5) 60%, rgba(26,26,26,0.75) 100%),
        url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1600&q=80') center/cover no-repeat;
      display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
      position: relative; overflow: hidden;
    }
    .about-page .hero::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 4px; background: linear-gradient(to right, var(--green), var(--orange));
    }
    .hero-inner {
      max-width: 1200px; width: min(1200px, calc(100vw - 4rem)); margin: 0 auto;
      padding: 4rem 2rem 5rem;
    }
    .hero-eyebrow {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--orange);
      margin-bottom: 1.25rem;
      display: flex; align-items: center; gap: 0.6rem;
    }
    .hero-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--orange); }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 900; line-height: 1.1; color: white;
      max-width: 700px; margin-bottom: 1.75rem;
    }
    .hero h1 em { font-style: normal; color: var(--orange); }
    .hero-sub {
      font-size: 1.05rem; line-height: 1.8;
      color: rgba(255,255,255,0.75); max-width: 540px;
      margin-bottom: 2.5rem;
    }
    .hero-scroll {
      display: inline-flex; align-items: center; gap: 0.6rem;
      color: rgba(255,255,255,0.55); font-size: 0.8rem;
      font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
      text-decoration: none; cursor: pointer; background: none; border: none;
      transition: color 0.2s;
    }
    .hero-scroll:hover { color: var(--orange); }
    .hero-scroll svg { animation: bounce 2s infinite; }
    @keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

    /* ── SHARED ── */
    .section-wrap { max-width: 1200px; width: min(1200px, calc(100vw - 4rem)); margin: 0 auto; padding: 5rem 2rem; }
    .section-wrap.narrow { max-width: 860px; }
    .divider { border: none; border-top: 1px solid var(--border); }

    .eyebrow {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--orange);
      margin-bottom: 1rem;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .eyebrow::before { content: ''; width: 16px; height: 2px; background: var(--orange); }

    h2.section-h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 700; line-height: 1.2; color: var(--dark);
      margin-bottom: 1.25rem;
    }
    h2.section-h2 em { font-style: normal; color: var(--orange); }

    .body-text { font-size: 0.975rem; line-height: 1.85; color: var(--mid); }
    .body-text + .body-text { margin-top: 1rem; }

    /* ── INTRO + DOWNLOADS ── */
    .intro-grid {
      display: grid; grid-template-columns: 1fr 300px; gap: 5rem; align-items: start;
    }
    .download-links { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
    .download-links[hidden] { display: none !important; }
    .dl-link {
      display: flex; align-items: center; gap: 0.75rem;
      padding: 0.85rem 1.1rem;
      border: 1px solid var(--border); border-radius: 6px;
      text-decoration: none; color: var(--dark);
      font-size: 0.85rem; font-weight: 600;
      transition: all 0.2s; background: white;
    }
    .dl-link:hover { border-color: var(--green); color: var(--green); background: rgba(26,92,42,0.03); }
    .dl-icon {
      width: 34px; height: 34px; border-radius: 5px;
      background: rgba(217,78,15,0.08);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; flex-shrink: 0; color: var(--orange);
    }
    .dl-link svg { margin-left: auto; color: var(--mid); flex-shrink:0; }

    /* Stat block in intro aside */
    .stat-block {
      background: var(--dark); border-radius: 10px;
      padding: 2rem; color: white; margin-bottom: 1.5rem;
    }
    .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
    .stat-item {}
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem; font-weight: 700; color: var(--orange); line-height: 1;
    }
    .stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; }

    /* ── ACCORDION ── */
    .accordion-section { background: var(--light); }
    .accordion-inner { max-width: 1200px; width: min(1200px, calc(100vw - 4rem)); margin: 0 auto; padding: 5rem 2rem; }
    .accordion-grid { display: grid; grid-template-columns: 380px 1fr; gap: 5rem; align-items: start; }
    .accordion-left { position: sticky; top: 96px; }
    .accordion-items { margin-top: 0; }
    .accordion-item { border-bottom: 1px solid var(--border); }
    .accordion-item:first-child { border-top: 1px solid var(--border); }
    .accordion-btn {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.25rem 0;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem; font-weight: 600; color: var(--dark);
      text-align: left; transition: color 0.2s; gap: 1rem;
    }
    .accordion-btn:hover { color: var(--green); }
    .accordion-btn.open { color: var(--green); }
    .accordion-icon {
      width: 24px; height: 24px; border-radius: 50%;
      background: var(--border); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.25s; font-size: 0.9rem; font-weight: 700;
    }
    .accordion-btn.open .accordion-icon { background: var(--green); color: white; transform: rotate(45deg); }
    .accordion-body {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }
    .accordion-body.open { max-height: 500px; }
    .accordion-body-inner { padding-bottom: 1.5rem; }
    .accordion-body-inner p { font-size: 0.9rem; line-height: 1.8; color: var(--mid); }
    .accordion-body-inner p + p { margin-top: 0.75rem; }

    /* ── LEADERSHIP ── */
    .leadership-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }
    .leader-card { text-align: center; }
    .leader-photo {
      width: 100%; aspect-ratio: 4 / 5;
      border-radius: 8px; overflow: hidden;
      background: var(--light);
      margin-bottom: 1rem;
      position: relative;
    }
    .leader-photo-inner {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, var(--light) 0%, #e2e8f0 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 3rem;
    }
    .leader-image {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .leader-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; font-weight: 700; color: var(--dark);
      margin-bottom: 0.2rem;
    }
    .leader-title { font-size: 0.775rem; color: var(--mid); line-height: 1.4; }

    /* ── DNA SECTION ── */
    .dna-section { background: var(--dark); color: white; }
    .dna-inner { max-width: 1200px; width: min(1200px, calc(100vw - 4rem)); margin: 0 auto; padding: 5rem 2rem; }
    .dna-intro { max-width: 640px; margin-bottom: 3.5rem; }
    .dna-intro .eyebrow { color: var(--orange); }
    .dna-intro .eyebrow::before { background: var(--orange); }
    .dna-intro h2 { color: white; }
    .dna-intro p { font-size: 0.975rem; line-height: 1.85; color: rgba(255,255,255,0.65); }
    .dna-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .dna-card {
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px; padding: 2rem;
      transition: border-color 0.25s, background 0.25s;
    }
    .dna-card:hover { border-color: var(--orange); background: rgba(255,255,255,0.03); }
    .dna-card-icon {
      width: 56px; height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      background: rgba(255,255,255,0.08);
      margin-bottom: 1.25rem;
    }
    .dna-card-icon svg {
      width: 28px;
      height: 28px;
      color: white;
    }
    .dna-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; font-weight: 700; color: white;
      margin-bottom: 0.85rem;
    }
    .dna-card p { font-size: 0.875rem; line-height: 1.75; color: rgba(255,255,255,0.6); }

    /* ── VISION / MISSION ACCORDION ── */
    .vm-section { background: white; }
    .vm-inner { max-width: 1200px; width: min(1200px, calc(100vw - 4rem)); margin: 0 auto; padding: 5rem 2rem; }
    .vm-grid { display: grid; grid-template-columns: minmax(0, 1fr) 2px minmax(0, 1fr); gap: 3rem; align-items: start; }
    .vm-col h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem;
    }
    .vm-col p { font-size: 0.95rem; line-height: 1.8; color: var(--mid); }
    .vm-divider {
      width: 2px; background: linear-gradient(to bottom, var(--green), var(--orange));
      border-radius: 2px;
      min-height: 100%;
    }

    /* ── PEOPLE SECTION ── */
    .people-section { background: var(--light); }
    .people-inner { max-width: 1200px; width: min(1200px, calc(100vw - 4rem)); margin: 0 auto; padding: 5rem 2rem; }
    .people-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
    .people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .people-card {
      background: white; border-radius: 10px; overflow: hidden;
      border: 1px solid var(--border);
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .people-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-3px); }
    .people-card-img {
      height: 200px;
      display: flex; align-items: center; justify-content: center;
      font-size: 4rem;
    }
    .people-card-img.green-bg { background: linear-gradient(135deg, var(--green), #0f3d1a); }
    .people-card-img.orange-bg { background: linear-gradient(135deg, var(--orange), #8b2a05); }
    .people-card-img.dark-bg { background: linear-gradient(135deg, #2d3748, var(--dark)); }
    .people-card-body { padding: 1.5rem; }
    .people-card-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem;
    }
    .people-card-body p { font-size: 0.875rem; line-height: 1.7; color: var(--mid); }
    .card-link {
      display: inline-flex; align-items: center; gap: 0.35rem;
      font-size: 0.8rem; font-weight: 600; color: var(--green);
      text-decoration: none; margin-top: 1rem; transition: gap 0.2s;
    }
    .card-link:hover { gap: 0.6rem; }

    /* ── CTA STRIP ── */
    .cta-strip { background: var(--green); }
    .cta-inner {
      max-width: 1200px; width: min(1200px, calc(100vw - 4rem)); margin: 0 auto; padding: 3.5rem 2rem;
      display: flex; align-items: center; justify-content: space-between;
      gap: 2rem; flex-wrap: wrap;
    }
    .cta-inner h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; font-weight: 700; color: white; margin-bottom: 0.35rem;
    }
    .cta-inner p { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
    .btn-white {
      background: white; color: var(--green);
      padding: 0.9rem 2.25rem; border-radius: 4px;
      font-weight: 700; font-size: 0.9rem; text-decoration: none;
      white-space: nowrap; transition: all 0.2s; flex-shrink: 0;
    }
    .btn-white:hover { background: var(--orange); color: white; }

    /* ── FOOTER ── */
    footer { background: #0d0d0d; color: rgba(255,255,255,0.55); padding: 4rem 2rem 2rem; }
    .footer-inner { max-width: 1200px; width: min(1200px, calc(100vw - 4rem)); margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand img { height: 52px; margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
    .footer-col h4 { color: white; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.65rem; }

    /* Search overlay */
    .search-overlay {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      background: rgba(6,10,14,0.6);
      z-index: 9999;
      padding: 2rem;
    }
    .search-overlay.active { display: flex; }
    .search-inner {
      width: 100%;
      max-width: 820px;
      background: rgba(10,15,20,0.95);
      color: white;
      border-radius: 12px;
      padding: 2rem;
      position: relative;
      box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    }
    .search-close { position: absolute; right: 14px; top: 12px; background: transparent; border: none; color: rgba(255,255,255,0.75); font-size: 1.1rem; cursor: pointer; }
    .search-input-wrap { display:flex; gap:0.5rem; margin-top: 0.5rem; }
    .site-search-input { flex:1; padding:0.85rem 1rem; border-radius:8px; border:1px solid rgba(255,255,255,0.08); background:rgba(0,0,0,0.25); color: #fff; }
    .site-search-btn { padding:0.85rem 1rem; border-radius:8px; background:var(--orange); color:#fff; border:none; cursor:pointer; }
    .search-results { margin-top:1rem; max-height: 48vh; overflow:auto; }
    .search-result { padding:0.75rem 0.5rem; border-bottom:1px solid rgba(255,255,255,0.04); }
    .search-result a { color: #fff; text-decoration:none; font-weight:600; }
    .search-result p { color: rgba(255,255,255,0.65); margin:0.25rem 0 0; font-size:0.9rem; }

    /* Newsletter form in footer */
    .newsletter-form { display:flex; gap:0.5rem; align-items:center; margin-top:0.5rem; }
    .newsletter-input { padding:0.6rem 0.8rem; border-radius:8px; border:1px solid rgba(255,255,255,0.08); background:transparent; color:#fff; }
    .newsletter-btn { padding:0.6rem 0.9rem; border-radius:8px; background:var(--green); color:#fff; border:none; cursor:pointer; }
    .newsletter-status { margin-top:0.5rem; font-size:0.9rem; color: rgba(255,255,255,0.8); }

    /* ── FADE IN ── */
    .fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 767px) {
      .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
      .accordion-grid { grid-template-columns: 1fr; gap: 2rem; }
      .accordion-left { position: static; }
      .leadership-grid { grid-template-columns: repeat(3, 1fr); }
      .dna-grid { grid-template-columns: 1fr 1fr; }
      .vm-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .vm-divider { display: none; }
    }
    @media (max-width: 768px) {
      .leadership-grid { grid-template-columns: repeat(2, 1fr); }
      .people-grid { grid-template-columns: 1fr; }
      .dna-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 767px) {
      nav { padding: 0 1.25rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: var(--nav-h); left: 0; right: 0;
        background: white; padding: 2rem; gap: 1.5rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1); z-index: 99;
      }
      .hero-inner { padding: 3rem 1.25rem 4rem; }
      .section-wrap { padding: 3.5rem 1.25rem; }
      .accordion-inner { padding: 3.5rem 1.25rem; }
      .dna-inner { padding: 3.5rem 1.25rem; }
      .vm-inner { padding: 3.5rem 1.25rem; }
      .people-inner { padding: 3.5rem 1.25rem; }
      .cta-inner { flex-direction: column; align-items: flex-start; padding: 3rem 1.25rem; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
      .leadership-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    }

/* ===== contact.html ===== */
:root {
      --orange: #D94E0F;
      --green: #1A5C2A;
      --dark: #1A1A1A;
      --mid: #4A5568;
      --light: #F7F8FA;
      --border: #E2E8F0;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; color: var(--dark); background: #fff; overflow-x: hidden; }

    /* Shared nav styling lives in css/nav.css. */
    /* ── PAGE HERO ── */
    .page-hero {
      background: var(--dark); color: white;
      position: relative; overflow: hidden;
    }
    .page-hero::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: linear-gradient(to right, var(--green), var(--orange));
    }
    .page-hero-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 5rem 2rem 4rem;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end;
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.75rem; color: rgba(255,255,255,0.45);
      margin-bottom: 1.5rem; letter-spacing: 0.04em;
    }
    .breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
    .breadcrumb a:hover { color: var(--orange); }
    .breadcrumb span { color: rgba(255,255,255,0.25); }
    .page-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 4vw, 3.2rem);
      font-weight: 700; line-height: 1.15; color: white; margin-bottom: 1rem;
    }
    .page-hero h1 em { font-style: normal; color: var(--orange); }
    .page-hero-desc { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.6); }

    /* Availability badge */
    .availability-badge {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 6px; padding: 0.75rem 1.1rem;
      font-size: 0.85rem; color: rgba(255,255,255,0.85);
    }
    .pulse-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #22c55e; flex-shrink: 0;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(0.85); }
    }

    /* ── CONTACT BODY ── */
    .contact-body {
      max-width: 1200px; margin: 0 auto;
      padding: 5rem 2rem;
      display: grid; grid-template-columns: 1fr 380px; gap: 5rem; align-items: start;
    }

    /* ── FORM ── */
    .form-section-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; font-weight: 700; color: var(--dark);
      margin-bottom: 0.5rem;
    }
    .form-section-sub {
      font-size: 0.9rem; color: var(--mid); line-height: 1.7;
      margin-bottom: 2rem;
    }

    .contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

    .field-group { display: flex; flex-direction: column; gap: 0.4rem; }

    .field-group label {
      font-size: 0.78rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--dark);
    }

    .field-group input,
    .field-group select,
    .field-group textarea {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem; color: var(--dark);
      border: 1.5px solid var(--border);
      border-radius: 5px; padding: 0.8rem 1rem;
      background: white; width: 100%;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      appearance: none;
    }

    .field-group input:focus,
    .field-group select:focus,
    .field-group textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(26,92,42,0.08);
    }

    .field-group input::placeholder,
    .field-group textarea::placeholder { color: #a0aec0; }

    .field-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

    .field-group textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

    .form-note {
      font-size: 0.78rem; color: var(--mid); line-height: 1.6;
      padding: 0.85rem 1rem;
      background: var(--light); border-radius: 5px;
      border-left: 3px solid var(--green);
    }

    .btn-submit {
      background: var(--green); color: white;
      padding: 1rem 2.5rem; border-radius: 5px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem; font-weight: 700;
      border: none; cursor: pointer;
      transition: all 0.25s; align-self: flex-start;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .btn-submit:hover { background: var(--orange); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(217,78,15,0.3); }
    .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

    /* Form success/error states */
    .form-status {
      display: none; padding: 1rem 1.25rem;
      border-radius: 5px; font-size: 0.875rem; font-weight: 500;
    }
    .form-status.success {
      display: block; background: rgba(34,197,94,0.08);
      border: 1px solid rgba(34,197,94,0.3); color: #15803d;
    }
    .form-status.error {
      display: block; background: rgba(217,78,15,0.08);
      border: 1px solid rgba(217,78,15,0.3); color: var(--orange);
    }

    /* ── SIDEBAR ── */
    .contact-sidebar { position: sticky; top: 96px; }

    .sidebar-card {
      border: 1px solid rgba(26,92,42,0.12);
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 1.5rem;
      background: rgba(255,255,255,0.96);
      box-shadow: 0 10px 28px rgba(0,0,0,0.04);
    }
    .sidebar-card-header {
      background: linear-gradient(135deg, #1f1f1f 0%, #101010 100%);
      color: white;
      padding: 0.95rem 1.25rem;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .sidebar-card-body { padding: 0; }

    /* Contact methods */
    .contact-method {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1.05rem 1.25rem;
      border-bottom: 1px solid var(--border);
      transition: background 0.15s;
    }
    .contact-method:last-child { border-bottom: none; }
    .contact-method:hover { background: rgba(26,92,42,0.03); }

    .method-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      border-radius: 10px;
      background: rgba(26,92,42,0.08);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      color: var(--green);
    }

    .method-details { flex: 1; }
    .method-label {
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--mid); margin-bottom: 0.2rem;
    }
    .method-value {
      font-size: 0.875rem; font-weight: 600; color: var(--dark);
    }
    .method-value a { color: var(--dark); text-decoration: none; transition: color 0.2s; }
    .method-value a:hover { color: var(--orange); }
    .method-sub { font-size: 0.75rem; color: var(--mid); margin-top: 0.15rem; }

    /* Port offices */
    .office-item {
      padding: 1.05rem 1.25rem;
      border-bottom: 1px solid var(--border);
    }
    .office-item:last-child { border-bottom: none; }
    .office-name {
      font-size: 0.85rem; font-weight: 600; color: var(--dark);
      margin-bottom: 0.2rem; display: flex; align-items: center; gap: 0.5rem;
    }
    .office-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
    .office-detail { font-size: 0.775rem; color: var(--mid); line-height: 1.5; }

    /* ── DIVIDER ── */
    .page-divider { border: none; border-top: 1px solid var(--border); margin: 0 2rem; max-width: 1200px; margin-left: auto; margin-right: auto; }

    /* ── CTA STRIP ── */
    .cta-strip { background: var(--green); color: white; }
    .cta-strip-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 3rem 2rem;
      display: flex; align-items: center; justify-content: space-between;
      gap: 2rem; flex-wrap: wrap;
    }
    .cta-strip h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.35rem; }
    .cta-strip p { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
    .btn-white {
      background: white; color: var(--green);
      padding: 0.85rem 2rem; border-radius: 4px;
      font-weight: 700; font-size: 0.9rem; text-decoration: none;
      white-space: nowrap; transition: all 0.2s; flex-shrink: 0;
    }
    .btn-white:hover { background: var(--orange); color: white; }

    /* ── FOOTER ── */
    footer { background: #0d0d0d; color: rgba(255,255,255,0.6); padding: 4rem 2rem 2rem; }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand img { height: 52px; margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
    .footer-col h4 { color: white; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.65rem; }
    .footer-col ul li a { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--orange); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
    .footer-bottom a { color: var(--orange); text-decoration: none; }

    /* ── FADE IN ── */
    .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .page-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
      .contact-body { grid-template-columns: 1fr; gap: 3rem; }
      .contact-sidebar { position: static; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    @media (max-width: 767px) {
      nav { padding: 0 1.25rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: var(--nav-h); left: 0; right: 0;
        background: white; padding: 2rem; gap: 1.5rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
      }
      .page-hero-inner { padding: 3.5rem 1.25rem 3rem; }
      .contact-body { padding: 3rem 1.25rem; }
      .form-row { grid-template-columns: 1fr; }
      .cta-strip-inner { flex-direction: column; align-items: flex-start; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    }

/* ===== services.html ===== */
:root {
      --orange: #D94E0F;
      --green: #1A5C2A;
      --dark: #1A1A1A;
      --mid: #4A5568;
      --light: #F7F8FA;
      --border: #E2E8F0;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; color: var(--dark); background: #fff; overflow-x: hidden; }

    /* Shared nav styling lives in css/nav.css. */
    /* ── PAGE HERO ── */
    .page-hero {
      background: var(--dark);
      color: white;
      position: relative;
      overflow: hidden;
    }
    .page-hero::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: linear-gradient(to right, var(--green), var(--orange));
    }
    .page-hero-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 5rem 2rem 4rem;
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.75rem; color: rgba(255,255,255,0.45);
      margin-bottom: 1.5rem; letter-spacing: 0.04em;
    }
    .breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
    .breadcrumb a:hover { color: var(--orange); }
    .breadcrumb span { color: rgba(255,255,255,0.25); }
    .page-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 4vw, 3.2rem);
      font-weight: 700; line-height: 1.15; color: white; margin-bottom: 1rem;
    }
    .page-hero h1 em { font-style: normal; color: var(--orange); }
    .page-hero-desc { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 580px; }

    /* ── SERVICE NAV TABS ── */
    .service-tabs-wrap {
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(26,92,42,0.08);
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
      position: sticky;
      top: var(--nav-h);
      z-index: 50;
    }
    .service-tabs {
      max-width: 1200px; margin: 0 auto;
      padding: 0 2rem;
      display: flex; gap: 0; overflow-x: auto;
      scrollbar-width: none;
    }
    .service-tabs::-webkit-scrollbar { display: none; }
    .tab-btn {
      background: none; border: none; cursor: pointer;
      padding: 1.05rem 1.35rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem; font-weight: 700;
      color: var(--mid); white-space: nowrap;
      border-bottom: 3px solid transparent;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .tab-btn:hover { color: var(--dark); background: rgba(26,92,42,0.04); }
    .tab-btn.active {
      color: var(--green);
      border-bottom-color: var(--orange);
      background: linear-gradient(180deg, rgba(217,78,15,0.06), rgba(217,78,15,0));
    }

    /* ── SERVICES LAYOUT ── */
    .services-body {
      max-width: 1200px; margin: 0 auto;
      padding: 4.5rem 2rem 5rem;
      background:
        radial-gradient(circle at top right, rgba(217,78,15,0.04), transparent 28%),
        linear-gradient(180deg, #fbfbfc 0%, #ffffff 100%);
    }

    /* Service panel */
    .service-panel {
      display: none;
      grid-template-columns: 1fr 340px;
      gap: 5rem;
      align-items: start;
    }
    .service-panel.active { display: grid; }

    /* Main service content */
    .service-main {
      min-width: 0;
      background: white;
      border: 1px solid rgba(26,92,42,0.08);
      border-radius: 24px;
      box-shadow: 0 18px 46px rgba(0,0,0,0.06);
      padding: 2rem;
    }

    .service-header {
      display: flex; align-items: flex-start; gap: 1.25rem;
      margin-bottom: 2rem;
      padding-bottom: 1.75rem;
      border-bottom: 1px solid rgba(26,92,42,0.08);
    }
    .service-icon-lg {
      width: 64px; height: 64px; flex-shrink: 0;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(217,78,15,0.1), rgba(26,92,42,0.08));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
    }
    .service-header-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem; font-weight: 700;
      color: var(--dark); margin-bottom: 0.5rem;
    }
    .service-header-text p {
      font-size: 0.9rem; color: var(--mid); line-height: 1.7;
    }

    .service-section {
      margin-bottom: 1.35rem;
      padding: 1.5rem 1.5rem 1.45rem;
      border: 1px solid rgba(26,92,42,0.08);
      border-radius: 18px;
      background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
      box-shadow: 0 8px 24px rgba(0,0,0,0.03);
    }
    .service-section:last-child { margin-bottom: 0; }

    .section-eyebrow {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--orange);
      margin-bottom: 0.85rem;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .section-eyebrow::before { content: ''; width: 16px; height: 2px; background: var(--orange); }

    .service-section h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem;
    }
    .service-section p {
      font-size: 0.95rem; line-height: 1.85; color: var(--mid); margin-bottom: 0.85rem;
    }
    .service-section p:last-child { margin-bottom: 0; }

    /* Feature checklist */
    .feature-list { list-style: none; margin-top: 1.25rem; }
    .feature-list li {
      display: flex; align-items: flex-start; gap: 0.75rem;
      padding: 0.75rem 0.9rem; border-bottom: 1px solid rgba(26,92,42,0.08);
      font-size: 0.9rem; color: var(--mid); line-height: 1.5;
      background: rgba(26,92,42,0.02);
      border-radius: 10px;
      margin-bottom: 0.5rem;
    }
    .feature-list li:last-child { border-bottom: none; }
    .feature-list li::before {
      content: '✓';
      color: var(--green); font-weight: 700;
      flex-shrink: 0; margin-top: 1px;
    }

    /* Process steps */
    .process-steps { margin-top: 1.25rem; }
    .process-step {
      display: flex; gap: 1.25rem; align-items: flex-start;
      margin-bottom: 1rem;
      padding: 1rem 1rem 0.95rem;
      border-radius: 14px;
      background: rgba(26,92,42,0.03);
    }
    .process-step:last-child { margin-bottom: 0; }
    .step-num {
      width: 32px; height: 32px; flex-shrink: 0;
      border-radius: 50%; background: linear-gradient(135deg, var(--orange), #f08a2d); color: white;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700;
    }
    .step-text h4 { font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 0.2rem; }
    .step-text p { font-size: 0.85rem; color: var(--mid); line-height: 1.6; margin: 0; }

    /* ── SIDEBAR ── */
    .service-sidebar { position: sticky; top: 130px; display: flex; flex-direction: column; gap: 1rem; }

    .sidebar-card {
      border: 1px solid rgba(26,92,42,0.08);
      border-radius: 18px;
      overflow: hidden;
      margin-bottom: 0;
      background: white;
      box-shadow: 0 14px 34px rgba(0,0,0,0.05);
    }
    .sidebar-card-header {
      background: linear-gradient(135deg, #1f1f1f 0%, #101010 100%); color: white;
      padding: 1rem 1.25rem;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    }
    .sidebar-card-body { padding: 1.15rem 1.25rem 1.25rem; }
    .sidebar-card-body p { font-size: 0.9rem; line-height: 1.7; color: var(--mid); margin-bottom: 1rem; }
    .btn-full {
      display: block; width: 100%; text-align: center;
      background: linear-gradient(135deg, var(--orange), #f08a2d);
      color: white; padding: 0.95rem 1rem; border-radius: 12px;
      font-weight: 700; font-size: 0.875rem; text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 10px 22px rgba(217,78,15,0.18);
    }
    .btn-full:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(217,78,15,0.24); }
    .btn-full-outline {
      display: block; width: 100%; text-align: center;
      border: 1.5px solid rgba(26,92,42,0.18); color: var(--dark);
      padding: 0.85rem 1rem; border-radius: 12px;
      font-weight: 600; font-size: 0.875rem; text-decoration: none;
      margin-top: 0.75rem; transition: all 0.2s;
      background: rgba(26,92,42,0.02);
    }
    .btn-full-outline:hover { border-color: var(--green); color: var(--green); background: rgba(26,92,42,0.06); }

    /* All services list in sidebar */
    .service-nav-list { list-style: none; }
    .service-nav-list li { border-bottom: 1px solid rgba(26,92,42,0.08); }
    .service-nav-list li:last-child { border-bottom: none; }
    .service-nav-list button {
      width: 100%; text-align: left;
      display: flex; align-items: center; gap: 0.75rem;
      padding: 0.95rem 1.25rem;
      background: none; border: none; cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.825rem; font-weight: 600;
      color: var(--mid); transition: all 0.15s;
    }
    .service-nav-list button:hover { background: rgba(26,92,42,0.04); color: var(--dark); }
    .service-nav-list button.active { background: rgba(26,92,42,0.06); color: var(--green); font-weight: 700; }
    .service-nav-list .svc-icon { font-size: 1rem; flex-shrink: 0; }

    /* ── CTA STRIP ── */
    .cta-strip { background: var(--green); color: white; }
    .cta-strip-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 3rem 2rem;
      display: flex; align-items: center; justify-content: space-between;
      gap: 2rem; flex-wrap: wrap;
    }
    .cta-strip h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.35rem; }
    .cta-strip p { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
    .btn-white {
      background: white; color: var(--green);
      padding: 0.85rem 2rem; border-radius: 4px;
      font-weight: 700; font-size: 0.9rem; text-decoration: none;
      white-space: nowrap; transition: all 0.2s; flex-shrink: 0;
    }
    .btn-white:hover { background: var(--orange); color: white; }

    /* ── FOOTER ── */
    footer { background: #0d0d0d; color: rgba(255,255,255,0.6); padding: 4rem 2rem 2rem; }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand img { height: 52px; margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
    .footer-col h4 { color: white; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.65rem; }
    .footer-col ul li a { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--orange); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
    .footer-bottom a { color: var(--orange); text-decoration: none; }

    /* ── FADE IN ── */
    .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .service-panel.active { grid-template-columns: 1fr; gap: 3rem; }
      .service-sidebar { position: static; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    @media (max-width: 767px) {
      nav { padding: 0 1.25rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: var(--nav-h); left: 0; right: 0;
        background: white; padding: 2rem; gap: 1.5rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
      }
      .page-hero-inner { padding: 3.5rem 1.25rem 3rem; }
      .services-body { padding: 3rem 1.25rem; }
      .service-tabs { padding: 0 1.25rem; }
      .service-main { padding: 1.25rem; border-radius: 18px; }
      .service-section { padding: 1.2rem; border-radius: 14px; }
      .service-header { flex-direction: column; gap: 1rem; }
      .service-icon-lg { width: 56px; height: 56px; font-size: 1.5rem; }
      .cta-strip-inner { flex-direction: column; align-items: flex-start; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    }


/* Helpers for HTML-embedded styles moved into css/style.css */
.mt-075 { margin-top: 0.75rem; }
.mt-05 { margin-top: 0.5rem; }
.max-w-580 { max-width: 580px; }
.section-h2-white { color: white; margin-bottom: 1rem; }

/* ===== services.html premium overrides ===== */
.services-page .page-hero {
  background:
    radial-gradient(circle at top right, rgba(217,78,15,0.16), transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(201,148,58,0.1), transparent 26%),
    linear-gradient(135deg, #121212 0%, #1a1a1a 55%, #111111 100%) !important;
}

.services-page .page-hero-inner {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  padding: 5.75rem 2rem 5rem;
}

.services-page .page-hero-inner::before {
  content: '';
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: min(360px, 34vw);
  height: 220px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(217,78,15,0.14), rgba(26,92,42,0.08)),
    rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
  pointer-events: none;
}

.services-page .breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-page .page-hero h1 {
  max-width: 8ch;
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 0.98;
  margin-bottom: 0;
}

.services-page .page-hero-desc {
  max-width: 34rem;
  font-size: 1.03rem;
  color: rgba(255,255,255,0.72);
}

.services-page .service-tabs-wrap {
  background: rgba(255,255,255,0.96) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08) !important;
  border-bottom: 1px solid rgba(26,92,42,0.1) !important;
}

.services-page .service-tabs {
  gap: 0.55rem;
  padding: 0.85rem 2rem 0.9rem;
}

.services-page .tab-btn {
  padding: 0.85rem 1.05rem !important;
  border-radius: 999px;
  border: 1px solid transparent !important;
  background: rgba(26,92,42,0.03);
  color: var(--dark) !important;
  letter-spacing: 0.06em;
}

.services-page .tab-btn:hover {
  background: rgba(26,92,42,0.08) !important;
  color: var(--green) !important;
}

.services-page .tab-btn.active {
  color: white !important;
  border-bottom-color: transparent !important;
  background: linear-gradient(135deg, var(--orange), #f08a2d) !important;
  box-shadow: 0 10px 20px rgba(217,78,15,0.2);
}

.services-page .services-body {
  max-width: 1240px;
  padding: 5rem 2rem 5.5rem;
}

.services-page .service-panel.active {
  display: grid !important;
  gap: 5rem;
}

.services-page .service-main {
  padding: 2.4rem;
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(0,0,0,0.08);
  border-color: rgba(26,92,42,0.06);
}

.services-page .service-icon-lg {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  font-size: 2rem;
}

.services-page .service-header {
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
}

.services-page .service-header-text h2 {
  font-size: 2.15rem;
}

.services-page .service-header-text p {
  font-size: 0.98rem;
}

.services-page .service-section {
  padding: 1.75rem 1.7rem 1.65rem;
  border-radius: 20px;
  border-color: rgba(26,92,42,0.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.035);
}

.services-page .service-section h3 {
  font-size: 1.4rem;
}

.services-page .service-section p {
  font-size: 0.98rem;
}

.services-page .feature-list li {
  padding: 0.85rem 1rem;
  font-size: 0.94rem;
}

.services-page .process-step {
  padding: 1.05rem 1.05rem 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(26,92,42,0.04), rgba(26,92,42,0.02));
}

.services-page .step-num {
  background: linear-gradient(135deg, var(--orange), #f08a2d);
  box-shadow: 0 10px 18px rgba(217,78,15,0.2);
}

.services-page .service-sidebar {
  gap: 1.1rem;
}

.services-page .sidebar-card {
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.services-page .sidebar-card-body {
  padding: 1.25rem 1.35rem 1.35rem;
}

.services-page .btn-full {
  border-radius: 14px;
}

.services-page .btn-full-outline {
  border-radius: 14px;
}

.services-page .service-nav-list button {
  padding: 1rem 1.25rem;
}

@media (max-width: 1024px) {
  .services-page .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .services-page .page-hero-inner::before {
    display: none;
  }

  .services-page .service-panel.active {
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .services-page .page-hero-inner {
    padding: 3.6rem 1.25rem 3rem;
  }

  .services-page .page-hero h1 {
    max-width: none;
    font-size: clamp(2.6rem, 11vw, 3.4rem);
  }

  .services-page .service-tabs {
    padding: 0.85rem 1.25rem 0.95rem;
  }

  .services-page .services-body {
    padding: 3.25rem 1.25rem 4rem;
  }

  .services-page .service-main {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .services-page .service-section {
    padding: 1.15rem;
    border-radius: 16px;
  }

  .services-page .service-header {
    padding-bottom: 1.25rem;
  }

  .services-page .service-header-text h2 {
    font-size: 1.7rem;
  }
}
.text-orange { color: var(--orange); }
.center-block { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.eyebrow-center { justify-content: center; }
.delay-100 { transition-delay: 0.1s; }
.delay-150 { transition-delay: 0.15s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.hero-badge-01 { top: 50px; left: -10px; }
.hero-badge-02 { bottom: 70px; right: -10px; animation-delay: 1s; }
.hero-badge-03 { top: 50%; left: -40px; transform: translateY(-50%); animation-delay: 0.5s; }
.badge-dot--green { background: #22c55e; }
.badge-dot--orange { background: #D94E0F; }
.badge-dot--blue { background: #2196F3; }
.section-label-center { justify-content: center; }
.section-copy { color: #718096; line-height: 1.7; margin-top: 0.75rem; }
.text-muted { color: rgba(255,255,255,0.7); }
.hero-meta { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; padding-bottom: 0.5rem; }
.method-value-highlight { color: var(--green); }
.sidebar-card-body-padded { padding: 1.25rem; }
.compact-list { display: flex; flex-direction: column; gap: 0.95rem; }
.check-row { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.84rem; line-height: 1.55; }
.check-mark {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
  margin-top: 0.05rem;
}
.check-text { color: var(--mid); }
.text-dark { color: var(--dark); }
