
    /* ═══════════════════════════════════════════════════════════
   🇮🇳 INDEPENDENCE DAY THEME — LIQUID GLASS + CLAYMORPHIC
═══════════════════════════════════════════════════════════ */
    :root {
      --saffron: #FF9933;
      --saffron-lt: #FFB366;
      --saffron-dk: #E07800;
      --india-green: #138808;
      --green-lt: #1aad09;
      --navy: #002366;
      --cream: #FFF8EE;
      --glass-bg: rgba(255, 255, 255, 0.12);
      --glass-border: rgba(255, 255, 255, 0.25);
      --glass-blur: blur(24px) saturate(180%);
      --clay-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -3px 0 rgba(0, 0, 0, 0.12);
      --clay-r: 28px;
      --bg-void: #0a0a1a;
      --bg-deep: #080812;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background-color: #f7f9fc;
      background-image: radial-gradient(circle at 15% 50%, rgba(255, 153, 51, 0.06), transparent 30%),
        radial-gradient(circle at 85% 30%, rgba(19, 136, 8, 0.06), transparent 30%);
      background-attachment: fixed;
      color: #1a1a24;
      overflow-x: hidden;
      min-height: 100vh;
    }

    /* Subtle light overlay for extra depth */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background: radial-gradient(circle at center, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
      pointer-events: none;
      z-index: 0;
    }

    .page-wrap {
      position: relative;
      z-index: 1;
    }

    /* ── Liquid Glass Mixin (via class) ── */
    .glass {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5);
      border-radius: var(--clay-r);
    }

    .glass-saffron {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(255, 153, 51, 0.4);
      box-shadow: 0 8px 32px rgba(255, 153, 51, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
      border-radius: var(--clay-r);
    }

    .glass-green {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(19, 136, 8, 0.4);
      box-shadow: 0 8px 32px rgba(19, 136, 8, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
      border-radius: var(--clay-r);
    }

    /* ── Claymorphic Card ── */
    .clay {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: var(--clay-r);
      box-shadow: var(--clay-shadow);
    }

    /* ── Tricolor accent line ── */
    .tricolor-bar {
      height: 4px;
      background: linear-gradient(90deg, var(--saffron) 33%, #fff 33% 66%, var(--india-green) 66%);
      border-radius: 4px;
    }

    /* ══════════════════════════════
   1. NAVBAR (Light Theme)
══════════════════════════════ */
    .nav-luxury {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 40px;
      background: transparent;
      transition: all 0.3s ease;
    }

    .nav-luxury.scrolled {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      padding: 12px 40px;
    }

    .nav-logo {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      position: relative;
    }

    .nav-logo-text {
      font-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: 26px;
      color: var(--saffron);
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .nav-logo-text span {
      color: var(--india-green);
    }

    .nav-logo-sub {
      font-size: 11px;
      font-weight: 700;
      color: #555;
      letter-spacing: 0.3em;
      text-align: center;
      margin-top: 4px;
    }

    .nav-logo-balloons {
      position: absolute;
      right: -24px;
      top: -14px;
      width: 32px;
      opacity: 0.9;
    }

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

    .nav-link-item {
      color: #333;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      transition: all 0.2s;
      position: relative;
    }

    .nav-link-item:hover,
    .nav-link-item.active {
      color: var(--saffron);
    }

    .nav-link-item.active::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--saffron);
      border-radius: 2px;
    }

    .nav-link-item svg {
      width: 12px;
      height: 12px;
      margin-left: 2px;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .nav-icon-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #eee;
      color: #333;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: all 0.2s;
      text-decoration: none;
    }

    .nav-icon-btn:hover {
      background: #f8f9fa;
      transform: translateY(-2px);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(90deg, #f97316 0%, #ea580c 50%, #15803d 100%);
      color: #000000;
      text-decoration: none;
      padding: 10px 24px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 15px;
      box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
      transition: all 0.3s;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    }

    @media (max-width: 992px) {

      .nav-links,
      .nav-actions {
        display: none;
      }

      .nav-luxury {
        padding: 16px 20px;
      }
    }

    /* WhatsApp FAB */
    .fab-wa {
      position: fixed;
      bottom: 80px;
      right: 20px;
      z-index: 999;
      display: flex;
      align-items: center;
      gap: 8px;
      background: #25D366;
      padding: 12px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3), var(--clay-shadow);
      color: #000000;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      animation: wa-pulse 3s ease-in-out infinite;
    }

    @keyframes wa-pulse {

      0%,
      100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.2)
      }

      50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3), 0 0 0 12px rgba(37, 211, 102, 0)
      }
    }

    /* Mobile Bottom Nav */
    .mobile-nav {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      padding: 8px 0 max(8px, env(safe-area-inset-bottom));
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    }

    @media (max-width: 768px) {
      .mobile-nav {
        display: flex;
        justify-content: space-around;
      }
    }

    .mobile-nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      color: #888;
      text-decoration: none;
      font-size: 10px;
      font-weight: 600;
      padding: 4px 12px;
      background: none;
      border: none;
      font-family: 'Outfit', sans-serif;
    }

    .mobile-nav-item svg {
      width: 22px;
      height: 22px;
    }

    .mobile-nav-item.active {
      color: var(--saffron);
    }

    /* Preloader */
    #preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      transition: opacity 0.6s ease;
    }

    #preloader.fade-out {
      opacity: 0;
      pointer-events: none;
    }

    .preloader-logo {
      font-size: 26px;
      font-weight: 900;
      background: linear-gradient(90deg, var(--saffron), #000, var(--india-green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .preloader-ring {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 3px solid #eee;
      border-top-color: var(--saffron);
      animation: spin 0.9s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* ══════════════════════════════
   1. LIGHT HERO SECTION
══════════════════════════════ */
    .light-hero {
      position: relative;
      min-height: 100vh;
      padding-top: 100px;
      /* Space for navbar */
      display: flex;
      align-items: center;
      overflow: hidden;
      max-width: 1400px;
      margin: 0 auto;
    }

    .lh-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 0 40px;
      z-index: 2;
    }

    .lh-content {
      flex: 1;
      max-width: 600px;
      padding-right: 40px;
    }

    .lh-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 999px;
      padding: 6px 18px 6px 6px;
      font-size: 12px;
      font-weight: 700;
      color: #111;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 24px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .lh-badge img {
      width: 24px;
      height: 16px;
      border-radius: 2px;
    }

    .lh-h1 {
      font-size: clamp(3rem, 5vw, 4.5rem);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: #111;
      margin-bottom: 20px;
    }

    .lh-h1 span.saffron {
      color: var(--saffron-dk);
    }

    .lh-h1 span.green {
      color: var(--india-green);
    }

    .lh-sub {
      font-size: 1.1rem;
      color: #555;
      line-height: 1.6;
      margin-bottom: 40px;
      max-width: 500px;
      font-weight: 500;
    }

    .lh-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    .lh-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(90deg, var(--saffron-dk) 0%, var(--india-green) 100%);
      color: #000000;
      border: none;
      border-radius: 50px;
      padding: 14px 28px;
      font-family: 'Outfit', sans-serif;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .lh-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    }

    .lh-btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: transparent;
      color: #333;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 50px;
      padding: 6px 20px 6px 6px;
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s;
    }

    .lh-btn-secondary .play-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      color: #111;
    }

    .lh-btn-secondary:hover {
      background: rgba(0, 0, 0, 0.03);
    }

    .lh-image {
      flex: 1;
      display: flex;
      justify-content: flex-end;
      position: relative;
    }

    .lh-image img {
      width: 100%;
      max-width: 700px;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
    }

    .lh-confetti {
      position: absolute;
      width: 100%;
      height: 100%;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><circle cx="10%" cy="20%" r="5" fill="%23FF9933" opacity="0.6"/><rect x="80%" y="15%" width="8" height="8" fill="%23138808" opacity="0.6" transform="rotate(45 80 15)"/><circle cx="85%" cy="80%" r="6" fill="%23FF9933" opacity="0.5"/><rect x="15%" y="75%" width="10" height="10" fill="%23138808" opacity="0.4" transform="rotate(20 15 75)"/></svg>');
    }

    /* Floating Services Bottom Bar */
    .lh-services-bar {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 32px;
      background: #ffffff;
      padding: 16px 40px;
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.02);
      z-index: 10;
      width: max-content;
      max-width: 90%;
      overflow-x: auto;
    }

    .lh-service-item {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: #333;
    }

    .lh-service-item:not(:last-child)::after {
      content: '';
      display: block;
      width: 1px;
      height: 24px;
      background: rgba(0, 0, 0, 0.08);
      margin-left: 32px;
    }

    .lh-service-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lh-service-icon img,
    .lh-service-icon svg {
      width: 100%;
      height: 100%;
      object-fit: contain;
      color: var(--saffron);
    }

    .lh-service-text {
      font-size: 13px;
      font-weight: 700;
      line-height: 1.3;
    }

    @media (max-width: 992px) {
      .light-hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 120px;
      }

      .lh-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
      }

      .lh-content {
        padding-right: 0;
        margin-bottom: 40px;
      }

      .lh-actions {
        justify-content: center;
      }

      .lh-image img {
        max-width: 100%;
      }

      .lh-services-bar {
        bottom: -60px;
        padding: 16px 20px;
        gap: 20px;
        justify-content: flex-start;
      }

      .lh-service-item:not(:last-child)::after {
        display: none;
      }
    }

    /* ══════════════════════════════
   2. LIVE OFFERS TICKER
══════════════════════════════ */
    .offers-bar {
      background: linear-gradient(90deg, rgba(255, 153, 51, 0.12), rgba(19, 136, 8, 0.12));
      border-top: 1px solid rgba(255, 153, 51, 0.2);
      border-bottom: 1px solid rgba(19, 136, 8, 0.2);
      padding: 0;
      overflow: hidden;
      position: relative;
    }

    .offers-label {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      z-index: 2;
      background: linear-gradient(135deg, var(--saffron), var(--saffron-dk));
      padding: 0 18px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 800;
      color: #000000;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .offers-label::after {
      content: '';
      position: absolute;
      right: -20px;
      top: 0;
      bottom: 0;
      width: 20px;
      background: linear-gradient(to right, var(--saffron-dk), transparent);
    }

    .offers-track-wrap {
      overflow: hidden;
      padding-left: 120px;
    }

    .offers-track {
      display: flex;
      gap: 0;
      animation: ticker 30s linear infinite;
      width: max-content;
    }

    .offers-track:hover {
      animation-play-state: paused;
    }

    .offer-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.88);
      white-space: nowrap;
      border-right: 1px solid rgba(255, 255, 255, 0.07);
    }

    .offer-chip .offer-tag {
      background: rgba(255, 153, 51, 0.2);
      border: 1px solid rgba(255, 153, 51, 0.4);
      color: var(--saffron);
      border-radius: 999px;
      padding: 2px 8px;
      font-size: 10px;
      font-weight: 800;
    }

    .offer-chip .offer-tag.green {
      background: rgba(19, 136, 8, 0.2);
      border-color: rgba(19, 136, 8, 0.4);
      color: #4ade80;
    }

    @keyframes ticker {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    /* ══════════════════════════════
   3. CITIES WE SERVE
══════════════════════════════ */
    .cities-section {
      padding: 52px 20px;
    }

    .section-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--saffron);
      margin-bottom: 10px;
    }

    .section-headline {
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      margin-bottom: 6px;
      color: #000000;
    }

    .section-headline span {
      color: var(--saffron);
    }

    .section-sub {
      font-size: 14px;
      color: rgba(0, 0, 0, 0.7);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .cities-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      max-width: 900px;
      margin: 0 auto;
    }

    .city-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      padding: 7px 16px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.25s ease;
      cursor: pointer;
    }

    .city-chip:hover {
      background: rgba(255, 153, 51, 0.15);
      border-color: rgba(255, 153, 51, 0.4);
      color: var(--saffron);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 153, 51, 0.2);
    }

    .city-chip .city-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--saffron);
      opacity: 0.6;
      flex-shrink: 0;
    }

    .city-chip.active {
      background: rgba(255, 153, 51, 0.18);
      border-color: rgba(255, 153, 51, 0.5);
      color: var(--saffron);
    }

    /* ══════════════════════════════
   4. TINDER CARD DECK
══════════════════════════════ */
    .deck-section {
      padding: 52px 0 40px;
      overflow: hidden;
    }

    .deck-hint {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.35);
      font-weight: 600;
      margin-bottom: 28px;
      letter-spacing: 0.02em;
    }

    .deck-hint-icon {
      font-size: 18px;
      animation: hint-sway 2s ease-in-out infinite;
    }

    @keyframes hint-sway {

      0%,
      100% {
        transform: rotate(-15deg)
      }

      50% {
        transform: rotate(15deg)
      }
    }

    .deck-arena {
      position: relative;
      height: 460px;
      max-width: 340px;
      margin: 0 auto;
      touch-action: none;
      user-select: none;
    }

    .deck-card {
      position: absolute;
      width: 300px;
      height: 420px;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      border-radius: 24px;
      overflow: hidden;
      cursor: grab;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      will-change: transform;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .deck-card:active {
      cursor: grabbing;
    }

    .deck-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      pointer-events: none;
    }

    .deck-card-glass-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(4, 4, 16, 0.95) 0%, rgba(4, 4, 16, 0.5) 50%, transparent 100%);
      padding: 20px 18px 18px;
    }

    .deck-card-title {
      font-size: 18px;
      font-weight: 800;
      color: #000000;
      margin-bottom: 4px;
      letter-spacing: -0.02em;
    }

    .deck-card-price {
      font-size: 15px;
      font-weight: 700;
      color: var(--saffron);
    }

    .deck-card-tag {
      display: inline-block;
      background: rgba(255, 153, 51, 0.18);
      border: 1px solid rgba(255, 153, 51, 0.35);
      color: var(--saffron);
      font-size: 10px;
      font-weight: 800;
      padding: 2px 8px;
      border-radius: 999px;
      margin-bottom: 8px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* Stack positions — each card slightly rotated/offset */
    .deck-card[data-index="0"] {
      transform: translateX(-50%) rotate(0deg) translateY(0px);
      z-index: 7;
    }

    .deck-card[data-index="1"] {
      transform: translateX(-50%) rotate(-4deg) translateY(8px);
      z-index: 6;
    }

    .deck-card[data-index="2"] {
      transform: translateX(-50%) rotate(5deg) translateY(14px);
      z-index: 5;
    }

    .deck-card[data-index="3"] {
      transform: translateX(-50%) rotate(-3deg) translateY(20px);
      z-index: 4;
    }

    .deck-card[data-index="4"] {
      transform: translateX(-50%) rotate(6deg) translateY(26px);
      z-index: 3;
    }

    .deck-card[data-index="5"] {
      transform: translateX(-50%) rotate(-5deg) translateY(32px);
      z-index: 2;
    }

    .deck-card[data-index="6"] {
      transform: translateX(-50%) rotate(2deg) translateY(38px);
      z-index: 1;
    }

    /* Swipe feedback overlays */
    .deck-overlay-like {
      position: absolute;
      top: 20px;
      left: 16px;
      background: rgba(19, 136, 8, 0.9);
      color: #000000;
      border: 3px solid var(--india-green);
      border-radius: 10px;
      padding: 6px 14px;
      font-size: 18px;
      font-weight: 900;
      letter-spacing: 0.08em;
      transform: rotate(-15deg);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.15s;
    }

    .deck-overlay-nope {
      position: absolute;
      top: 20px;
      right: 16px;
      background: rgba(200, 30, 30, 0.9);
      color: #000000;
      border: 3px solid #ef4444;
      border-radius: 10px;
      padding: 6px 14px;
      font-size: 18px;
      font-weight: 900;
      letter-spacing: 0.08em;
      transform: rotate(15deg);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.15s;
    }

    /* Action buttons */
    .deck-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 16px;
    }

    .deck-btn {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      font-size: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s;
      box-shadow: var(--clay-shadow);
    }

    .deck-btn-skip {
      background: rgba(239, 68, 68, 0.15);
      border: 2px solid rgba(239, 68, 68, 0.3);
    }

    .deck-btn-skip:hover {
      background: rgba(239, 68, 68, 0.3);
      transform: scale(1.1);
    }

    .deck-btn-book {
      background: linear-gradient(135deg, var(--saffron), var(--saffron-dk));
    }

    .deck-btn-book:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 24px rgba(255, 153, 51, 0.4);
    }

    .deck-btn-info {
      background: rgba(255, 255, 255, 0.08);
      border: 2px solid rgba(255, 255, 255, 0.15);
    }

    .deck-btn-info:hover {
      background: rgba(255, 255, 255, 0.18);
      transform: scale(1.1);
    }

    .deck-empty-state {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 420px;
      gap: 16px;
      text-align: center;
    }

    .deck-empty-state.show {
      display: flex;
    }

    .deck-empty-state h3 {
      font-size: 22px;
      font-weight: 800;
      color: #111;
    }

    .deck-empty-state p {
      font-size: 14px;
      color: rgba(0, 0, 0, 0.6);
    }

    /* ══════════════════════════════
   5. LIQUID GLASS SHOW MORE
══════════════════════════════ */
    .show-more-glass {
      margin: 32px auto;
      max-width: 480px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(32px) saturate(200%);
      -webkit-backdrop-filter: blur(32px) saturate(200%);
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
      padding: 28px 32px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .show-more-glass::before {
      content: '';
      position: absolute;
      top: -60px;
      left: -60px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 153, 51, 0.15), transparent);
      pointer-events: none;
    }

    .show-more-glass::after {
      content: '';
      position: absolute;
      bottom: -40px;
      right: -40px;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(19, 136, 8, 0.12), transparent);
      pointer-events: none;
    }

    .show-more-glass h3 {
      font-size: 20px;
      font-weight: 800;
      color: #111;
      margin-bottom: 6px;
    }

    .show-more-glass p {
      font-size: 14px;
      color: rgba(0, 0, 0, 0.6);
      margin-bottom: 20px;
    }

    .show-more-glass .tricolor-bar {
      margin: 0 auto 20px;
      max-width: 60px;
    }

    /* ══════════════════════════════
   6. ACTIVITIES (horizontal)
══════════════════════════════ */
    .activities-section {
      padding: 52px 0 40px;
    }

    .activities-scroll-x {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      padding: 8px 20px 16px;
      scrollbar-width: none;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .activities-scroll-x::-webkit-scrollbar {
      display: none;
    }

    .act-clay-card {
      flex-shrink: 0;
      width: 160px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 20px;
      overflow: hidden;
      scroll-snap-align: start;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
      transition: all 0.3s ease;
    }

    .act-clay-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 153, 51, 0.35);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    }

    .act-clay-card img {
      width: 100%;
      height: 110px;
      object-fit: cover;
      display: block;
    }

    .act-card-body {
      padding: 12px;
    }

    .act-card-title {
      font-size: 13px;
      font-weight: 700;
      color: #111;
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .act-card-price {
      font-size: 13px;
      font-weight: 800;
      color: var(--saffron);
    }

    /* ══════════════════════════════
   7. IMAGE DECK (Polaroid stack)
══════════════════════════════ */
    .image-deck-section {
      padding: 52px 20px;
    }

    .image-deck-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .polaroid {
      background: #fff;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
      transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
      cursor: pointer;
      padding: 10px 10px 0;
    }

    .polaroid:hover {
      transform: translateY(-10px) rotate(0deg) scale(1.03);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .polaroid:nth-child(odd) {
      transform: rotate(-2deg);
    }

    .polaroid:nth-child(even) {
      transform: rotate(1.5deg);
    }

    .polaroid:nth-child(3n) {
      transform: rotate(-1deg);
    }

    .polaroid:hover {
      transform: translateY(-10px) rotate(0deg) scale(1.04) !important;
    }

    .polaroid img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      border-radius: 2px;
    }

    .polaroid-caption {
      padding: 12px 10px;
      font-size: 13px;
      font-family: 'Kalam', cursive, sans-serif;
      font-weight: 600;
      color: #444;
      text-align: center;
    }

    /* ══════════════════════════════
   MODAL
══════════════════════════════ */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .modal-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .modal-box {
      background: #fff;
      border-radius: 28px;
      color: #000 !important;
      --text-primary: #000000 !important;
      --text-secondary: #333333 !important;
      --text-muted: #666666 !important;
      width: 100%;
      max-width: 480px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
      transform: scale(0.94) translateY(20px);
      transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1);
    }

    .modal-overlay.open .modal-box {
      transform: none;
    }

    .modal-box::-webkit-scrollbar {
      display: none;
    }

    .modal-close {
      position: sticky;
      top: 16px;
      float: right;
      margin: 16px 16px 0 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.05);
      border: none;
      color: #333;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      z-index: 1;
    }

    .modal-close:hover {
      background: rgba(0, 0, 0, 0.1);
    }

    .modal-inner {
      padding: 8px 24px 28px;
      clear: both;
    }

    /* Qty control */
    .qty-row {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .qty-btn {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 153, 51, 0.15);
      border: 1px solid rgba(255, 153, 51, 0.3);
      color: var(--saffron);
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .qty-btn:hover {
      background: rgba(255, 153, 51, 0.3);
    }

    .qty-val {
      font-size: 18px;
      font-weight: 800;
      color: #111;
      min-width: 24px;
      text-align: center;
    }

    /* ══════════════════════════════
   8. WHY US
══════════════════════════════ */
    .why-grid-clay {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 14px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .why-clay-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(0, 0, 0, 0.04);
      border-radius: 24px;
      padding: 24px 18px;
      text-align: center;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
      transition: all 0.35s cubic-bezier(.34, 1.56, .64, 1);
    }

    .why-clay-card:hover {
      transform: translateY(-6px) scale(1.02);
      border-color: rgba(255, 153, 51, 0.3);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    }

    .why-icon {
      font-size: 36px;
      margin-bottom: 12px;
      filter: drop-shadow(0 4px 10px rgba(255, 153, 51, 0.2));
    }

    .why-title {
      font-size: 14px;
      font-weight: 800;
      color: #111;
      margin-bottom: 6px;
    }

    .why-desc {
      font-size: 12px;
      color: rgba(0, 0, 0, 0.6);
      line-height: 1.6;
    }

    /* ══════════════════════════════
   9. STATS STRIP
══════════════════════════════ */
    .stats-clay {
      display: flex;
      max-width: 800px;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    }

    .stat-item {
      flex: 1;
      padding: 24px 16px;
      text-align: center;
      border-right: 1px solid rgba(0, 0, 0, 0.06);
      transition: background 0.3s;
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-item:hover {
      background: rgba(255, 153, 51, 0.05);
    }

    .stat-num {
      font-size: 1.9rem;
      font-weight: 900;
      color: var(--saffron-dk);
      line-height: 1;
    }

    .stat-lbl {
      font-size: 11px;
      color: rgba(0, 0, 0, 0.5);
      margin-top: 4px;
      font-weight: 600;
      text-transform: uppercase;
    }

    @media (max-width: 480px) {
      .stats-clay {
        flex-wrap: wrap;
        border-radius: 18px;
      }

      .stat-item {
        min-width: 50%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      }
    }

    /* ══════════════════════════════
   10. GOOGLE REVIEWS
══════════════════════════════ */
    .reviews-marquee {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .reviews-marquee::before,
    .reviews-marquee::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }

    .reviews-marquee::before {
      left: 0;
      background: linear-gradient(to right, var(--bg-void), transparent);
    }

    .reviews-marquee::after {
      right: 0;
      background: linear-gradient(to left, var(--bg-void), transparent);
    }

    .reviews-track {
      display: flex;
      gap: 16px;
      animation: reviewScroll 32s linear infinite;
      padding: 10px 0;
      width: max-content;
    }

    .reviews-track:hover {
      animation-play-state: paused;
    }

    .review-card {
      width: 280px;
      flex-shrink: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 20px;
      padding: 20px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
      transition: all 0.3s;
    }

    .review-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 153, 51, 0.25);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .review-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }

    .review-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      color: #000000;
      font-weight: 800;
      font-size: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .review-name {
      font-weight: 700;
      font-size: 14px;
      color: #111;
    }

    .review-loc {
      font-size: 11px;
      color: rgba(0, 0, 0, 0.5);
      margin-top: 2px;
    }

    .review-stars {
      color: #FBBC04;
      letter-spacing: 2px;
      font-size: 14px;
      margin-bottom: 8px;
    }

    .review-text {
      font-size: 13px;
      color: rgba(0, 0, 0, 0.7);
      line-height: 1.6;
    }

    @keyframes reviewScroll {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(calc(-280px * 5 - 16px * 5))
      }
    }

    /* ══════════════════════════════
   BUDGET FORM
══════════════════════════════ */
    .budget-glass {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(32px) saturate(180%);
      -webkit-backdrop-filter: blur(32px) saturate(180%);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 28px;
      padding: 36px 32px;
      max-width: 580px;
      margin: 0 auto;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .budget-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .input-lbl {
      font-size: 11px;
      font-weight: 700;
      color: rgba(0, 0, 0, 0.5);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 6px;
      display: block;
    }

    .input-clay {
      width: 100%;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 14px;
      padding: 12px 16px;
      color: #111;
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 500;
      outline: none;
      transition: all 0.25s;
      box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.02);
    }

    .input-clay::placeholder {
      color: rgba(0, 0, 0, 0.3);
    }

    .input-clay:focus {
      border-color: var(--saffron);
      box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.15);
    }

    textarea.input-clay {
      height: 80px;
      resize: none;
    }

    @media (max-width: 540px) {
      .budget-grid {
        grid-template-columns: 1fr;
      }

      .budget-glass {
        padding: 24px 16px;
      }
    }

    /* ══════════════════════════════
   FOOTER
══════════════════════════════ */
    .footer-clay {
      background: rgba(255, 255, 255, 0.6);
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      padding: 48px 24px 32px;
      text-align: center;
    }

    .footer-brand {
      font-size: 22px;
      font-weight: 900;
      color: #111;
      margin-bottom: 4px;
    }

    .footer-brand span {
      color: var(--saffron-dk);
    }

    .footer-tagline {
      font-size: 13px;
      color: rgba(0, 0, 0, 0.5);
      margin-bottom: 20px;
      font-weight: 500;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-bottom: 20px;
    }

    .footer-social a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #555;
      transition: all 0.25s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .footer-social a:hover {
      border-color: rgba(255, 153, 51, 0.35);
      color: var(--saffron-dk);
      transform: translateY(-2px);
    }

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

    .footer-link {
      font-size: 13px;
      color: rgba(0, 0, 0, 0.6);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s;
    }

    .footer-link:hover {
      color: var(--saffron-dk);
    }

    .footer-copy {
      font-size: 12px;
      color: rgba(0, 0, 0, 0.4);
    }

    .footer-city-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px 14px;
      margin: 12px 0;
    }

    .footer-city-link {
      font-size: 12px;
      color: rgba(0, 0, 0, 0.5);
      text-decoration: none;
    }

    .footer-city-link:hover {
      color: var(--saffron-dk);
    }

    /* ══ Section padding utility ══ */
    .sec {
      padding: 52px 20px;
    }

    .sec-center {
      text-align: center;
      max-width: 960px;
      margin: 0 auto;
    }

    /* Mobile drawer */
    .drawer-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(4px);
      z-index: 998;
    }

    .drawer-overlay.open {
      display: block;
    }

    .mobile-drawer {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 28px 28px 0 0;
      padding: 16px 20px 40px;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1);
      box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    }

    .mobile-drawer.open {
      transform: none;
    }

    .drawer-handle {
      width: 40px;
      height: 4px;
      background: rgba(0, 0, 0, 0.15);
      border-radius: 4px;
      margin: 0 auto 20px;
    }

    .drawer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .drawer-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 16px;
      color: #444;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.25s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    }

    .drawer-item:hover,
    .drawer-item:active {
      background: rgba(255, 153, 51, 0.05);
      border-color: rgba(255, 153, 51, 0.2);
      color: var(--saffron-dk);
    }

    /* Reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* Ripple */
    .ripple-btn {
      position: relative;
      overflow: hidden;
    }

    .ripple {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      transform: scale(0);
      animation: ripple-anim 0.6s ease-out;
      pointer-events: none;
    }

    @keyframes ripple-anim {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }
  

@media (max-width: 768px) {
  #cartComponent { grid-template-columns: 1fr !important; }
}


.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding-bottom: 16px; }
@media (min-width: 600px) { .city-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; } }
.city-grid::-webkit-scrollbar { display: none; }
@media (min-width: 600px) { .city-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; } }

.city-card { scroll-snap-align: start; position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--clay-shadow); text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease; aspect-ratio: 1; background: var(--glass-bg); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border);width: 100%; height: auto; }
.city-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(255, 153, 51, 0.2); }
.city-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.city-card:hover img { transform: scale(1.1); }
.city-card-title { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: white; font-weight: 700; font-size: 16px; text-align: center; z-index: 2; }

