:root {
    --navy: #0A1F3B;
    --navy-mid: #0D2847;
    --navy-light: #122F55;
    --teal: #1A8C80;
    --teal-bright: #22A99B;
    --teal-glow: rgba(26,140,128,0.15);
    --gold: #C8922A;
    --gold-light: #DBA84A;
    --white: #F4F6F8;
    --white-pure: #ffffff;
    --off-white: #E8EDF2;
    --text-muted: rgba(232,237,242,0.6);
    --dark-text: #1C1C1C;
    --card-bg: rgba(255,255,255,0.04);
    --card-border: rgba(255,255,255,0.08);
    --section-alt: #F7F9FB;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  #cursor {
    width: 12px; height: 12px;
    background: var(--teal);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
  }
  #cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--teal);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
    transform: translate(-50%, -50%);
    opacity: 0.5;
  }
  body:has(a:hover) #cursor, body:has(button:hover) #cursor { transform: translate(-50%,-50%) scale(2); background: var(--gold); }
  body:has(a:hover) #cursor-ring, body:has(button:hover) #cursor-ring { transform: translate(-50%,-50%) scale(1.5); border-color: var(--gold); }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 60px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s ease;
  }
  nav.scrolled {
    padding: 14px 60px;
    background: rgba(10,31,59,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26,140,128,0.2);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; cursor: none;
  }
  .logo-mark {
    width: 44px; height: 44px;
    background: var(--off-white);
    display: flex; align-items: center; justify-content: center;
    clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
  }

  .logo-mark img {
    width: 80%; 
    /* height: 20px; */
    object-fit: contain;
  }
  /* .logo-mark span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: white;
    letter-spacing: 1px;
  } */
  .logo-text { display: flex; flex-direction: column; line-height: 1; }
  .logo-text strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--white);
  }
  .logo-text small {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--teal-bright);
    text-transform: uppercase;
  }
  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--off-white);
    text-decoration: none;
    cursor: none;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background: var(--teal);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--teal-bright); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--teal);
    padding: 10px 24px;
    border: none;
    cursor: none;
    clip-path: polygon(0 0, 90% 0, 100% 25%, 100% 100%, 10% 100%, 0 75%);
    transition: all 0.3s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--teal-bright); }

  /* PAGES */
  .page { display: none; min-height: 100vh; }
  .page.active { display: block; }

  /* HERO */
  #hero {
    height: 100%;
    position: relative;
    /* overflow: hidden; */
    display: flex; 
    align-items: center;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(10,31,59,0.97) 0%, rgba(10,31,59,0.75) 40%, rgba(26,140,128,0.1) 100%),
      url('https://images.unsplash.com/photo-1581094271901-8022df4466f9?w=1800&q=80') center/cover no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
  }
  @keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(26,140,128,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26,140,128,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 30s linear infinite;
  }
  @keyframes gridDrift {
    from { transform: translateY(0); }
    to { transform: translateY(60px); }
  }
  .hero-content {
    position: relative; 
    z-index: 2;
    padding: 100px 60px;
    max-width: 900px;
  }
  .hero-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--teal-bright);
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }
  .hero-tag::before {
    content: '';
    width: 40px; height: 1.5px;
    background: var(--teal);
  }
  .hero-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 9vw, 120px);
    line-height: 0.9;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }
  .hero-h1 em {
    font-style: normal;
    color: var(--teal-bright);
    display: block;
  }
  .hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }
  .hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
  }
  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--teal);
    padding: 14px 36px;
    border: none;
    cursor: none;
    clip-path: polygon(0 0, 88% 0, 100% 30%, 100% 100%, 12% 100%, 0 70%);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--teal-bright); transform: translateY(-2px); }
  .btn-outline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    padding: 13px 36px;
    border: 1.5px solid rgba(255,255,255,0.25);
    cursor: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--teal); color: var(--teal-bright); }

  /* STATS STRIP */
  .stats-strip {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 2;
    background: rgba(10,31,59,0.85);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(26,140,128,0.2);
    padding: 28px 60px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
  }
  .stat-item {
    padding: 0 32px;
    border-right: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    animation: fadeUp 0.8s forwards;
  }
  .stat-item:nth-child(1) { animation-delay: 1s; padding-left: 0; }
  .stat-item:nth-child(2) { animation-delay: 1.1s; }
  .stat-item:nth-child(3) { animation-delay: 1.2s; }
  .stat-item:nth-child(4) { animation-delay: 1.3s; border-right: none; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--teal-bright);
    line-height: 1;
  }
  .stat-num span { color: var(--gold); }
  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
  }

  /* SCROLL INDICATOR */
  .scroll-hint {
    position: absolute; right: 60px; bottom: 130px;
    z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0;
    animation: fadeUp 1s 1.5s forwards;
  }
  .scroll-hint span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1.5px; height: 60px;
    background: linear-gradient(to bottom, var(--teal), transparent);
    animation: scrollPulse 2s ease infinite;
  }
  @keyframes scrollPulse {
    0%,100% { opacity: 0.3; }
    50% { opacity: 1; }
  }

  /* SECTIONS */
  section { padding: 100px 60px; }

  .section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--teal-bright);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
  }
  .section-tag::before {
    content: '';
    width: 28px; height: 1.5px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 68px);
    letter-spacing: 2px;
    line-height: 0.95;
    margin-bottom: 24px;
  }
  .section-title em {
    font-style: normal;
    color: var(--teal-bright);
  }

  /* SERVICES SECTION (Home) */
  #services-home {
    background: var(--navy);
    position: relative;
  }
  #services-home::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--teal), transparent);
  }
  .services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 70px;
  }
  .services-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    padding-top: 20px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .service-card {
    background: var(--navy);
    padding: 36px 28px;
    transition: all 0.4s ease;
    cursor: none;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  .service-card:hover { background: var(--navy-light); transform: translateY(-4px); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
    color: var(--teal-bright);
  }
  .service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .service-brief {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
  }
  .service-num {
    position: absolute; top: 20px; right: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: rgba(26,140,128,0.1);
    line-height: 1;
  }

  /* CLIENTS SECTION */
  #clients-home {
    background: var(--navy-mid);
    border-top: 1px solid rgba(26,140,128,0.15);
    border-bottom: 1px solid rgba(26,140,128,0.15);
    padding: 60px;
  }
  .clients-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
  }
  .clients-track-wrap { overflow: hidden; position: relative; }
  .clients-track-wrap::before,
  .clients-track-wrap::after {
    content: '';
    position: absolute; top: 0; bottom: 0;
    width: 120px; z-index: 1;
  }
  .clients-track-wrap::before { left: 0; background: linear-gradient(to right, var(--navy-mid), transparent); }
  .clients-track-wrap::after { right: 0; background: linear-gradient(to left, var(--navy-mid), transparent); }
  .clients-track {
    display: flex; gap: 60px; align-items: center;
    animation: marquee 22s linear infinite;
    width: max-content;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .client-chip {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
    transition: color 0.3s;
  }
  .client-chip:hover { color: var(--white); }

  /* CTA BAND */
  .cta-band {
    background: linear-gradient(135deg, var(--teal) 0%, #0F6E56 100%);
    padding: 80px 60px;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: 'AGSL';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 280px;
    color: rgba(255,255,255,0.05);
    position: absolute; right: -20px; top: 50%;
    transform: translateY(-50%);
    line-height: 1;
  }
  .cta-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    letter-spacing: 2px;
    color: white;
    line-height: 1;
    margin-bottom: 12px;
  }
  .cta-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
  }

  /* ─── ABOUT PAGE ─── */
  #about-page { background: var(--white-pure); color: var(--dark-text); }
  .about-hero {
    height: 50vh;
    min-height: 380px;
    background:
      linear-gradient(135deg, rgba(10,31,59,0.92) 0%, rgba(10,31,59,0.7) 100%),
      url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=80') center/cover no-repeat;
    display: flex; align-items: flex-end;
    padding: 0 60px 60px;
    position: relative;
  }
  .about-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 84px;
    letter-spacing: 3px;
    color: white;
    line-height: 0.9;
  }
  .about-hero h1 em { font-style: normal; color: var(--teal-bright); }
  .page-tag {
    position: absolute; top: 120px; right: 60px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    writing-mode: vertical-rl;
    display: flex; align-items: center; gap: 10px;
  }
  .page-tag::after {
    content: '';
    width: 1.5px; height: 50px;
    background: rgba(255,255,255,0.2);
  }
  .about-body { padding: 80px 60px; background: white; }
  .about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 100px; align-items: center; margin-bottom: 80px; }
  .about-story p {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 20px;
  }
  .about-img-block {
    position: relative;
  }
  .about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
  }
  .about-img-block::before {
    content: '';
    position: absolute;
    top: -16px; right: -16px;
    bottom: 16px; left: 16px;
    border: 2px solid var(--teal);
    z-index: -1;
  }
  .vmc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
    background: #e8eded;
    margin-bottom: 80px;
  }
  .vmc-card {
    background: white;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
  }
  .vmc-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--teal);
  }
  .vmc-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: rgba(26,140,128,0.08);
    position: absolute;
    top: 10px; right: 20px;
    line-height: 1;
  }
  .vmc-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
  }
  .vmc-label span {
    width: 8px; height: 8px;
    background: var(--teal);
    display: inline-block;
  }
  .vmc-text { font-size: 15px; line-height: 1.7; color: #555; }
  .values-list { list-style: none; margin-top: 20px; }
  .values-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #444;
    display: flex; align-items: center; gap: 10px;
  }
  .values-list li::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--gold);
    flex-shrink: 0;
  }

  /* Timeline */
  .timeline-section {
    background: var(--navy);
    padding: 80px 60px;
  }
  .timeline { position: relative; padding-left: 40px; }
  .timeline::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 1.5px;
    background: linear-gradient(to bottom, var(--teal), transparent);
  }
  .timeline-item {
    position: relative;
    padding: 0 0 48px 40px;
  }
  .timeline-item::before {
    content: '';
    position: absolute; left: -7px; top: 6px;
    width: 16px; height: 16px;
    background: var(--navy);
    border: 2.5px solid var(--teal);
    border-radius: 50%;
  }
  .t-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 6px;
  }
  .t-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
  }
  .t-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

  /* ─── SERVICES PAGE ─── */
  #services-page { background: var(--section-alt); color: var(--dark-text); }
  .services-hero {
    background:
      linear-gradient(135deg, rgba(10,31,59,0.94) 0%, rgba(26,140,128,0.3) 100%),
      url('https://images.unsplash.com/photo-1513828583688-c52646db42da?w=1400&q=80') center/cover no-repeat;
    padding: 160px 60px 80px;
    color: white;
  }
  .services-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 84px;
    letter-spacing: 3px;
    line-height: 0.9;
    margin-bottom: 20px;
  }
  .services-hero h1 em { font-style: normal; color: var(--teal-bright); }
  .services-hero p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 560px; line-height: 1.7; }
  .services-body { padding: 70px 60px; }
  .svc-block {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    margin-bottom: 4px;
    background: white;
    overflow: hidden;
    transition: all 0.3s;
  }
  .svc-block:hover { box-shadow: 0 8px 40px rgba(10,31,59,0.12); transform: translateY(-2px); }
  .svc-sidebar {
    background: var(--navy);
    padding: 40px 32px;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .svc-sidebar-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: rgba(26,140,128,0.25);
    line-height: 1;
  }
  .svc-sidebar-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--teal-bright);
    line-height: 1.1;
    text-transform: uppercase;
  }
  .svc-content { padding: 40px 44px; }
  .svc-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
  }
  .svc-content p { font-size: 15px; line-height: 1.75; color: #555; margin-bottom: 20px; }
  .svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .svc-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    background: rgba(26,140,128,0.08);
    color: var(--teal);
    border: 1px solid rgba(26,140,128,0.2);
  }

  /* ─── CLIENTS PAGE ─── */
  #clients-page { background: var(--navy); }
  .clients-hero {
    padding: 160px 60px 80px;
    position: relative;
  }
  .clients-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 84px;
    letter-spacing: 3px;
    line-height: 0.9;
    margin-bottom: 20px;
  }
  .clients-hero h1 em { font-style: normal; color: var(--teal-bright); }
  .clients-hero p { font-size: 17px; color: var(--text-muted); max-width: 540px; line-height: 1.7; }
  .clients-body { padding: 20px 60px 80px; }
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.05);
  }
  .client-box {
    background: var(--navy);
    padding: 44px 32px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.35s;
    cursor: none;
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 160px;
  }
  .client-box:hover {
    background: rgba(26,140,128,0.08);
    border-color: rgba(26,140,128,0.3);
    transform: translateY(-3px);
  }
  .client-box-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 6px;
  }
  .client-box-sector {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal-bright);
  }
  .client-philosophy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 60px;
    background: var(--navy-mid);
    border-top: 1px solid rgba(26,140,128,0.15);
  }
  .client-philosophy blockquote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    letter-spacing: 2px;
    line-height: 1.1;
    color: var(--white);
  }
  .client-philosophy blockquote em { font-style: normal; color: var(--teal-bright); }
  .client-philosophy p { font-size: 16px; line-height: 1.8; color: var(--text-muted); }

  /* ─── CONTACT PAGE ─── */
  #contact-page { background: var(--section-alt); }
  .contact-hero {
    background: var(--navy);
    padding: 160px 60px 80px;
    color: white;
  }
  .contact-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 84px;
    letter-spacing: 3px;
    line-height: 0.9;
    margin-bottom: 20px;
  }
  .contact-hero h1 em { font-style: normal; color: var(--teal-bright); }
  .contact-body {
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }
  .contact-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--navy);
    margin-bottom: 28px;
  }
  .contact-detail {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
  }
  .contact-icon {
    width: 40px; height: 40px;
    background: var(--teal);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
    font-size: 16px;
  }
  .contact-detail-text strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
    margin-bottom: 4px;
  }
  .contact-detail-text span { font-size: 15px; color: #444; }
  .contact-form {
    background: white;
    padding: 48px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.08);
  }
  .form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
    color: var(--navy);
    margin-bottom: 32px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 8px;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 14px 16px;
    background: #f8f9fa;
    border: 1.5px solid #e8ecef;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--dark-text);
    transition: border-color 0.3s;
    outline: none;
    appearance: none;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--teal); background: white; }
  .form-group textarea { height: 130px; resize: none; }
  .form-submit {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: white;
    background: var(--navy);
    padding: 16px 44px;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0 70%);
    transition: all 0.3s;
    display: inline-block;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--teal); }
  .success-msg {
    display: none;
    padding: 16px;
    background: rgba(26,140,128,0.1);
    border: 1px solid var(--teal);
    color: var(--teal);
    font-size: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1.5px;
    margin-top: 16px;
  }

  /* FOOTER */
  footer {
    background: #060F1E;
    padding: 70px 60px 36px;
    border-top: 1px solid rgba(26,140,128,0.2);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 20px 0 28px;
    max-width: 260px;
  }
  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(200,146,42,0.2);
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    cursor: none;
    transition: color 0.3s;
    display: flex; align-items: center; gap: 6px;
  }
  .footer-col ul li a:hover { color: var(--teal-bright); }
  .footer-col ul li a::before {
    content: '';
    width: 12px; height: 1px;
    background: var(--teal);
    opacity: 0;
    transition: opacity 0.3s;
    flex-shrink: 0;
  }
  .footer-col ul li a:hover::before { opacity: 1; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.25);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
  }
  .rc-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 14px;
  }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* PRELOADER */
  #preloader {
    position: fixed; inset: 0;
    background: var(--navy);
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    gap: 24px;
  }
  #preloader.done { opacity: 0; pointer-events: none; transition: opacity 0.6s 0.2s; }
  .pre-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    letter-spacing: 8px;
    color: var(--white);
    animation: logoPulse 1.5s ease infinite;
  }
  .pre-logo span { color: var(--teal); }
  @keyframes logoPulse {
    0%,100% { opacity: 0.5; } 50% { opacity: 1; }
  }
  .pre-bar {
    width: 200px; height: 2px;
    background: rgba(255,255,255,0.1);
    position: relative; overflow: hidden;
  }
  .pre-bar::after {
    content: '';
    position: absolute; left: -100%; top: 0; bottom: 0;
    width: 100%;
    background: linear-gradient(to right, transparent, var(--teal), transparent);
    animation: preLoad 1.2s ease infinite;
  }
  @keyframes preLoad {
    from { left: -100%; } to { left: 100%; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Mobile tweak */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    nav.scrolled { padding: 12px 24px; }
    .nav-links { display: none; }
    section { padding: 60px 24px; }
    .hero-content { padding: 0 24px; }
    .stats-strip { grid-template-columns: repeat(2,1fr); padding: 20px 24px; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .services-intro { grid-template-columns: 1fr; gap: 20px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .vmc-grid { grid-template-columns: 1fr; }
    .svc-block { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: repeat(2,1fr); }
    .contact-body { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .client-philosophy { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-band { flex-direction: column; text-align: center; }
    #clients-home { padding: 60px 24px; }
    body { cursor: auto; }
    #cursor, #cursor-ring { display: none; }
  }