  /* === CUSTOM STYLES === */

  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }

  /* Selection color */
  ::selection {
    background: #BB8ECF;
    color: #230F2C;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #F9F5FC;
  }
  ::-webkit-scrollbar-thumb {
    background: #D4B5E0;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #BB8ECF;
  }

  /* === BLOBS === */
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: blob-float 8s ease-in-out infinite;
  }

  .blob-plum {
    background: #BB8ECF;
    width: 500px;
    height: 500px;
    opacity: 0.15;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
  }

  .blob-amber {
    background: #FCD34D;
    width: 400px;
    height: 400px;
    opacity: 0.12;
    bottom: -50px;
    left: -50px;
    animation-delay: -3s;
  }

  .blob-plum-light {
    background: #E8D5EE;
    width: 300px;
    height: 300px;
    opacity: 0.2;
    animation-delay: -5s;
  }

  @keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
  }

  /* === FLOATING CARD ANIMATION === */
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  .animate-float {
    animation: float 4s ease-in-out infinite;
  }

  /* === SCROLL INDICATOR === */
  @keyframes scroll-dot {
    0% { top: 0; opacity: 1; }
    100% { top: 24px; opacity: 0; }
  }

  .scroll-dot {
    animation: scroll-dot 1.5s ease-in-out infinite;
  }

  /* === NAV SCROLLED STATE === */
  #nav.scrolled {
    background: rgba(249, 245, 252, 0.92);
    backdrop-blur-xl;
    box-shadow: 0 1px 20px rgba(91, 44, 111, 0.08);
  }

  #nav.scrolled .nav-link {
    color: #5B2C6F;
  }

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

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B, #FCD34D);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }

  .service-card:hover::after {
    transform: scaleX(1);
  }

  /* === SCROLL REVEAL === */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  .scroll-reveal.revealed:nth-child(2) { transition-delay: 0.1s; }
  .scroll-reveal.revealed:nth-child(3) { transition-delay: 0.2s; }
  .scroll-reveal.revealed:nth-child(4) { transition-delay: 0.3s; }
  .scroll-reveal.revealed:nth-child(5) { transition-delay: 0.4s; }
  .scroll-reveal.revealed:nth-child(6) { transition-delay: 0.5s; }

  /* === HERO ANIMATION === */
  .hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: hero-in 0.8s ease forwards;
  }

  .hero-images {
    opacity: 0;
    transform: translateX(30px);
    animation: hero-images-in 0.8s ease 0.2s forwards;
  }

  @keyframes hero-in {
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes hero-images-in {
    to { opacity: 1; transform: translateX(0); }
  }

  /* === MOBILE MENU === */
  #mobile-menu {
    animation: menu-slide 0.3s ease;
  }

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

  /* === RESPONSIVE ADJUSTMENTS === */
  @media (max-width: 768px) {
    .blob-plum {
      width: 250px;
      height: 250px;
    }
    .blob-amber {
      width: 200px;
      height: 200px;
    }
    .blob-plum-light {
      width: 150px;
      height: 150px;
    }
  }
