/* =========================================================
   HEADER BASE
   ========================================================= */

   .site-header {
    position: fixed;
    top: 5px;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition:
      top var(--transition-normal),
      background var(--transition-normal),
      box-shadow var(--transition-normal),
      padding var(--transition-normal);
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);

  }
  
  /* IMPORTANT: controls left/right edge spacing */
  .site-header .container {
    width: 100%;
    max-width: 1400px; /* adjust if needed */
    margin: 0 auto;
    padding: 0 40px;   /* proper edge spacing */
    height: 75px;

  }
  
  /* =========================================================
     HEADER INNER LAYOUT (REAL FIX)
     ========================================================= */
  
  .header-inner {
    display: flex;
    align-items: center;
    width: 100%;
  }
  
  /* LEFT SIDE */
  .logo {
    display: flex;
    align-items: center;
  }
  
  /* =========================================================
     DESKTOP NAV (RIGHT ALIGNED CORRECTLY)
     ========================================================= */
  
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;   /* ⭐ THIS replaces negative margin */
  }
  
  .nav-desktop a {
    font-weight: 600;
    color: var(--color-white);
    text-decoration: underline;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .nav-desktop a:hover {
    color: var(--color-primary-cyan);
  }
  
  .nav-desktop a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary-cyan);
    transition: width 0.3s ease;
  }
  
  .nav-desktop a:hover::after {
    width: 100%;
  }
  
  /* =========================================================
     CTA BUTTON
     ========================================================= */
  
  .nav-cta {
    background: var(--color-primary-cyan);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 5px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .nav-cta:hover {
    background: var(--color-primary-teal);
    transform: translateY(-2px);
  }
  
  /* =========================================================
     SCROLLED STATE
     ========================================================= */
  
  .site-header.is-scrolled {
    top: 0;
    background: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .site-header.is-scrolled .nav-desktop a {
    color: var(--color-primary-dark);
    text-decoration: none;
  }
  
  .site-header.is-scrolled .nav-desktop a:hover {
    color: var(--color-primary-teal);
  }
  
  /* =========================================================
     MOBILE NAV TOGGLE
     ========================================================= */
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    padding: 4px;
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
    border: none;
  }
  
  .nav-toggle span {
    height: 3px;
    width: 100%;
    background: #fff;
  }
  
  /* =========================================================
     MOBILE DRAWER
     ========================================================= */
  
  .mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    transition: right var(--transition-normal);
    z-index: 9999;
    padding: var(--space-5) var(--space-3);
  }
  
  .mobile-drawer.open {
    right: 0;
  }
  
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-4);
  }
  
  .mobile-nav a {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
  }
  
  /* =========================================================
     OVERLAY
     ========================================================= */
  
  .drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
  }
  
  .drawer-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* =========================================================
     RESPONSIVE
     ========================================================= */
  
  @media (max-width: 900px) {
  
    .nav-desktop {
      display: none;
    }
  
    .nav-toggle {
      display: flex;
      margin-left: auto;
    }
  
    .site-header .container {
      padding: 0 20px;
    }
  }