  /* ===== Custom Styles for The Stylin' Station ===== */

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

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #0a1f0f;
  }
  ::-webkit-scrollbar-thumb {
    background: #c9a84c;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #d4b85e;
  }

  /* Selection color */
  ::selection {
    background: rgba(201, 168, 76, 0.3);
    color: #f5f0e8;
  }

  /* Hero animation */
  .hero-elem {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
  }
  .hero-elem[data-delay="100"] { animation-delay: 0.1s; }
  .hero-elem[data-delay="200"] { animation-delay: 0.2s; }
  .hero-elem[data-delay="300"] { animation-delay: 0.3s; }
  .hero-elem[data-delay="400"] { animation-delay: 0.4s; }
  .hero-elem[data-delay="500"] { animation-delay: 0.5s; }
  .hero-elem[data-delay="700"] { animation-delay: 0.7s; }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Scroll reveal animations */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* Navbar scroll state */
  #navbar.scrolled {
    background: rgba(10, 31, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }

  /* Mobile menu open state */
  #mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  /* Hamburger animation */
  #menu-btn.active #bar1 {
    transform: rotate(45deg) translate(4px, 4px);
  }
  #menu-btn.active #bar2 {
    opacity: 0;
  }
  #menu-btn.active #bar3 {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  /* Gold shimmer effect on hover for cards */
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.05), transparent);
    transition: left 0.6s ease;
  }
  .service-card:hover::before {
    left: 100%;
  }

  /* Focus styles for accessibility */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible,
  select:focus-visible {
    outline: 2px solid #c9a84c;
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* Image loading placeholder */
  img {
    background: linear-gradient(135deg, #0d2814 0%, #12331a 100%);
  }

  /* Subtle parallax-like effect for decorative orbs */
  @media (prefers-reduced-motion: no-preference) {
    .parallax-slow {
      animation: float 6s ease-in-out infinite;
    }
    .parallax-fast {
      animation: float 4s ease-in-out infinite;
    }
  }

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

  /* Testimonial quote mark styling */
  .testimonial-quote {
    position: relative;
  }
  .testimonial-quote::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -5px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: rgba(201, 168, 76, 0.1);
    line-height: 1;
  }

  /* Gradient text utility */
  .text-gradient-gold {
    background: linear-gradient(135deg, #c9a84c, #e0c872, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Gallery hover overlay */
  .gallery-item {
    position: relative;
    overflow: hidden;
  }
  .gallery-item img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .gallery-item:hover img {
    transform: scale(1.1);
  }

  /* Form input autofill styling */
  input:-webkit-autofill,
  textarea:-webkit-autofill,
  select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #0a1f0f inset !important;
    -webkit-text-fill-color: #f5f0e8 !important;
  }

  /* Ensure select dropdown text is visible */
  select option {
    background: #0a1f0f;
    color: #f5f0e8;
  }
