  /* ===== CUSTOM STYLES FOR REBEL SALON ===== */

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

  /* Selection color */
  ::selection {
    background-color: #99f6e4;
    color: #134e4a;
  }

  /* ===== NAVBAR ===== */
  #navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(204, 251, 241, 0.5);
  }

  #navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  }

  /* ===== MOBILE MENU ===== */
  #mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  /* ===== HERO ===== */
  .hero-blob {
    animation: float 8s ease-in-out infinite;
  }

  .hero-blob-2 {
    animation: float 10s ease-in-out infinite reverse;
  }

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

  /* ===== SERVICE CARDS ===== */
  .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-4px);
  }

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

  .gallery-item img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* ===== TESTIMONIAL CARDS ===== */
  .testimonial-card {
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
  }

  /* ===== SCROLL REVEAL (progressive enhancement) ===== */
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.revealed {
      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; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }
    .reveal-delay-6 { transition-delay: 0.6s; }
  }

  /* Always visible regardless of JS */
  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1;
      transform: none;
    }
  }

  /* ===== BACK TO TOP ===== */
  #back-to-top.visible {
    opacity: 1;
    pointer-events: all;
  }

  /* ===== FORM INPUTS ===== */
  input:focus,
  select:focus,
  textarea:focus {
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  }

  /* ===== RESPONSIVE TWEAKS ===== */
  @media (max-width: 640px) {
    .font-serif {
      line-height: 1.15;
    }
  }

  /* ===== SUBTLE PATTERN OVERLAY ===== */
  section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(13, 148, 136, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
  }

  section > * {
    position: relative;
    z-index: 1;
  }
