  /* ===== BASE & SCROLLBAR ===== */
  html {
    scroll-behavior: smooth;
  }

  body {
    overflow-x: hidden;
  }

  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #1a0f24;
  }
  ::-webkit-scrollbar-thumb {
    background: #5B2C6F;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
  }

  ::selection {
    background: rgba(245, 158, 11, 0.3);
    color: #faf5ff;
  }

  /* ===== ANIMATIONS ===== */
  @keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(0.5deg); }
  }

  @keyframes float-medium {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-0.5deg); }
  }

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

  .floating-card-1 {
    animation: float-slow 5s ease-in-out infinite;
  }

  .floating-card-2 {
    animation: float-medium 4s ease-in-out infinite;
  }

  /* ===== SCROLL REVEAL ===== */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  /* ===== NAVBAR ===== */
  #navbar {
    backdrop-filter: blur(0px);
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
  }

  #navbar.scrolled {
    background: rgba(26, 15, 36, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }

  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F59E0B;
    border-radius: 1px;
    transition: width 0.3s ease;
  }

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

  /* ===== SERVICE CARDS ===== */
  .service-card {
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B, #d97706);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 3px 3px 0 0;
  }

  .service-card:hover::before {
    opacity: 1;
  }

  /* ===== MOBILE MENU ===== */
  #mobile-menu {
    animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mobile-nav-link {
    position: relative;
    padding-left: 0;
  }

  /* ===== HERO ===== */
  #hero {
    position: relative;
  }

  /* ===== GALLERY HOVER ===== */
  .rounded-2xl.overflow-hidden {
    position: relative;
  }

  .rounded-2xl.overflow-hidden::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(91, 44, 111, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: inherit;
  }

  .rounded-2xl.overflow-hidden:hover::after {
    opacity: 1;
  }

  /* ===== CTA SECTION ===== */
  #cta-banner {
    position: relative;
  }

  /* ===== INPUT FOCUS ===== */
  input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .floating-card-1,
    .floating-card-2 {
      display: none;
    }
  }
