  /* Base */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    overflow-x: hidden;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #fdfcfa;
  }
  ::-webkit-scrollbar-thumb {
    background: #a8e6cf;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #7dd3b3;
  }

  /* Buttons */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #0a2540 0%, #091f35 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.25);
    border: none;
    cursor: pointer;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 37, 64, 0.35);
    background: linear-gradient(135deg, #091f35 0%, #08192a 100%);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-blur: blur(10px);
    color: #0a2540;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(10, 37, 64, 0.15);
  }

  .btn-secondary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.12);
  }

  /* Navigation */
  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a8e6cf, #4fbfa0);
    border-radius: 1px;
    transition: width 0.3s ease;
  }

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

  /* Floating cards animation */
  .floating-card {
    animation: float 6s ease-in-out infinite;
  }

  .floating-card:nth-child(2) {
    animation-delay: -2s;
    animation-duration: 7s;
  }

  .floating-card:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 5s;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }

  /* Menu cards */
  .menu-card {
    background: #fff;
    border-radius: 24px;
    padding: 8px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(168, 230, 207, 0.2);
  }

  .menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.1);
    border-color: rgba(168, 230, 207, 0.5);
  }

  /* Gallery */
  .gallery-item {
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(10, 37, 64, 0.15);
  }

  /* Mobile menu */
  .mobile-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(10, 37, 64, 0.06);
    transition: padding-left 0.3s ease;
  }

  .mobile-link:hover {
    padding-left: 8px;
  }

  /* Scroll animations */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* Navbar scroll state */
  #navbar.scrolled {
    background: rgba(253, 252, 250, 0.9);
    backdrop-blur: 20px;
    box-shadow: 0 1px 30px rgba(10, 37, 64, 0.06);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .floating-card {
      display: none;
    }

    #hero {
      min-height: auto;
      padding-top: 100px;
      padding-bottom: 60px;
    }

    .hero-image-mobile {
      display: block;
      margin-top: 40px;
    }
  }

  @media (min-width: 769px) {
    .hero-image-mobile {
      display: none;
    }
  }

  /* Selection color */
  ::selection {
    background: rgba(168, 230, 207, 0.4);
    color: #0a2540;
  }
