  *, *::before, *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  ::selection {
    background: #C9A84C;
    color: #061529;
  }

  /* Reveal animations */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hero animations */
  .hero-subtitle {
    opacity: 0;
    animation: fadeUp 0.8s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }

  .hero-title {
    opacity: 0;
    animation: fadeUp 0.8s 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }

  .hero-description {
    opacity: 0;
    animation: fadeUp 0.8s 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }

  .hero-cta {
    opacity: 0;
    animation: fadeUp 0.8s 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Navbar scroll state */
  #navbar.scrolled .nav-logo-text {
    color: #fff;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: #0A1F3F;
  }

  ::-webkit-scrollbar-thumb {
    background: #C9A84C;
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #D4BA6A;
  }

  /* Focus styles */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible,
  select:focus-visible {
    outline: 2px solid #C9A84C;
    outline-offset: 2px;
  }

  /* Mobile menu transitions */
  #mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu-link {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, color 0.3s;
  }

  #mobile-menu.open .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
  }

  #mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
  #mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
  #mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
  #mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
  #mobile-menu.open .mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }

  /* Form styles */
  select {
    appearance: none;
    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='%23C9A84C' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 2rem;
  }

  select option {
    background: #fff;
    color: #0A1F3F;
  }

  /* Responsive */
  @media (max-width: 767px) {
    html {
      font-size: 15px;
    }

    .reveal {
      transform: translateY(20px);
    }
  }
