    /*------------------------------------------------------------------
    [1. DESIGN SYSTEM VARIABLES & UTILITIES]
    ------------------------------------------------------------------*/
    :root {
      /* Colors */
      --color-dark-bg-primary: #020617;
      --color-dark-bg-secondary: #0F172A;
      --color-light-bg-primary: #FFFFFF;
      --color-light-bg-secondary: #F8FAFC;
      --color-navy: #1E3A8A;
      --color-navy-light: #2563EB;
      --color-accent: #10B981;
      --color-accent-hover: #34D399;
      --color-cyan: #0EA5E9;
      --color-cyan-glow: rgba(14, 165, 233, 0.4);
      --color-teal: #14B8A6;
      --color-coral: #F43F5E;
      --color-purple: #8B5CF6;
      --color-text-dark-primary: #F8FAFC;
      --color-text-dark-secondary: #94A3B8;
      --color-text-light-primary: #0F172A;
      --color-text-light-secondary: #475569;
      --color-border-dark: rgba(255, 255, 255, 0.1);
      --color-border-light: rgba(15, 23, 42, 0.1);
      --color-success: #10B981;
      --color-error: #EF4444;

      /* Typography */
      --font-editorial: 'Plus Jakarta Sans', sans-serif;
      --font-body: 'Inter', sans-serif;

      /* Layout */
      --max-width: 1280px;
      --header-height: 80px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      overflow-x: hidden;
      width: 100%;
    }

    body {
      font-family: var(--font-body);
      background-color: var(--color-dark-bg-primary);
      color: var(--color-text-dark-primary);
      line-height: 1.6;
      overflow-x: hidden;
      width: 100%;
    }

    section {
      padding: 100px 24px;
      position: relative;
    }

    .page-wrapper {
      width: 100%;
      overflow-x: hidden;
      position: relative;
    }

    /* Typography Utilities */
    .section-title-wrapper {
      text-align: center;
      margin-bottom: 60px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .section-subtitle {
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--color-accent);
      margin-bottom: 12px;
      display: inline-block;
    }

    .section-title {
      font-family: var(--font-editorial);
      font-size: 2.5rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .light-section .section-title {
      color: var(--color-text-light-primary);
    }

    .dark-section .section-title {
      color: var(--color-text-dark-primary);
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      width: 100%;
    }

    /* Button Utilities */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      padding: 14px 32px;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      text-decoration: none;
    }

    .btn-primary {
      background-color: var(--color-navy);
      color: #FFFFFF;
      border: 1px solid var(--color-navy);
      box-shadow: 0 4px 14px rgba(30, 58, 138, 0.3);
    }

    .btn-primary:hover {
      background-color: var(--color-navy-light);
      border-color: var(--color-navy-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    }

    .btn-accent {
      background-color: var(--color-accent);
      color: #070B16;
      border: 1px solid var(--color-accent);
      box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
    }

    .btn-accent:hover {
      background-color: var(--color-accent-hover);
      border-color: var(--color-accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    }

    .btn-secondary {
      background-color: transparent;
      color: var(--color-text-dark-primary);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .btn-secondary:hover {
      border-color: #FFFFFF;
      background-color: rgba(255, 255, 255, 0.05);
      transform: translateY(-2px);
    }

    .light-section .btn-secondary {
      color: var(--color-text-light-primary);
      border-color: rgba(15, 23, 42, 0.2);
    }

    .light-section .btn-secondary:hover {
      border-color: var(--color-text-light-primary);
      background-color: rgba(15, 23, 42, 0.03);
    }

    /* Glow Elements */
    .glow-blur {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.15;
      z-index: 1;
      pointer-events: none;
    }

    /*------------------------------------------------------------------
    [2. NAVIGATION BAR]
    ------------------------------------------------------------------*/
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--header-height);
      background-color: rgba(7, 11, 22, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--color-border-dark);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .navbar-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      padding: 0 24px;
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .logo-link {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: var(--color-text-dark-primary);
      gap: 16px;
    }

    .logo-img-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
      width: 66px;
      height: 66px;
    }

    .logo-link:hover .logo-img-wrapper {
      transform: translateY(-2px);
    }

    .header-logo-img {
      height: 100%;
      width: 100%;
      object-fit: contain;
      border-radius: 50%;
      transform: translateZ(0) scale(1.1);
      backface-visibility: hidden;
      filter: blur(0.2px) drop-shadow(0 0 1px rgba(0,0,0,0.01));
    }

    .logo-text-wrapper {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .logo-brand {
      font-family: var(--font-editorial);
      font-size: 1.4rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      color: #FFFFFF;
      line-height: 1.1;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .logo-tagline {
      font-family: var(--font-body);
      font-size: 0.55rem;
      text-transform: uppercase;
      letter-spacing: 0.35em;
      color: var(--color-accent);
      font-weight: 700;
      margin-top: 4px;
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 32px;
      align-items: center;
    }

    .nav-link {
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--color-text-dark-secondary);
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.3s ease;
      position: relative;
      padding: 8px 0;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background-color: var(--color-accent);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .nav-link:hover,
    .nav-link.active {
      color: #FFFFFF;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .btn-nav {
      padding: 10px 20px;
      font-size: 0.85rem;
    }

    /* Mobile Hamburger Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 1001;
    }

    .hamburger span {
      width: 100%;
      height: 2px;
      background-color: #FFFFFF;
      transition: all 0.3s ease;
    }

    /*------------------------------------------------------------------
    [3. HERO SECTION]
    ------------------------------------------------------------------*/
    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: radial-gradient(circle at 80% 20%, #111a36 0%, var(--color-dark-bg-primary) 70%);
      padding-top: calc(var(--header-height) + 40px);
      z-index: 2;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 48px;
      align-items: center;
    }

    .hero-content {
      z-index: 5;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.25);
      border-radius: 50px;
      padding: 6px 16px;
      margin-bottom: 24px;
    }

    .hero-badge span {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-accent);
    }

    .hero-badge .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: var(--color-coral);
      box-shadow: 0 0 10px var(--color-coral);
    }

    .hero-title {
      font-family: var(--font-editorial);
      font-size: 3.8rem;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.01em;
      margin-bottom: 24px;
    }

    .hero-title span {
      color: var(--color-accent);
      background: linear-gradient(135deg, var(--color-accent) 0%, #F5E6D3 50%, var(--color-coral) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-desc {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 40px;
      max-width: 600px;
      font-weight: 400;
      line-height: 1.8;
      letter-spacing: 0.01em;
    }

    .hero-highlight {
      color: #ffffff;
      font-weight: 600;
      position: relative;
      display: inline-block;
      white-space: nowrap;
      z-index: 1;
    }

    .hero-highlight::after {
      content: '';
      position: absolute;
      left: -2%;
      bottom: -6px;
      width: 104%;
      height: 12px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M1 8 C 20 2, 70 2, 98 8 C 85 9, 60 9, 5 7' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
      background-size: 100% 100%;
      z-index: -1;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 3;
    }

    .hero-graphic-box {
      position: relative;
      width: 100%;
      max-width: 420px;
      aspect-ratio: 1;
      height: auto;
      border-radius: 20px;
      background: radial-gradient(circle at 0% 0%, rgba(21, 77, 140, 0.15) 0%, rgba(7, 11, 22, 0.8) 100%);
      border: 1px solid rgba(255, 255, 255, 0.05);
      padding: 20px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    }

    .hero-graphic-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
      border-color: rgba(16, 185, 129, 0.3);
    }

    .hero-graphic-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
      background-size: 20px 20px;
      pointer-events: none;
    }

    .graphic-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: -12px;
    }

    .graphic-badge {
      display: flex;
      align-items: center;
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      /* background: rgba(255, 255, 255, 0.08); */
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(18px);
      border: 0.5px solid rgba(255, 255, 255, 0.15);
      padding: 4px 12px;
      border-radius: 6px;
      font-weight: 800;
      color: #FFFFFF;
      /* box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2); */
    }

    .graphic-year {
      font-size: 0.85rem;
      font-weight: 900;
      color: #F5E6D3;
      letter-spacing: 0.05em;
      background: linear-gradient(135deg, #F5E6D3 0%, var(--color-accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      padding: 3px 10px;
      border-radius: 6px;
      background-color: rgba(0,0,0,0.3);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .graphic-value {
      font-family: var(--font-editorial);
      font-size: clamp(2.5rem, 8vw, 3.5rem);
      font-weight: 750;
      color: #FFFFFF;
      line-height: 1;
      margin: 2px 0;
    }
    
    .graphic-value span {
      font-family: var(--font-body);
      font-size: 1.2rem;
      font-weight: 500;
      display: block;
      color: var(--color-accent);
      margin: 10px 0;
    }

    .graphic-chart-mock {
      height: 120px;
      display: flex;
      align-items: flex-end;
      gap: 12px;
      margin-top: 10px;
    }

    .chart-bar {
      flex: 1;
      border-radius: 8px 8px 2px 2px;
      height: 10%;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(4px);
    }

    .chart-bar:hover {
      transform: translateY(-8px) scale(1.05);
      filter: brightness(1.3);
    }

    .chart-bar.fill-1 {
      height: 30%;
      background: linear-gradient(180deg, var(--color-purple) 0%, rgba(139, 92, 246, 0.2) 100%);
      box-shadow: 0 -4px 15px rgba(139, 92, 246, 0.3);
    }

    .chart-bar.fill-2 {
      height: 45%;
      background: linear-gradient(180deg, var(--color-cyan) 0%, rgba(14, 165, 233, 0.2) 100%);
      box-shadow: 0 -4px 15px rgba(14, 165, 233, 0.3);
    }

    .chart-bar.fill-3 {
      height: 60%;
      background: linear-gradient(180deg, var(--color-teal) 0%, rgba(20, 184, 166, 0.2) 100%);
      box-shadow: 0 -4px 15px rgba(20, 184, 166, 0.3);
    }

    .chart-bar.fill-4 {
      height: 80%;
      background: linear-gradient(180deg, var(--color-coral) 0%, rgba(244, 63, 94, 0.2) 100%);
      box-shadow: 0 -4px 15px rgba(244, 63, 94, 0.3);
    }

    .chart-bar.fill-5 {
      height: 100%;
      background: linear-gradient(180deg, var(--color-accent) 0%, rgba(16, 185, 129, 0.2) 100%);
      box-shadow: 0 -4px 15px rgba(16, 185, 129, 0.4);
    }

    .graphic-footer {
      font-size: 0.8rem;
      color: var(--color-text-dark-secondary);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-stat {
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 500;
    }

    .stat-highlight {
      font-family: var(--font-editorial);
      font-size: 1.05rem;
      font-weight: 800;
      color: #FFFFFF;
    }

    .hero-glow-1 {
      width: 500px;
      height: 500px;
      background-color: var(--color-purple);
      top: -100px;
      right: -100px;
      opacity: 0.15;
    }

    .hero-glow-2 {
      width: 300px;
      height: 300px;
      background-color: var(--color-teal);
      bottom: 50px;
      left: -100px;
      opacity: 0.12;
    }

    /*------------------------------------------------------------------
    [4. ABOUT US SECTION - LIGHT CONTRAST]
    ------------------------------------------------------------------*/
    .about-section {
      background-color: var(--color-light-bg-primary);
      color: var(--color-text-light-primary);
      z-index: 2;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.12fr 0.88fr;
      gap: 60px;
      align-items: center;
    }

    .about-content {
      padding-right: 20px;
    }

    .about-editorial-title {
      font-family: var(--font-editorial);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--color-navy);
      margin-bottom: 24px;
      line-height: 1.3;
    }

    .about-desc {
      font-size: 1.05rem;
      color: var(--color-text-light-secondary);
      margin-bottom: 20px;
      font-weight: 400;
      line-height: 1.75;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
      border-top: 1px solid var(--color-border-light);
      padding-top: 30px;
    }

    .stat-box {
      text-align: left;
    }

    .stat-number {
      font-family: var(--font-editorial);
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--color-navy);
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 0.78rem;
      color: var(--color-text-light-secondary);
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 0.08em;
      line-height: 1.3;
    }

    /* Subtle Infinite Image Carousel styling (Right Side) */
    .about-carousel-container {
      position: relative;
      width: 100%;
      height: 480px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(30, 58, 138, 0.12);
    }

    .carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: scale(1.05);
      transition: opacity 1.5s ease-in-out, transform 4.5s ease-in-out;
      z-index: 1;
    }

    .carousel-slide.active {
      opacity: 1;
      transform: scale(1);
      z-index: 2;
    }

    .carousel-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(30, 58, 138, 0.3) 0%, transparent 100%);
      z-index: 3;
      pointer-events: none;
    }

    .carousel-dots {
      position: absolute;
      bottom: 24px;
      right: 24px;
      display: flex;
      gap: 8px;
      z-index: 4;
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.4);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .carousel-dot.active {
      background-color: #FFFFFF;
      width: 24px;
      border-radius: 4px;
    }

    /*------------------------------------------------------------------
    [5. WHY US SECTION - DARK CONTRAST]
    ------------------------------------------------------------------*/
    .whyus-section {
      background-color: var(--color-dark-bg-secondary);
      color: var(--color-text-dark-primary);
      z-index: 2;
    }

    .whyus-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }

    .whyus-card {
      background-color: var(--color-dark-bg-primary);
      border: 1px solid var(--color-border-dark);
      border-radius: 12px;
      padding: 40px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }

    .whyus-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background-color: var(--color-accent);
      transform: scaleY(0);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      transform-origin: bottom;
    }

    .whyus-card:hover {
      transform: translateY(-8px);
      border-color: rgba(16, 185, 129, 0.3);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .whyus-card:hover::before {
      transform: scaleY(1);
    }

    .whyus-icon-num {
      font-family: var(--font-editorial);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--color-accent);
      margin-bottom: 24px;
      display: inline-block;
    }

    .whyus-card-title {
      font-family: var(--font-editorial);
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 16px;
      letter-spacing: -0.01em;
    }

    .whyus-card-desc {
      font-size: 0.95rem;
      color: var(--color-text-dark-secondary);
      line-height: 1.65;
    }

    /*------------------------------------------------------------------
    [6. SERVICES SECTION - LIGHT CONTRAST]
    ------------------------------------------------------------------*/
    .services-section {
      background-color: var(--color-light-bg-secondary);
      color: var(--color-text-light-primary);
      z-index: 2;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }

    .service-card {
      background-color: #FFFFFF;
      border: 1px solid var(--color-border-light);
      border-radius: 16px;
      padding: 48px;
      transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 6px;
      background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-accent) 100%);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      z-index: 2;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(30, 58, 138, 0.12);
      border-color: rgba(30, 58, 138, 0.05);
    }

    .service-card:hover::before {
      transform: scaleX(1);
      transform-origin: left;
    }

    .service-header {
      margin-bottom: 24px;
    }

    .service-icon-wrapper {
      width: 64px;
      height: 64px;
      border-radius: 14px;
      background-color: rgba(30, 58, 138, 0.04);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-navy);
      margin-bottom: 24px;
      transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .service-card:hover .service-icon-wrapper {
      background-color: var(--color-navy);
      color: #FFFFFF;
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 15px 30px rgba(30, 58, 138, 0.2);
    }

    .service-title {
      font-family: var(--font-editorial);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-navy);
      margin-bottom: 16px;
      line-height: 1.3;
      transition: color 0.4s ease;
    }

    .service-card:hover .service-title {
      color: var(--color-accent);
    }

    .service-desc {
      font-size: 0.98rem;
      color: var(--color-text-light-secondary);
      line-height: 1.7;
    }

    /*------------------------------------------------------------------
    [7. INTERACTIVE INTAKE FORM SECTION - DARK/ACCENT CONTRAST]
    ------------------------------------------------------------------*/
    .intake-section {
      background-color: var(--color-dark-bg-primary);
      border-top: 1px solid var(--color-border-dark);
      border-bottom: 1px solid var(--color-border-dark);
      z-index: 2;
    }

    .intake-container {
      max-width: 900px;
      margin: 0 auto;
      background-color: var(--color-dark-bg-secondary);
      border: 1px solid var(--color-border-dark);
      border-radius: 16px;
      padding: 48px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
      position: relative;
      overflow: hidden;
    }

    .intake-container::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-cyan) 50%, #D4AF37 100%);
    }

    .form-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .form-header h3 {
      font-family: var(--font-editorial);
      font-size: 2rem;
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }

    .form-header p {
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
    }

    .intake-form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .form-group-full {
      grid-column: span 2;
    }

    .form-label {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #D4AF37;
      margin-bottom: 8px;
    }

    .form-input,
    .form-select,
    .form-textarea {
      font-family: var(--font-body);
      font-size: 0.95rem;
      background-color: rgba(7, 11, 22, 0.7);
      border: 1px solid var(--color-border-dark);
      border-radius: 6px;
      padding: 14px 16px;
      color: #FFFFFF;
      outline: none;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .form-select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D4AF37'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      background-size: 16px;
      padding-right: 40px;
    }

    .form-select option {
      background-color: var(--color-dark-bg-secondary);
      color: #FFFFFF;
      padding: 10px;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: #D4AF37;
      box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
    }

    .form-textarea {
      min-height: 120px;
      resize: vertical;
    }

    /* Validation indicator styles */
    .form-group.success .form-input,
    .form-group.success .form-select,
    .form-group.success .form-textarea {
      border-color: var(--color-success);
    }

    .form-group.error .form-input,
    .form-group.error .form-select,
    .form-group.error .form-textarea {
      border-color: var(--color-error);
    }

    .validation-message {
      font-size: 0.78rem;
      color: var(--color-error);
      margin-top: 6px;
      min-height: 16px;
      opacity: 0;
      transform: translateY(-4px);
      transition: all 0.3s ease;
    }

    .form-group.error .validation-message {
      opacity: 1;
      transform: translateY(0);
    }

    .form-submit-container {
      grid-column: span 2;
      display: flex;
      justify-content: center;
      margin-top: 16px;
    }

    .btn-submit {
      width: 100%;
      max-width: 320px;
      position: relative;
      background-color: #D4AF37 !important;
      border-color: #D4AF37 !important;
      box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25) !important;
      color: #070B16 !important;
    }
    
    .btn-submit:hover {
      background-color: #E5C359 !important;
      border-color: #E5C359 !important;
      box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35) !important;
    }

    /* Loading Spinner inside submit button */
    .btn-spinner {
      display: none;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      border-top-color: #FFFFFF;
      animation: spin 1s ease-in-out infinite;
      position: absolute;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* Form Success State Screen */
    .intake-success-screen {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 0;
      animation: fadeIn 0.6s ease forwards;
    }

    .success-icon-wrapper {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background-color: rgba(16, 185, 129, 0.1);
      border: 2px solid var(--color-success);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-success);
      margin-bottom: 24px;
      font-size: 2rem;
      animation: scaleUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    .success-title {
      font-family: var(--font-editorial);
      font-size: 2.2rem;
      color: #FFFFFF;
      margin-bottom: 12px;
    }

    .success-subtitle {
      color: var(--color-text-dark-secondary);
      font-size: 1rem;
      max-width: 600px;
      margin-bottom: 30px;
    }

    .receipt-card {
      background-color: rgba(7, 11, 22, 0.5);
      border: 1px dashed var(--color-border-dark);
      border-radius: 8px;
      padding: 24px;
      width: 100%;
      max-width: 500px;
      text-align: left;
      margin-bottom: 32px;
    }

    .receipt-row {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      padding: 10px 0;
    }

    .receipt-row:last-child {
      border-bottom: none;
    }

    .receipt-label {
      font-size: 0.8rem;
      color: var(--color-text-dark-secondary);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .receipt-value {
      font-size: 0.92rem;
      color: #FFFFFF;
      font-weight: 600;
    }

    .receipt-value.ref-id {
      color: var(--color-accent);
      font-family: monospace;
      font-size: 1.05rem;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes scaleUp {
      from {
        transform: scale(0.6);
        opacity: 0;
      }

      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    /*------------------------------------------------------------------
    [8. GUIDES SECTION - LIGHT CONTRAST]
    ------------------------------------------------------------------*/
    .guides-section {
      background-color: var(--color-light-bg-primary);
      color: var(--color-text-light-primary);
      z-index: 2;
    }

    .guides-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .guide-card {
      background-color: var(--color-light-bg-secondary);
      border: 1px solid var(--color-border-light);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .guide-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
      border-color: rgba(30, 58, 138, 0.15);
    }

    .guide-card-content {
      padding: 36px;
    }

    .guide-tag {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--color-accent);
      font-weight: 700;
      margin-bottom: 16px;
      display: inline-block;
    }

    .guide-title {
      font-family: var(--font-editorial);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--color-navy);
      margin-bottom: 16px;
      line-height: 1.3;
    }

    .guide-excerpt {
      font-size: 0.92rem;
      color: var(--color-text-light-secondary);
      line-height: 1.65;
      margin-bottom: 24px;
    }

    .guide-footer-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--color-navy);
      font-weight: 700;
      font-size: 0.88rem;
      text-decoration: none;
      border-top: 1px solid var(--color-border-light);
      width: 100%;
      padding: 20px 36px;
      background-color: rgba(30, 58, 138, 0.02);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .guide-card:hover .guide-footer-btn {
      background-color: var(--color-navy);
      color: #FFFFFF;
    }

    /* Side Reading Drawer for Guides */
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(7, 11, 22, 0.6);
      backdrop-filter: blur(8px);
      z-index: 2000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease;
    }

    .drawer-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .reading-drawer {
      position: fixed;
      top: 0;
      right: 0;
      transform: translateX(100%);
      width: 100%;
      max-width: min(680px, 100vw);
      height: 100%;
      background-color: #FFFFFF;
      color: var(--color-text-light-primary);
      z-index: 2001;
      box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
    }

    .reading-drawer.open {
      transform: translateX(0);
    }

    .drawer-header {
      padding: 24px 40px;
      border-bottom: 1px solid var(--color-border-light);
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--color-light-bg-secondary);
    }

    .drawer-close-btn {
      background: none;
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: rgba(15, 23, 42, 0.05);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text-light-primary);
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }

    .drawer-close-btn:hover {
      background-color: var(--color-navy);
      color: #FFFFFF;
    }

    .drawer-body {
      padding: 48px 40px;
      overflow-y: auto;
      overflow-x: hidden;
      flex: 1;
      width: 100%;
    }

    .drawer-content h2 {
      font-family: var(--font-editorial);
      font-size: 2.2rem;
      color: var(--color-navy);
      line-height: 1.25;
      margin-bottom: 12px;
    }

    .drawer-content * {
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .drawer-meta {
      font-size: 0.82rem;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--color-accent);
      letter-spacing: 0.1em;
      margin-bottom: 32px;
      border-bottom: 1px solid var(--color-border-light);
      padding-bottom: 16px;
    }

    .drawer-text p {
      font-size: 1.05rem;
      color: var(--color-text-light-secondary);
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .drawer-text blockquote {
      border-left: 4px solid var(--color-accent);
      padding-left: 24px;
      margin: 36px 0;
      font-style: italic;
      font-size: 1.2rem;
      color: var(--color-navy);
      font-family: Georgia, serif;
    }

    .drawer-text h3 {
      font-family: var(--font-editorial);
      font-size: 1.5rem;
      color: var(--color-navy);
      margin: 40px 0 20px;
    }

    .drawer-text ul {
      margin-bottom: 24px;
      padding-left: 24px;
    }

    .drawer-text li {
      font-size: 1.05rem;
      color: var(--color-text-light-secondary);
      margin-bottom: 12px;
      line-height: 1.7;
    }

    /*------------------------------------------------------------------
    [9. TESTIMONIALS SECTION - DARK CONTRAST]
    ------------------------------------------------------------------*/
    .testimonials-section {
      background-color: var(--color-dark-bg-primary);
      z-index: 2;
    }

    .testimonials-layout {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: start;
    }

    .testimonials-left {
      position: sticky;
      top: 120px;
    }

    .company-quote {
      font-size: 1.25rem;
      line-height: 1.8;
      color: var(--color-text-dark-secondary);
      border-left: 3px solid var(--color-accent);
      padding-left: 24px;
      margin-top: 32px;
    }

    .quote-author {
      display: block;
      margin-top: 16px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--color-text-dark-primary);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .testimonials-right {
      position: relative;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .testimonials-carousel {
      position: relative;
      width: 100%;
      height: 350px;
      perspective: 1000px;
    }

    /* Animation Classes */
    .animate-on-scroll {
      opacity: 0;
      will-change: opacity, transform;
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .fade-in-up {
      transform: translateY(40px);
    }

    .fade-in-left {
      transform: translateX(-40px);
    }

    .animate-on-scroll.is-visible {
      opacity: 1;
      transform: translate(0, 0);
    }

    /* Sticky Note Styling */
    .testimonial-card.sticky-note {
      position: absolute;
      top: 0;
      left: 10%;
      width: 80%;
      height: auto;
      padding: 40px 30px 30px;
      box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
      transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      opacity: 0;
      transform: scale(0.9) rotate(0deg);
      z-index: 1;
      pointer-events: none;
    }

    .testimonial-card.sticky-note.active-slide {
      opacity: 1;
      transform: scale(1) rotate(2deg);
      z-index: 5;
      pointer-events: auto;
    }

    .testimonial-card.sticky-note.prev-slide {
      opacity: 0;
      transform: scale(0.9) translateX(-50px) rotate(-5deg);
      z-index: 2;
    }

    .testimonial-card.sticky-note.next-slide {
      opacity: 0;
      transform: scale(0.9) translateX(50px) rotate(5deg);
      z-index: 2;
    }

    .note-yellow {
      background-color: #fef08a;
      color: #1f2937;
    }

    .note-pink {
      background-color: #fbcfe8;
      color: #1f2937;
    }

    .note-blue {
      background-color: #bae6fd;
      color: #1f2937;
    }

    .pin {
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 14px;
      height: 14px;
      background: radial-gradient(circle at 30% 30%, #ef4444, #991b1b);
      border-radius: 50%;
      box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4), inset -2px -2px 4px rgba(0, 0, 0, 0.3);
    }

    .pin::after {
      content: '';
      position: absolute;
      top: 12px;
      left: 5px;
      width: 4px;
      height: 12px;
      background: #475569;
      z-index: -1;
      transform: rotate(20deg);
    }

    .handwritten {
      font-family: 'Caveat', cursive, sans-serif;
      font-size: 1.4rem;
      line-height: 1.4;
      color: #1e293b;
    }

    .handwritten-sm {
      font-family: 'Caveat', cursive, sans-serif;
      font-size: 1.2rem;
      color: #334155;
    }

    .testimonial-body {
      margin-bottom: 20px;
    }

    .testimonial-client {
      display: flex;
      flex-direction: column;
      border-top: 1px dashed rgba(0, 0, 0, 0.2);
      padding-top: 15px;
    }

    .client-name {
      font-weight: 600;
    }

    .client-title {
      font-size: 1.1rem;
    }

    .client-deal {
      font-weight: 600;
      color: #0369a1;
      margin-top: 4px;
    }

    /* Carousel Controls */
    .testimonial-controls {
      position: absolute;
      bottom: -40px;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }

    .carousel-btn {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
    }

    .carousel-btn:hover {
      background: var(--color-accent);
      border-color: var(--color-accent);
    }

    .carousel-indicators {
      display: flex;
      gap: 8px;
    }

    .indicator {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s;
    }

    .indicator.active {
      background: var(--color-accent);
      transform: scale(1.3);
    }

    /*------------------------------------------------------------------
    [10. CONTACT US SECTION - LIGHT CONTRAST WITH DUAL OFFICES]
    ------------------------------------------------------------------*/
    .contact-section {
      background-color: var(--color-light-bg-primary);
      color: var(--color-text-light-primary);
      z-index: 2;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    .office-card {
      background-color: var(--color-light-bg-secondary);
      border: 1px solid var(--color-border-light);
      border-radius: 12px;
      padding: 48px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .office-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(30, 58, 138, 0.08);
      border-color: rgba(30, 58, 138, 0.15);
    }

    .office-city {
      font-family: var(--font-editorial);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--color-navy);
      margin-bottom: 24px;
      border-bottom: 2px solid var(--color-accent);
      display: inline-block;
      padding-bottom: 8px;
    }

    .office-details {
      margin-bottom: 30px;
    }

    .detail-item {
      display: flex;
      gap: 16px;
      margin-bottom: 20px;
      align-items: flex-start;
    }

    .detail-icon {
      color: var(--color-accent);
      font-size: 1.2rem;
      margin-top: 2px;
    }

    .detail-text {
      font-size: 0.95rem;
      color: var(--color-text-light-secondary);
      line-height: 1.6;
    }

    .detail-text strong {
      color: var(--color-text-light-primary);
    }

    .office-actions {
      display: flex;
      gap: 12px;
      margin-top: 10px;
      flex-wrap: wrap;
    }

    .btn-action-small {
      padding: 10px 18px;
      font-size: 0.82rem;
      flex: 1;
      min-width: 130px;
    }

    /* Mock Premium Map View styling */
    .mock-map {
      height: 160px;
      width: 100%;
      border-radius: 8px;
      background-color: #e2e8f0;
      margin-top: 24px;
      overflow: hidden;
      position: relative;
      border: 1px solid var(--color-border-light);
    }

    .mock-map-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.7;
      background-image: radial-gradient(circle at 50% 50%, #ffffff 0%, #cbd5e1 100%);
      background-size: 20px 20px;
      background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
      background-size: 30px 30px;
    }

    .map-pin {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 5;
    }

    .pin-circle {
      width: 16px;
      height: 16px;
      background-color: var(--color-navy);
      border: 3px solid #FFFFFF;
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(30, 58, 138, 0.4);
    }

    .pin-pulse {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 32px;
      height: 32px;
      border: 2px solid var(--color-accent);
      border-radius: 50%;
      animation: pulse 2s infinite ease-out;
      opacity: 0;
    }

    @keyframes pulse {
      0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
      }

      100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
      }
    }

    /*------------------------------------------------------------------
    [11. FOOTER SECTION - DARK CONTRAST]
    ------------------------------------------------------------------*/
    .footer-section {
      background-color: var(--color-dark-bg-secondary);
      border-top: 1px solid var(--color-border-dark);
      padding: 40px 24px 20px;
      z-index: 2;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 30px;
      margin-bottom: 30px;
    }

    .footer-about {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .footer-brand-link {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      margin-bottom: 20px;
    }

    .footer-img-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 58px;
      height: 58px;
    }

    .footer-logo-img {
      height: 100%;
      width: 100%;
      object-fit: contain;
      border-radius: 50%;
      transform: translateZ(0) scale(1.1);
      backface-visibility: hidden;
      filter: blur(0.2px) drop-shadow(0 0 1px rgba(0,0,0,0.01));
    }

    .footer-logo-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .footer-brand-title {
      font-family: var(--font-editorial);
      font-size: 1.25rem;
      font-weight: 800;
      color: #FFFFFF;
      line-height: 1.1;
      letter-spacing: 0.05em;
    }

    .footer-brand-tagline {
      font-family: var(--font-body);
      font-size: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      color: var(--color-accent);
      font-weight: 700;
      margin-top: 3px;
    }

    .footer-desc {
      font-size: 0.85rem;
      color: var(--color-text-dark-secondary);
      line-height: 1.5;
    }

    .footer-title {
      font-family: var(--font-editorial);
      font-size: 1.05rem;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 16px;
      letter-spacing: 0.05em;
    }

    .footer-menu {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-link {
      font-size: 0.85rem;
      color: var(--color-text-dark-secondary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-link:hover {
      color: var(--color-accent);
    }

    .footer-disclaimer-card {
      background-color: var(--color-dark-bg-primary);
      border: 1px solid var(--color-border-dark);
      border-radius: 8px;
      padding: 16px 20px;
      margin-bottom: 24px;
    }

    .disclaimer-title {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-accent);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .disclaimer-text {
      font-size: 0.78rem;
      color: var(--color-text-dark-secondary);
      line-height: 1.6;
    }

    .footer-bottom {
      border-top: 1px solid var(--color-border-dark);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .copyright {
      font-size: 0.8rem;
      color: var(--color-text-dark-secondary);
    }

    /*------------------------------------------------------------------
    [12. RESPONSIVE DESIGN]
    ------------------------------------------------------------------*/
    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
      }

      .hero-desc {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-badge {
        justify-content: center;
      }

      .hero-buttons {
        justify-content: center;
      }

      .hero-visual {
        order: -1;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .about-content {
        padding-right: 0;
      }

      .guides-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .testimonials-layout {
        grid-template-columns: 1fr;
      }

      .testimonials-left {
        position: relative;
        top: 0;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 70px 20px;
      }

      .section-title {
        font-size: 2.1rem;
      }

      .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        word-break: break-word;
      }

      .whyus-grid {
        grid-template-columns: 1fr;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .intake-form-grid {
        grid-template-columns: 1fr;
      }

      .form-group-full {
        grid-column: span 1;
      }

      .form-submit-container {
        grid-column: span 1;
      }

      .guides-grid {
        grid-template-columns: 1fr;
      }

      .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .navbar-container {
        padding: 0 16px;
      }

      .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-dark-bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 60px;
        gap: 40px;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
      }

      .nav-menu.active {
        left: 0;
      }

      .hamburger {
        display: flex;
      }

      .nav-actions {
        display: none;
      }

      .drawer-body {
        padding: 24px 16px;
      }

      .drawer-header {
        padding: 16px;
      }

      .drawer-header .logo-brand {
        font-size: 0.9rem !important;
        letter-spacing: 0.02em;
      }

      .drawer-content h2 {
        font-size: 1.5rem;
        word-break: break-word;
      }

      .drawer-text h3 {
        font-size: 1.25rem;
      }

      .drawer-text p,
      .drawer-text li {
        font-size: 0.95rem;
      }

      .drawer-text blockquote {
        font-size: 1.05rem;
        padding-left: 16px;
        margin: 24px 0;
      }

      .drawer-meta {
        font-size: 0.75rem;
        word-wrap: break-word;
      }

      .hero-graphic-box {
        padding: 17px;
      }

      .graphic-header {
        flex-wrap: nowrap;
        /* gap: 4px; */
      }

      .graphic-badge {
        font-size: 0.5rem;
        padding: 4px 6px;
      }

      .graphic-year {
        font-size: 0.65rem;
        padding: 1px 6px;
      }

      .graphic-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
      }

      .footer-stat {
        font-size: 0.6rem;
      }
      
      .stat-highlight {
        font-size: 0.8rem;
      }
    }
