  /* Base styles & custom properties */
  :root {
    --color-plum-950: #140A1C;
    --color-plum-900: #241130;
    --color-plum-700: #5B2C6F;
    --color-plum-600: #7B3F8E;
    --color-plum-500: #9B55B8;
    --color-plum-200: #E8D7F5;
    --color-plum-100: #F3ECFA;
    --color-plum-50: #F9F5FC;
    --color-amber-400: #F5B041;
    --color-amber-500: #D98A1E;
  }

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

  body {
    overflow-x: hidden;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: var(--color-plum-50);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--color-plum-300, #D4B5EC);
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--color-plum-500);
  }

  /* Navigation */
  .nav-link {
    color: #5B2C6F;
    position: relative;
  }

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

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

  #navbar.scrolled .nav-link {
    color: #E8D7F5;
  }

  #navbar.scrolled .nav-link::after {
    background: #F5B041;
  }

  #navbar.scrolled .nav-text {
    color: #E8D7F5;
  }

  /* Mobile menu */
  .mobile-nav-link {
    opacity: 1;
  }

  #mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  #mobile-menu.closed {
    opacity: 0;
    pointer-events: none;
  }

  #menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  #menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
  }
  #menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 1.5rem;
  }

  /* Service cards */
  .service-card {
    position: relative;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    border: 1px solid transparent;
    transition: border-color 0.4s ease;
    pointer-events: none;
  }

  .service-card:hover::before {
    border-color: rgba(245, 176, 65, 0.3);
  }

  /* Gallery */
  .gallery-item {
    cursor: pointer;
  }

  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 10, 28, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 0.75rem;
  }

  .gallery-item:hover::after {
    opacity: 1;
  }

  /* Testimonial cards */
  .testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(91, 44, 111, 0.12);
  }

  /* Scroll animations */
  .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal[data-delay="1"] { transition-delay: 0.1s; }
  .reveal[data-delay="2"] { transition-delay: 0.2s; }
  .reveal[data-delay="3"] { transition-delay: 0.3s; }
  .reveal[data-delay="4"] { transition-delay: 0.4s; }
  .reveal[data-delay="5"] { transition-delay: 0.5s; }

  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(30px);
    }
  }

  /* Decorative elements */
  .hero-pattern {
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 40px 40px;
  }
