/* ================================
   NAVBAR GLOBAL RESET
================================ */
.navbar, .navbar * {
    box-sizing: border-box;
  }
  
  /* ================================
     NAVBAR WRAPPER
  ================================ */
  .navbar {
    width: 100%;
    background: #0f172a; /* dark slate */
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
  }
  
  /* ================================
     NAVBAR CONTAINER
  ================================ */
  .navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* ================================
     LOGO
  ================================ */
  .navbar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #38bdf8;
    text-decoration: none;
  }
  
  /* ================================
     DESKTOP LINKS
  ================================ */
  .navbar-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  
  .navbar-links li a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.2s;
  }
  
  .navbar-links li a:hover {
    color: white;
  }
  
  /* ================================
     MOBILE MENU BUTTON
  ================================ */
  .navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
  }
  
  .navbar-toggle-icon {
    width: 24px;
    height: 2px;
    background: #e2e8f0;
    display: block;
    transition: 0.3s ease;
  }
  
  /* When open */
  .navbar-toggle.open .navbar-toggle-icon:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .navbar-toggle.open .navbar-toggle-icon:nth-child(2) {
    opacity: 0;
  }
  
  .navbar-toggle.open .navbar-toggle-icon:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* ================================
     MOBILE MENU PANEL
  ================================ */
  .navbar-links-mobile {
    display: none;
    flex-direction: column;
    background: #0f172a;
    padding: 1rem 1.5rem;
    gap: 1rem;
  }
  
  .navbar-links-mobile.active {
    display: flex;
  }
  
  .navbar-links-mobile li a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1.1rem;
  }
  
  .navbar-links-mobile li a:hover {
    color: white;
  }
  
  /* ================================
     RESPONSIVE BREAKPOINTS
  ================================ */
  @media (max-width: 768px) {
    .navbar-links {
      display: none;
    }
  
    .navbar-toggle {
      display: flex;
    }
  }