  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Roboto', sans-serif;
      background: #0A1628;
      color: #F5F0E8;
      overflow-x: hidden;
  }

  html {
      scroll-behavior: smooth;
  }

  .font-display {
      font-family: 'Nunito', sans-serif;
      letter-spacing: -0.02em;
  }

  .font-body {
      font-family: 'Roboto', sans-serif;
  }

  /* Preloader */
  .preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #0A1628;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: opacity 0.5s ease, visibility 0.5s ease;
  }

  .preloader.hide {
      opacity: 0;
      visibility: hidden;
  }

  .preloader-logo {
      width: 100px;
      height: 100px;
      margin-bottom: 1.5rem;
      animation: pulse 1.5s ease-in-out infinite;
  }

  .preloader-text {
      font-family: 'Nunito', sans-serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: #D4AF37;
      letter-spacing: 0.1em;
      text-transform: uppercase;
  }

  .preloader-dots {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
  }

  .preloader-dots span {
      width: 8px;
      height: 8px;
      background: #D4AF37;
      border-radius: 50%;
      animation: dotBounce 1.4s ease-in-out infinite;
  }

  .preloader-dots span:nth-child(1) {
      animation-delay: 0s;
  }

  .preloader-dots span:nth-child(2) {
      animation-delay: 0.2s;
  }

  .preloader-dots span:nth-child(3) {
      animation-delay: 0.4s;
  }

  @keyframes pulse {

      0%,
      100% {
          transform: scale(1);
          opacity: 1;
      }

      50% {
          transform: scale(1.05);
          opacity: 0.8;
      }
  }

  @keyframes dotBounce {

      0%,
      60%,
      100% {
          transform: translateY(0);
      }

      30% {
          transform: translateY(-10px);
      }
  }

  /* Navbar */
  .navbar {
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      background: transparent;
  }

  .navbar.scrolled {
      background: rgba(10, 22, 40, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  .nav-logo-img {
      height: 40px;
      width: auto;
  }

  .nav-link {
      position: relative;
      font-weight: 500;
      font-size: 0.9rem;
      font-family: 'Roboto', sans-serif;
      transition: color 0.2s;
      color: #E8D5A3;
  }

  .nav-link.active {
      border-bottom: 2px solid #F5C842;
  }

  .nav-link::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #D4AF37, #F5C842);
      transition: width 0.25s ease;
  }

  .nav-link:hover::after {
      width: 100%;
  }

  .nav-link:hover {
      color: #F5C842;
  }

  .btn-gold {
      background: linear-gradient(135deg, #D4AF37, #B8942E);
      color: #0A1628;
      font-weight: 700;
      font-family: 'Nunito', sans-serif;
      border-radius: 9999px;
      transition: all 0.25s ease;
      box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
  }

  .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.5);
      background: linear-gradient(135deg, #F5C842, #D4AF37);
  }

  /* Mobile menu */
  .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(10, 22, 40, 0.98);
      backdrop-filter: blur(20px);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
  }

  .mobile-menu.active {
      transform: translateX(0);
  }

  .mobile-link {
      font-family: 'Nunito', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: #E8D5A3;
      text-decoration: none;
      transition: color 0.2s;
  }

  .mobile-link:hover,
  .mobile-link.active {
      color: #F5C842;
  }

  .close-menu {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: none;
      border: none;
      color: #F5C842;
      font-size: 2rem;
      cursor: pointer;
      padding: 0.5rem;
      font-family: 'Roboto', sans-serif;
  }

  /* GSAP Animation Classes */
  .gsap-fade-up {
      opacity: 0;
      transform: translateY(40px);
  }

  /* Swiper Customization */
  .swiper-button-next,
  .swiper-button-prev {
      background: rgba(10, 22, 40, 0.8);
      backdrop-filter: blur(8px);
      width: 44px !important;
      height: 44px !important;
      border-radius: 50%;
      color: #D4AF37 !important;
      border: 1px solid rgba(212, 175, 55, 0.3);
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
      font-size: 16px !important;
      font-weight: bold;
  }

  .swiper-pagination-bullet {
      background: #4A5A7A !important;
  }

  .swiper-pagination-bullet-active {
      background: #D4AF37 !important;
      width: 28px;
      border-radius: 8px;
  }

  @media (max-width: 768px) {

      .swiper-button-next,
      .swiper-button-prev {
          display: none !important;
      }
  }