    /* DESIGN SYSTEM & VARIABLES */
    :root {
      /* Pure Black and Yellow Premium Hybrid Palette */
      --white-base: #FFFFFF;       /* Base background */
      --charcoal-card: #0F0F0F;    /* Card / Container background */
      --charcoal-hover: #181818;   /* Hover state inside dark cards */
      
      --yellow-primary: #FDCA0E;   /* Dynamic logo yellow */
      --yellow-hover: #E0B30C;     /* Darker yellow for hover states */
      --yellow-muted: #FFDF6D;     /* Soft text yellow */
      --yellow-light-bg: #FFFBEA;  /* Soft light yellow background for badges on white */
      --yellow-gradient: linear-gradient(135deg, #FFE033 0%, #FDCA0E 45%, #F5A623 100%); /* Rich warm gold gradient */
      
      --text-obsidian: #060606;    /* Obsidian black for headers */
      --text-soft-black: #222222;  /* Soft black for secondary elements */
      --text-muted-dark: #4E4E4E;  /* High-contrast readable body text on white */
      
      /* Mapping old variable names to clean values so they transition perfectly */
      --cream-base: var(--white-base);
      --cream-light: #F9F9F6;      /* Off-white for subtle section difference */
      --cream-dark: #E5E5E5;
      
      --forest-dark: var(--text-obsidian);
      --forest-medium: var(--text-soft-black);
      --forest-light: var(--text-muted-dark);
      
      --gold-text-on-light: #7A5500;  /* WCAG AA on white: ~6.3:1 contrast */
      --gold-accent: var(--yellow-primary);
      --gold-dark: var(--yellow-hover);
      --gold-light: var(--yellow-light-bg);
      --gold-pale: var(--yellow-light-bg);
      --white: #FFFFFF;                            /* Pure white background for sections */
      --card-background: #FFFFFF;                  /* Pure white for cards and containers */
      
      /* Typography */
      --font-serif: 'Montserrat', sans-serif;
      --font-sans: 'Montserrat', sans-serif;
      --font-montserrat: 'Montserrat', sans-serif;
      
      /* Transitions */
      --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* GLOBAL RESET */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    html {
      scroll-behavior: smooth;
      background-color: var(--cream-base);
    }

    body {
      font-family: var(--font-sans);
      color: var(--forest-dark);
      background-color: var(--cream-base);
      font-size: 15px;
      line-height: 1.65;
      overflow-x: hidden;
    }

    /* TYPOGRAPHY */
    h1, h2, h3, h4 {
      font-family: var(--font-serif);
      font-weight: 700;
      line-height: 1.2;
      color: var(--forest-dark);
    }

    p {
      color: var(--forest-light);
    }

    /* PREMIUM HEADER NAVIGATION */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(253, 202, 14, 0.15);
      transition: var(--transition-smooth);
    }

    nav {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 4%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }

    .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition-smooth);
    }

    .brand-logo-img {
      height: 48px;
      width: auto;
      object-fit: contain;
      margin: 0;
      filter: drop-shadow(0 2px 10px rgba(253, 202, 14, 0.22));
      transition: var(--transition-smooth);
    }

    .brand-logo-bottom-img {
      height: 12px;
      width: auto;
      object-fit: contain;
      margin-top: 4px;
      filter: drop-shadow(0 1px 5px rgba(253, 202, 14, 0.2));
      transition: var(--transition-smooth);
    }

    .logo:hover .brand-logo-img {
      transform: scale(1.05);
      filter: drop-shadow(0 3px 10px rgba(253, 202, 14, 0.5));
    }

    .logo:hover .brand-logo-bottom-img {
      transform: scale(1.05);
      filter: drop-shadow(0 2px 8px rgba(253, 202, 14, 0.4));
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--forest-light);
      font-size: 14.5px;
      font-weight: 700;
      cursor: pointer;
      position: relative;
      padding: 6px 0;
      transition: var(--transition-fast);
    }

    .nav-links a:hover {
      color: var(--gold-dark);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--gold-accent);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s ease;
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .nav-links a.active {
      color: var(--yellow-primary);
      font-weight: 700;
    }

    .nav-links a.active::after {
      transform: scaleX(1);
      background-color: var(--yellow-primary);
    }

    .btn-nav {
      background: var(--yellow-gradient);
      color: var(--text-obsidian);
      border: none;
      padding: 12px 24px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(253, 202, 14, 0.3);
      transition: var(--transition-smooth);
    }

    .btn-nav:hover {
      background: var(--text-obsidian);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    /* BUTTONS */
    .btn-primary {
      background: var(--yellow-gradient);
      color: var(--text-obsidian);
      border: none;
      padding: 16px 36px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 18px rgba(253, 202, 14, 0.35);
      transition: var(--transition-smooth);
    }

    .btn-primary:hover {
      background: var(--text-obsidian);
      color: var(--white);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .btn-secondary {
      background: transparent;
      color: var(--forest-dark);
      border: 2px solid var(--forest-light);
      padding: 14px 34px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition-smooth);
    }

    .btn-secondary:hover {
      background: rgba(0, 0, 0, 0.05);
      border-color: var(--forest-dark);
      transform: translateY(-2px);
    }

    /* SPA VIEWS WITH TRANSITIONS */
    .page {
      display: none;
      opacity: 0;
      transform: translateY(15px);
      transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .page.active {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    /* SECTIONS */
    .section {
      padding: 90px 4% 100px;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-white {
      background: var(--white);
    }

    .section-cream {
      background: var(--cream-light);
      border-top: 1px solid rgba(0, 0, 0, 0.03);
      border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .sec-eyebrow {
      font-family: var(--font-sans);
      font-size: 12px;
      font-weight: 700;
      color: var(--gold-text-on-light);
      text-transform: uppercase;
      letter-spacing: 2px;
      text-align: center;
      margin-bottom: 12px;
    }

    .sec-title {
      font-size: 42px;
      font-weight: 800;
      color: var(--forest-dark);
      text-align: center;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .sec-sub {
      color: var(--forest-light);
      text-align: center;
      margin-bottom: 56px;
      font-size: 16px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    /* HERO SECTION */
    .hero {
      background: radial-gradient(circle at 80% 20%, var(--gold-light) 0%, var(--cream-base) 60%);
      padding: 90px 4% 110px;
    }

    .hero-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 80px;
      align-items: stretch;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold-pale);
      border: 1px solid rgba(197, 155, 39, 0.3);
      color: var(--gold-dark);
      font-size: 12.5px;
      font-weight: 600;
      padding: 8px 18px;
      border-radius: 50px;
      margin-bottom: 28px;
      box-shadow: 0 4px 10px rgba(197, 155, 39, 0.05);
    }

    .hero h1 {
      font-family: var(--font-montserrat);
      font-size: 58px;
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -1.5px;
      margin-bottom: 24px;
    }

    .hero h1 .thin {
      font-weight: 300;
    }

    .hero h1 span {
      color: var(--yellow-primary);
      position: relative;
    }

    .hero p {
      color: var(--forest-light);
      font-size: 17px;
      line-height: 1.8;
      margin-bottom: 40px;
      max-width: 520px;
    }

    .hero-btns {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .hero-stats {
      display: flex;
      gap: 36px;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
      padding-top: 28px;
      flex-wrap: wrap;
    }

    .stat-item {
      font-size: 14px;
      color: var(--forest-light);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .stat-item strong {
      color: var(--forest-dark);
      font-weight: 700;
      font-size: 16px;
    }

    .hero-img-box {
      position: relative;
      display: flex;
      justify-content: center;
      width: 100%;
      height: 100%;
    }

    .hero-img-frame {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 480px;
      border-radius: 28px;
      padding: 12px;
      background: var(--card-background);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(0, 0, 0, 0.04);
      animation: float 6s ease-in-out infinite;
    }

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

    .hero-img {
      position: absolute;
      top: 12px;
      left: 12px;
      right: 12px;
      bottom: 12px;
      border-radius: 20px;
      overflow: hidden;
      background: var(--cream-light);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }

    .hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      transition: var(--transition-smooth);
    }

    /* STATS BAR */
    .stats-bar {
      background: var(--forest-dark);
      color: var(--cream-base);
      padding: 50px 4%;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .stats-bar-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      text-align: center;
    }

    .stat-num {
      font-family: var(--font-serif);
      font-size: 40px;
      font-weight: 700;
      color: var(--gold-accent);
      margin-bottom: 6px;
      letter-spacing: -0.5px;
    }

    .stat-lbl {
      font-size: 13px;
      color: var(--cream-dark);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 500;
    }

    /* CARDS LAYOUT */
    .cards-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .card {
      background: var(--card-background);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 20px;
      padding: 40px 32px;
      text-align: center;
      transition: var(--transition-smooth);
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--gold-accent);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .card:hover::before {
      transform: scaleX(1);
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
      border-color: rgba(197, 155, 39, 0.2);
    }

    .section-white .card {
      background: var(--card-background);
    }

    .icon-circle {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--gold-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      color: var(--gold-dark);
      border: 1px solid rgba(197, 155, 39, 0.15);
      transition: var(--transition-smooth);
    }

    .card:hover .icon-circle {
      transform: scale(1.1);
      background: var(--gold-accent);
      color: var(--white);
    }

    .card h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--forest-dark);
      margin-bottom: 14px;
    }

    .card p {
      font-size: 14px;
      color: var(--forest-light);
      line-height: 1.7;
    }

    /* SERVICES GRID */
    .services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .service-card {
      background: var(--card-background);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 20px;
      padding: 36px;
      transition: var(--transition-smooth);
      position: relative;
    }

    .service-card:hover {
      transform: translateY(-5px);
      border-color: var(--gold-accent);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
    }

    .service-header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 24px;
    }

    .service-icon {
      width: 60px;
      height: 60px;
      background: var(--gold-pale);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-dark);
      border: 1px solid rgba(197, 155, 39, 0.15);
      transition: var(--transition-smooth);
    }

    .service-card:hover .service-icon {
      background: var(--forest-dark);
      color: var(--cream-base);
      border-color: var(--forest-dark);
    }

    .service-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--forest-dark);
    }

    .service-dur {
      font-size: 13px;
      color: var(--gold-text-on-light);
      margin-top: 4px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .service-desc {
      font-size: 14.5px;
      color: var(--forest-light);
      margin-bottom: 24px;
      line-height: 1.7;
    }

    .service-card ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      padding-top: 20px;
    }

    .service-card li {
      font-size: 14px;
      color: var(--forest-light);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold-accent);
      flex-shrink: 0;
      box-shadow: 0 0 8px rgba(197, 155, 39, 0.8);
    }

    /* PREMIUM PHOTO GALLERY */
    .photo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .gallery-item {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      height: 240px;
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
      transition: var(--transition-smooth);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
      opacity: 0;
      display: flex;
      align-items: flex-end;
      padding: 24px;
      transition: var(--transition-smooth);
    }

    .gallery-title {
      color: var(--white);
      font-family: var(--font-serif);
      font-size: 18px;
      font-weight: 600;
      transform: translateY(10px);
      transition: var(--transition-smooth);
    }

    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

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

    .gallery-item:hover .gallery-title {
      transform: translateY(0);
    }

    /* SCHEDULING / BATCHES */
    .batches-wrap {
      padding: 95px 4% 105px;
      text-align: center;
      background: var(--cream-light);
    }

    .batches-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin: 44px 0;
    }

    .batch-card {
      background: var(--card-background);
      border: 2px solid rgba(0, 0, 0, 0.05);
      border-radius: 18px;
      padding: 36px 20px;
      text-align: center;
      cursor: pointer;
      position: relative;
      transition: var(--transition-smooth);
      font-family: var(--font-sans);
      appearance: none;
      -webkit-appearance: none;
      width: 100%;
    }

    .batch-card::after {
      content: '✓ Selected';
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%) translateY(5px);
      font-size: 11px;
      font-weight: 700;
      color: var(--gold-dark);
      opacity: 0;
      transition: var(--transition-fast);
    }

    .batch-card:hover {
      border-color: var(--gold-accent);
      transform: translateY(-4px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.04);
    }

    .batch-card.selected {
      border-color: var(--gold-accent);
      background: var(--gold-pale);
      box-shadow: 0 12px 30px rgba(197, 155, 39, 0.12);
      transform: scale(1.02);
      padding-bottom: 44px;
    }

    .batch-card.selected::after {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .batch-label {
      font-family: var(--font-sans);
      font-size: 13px;
      font-weight: 700;
      color: var(--gold-text-on-light);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
      display: block;
    }

    .batch-divider {
      width: 40px;
      height: 2px;
      background: var(--gold-accent);
      margin: 0 auto 16px;
      border-radius: 2px;
    }

    .batch-timing {
      font-family: var(--font-serif);
      font-size: 18px;
      font-weight: 700;
      color: var(--forest-dark);
      line-height: 1.5;
      display: block;
    }

    .pay-row {
      text-align: center;
      margin-top: 36px;
    }

    /* PREMIUM PRICING GRID */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin-top: 10px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .price-card {
      background: var(--card-background);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 24px;
      padding: 48px 36px;
      text-align: center;
      transition: var(--transition-smooth);
      position: relative;
    }

    .price-card:hover {
      border-color: var(--gold-accent);
      transform: translateY(-8px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
    }

    .price-card.featured {
      border: 2px solid var(--gold-accent);
      background: var(--card-background);
      box-shadow: 0 20px 40px rgba(197, 155, 39, 0.08);
    }

    .price-badge {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-accent) 100%);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      padding: 6px 18px;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 4px 15px rgba(165, 126, 27, 0.3);
    }

    .price-plan {
      font-size: 13px;
      font-weight: 700;
      color: var(--forest-light);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 18px;
    }

    .price-amount {
      font-family: var(--font-serif);
      font-size: 48px;
      font-weight: 800;
      color: var(--forest-dark);
      margin-bottom: 8px;
      letter-spacing: -1px;
    }

    .price-amount span {
      font-family: var(--font-sans);
      font-size: 16px;
      font-weight: 500;
      color: var(--forest-light);
      letter-spacing: 0;
    }

    .price-period {
      font-size: 13px;
      color: var(--gold-text-on-light);
      margin-bottom: 32px;
      font-weight: 600;
    }

    .price-card ul {
      list-style: none;
      text-align: left;
      margin-bottom: 36px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      padding-top: 28px;
    }

    .price-card li {
      font-size: 14px;
      color: var(--forest-light);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .check {
      color: var(--gold-dark);
      font-weight: 700;
      font-size: 15px;
    }

    .btn-price {
      width: 100%;
      padding: 14px;
      border-radius: 50px;
      font-size: 14.5px;
      font-weight: 600;
      cursor: pointer;
      border: 2px solid var(--forest-light);
      background: transparent;
      color: var(--forest-dark);
      transition: var(--transition-smooth);
    }

    .btn-price:hover, .price-card.featured .btn-price {
      background: var(--forest-dark);
      color: var(--cream-base);
      border-color: var(--forest-dark);
      transform: translateY(-2px);
    }

    .price-card.featured .btn-price:hover {
      background: var(--gold-dark);
      border-color: var(--gold-dark);
      color: var(--white);
    }

    /* PREMIUM TESTIMONIAL CARDS */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .testi-card {
      background: var(--white);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 20px;
      padding: 40px 32px;
      position: relative;
      transition: var(--transition-smooth);
    }

    .testi-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
      border-color: rgba(197, 155, 39, 0.15);
    }

    .testi-quote-mark {
      position: absolute;
      top: 24px;
      right: 32px;
      font-family: var(--font-serif);
      font-size: 72px;
      line-height: 0.1;
      color: var(--gold-light);
      user-select: none;
    }

    .testi-stars {
      color: var(--gold-accent);
      font-size: 14px;
      margin-bottom: 20px;
      letter-spacing: 3px;
    }

    .testi-text {
      font-size: 15px;
      color: var(--forest-light);
      line-height: 1.8;
      margin-bottom: 28px;
      font-style: italic;
      position: relative;
      z-index: 2;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 16px;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      padding-top: 20px;
    }

    .testi-avatar-placeholder {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-light) 0%, var(--cream-dark) 100%);
      border: 2px solid var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 700;
      color: var(--gold-dark);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .testi-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--forest-dark);
    }

    .testi-loc {
      font-size: 12.5px;
      color: var(--forest-light);
      margin-top: 2px;
    }

    /* ABOUT PAGE STORY GRID */
    .about-hero {
      background: radial-gradient(circle at 10% 20%, var(--gold-light) 0%, var(--cream-base) 50%);
      padding: 90px 4% 85px;
      text-align: center;
    }

    .about-hero h1, .about-hero h2 {
      font-size: 52px;
      font-weight: 800;
      color: var(--forest-dark);
      margin-bottom: 18px;
      letter-spacing: -1px;
    }

    .about-hero p {
      color: var(--forest-light);
      max-width: 620px;
      margin: 0 auto;
      line-height: 1.8;
      font-size: 17px;
    }

    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 70px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 90px 4%;
    }

    .story-img-box {
      position: relative;
    }

    .story-img {
      width: 100%;
      height: 440px;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.05);
      background: var(--cream-light);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
      padding: 8px;
      background-color: var(--white);
    }

    .story-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
      object-position: center center;
    }

    .story-text h2 {
      font-size: 36px;
      font-weight: 800;
      color: var(--forest-dark);
      margin-bottom: 24px;
      letter-spacing: -0.5px;
    }

    .story-text p {
      font-size: 15.5px;
      color: var(--forest-light);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .story-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 32px;
    }

    .cert-pill {
      display: inline-block;
      background: var(--gold-pale);
      border: 1px solid rgba(197, 155, 39, 0.25);
      color: var(--gold-dark);
      font-size: 12.5px;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 50px;
      box-shadow: 0 2px 6px rgba(197, 155, 39, 0.03);
    }

    /* CONTACT / BOOKING GRID */
    .contact-hero {
      background: radial-gradient(circle at 50% 50%, var(--gold-light) 0%, var(--cream-base) 70%);
      padding: 90px 4% 85px;
      text-align: center;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 70px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .contact-info-panel h3 {
      font-size: 26px;
      font-weight: 800;
      color: var(--forest-dark);
      margin-bottom: 32px;
    }

    .ci-block {
      margin-bottom: 24px;
      display: flex;
      align-items: flex-start;
      gap: 18px;
    }

    .ci-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--gold-pale);
      border: 1px solid rgba(197, 155, 39, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-dark);
      font-size: 20px;
      flex-shrink: 0;
      box-shadow: 0 4px 10px rgba(197, 155, 39, 0.05);
    }

    .ci-label {
      font-size: 12px;
      color: var(--gold-text-on-light);
      margin-bottom: 4px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .ci-val {
      font-size: 15px;
      color: var(--forest-dark);
      font-weight: 600;
    }

    .contact-form-panel {
      background: var(--card-background);
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 24px;
      padding: 44px 40px;
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.04);
    }

    .contact-form-panel h3 {
      font-size: 22px;
      font-weight: 800;
      color: var(--forest-dark);
      margin-bottom: 28px;
    }

    .form-group {
      margin-bottom: 22px;
    }

    .form-group label {
      display: block;
      font-size: 11px;
      color: var(--gold-text-on-light);
      margin-bottom: 8px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .form-group input, .form-group textarea, .form-group select {
      width: 100%;
      border: 1.5px solid rgba(253, 202, 14, 0.15);
      border-radius: 12px;
      padding: 14px 18px;
      font-size: 14.5px;
      background: var(--cream-light);
      color: var(--forest-dark);
      outline: none;
      font-family: var(--font-sans);
      transition: var(--transition-smooth);
    }

    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      border-color: var(--gold-accent);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(197, 155, 39, 0.1);
    }

    .form-group textarea {
      height: 110px;
      resize: vertical;
    }

    .submit-btn {
      width: 100%;
      background: var(--yellow-gradient);
      color: var(--text-obsidian);
      border: none;
      padding: 16px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(253, 202, 14, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: var(--transition-smooth);
    }

    .submit-btn:hover {
      background: var(--text-obsidian);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    /* PREMIUM BOOKING MODAL */
    .success-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(8px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .success-modal.active {
      opacity: 1;
      pointer-events: auto;
    }

    .success-content {
      background: var(--white);
      border-radius: 28px;
      padding: 50px 40px;
      max-width: 480px;
      width: 90%;
      text-align: center;
      border: 1px solid rgba(197, 155, 39, 0.2);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
      transform: scale(0.9);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .success-modal.active .success-content {
      transform: scale(1);
    }

    .success-badge {
      width: 80px;
      height: 80px;
      background: var(--gold-pale);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      color: var(--gold-dark);
      border: 2px solid var(--gold-accent);
    }

    .success-content h4 {
      font-family: var(--font-serif);
      font-size: 28px;
      font-weight: 700;
      color: var(--forest-dark);
      margin-bottom: 12px;
    }

    .success-content p {
      font-size: 14.5px;
      color: var(--forest-light);
      line-height: 1.7;
      margin-bottom: 32px;
    }

    /* FOOTER */
    footer {
      background: var(--forest-dark);
      color: var(--cream-dark);
      padding: 70px 4% 50px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-logo {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      cursor: pointer;
      transition: var(--transition-smooth);
    }

    .footer-logo-main {
      height: 48px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      filter: url(#logo-yellow-white-filter) drop-shadow(0 2px 8px rgba(253, 202, 14, 0.22));
      opacity: 0.95;
      display: block;
      transition: var(--transition-smooth);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      transform: translate3d(0, 0, 0);
    }

    .footer-logo:hover .footer-logo-main {
      transform: scale(1.05) translate3d(0, 0, 0);
      filter: url(#logo-yellow-white-filter) drop-shadow(0 3px 12px rgba(253, 202, 14, 0.5));
      opacity: 1;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 36px;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }

    .footer-links span {
      font-size: 14px;
      color: var(--cream-dark);
      cursor: pointer;
      font-weight: 700;
      transition: var(--transition-fast);
    }

    .footer-links span:hover {
      color: var(--gold-accent);
    }

    footer p {
      font-size: 13px;
      line-height: 2;
      color: rgba(252, 250, 246, 0.5);
    }

    footer a {
      color: var(--gold-accent);
      text-decoration: none;
      transition: var(--transition-fast);
    }

    footer a:hover {
      color: var(--white);
    }

    .footer-social-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      margin: 28px 0 20px;
    }

    .footer-social-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: var(--transition-smooth);
      color: rgba(255,255,255,0.65);
    }

    .footer-social-btn:hover {
      background: var(--yellow-gradient);
      border-color: var(--yellow-primary);
      color: var(--text-obsidian);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(253,202,14,0.3);
    }

    .footer-social-btn svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 1024px) {
      .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
      }
      
      .hero p {
        margin-left: auto;
        margin-right: auto;
      }
      
      .hero-btns {
        justify-content: center;
      }
      
      .hero-stats {
        justify-content: center;
      }
      
      .hero-img-box {
        max-width: 500px;
        margin: 0 auto;
      }

      .cards-3 {
        grid-template-columns: 1fr 1fr;
      }

      .pricing-grid {
        grid-template-columns: 1fr 1fr;
      }

      .testimonials-grid {
        grid-template-columns: 1fr 1fr;
      }

      .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
      }
    }

    @media (max-width: 768px) {
      .sec-title {
        font-size: 32px;
      }

      .hero h1 {
        font-size: 42px;
      }

      nav {
        flex-direction: column;
        height: auto;
        padding: 20px 4%;
        gap: 20px;
      }

      .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
      }

      .stats-bar-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .cards-3 {
        grid-template-columns: 1fr;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .batches-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .photo-grid {
        grid-template-columns: 1fr;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .contact-form-panel {
        padding: 30px 24px;
      }
    }

    @media (max-width: 480px) {
      .batches-grid {
        grid-template-columns: 1fr;
      }
      
      .stats-bar-container {
        grid-template-columns: 1fr;
      }
    }

    /* PREMIUM WHITE CONTAINER SHADOWS */
    /* Add a subtle default box-shadow to cards so they float elegantly on white/cream backgrounds */
    .card, .service-card, .price-card, .batch-card {
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.02);
    }

    /* Ultra-Premium Interactive Inverted Selection for Active Batches */
    .batch-card.selected {
      background: var(--text-obsidian) !important;
      border-color: var(--yellow-primary) !important;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
    }
    .batch-card.selected .batch-label {
      color: var(--yellow-primary) !important;
    }
    .batch-card.selected .batch-timing {
      color: #FFFFFF !important;
    }
    .batch-card.selected::after {
      color: var(--yellow-primary) !important;
    }

    /* Premium Elegant Highlighting for Featured Price Cards */
    .price-card.featured {
      background: var(--yellow-light-bg) !important;
      border: 2px solid var(--yellow-primary) !important;
      box-shadow: 0 20px 40px rgba(197, 155, 39, 0.12) !important;
      color: var(--text-muted-dark) !important;
    }
    .price-card.featured .price-plan,
    .price-card.featured .price-amount,
    .price-card.featured h3 {
      color: var(--text-obsidian) !important;
    }
    .price-card.featured .price-period,
    .price-card.featured p,
    .price-card.featured li {
      color: var(--text-muted-dark) !important;
    }
    .price-card.featured .btn-price {
      background: var(--yellow-gradient) !important;
      color: var(--text-obsidian) !important;
      border-color: var(--yellow-primary) !important;
    }
    .price-card.featured .btn-price:hover {
      background: var(--text-obsidian) !important;
      color: var(--white) !important;
      border-color: var(--text-obsidian) !important;
    }

    /* PREMIUM HERO CAROUSEL STYLING */
    .hero-carousel-container {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }

    .hero-carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: 0;
      z-index: 1;
      transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      transform: translate3d(0, 0, 0);
      -webkit-transform: translate3d(0, 0, 0);
    }

    .hero-carousel-slide.active {
      opacity: 1;
      z-index: 2;
    }

    .hero-carousel-slide img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .hero-carousel-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(15, 15, 15, 0.6);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(253, 202, 14, 0.25);
      color: #FFFFFF;
      font-size: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: var(--transition-smooth);
      user-select: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      padding: 0;
      border-style: solid;
    }

    .hero-carousel-control:hover {
      background: var(--yellow-gradient);
      color: var(--charcoal-card);
      border-color: var(--yellow-primary);
      transform: translateY(-50%) scale(1.08);
      box-shadow: 0 0 15px rgba(253, 202, 14, 0.5);
    }

    .hero-carousel-control.prev {
      left: 16px;
    }

    .hero-carousel-control.next {
      right: 16px;
    }

    .hero-carousel-indicators {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }

    .hero-indicator-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      cursor: pointer;
      transition: var(--transition-smooth);
      border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .hero-indicator-dot.active {
      width: 24px;
      border-radius: 6px;
      background: var(--yellow-gradient);
      box-shadow: 0 0 12px rgba(253, 202, 14, 0.7);
    }

    /* ===== PAYMENT PAGE ===== */
    .payment-hero {
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
      padding: 90px 4% 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .payment-hero::before {
      content: '';
      position: absolute;
      top: -120px; left: 50%; transform: translateX(-50%);
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(253,202,14,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .payment-hero h1, .payment-hero h2 {
      font-family: var(--font-serif);
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
    }
    .payment-hero h1 span, .payment-hero h2 span { color: var(--yellow-primary); }
    .payment-hero p {
      color: rgba(255,255,255,0.6);
      font-size: 16px;
      max-width: 480px;
      margin: 0 auto;
    }

    /* Plan Selector */
    .pay-plan-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin: 48px auto 36px;
      max-width: 800px;
    }
    .pay-plan-card {
      background: #fff;
      border: 2px solid #eee;
      border-radius: 24px;
      padding: 32px 28px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      text-align: left;
      display: flex;
      flex-direction: column;
    }
    .pay-plan-card:hover {
      border-color: var(--yellow-primary);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(253,202,14,0.15);
    }
    .pay-plan-card.selected {
      border-color: var(--yellow-primary);
      background: #fffdf0;
      box-shadow: 0 16px 40px rgba(253,202,14,0.2);
    }
    .pay-plan-card.selected::after {
      content: '✓';
      position: absolute;
      top: 16px; right: 20px;
      width: 28px; height: 28px;
      background: var(--yellow-gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 800;
      color: #000;
      line-height: 28px;
      text-align: center;
    }
    .pay-plan-badge {
      display: inline-block;
      background: var(--yellow-gradient);
      color: #000;
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 3px 10px;
      border-radius: 20px;
      margin-bottom: 14px;
    }
    .pay-plan-name {
      font-family: var(--font-serif);
      font-size: 20px;
      font-weight: 700;
      color: #0a0a0a;
      margin-bottom: 6px;
    }
    .pay-plan-price {
      font-size: 32px;
      font-weight: 800;
      color: #0a0a0a;
      margin-bottom: 4px;
    }
    .pay-plan-price span {
      font-size: 14px;
      font-weight: 400;
      color: #888;
    }
    .pay-plan-save {
      font-size: 12px;
      color: #27ae60;
      font-weight: 600;
      margin-bottom: 18px;
    }
    .pay-plan-features {
      list-style: none;
      padding: 0; margin: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .pay-plan-features li {
      font-size: 13px;
      color: #555;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .pay-plan-features li .chk {
      color: var(--yellow-primary);
      font-weight: 800;
      font-size: 14px;
      flex-shrink: 0;
    }

    /* Small Booking Buttons */
    .pay-card-btn {
      display: block;
      width: 100%;
      padding: 12px 24px;
      margin-top: auto;
      background: transparent;
      color: var(--text-obsidian);
      border: 2px solid var(--text-obsidian);
      border-radius: 12px;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: 24px;
    }
    .pay-card-btn:hover {
      background: var(--text-obsidian);
      color: #fff;
      border-color: var(--text-obsidian);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .pay-plan-card.selected .pay-card-btn {
      background: var(--yellow-gradient);
      color: #000;
      border-color: var(--yellow-primary);
      box-shadow: 0 6px 18px rgba(253,202,14,0.3);
    }
    .pay-plan-card.selected .pay-card-btn:hover {
      background: var(--text-obsidian);
      color: var(--yellow-primary);
      border-color: var(--text-obsidian);
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }

    /* Contact Info Bar */
    .pay-contact-bar {
      background: #111;
      border-radius: 20px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin-bottom: 40px;
      overflow: hidden;
    }
    .pay-contact-item {
      padding: 28px 32px;
      display: flex;
      align-items: flex-start;
      gap: 18px;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .pay-contact-item:last-child { border-right: none; }
    .pay-contact-icon {
      width: 44px; height: 44px;
      background: rgba(253,202,14,0.12);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .pay-contact-icon svg { color: var(--yellow-primary); }
    .pay-contact-label {
      font-size: 11px;
      color: rgba(255,255,255,0.4);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 4px;
    }
    .pay-contact-val {
      font-size: 15px;
      font-weight: 600;
      color: #fff;
    }
    .pay-contact-sub {
      font-size: 12px;
      color: rgba(255,255,255,0.4);
      margin-top: 2px;
    }

    /* Pay Now Button */
    .pay-now-btn {
      width: 100%;
      padding: 20px;
      background: var(--yellow-gradient);
      color: #000;
      border: none;
      border-radius: 16px;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 0.3px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      box-shadow: 0 8px 30px rgba(253,202,14,0.35);
    }
    .pay-now-btn:hover {
      background: #e6b800;
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(253,202,14,0.5);
    }
    .pay-secure-note {
      text-align: center;
      font-size: 12px;
      color: #999;
      margin-top: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    /* Social Icons */
    .pay-social-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid #eee;
    }
    .pay-social-btn {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: #111;
      border: 1.5px solid #222;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s ease;
      text-decoration: none;
    }
    .pay-social-btn:hover {
      background: var(--yellow-gradient);
      border-color: var(--yellow-primary);
      transform: translateY(-3px);
    }
    .pay-social-btn svg { color: #fff; transition: color 0.25s; }
    .pay-social-btn:hover svg { color: #000; }

    /* WhatsApp FAB */
    .whatsapp-fab {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 58px; height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 999;
      box-shadow: 0 6px 24px rgba(37,211,102,0.45);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
    }
    .whatsapp-fab:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 32px rgba(37,211,102,0.6);
    }

    @media (max-width: 900px) {
      .pay-plan-grid { grid-template-columns: 1fr; }
      .pay-contact-bar { grid-template-columns: 1fr; }
      .pay-contact-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
      .pay-contact-item:last-child { border-bottom: none; }
    }

    /* ==========================================
       ANTIGRAVITY VISUAL SANCTUARY UPGRADES
       ========================================== */
    
    /* 1. Scroll Progress Bar */
    .scroll-progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 3.5px;
      background: linear-gradient(90deg, var(--yellow-primary) 0%, #FFDF6D 100%);
      width: 0%;
      z-index: 1001;
      transition: width 0.1s ease-out;
      box-shadow: 0 1.5px 12px rgba(253, 202, 14, 0.45);
    }

    /* 2. Glassmorphic Responsive Header */
    header.scrolled {
      height: 64px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border-bottom-color: rgba(253, 202, 14, 0.25);
    }
    
    header.scrolled nav {
      height: 64px;
    }

    header.scrolled .brand-logo-img {
      height: 40px;
    }

    header.scrolled .brand-logo-bottom-img {
      height: 10px;
      margin-top: 2px;
    }

    /* 3. Ambient Organic Glow Spheres */
    .ambient-glow-wrapper {
      position: relative;
      overflow: hidden;
    }
    
    .ambient-glow-sphere {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(253, 202, 14, 0.05) 0%, rgba(253, 202, 14, 0) 70%);
      pointer-events: none;
      z-index: 0;
    }
    
    .ambient-glow-sphere.top-right {
      top: -300px;
      right: -300px;
    }
    
    .ambient-glow-sphere.bottom-left {
      bottom: -300px;
      left: -300px;
    }

    .ambient-glow-sphere.center-right {
      top: 40%;
      right: -300px;
    }

    /* 4. Cinematic Ken Burns Carousel */
    .hero-carousel-slide img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transform: scale(1) translate3d(0, 0, 0);
      -webkit-transform: scale(1) translate3d(0, 0, 0);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }

    .hero-carousel-slide.active img {
      transform: scale(1.03) translate3d(0, 0, 0);
      -webkit-transform: scale(1.03) translate3d(0, 0, 0);
    }

    /* Frosted radial vignette shade for the carousel */
    .hero-img-frame::after {
      content: '';
      position: absolute;
      top: 12px;
      left: 12px;
      right: 12px;
      bottom: 12px;
      border-radius: 20px;
      box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.08);
      pointer-events: none;
      z-index: 5;
    }

    /* 5. Beautiful Card Micro-interactions & Outline Lights */
    .card, .service-card, .price-card, .testi-card, .batch-card {
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                  border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                  box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                  background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .card:hover, .service-card:hover {
      border-color: var(--yellow-primary) !important;
      box-shadow: 0 15px 35px rgba(253, 202, 14, 0.06), 0 5px 15px rgba(0, 0, 0, 0.02) !important;
    }

    .testi-card:hover {
      border-color: var(--yellow-primary) !important;
      box-shadow: 0 15px 35px rgba(253, 202, 14, 0.06) !important;
    }

    /* Accent underlines for section titles */
    .sec-title-container {
      position: relative;
      display: inline-block;
      margin: 0 auto 16px;
      text-align: center;
      width: 100%;
    }
    
    .sec-title-accent {
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--yellow-primary), transparent);
      margin: 12px auto 0;
      border-radius: 2px;
    }

    /* 6. Back to Top Floating Button */
    .back-to-top {
      position: fixed;
      bottom: 100px;
      right: 28px;
      width: 52px;
      height: 52px;
      background: rgba(15, 15, 15, 0.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(253, 202, 14, 0.25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 998;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
      opacity: 0;
      transform: translateY(15px);
      transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, border-color 0.3s;
      pointer-events: none;
    }

    .back-to-top.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .back-to-top:hover {
      background: var(--yellow-gradient);
      border-color: var(--yellow-primary);
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(253, 202, 14, 0.4);
    }

    .back-to-top svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: #FFFFFF;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke 0.3s;
    }

    .back-to-top:hover svg {
      stroke: #060606;
    }

    /* 7. High Performance GPU-Accelerated Scroll Reveal */
    .reveal-hidden {
      opacity: 0;
      transform: translateY(24px) scale(0.99);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }

    .reveal-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* ===== CTA BANNER ===== */
    .cta-banner {
      background: var(--yellow-gradient);
      color: var(--text-obsidian);
      padding: 90px 5%;
      text-align: center;
      width: 100%;
      margin: 0;
      border-radius: 0;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.03);
      filter: blur(50px);
      pointer-events: none;
    }
    .cta-banner h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: var(--text-obsidian);
      margin-bottom: 16px;
      line-height: 1.2;
    }
    .cta-banner p {
      font-size: 1.05rem;
      color: var(--text-soft-black);
      margin-bottom: 40px;
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }
    .cta-banner-btns {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .cta-banner-btn {
      background: transparent;
      color: var(--text-obsidian);
      border: 2px solid rgba(6, 6, 6, 0.55);
      padding: 14px 34px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 700;
      font-family: var(--font-sans);
      cursor: pointer;
      transition: var(--transition-smooth);
      letter-spacing: 0.3px;
    }
    .cta-banner-btn:hover {
      background: rgba(0, 0, 0, 0.08);
      border-color: var(--text-obsidian);
      transform: translateY(-2px);
    }
    .cta-banner-btn.filled {
      background: rgba(0, 0, 0, 0.07);
    }

    /* ===== TERMS & CONDITIONS PAGE ===== */
    .terms-hero {
      background: radial-gradient(circle at 50% 0%, var(--gold-light) 0%, var(--cream-base) 60%);
      padding: 80px 4% 60px;
      text-align: center;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .terms-hero h1, .terms-hero h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--forest-dark);
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }
    .terms-hero p {
      color: var(--forest-light);
      font-size: 15px;
      max-width: 520px;
      margin: 0 auto;
    }
    .terms-body {
      max-width: 860px;
      margin: 0 auto;
      padding: 64px 4% 80px;
    }
    .terms-section {
      margin-bottom: 48px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .terms-section:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }
    .terms-section h2 {
      font-size: 18px;
      font-weight: 800;
      color: var(--forest-dark);
      margin-bottom: 16px;
      padding-left: 16px;
      border-left: 3px solid var(--yellow-primary);
    }
    .terms-section p {
      font-size: 14.5px;
      color: var(--forest-light);
      line-height: 1.85;
      margin-bottom: 14px;
    }
    .terms-section ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 12px;
    }
    .terms-section ul li {
      font-size: 14.5px;
      color: var(--forest-light);
      line-height: 1.75;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .terms-section ul li::before {
      content: '–';
      color: var(--gold-text-on-light);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .terms-warning {
      background: #FFF8E1;
      border: 1.5px solid rgba(253,202,14,0.5);
      border-radius: 12px;
      padding: 20px 24px;
      margin-bottom: 18px;
    }
    .terms-warning .terms-warn-title {
      font-size: 14px;
      font-weight: 800;
      color: var(--gold-text-on-light);
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .terms-disclaimer {
      background: #F0F7FF;
      border: 1.5px solid rgba(59,130,246,0.25);
      border-radius: 12px;
      padding: 20px 24px;
      margin-bottom: 18px;
    }
    .terms-disclaimer .terms-disc-title {
      font-size: 14px;
      font-weight: 800;
      color: #1D4ED8;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ===== GET IN TOUCH STRIP ===== */
    .get-in-touch {
      background: #ffffff;
      padding: 80px 5%;
      text-align: center;
    }
    .get-in-touch h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: var(--text-obsidian);
      margin-bottom: 12px;
    }
    .get-in-touch > p {
      font-size: 1rem;
      color: var(--text-muted-dark);
      margin-bottom: 52px;
    }
    .git-cards {
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .git-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      min-width: 160px;
    }
    .git-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--yellow-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition-smooth);
    }
    .git-icon svg {
      color: var(--text-obsidian);
      stroke: var(--text-obsidian);
    }
    .git-card:hover .git-icon {
      transform: translateY(-4px);
      box-shadow: 0 10px 28px rgba(253, 202, 14, 0.45);
    }
    .git-card h4 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-obsidian);
      margin: 0;
    }
    .git-card span {
      font-size: 0.88rem;
      color: var(--text-muted-dark);
    }
    /* =============================================
       MOBILE-FIRST RESPONSIVE ENHANCEMENTS
       ============================================= */

    /* Hamburger button */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 8px;
      z-index: 200;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2.5px;
      background: var(--forest-dark);
      border-radius: 2px;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* About gallery responsive override */
    .about-photo-grid { grid-template-columns: repeat(3, 1fr); }

    @media (max-width: 1024px) {
      .about-photo-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      /* ── Nav: hamburger mode ── */
      .hamburger { display: flex; }
      header nav {
        flex-direction: row !important;
        height: 70px !important;
        padding: 0 5% !important;
        gap: 0 !important;
        align-items: center;
        justify-content: space-between;
      }
      .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 150;
        overflow-y: auto;
      }
      .nav-links.open { display: flex; }
      .nav-links a {
        font-size: 20px !important;
        padding: 10px 0 !important;
      }
      .btn-nav { font-size: 16px; padding: 14px 32px; }

      /* ── Hero ── */
      .hero { padding: 50px 5% 60px; }
      .hero h1 { font-size: 34px; letter-spacing: -0.5px; }
      .hero p { font-size: 15px; }
      .hero-btns { gap: 12px; }
      .hero-img-frame { height: 320px; }
      .hero-stats { gap: 20px; }

      /* ── Sections ── */
      .section { padding: 60px 5% 68px; }
      .sec-title { font-size: 28px !important; }
      .batches-wrap { padding: 60px 5% 68px; }

      /* ── About gallery ── */
      .about-photo-grid { grid-template-columns: 1fr !important; }

      /* ── Story grid ── */
      .story-grid { padding: 60px 5%; }
      .story-img { height: 300px; }
      .story-text h2 { font-size: 26px; }

      /* ── Terms ── */
      .terms-body { padding: 40px 5% 60px; }
      .terms-hero { padding: 60px 5% 40px; }

      /* ── Contact ── */
      .contact-hero { padding: 60px 5% 40px; }

      /* ── About hero ── */
      .about-hero { padding: 60px 5% 40px; }
      .about-hero h1, .about-hero h2 { font-size: 36px; }

      /* ── Payment ── */
      .payment-hero { padding: 60px 4% 40px; }

      /* ── CTA ── */
      .cta-banner { padding: 60px 5%; }

      /* ── Get in touch ── */
      .get-in-touch { padding: 60px 5%; }
      .git-cards { gap: 28px; }

      /* ── Footer ── */
      footer { padding: 50px 5% 40px; }
      .footer-links { gap: 20px; }
      .footer-social-row { gap: 10px; }

      /* ── WhatsApp FAB ── */
      .whatsapp-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; }
      .back-to-top { bottom: 84px; right: 20px; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 28px; }
      .hero-img-frame { height: 260px; }
      .sec-title { font-size: 24px !important; }
      .hero-btns { flex-direction: column; align-items: stretch; }
      .btn-primary, .btn-secondary { justify-content: center; width: 100%; }
      .about-hero h1, .about-hero h2 { font-size: 28px; }
      .story-text h2 { font-size: 22px; }
      .cta-banner h2 { font-size: 24px; }
      .footer-social-row { flex-wrap: wrap; justify-content: center; }
      .terms-section h2 { font-size: 16px; }
      .git-cards { flex-direction: column; align-items: center; }
    }

    /* Scrolled header height on mobile */
    @media (max-width: 768px) {
      header.scrolled nav { height: 70px !important; }
    }

    /* =============================================
       BOLD · MODERN VISUAL UPGRADE
       ============================================= */

    /* ── Stats bar ── oversized glowing numbers ── */
    .stats-bar {
      background: #060606 !important;
      padding: 72px 4% !important;
      border-top: none !important;
      position: relative;
    }
    .stats-bar::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(253,202,14,0.07) 0%, transparent 65%);
      pointer-events: none;
    }
    .stat-num {
      font-size: 58px !important;
      font-weight: 900 !important;
      color: #FDCA0E !important;
      letter-spacing: -3px !important;
      line-height: 1 !important;
      margin-bottom: 12px !important;
      text-shadow: 0 0 48px rgba(253,202,14,0.35), 0 0 100px rgba(253,202,14,0.10) !important;
    }
    .stat-lbl {
      color: rgba(255,255,255,0.4) !important;
      letter-spacing: 3px !important;
      font-size: 10px !important;
      font-weight: 600 !important;
      text-transform: uppercase !important;
    }

    /* ── Hero badge ── */
    .hero-badge {
      background: rgba(253,202,14,0.07) !important;
      border: 1px solid rgba(253,202,14,0.45) !important;
      color: #FDCA0E !important;
      box-shadow: 0 0 24px rgba(253,202,14,0.08) !important;
      letter-spacing: 2px !important;
      font-size: 10.5px !important;
      font-weight: 700 !important;
      text-transform: uppercase !important;
    }

    /* ── Primary button — shimmer + strong glow ── */
    .btn-primary {
      position: relative;
      overflow: hidden;
      border-radius: 8px !important;
      box-shadow: 0 4px 22px rgba(253,202,14,0.45), 0 1px 4px rgba(0,0,0,0.1) !important;
    }
    .btn-primary::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 55%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
      transform: skewX(-18deg);
      transition: left 0.55s ease;
      pointer-events: none;
    }
    .btn-primary:hover {
      box-shadow: 0 6px 40px rgba(253,202,14,0.70), 0 2px 8px rgba(0,0,0,0.14) !important;
      transform: translateY(-3px) !important;
    }
    .btn-primary:hover::after { left: 160%; }

    /* ── Nav CTA button ── */
    .btn-nav {
      position: relative;
      overflow: hidden;
      border-radius: 8px !important;
    }
    .btn-nav:hover {
      box-shadow: 0 4px 28px rgba(253,202,14,0.60) !important;
    }

    /* ── Eyebrow labels ── */
    .sec-eyebrow {
      color: #FDCA0E !important;
      letter-spacing: 3.5px !important;
      font-size: 10px !important;
      font-weight: 800 !important;
    }

    /* ── Section title accent ── */
    .sec-title-accent {
      background: linear-gradient(90deg, #FDCA0E 0%, rgba(253,202,14,0.15) 100%) !important;
      height: 3px !important;
      width: 52px !important;
      border-radius: 2px !important;
    }

    /* ── Cards — yellow glow on hover ── */
    .card:hover, .service-card:hover {
      border-color: rgba(253,202,14,0.55) !important;
      box-shadow: 0 0 0 1px rgba(253,202,14,0.12),
                  0 28px 72px rgba(253,202,14,0.10),
                  0 8px 24px rgba(0,0,0,0.05) !important;
      transform: translateY(-9px) !important;
    }

    /* ── Icon circles ── */
    .icon-circle {
      background: rgba(253,202,14,0.07) !important;
      border: 1.5px solid rgba(253,202,14,0.18) !important;
    }
    .card:hover .icon-circle {
      background: rgba(253,202,14,0.14) !important;
      border-color: rgba(253,202,14,0.45) !important;
      box-shadow: 0 0 28px rgba(253,202,14,0.20) !important;
    }

    /* ── Gallery ── dark overlay + zoom ── */
    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
        rgba(6,6,6,0.60) 0%,
        rgba(0,0,0,0.06) 50%,
        transparent 100%);
      opacity: 0;
      transition: opacity 0.45s ease;
      pointer-events: none;
      z-index: 1;
    }
    .gallery-item:hover {
      border-color: rgba(253,202,14,0.22) !important;
      box-shadow: 0 20px 56px rgba(0,0,0,0.16) !important;
      transform: none !important;
    }
    .gallery-item:hover img { transform: scale(1.07) !important; }
    .gallery-item:hover::after { opacity: 1; }

    /* ── Batches section (home only) ── white ── */
    #batches-section {
      background: #ffffff !important;
    }

    /* ── Batch cards (home white section) ── */
    #batches-section .batch-card {
      background: #ffffff !important;
      border: 1.5px solid rgba(0,0,0,0.07) !important;
    }
    #batches-section .batch-card .batch-label  { color: #0a0a0a !important; }
    #batches-section .batch-card .batch-timing { color: rgba(0,0,0,0.45) !important; }
    #batches-section .batch-card .batch-divider { background: rgba(0,0,0,0.07) !important; }
    #batches-section .batch-card:hover {
      border-color: rgba(253,202,14,0.60) !important;
      background: rgba(253,202,14,0.03) !important;
      box-shadow: 0 0 0 1px rgba(253,202,14,0.14),
                  0 14px 44px rgba(253,202,14,0.10) !important;
      transform: translateY(-5px) !important;
    }
    #batches-section .batch-card.selected {
      background: rgba(253,202,14,0.06) !important;
      border-color: #FDCA0E !important;
      box-shadow: 0 0 0 1px rgba(253,202,14,0.28),
                  0 18px 52px rgba(253,202,14,0.14) !important;
    }
    #batches-section .batch-card.selected .batch-label  { color: #C88A00 !important; }
    #batches-section .batch-card.selected .batch-timing { color: #0a0a0a !important; }

    /* ── Pricing cards ── */
    .price-card {
      transition: all 0.42s cubic-bezier(0.16,1,0.3,1) !important;
    }
    .price-card:hover {
      transform: translateY(-10px) !important;
      border-color: rgba(253,202,14,0.5) !important;
      box-shadow: 0 0 0 1px rgba(253,202,14,0.14),
                  0 30px 80px rgba(253,202,14,0.12) !important;
    }
    .price-card.featured {
      background: #060606 !important;
      border: 2px solid #FDCA0E !important;
      box-shadow: 0 0 0 1px rgba(253,202,14,0.18),
                  0 36px 80px rgba(253,202,14,0.22) !important;
    }
    .price-card.featured .price-plan,
    .price-card.featured .price-amount,
    .price-card.featured h3,
    .price-card.featured .price-amount span { color: #ffffff !important; }
    .price-card.featured .price-period,
    .price-card.featured p,
    .price-card.featured li            { color: rgba(255,255,255,0.52) !important; }
    .price-card.featured .check        { color: #FDCA0E !important; }
    .price-card.featured .btn-price    {
      background: var(--yellow-gradient) !important;
      color: #0a0a0a !important;
      border-color: transparent !important;
    }

    /* ── Testi cards ── */
    .testi-card:hover {
      border-color: rgba(253,202,14,0.45) !important;
      box-shadow: 0 0 0 1px rgba(253,202,14,0.10),
                  0 22px 60px rgba(253,202,14,0.08) !important;
      transform: translateY(-7px) !important;
    }

    /* ── Payment plan cards ── */
    .pay-plan-card:hover {
      border-color: rgba(253,202,14,0.65) !important;
      box-shadow: 0 0 0 1px rgba(253,202,14,0.18),
                  0 26px 64px rgba(253,202,14,0.16) !important;
      transform: translateY(-7px) !important;
    }
    .pay-plan-card.selected {
      box-shadow: 0 0 0 2px rgba(253,202,14,0.40),
                  0 26px 64px rgba(253,202,14,0.20) !important;
    }

    /* ── CTA banner — bigger type ── */
    .cta-banner h2 {
      font-size: clamp(2.2rem, 5vw, 3.6rem) !important;
      letter-spacing: -1.5px !important;
    }

    /* ── Form focus glow ── */
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: #FDCA0E !important;
      box-shadow: 0 0 0 3.5px rgba(253,202,14,0.18) !important;
    }

    /* ── Submit / pay buttons ── */
    .submit-btn:hover, .pay-now-btn:hover {
      box-shadow: 0 8px 44px rgba(253,202,14,0.60) !important;
      transform: translateY(-3px) !important;
    }

    /* ── Scroll progress bar glow ── */
    .scroll-progress-bar {
      height: 3px !important;
      box-shadow: 0 0 12px rgba(253,202,14,0.75),
                  0 0 28px rgba(253,202,14,0.35) !important;
    }

    /* ── Footer ── deeper black ── */
    footer {
      background: #020202 !important;
      border-top: 1px solid rgba(253,202,14,0.07) !important;
    }

    /* ── WhatsApp FAB ── */
    .whatsapp-fab {
      box-shadow: 0 6px 28px rgba(37,211,102,0.50) !important;
    }
    .whatsapp-fab:hover {
      box-shadow: 0 10px 44px rgba(37,211,102,0.72) !important;
    }

    /* ── Back to top ── */
    .back-to-top:hover {
      box-shadow: 0 8px 32px rgba(253,202,14,0.48) !important;
    }

    /* ── EVENTS PAGE ── */
    .events-hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 56px;
      align-items: stretch;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero h1 .events-accent {
      color: var(--text-obsidian);
      background: var(--yellow-gradient);
      padding: 2px 16px 6px;
      border-radius: 12px;
      display: inline-block;
    }

    .events-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .events-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 1px solid rgba(0,0,0,0.06);
      box-shadow: 0 4px 18px rgba(0,0,0,0.04);
      padding: 10px 16px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-obsidian);
    }

    .events-pill-dot {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--yellow-gradient);
      color: var(--text-obsidian);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .events-video-frame {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 480px;
      border-radius: 28px;
      padding: 12px;
      background: var(--card-background);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .events-video-inner {
      position: absolute;
      top: 12px;
      left: 12px;
      right: 12px;
      bottom: 12px;
      border-radius: 20px;
      overflow: hidden;
      background: var(--cream-light);
    }

    .events-video-inner video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .events-sound-btn {
      position: absolute;
      bottom: 16px;
      right: 16px;
      z-index: 5;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(6,6,6,0.55);
      backdrop-filter: blur(6px);
      border: none;
      cursor: pointer;
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition-smooth);
    }

    .events-sound-btn:hover {
      background: rgba(6,6,6,0.75);
    }

    .events-details-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    @media (max-width: 1024px) {
      .events-hero-grid { grid-template-columns: 1fr; gap: 36px; }
      .events-hero-grid .events-video-frame { order: -1; aspect-ratio: 9 / 16; height: auto; min-height: 0; max-width: 340px; margin: 0 auto; }
      .events-details-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 480px) {
      .events-details-grid { grid-template-columns: 1fr; }
    }

