:root {
      --saffron: #FF6B00;
      --deep-saffron: #E05A00;
      --gold: #D4AF37;
      --gold-light: #F5D76E;
      --cream: #FFF8EE;
      --deep-maroon: #3D0C11;
      --maroon: #6B1A24;
      --brown: #8B4513;
      --dark: #1A0A00;
      --text: #2C1810;
      --text-light: #6B4C3B;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'EB Garamond', serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      background: rgba(61,12,17,0.97);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--gold);
      padding: 0 2rem;
      display: flex; align-items: center; justify-content: space-between;
      height: 64px;
    }
    .nav-brand {
      font-family: 'Cinzel Decorative', cursive;
      color: var(--gold);
      font-size: 1.1rem;
      letter-spacing: 1px;
    }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: var(--cream);
      text-decoration: none;
      font-family: 'Cinzel', serif;
      font-size: 0.85rem;
      letter-spacing: 1px;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: linear-gradient(135deg, var(--saffron), var(--gold));
      color: var(--dark) !important;
      padding: 0.45rem 1.2rem;
      border-radius: 4px;
      font-weight: 700 !important;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background-color: #2c0f0f;
      background:
        linear-gradient(to bottom, rgba(61,12,17,0.62) 0%, rgba(26,10,0,0.38) 58%, rgba(255,248,238,1) 100%),
        url('media/site/hero_background.jpg') center center/cover no-repeat;
      display: flex; flex-direction: column;
      align-items: center; justify-content: flex-end;
      text-align: center;
      padding: calc(8rem + 56px) 2rem 7.5rem;
      position: relative;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center 21%;
    }
    .hero-copy {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.45rem;
      margin-bottom: 0.25rem;
      position: relative;
      z-index: 2;
    }

    .hero-tagline {
      font-family: 'Cinzel', serif;
      color: var(--gold-light);
      font-size: 0.9rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 1rem;
      animation: fadeUp 1s ease 0.2s both;
    }
    .hero-title,
    .hero h1 {
      font-family: 'Cinzel Decorative', cursive;
      font-size: clamp(2rem, 5.6vw, 4.8rem);
      color: #f0e4a5;
      line-height: 1.15;
      text-shadow: 0 4px 30px rgba(0,0,0,0.5);
      animation: fadeUp 1s ease 0.4s both;
      white-space: nowrap;
      max-width: 100%;
      display: inline-block;
    }
    .hero h1 span { color: var(--gold); }
    .hero-sub {
      margin: 0;
      font-size: 1.25rem;
      color: rgba(255,248,238,0.85);
      font-style: italic;
      animation: fadeUp 1s ease 0.6s both;
    }
    .hero-buttons {
      margin-top: 2.5rem;
      display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
      animation: fadeUp 1s ease 0.8s both;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--saffron), var(--gold));
      color: var(--dark);
      border: none;
      padding: 0.9rem 2.2rem;
      font-family: 'Cinzel', serif;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 1px;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,0,0.4); }
    .btn-outline {
      background: transparent;
      color: var(--cream);
      border: 2px solid var(--gold);
      padding: 0.9rem 2.2rem;
      font-family: 'Cinzel', serif;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 1px;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
    }
    .btn-outline:hover { background: var(--gold); color: var(--dark); }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── MARQUEE (STATIC STRIP) ── */
    .marquee-strip {
      background: linear-gradient(90deg, var(--deep-maroon), var(--maroon), var(--deep-maroon));
      color: var(--gold-light);
      font-family: 'Cinzel', serif;
      font-size: 1.15rem;
      letter-spacing: 2px;
      padding: 0.85rem 1.5rem;
      overflow: hidden;
      text-align: center;
    }
    .hero-mantra-strip {
      width: min(1240px, calc(100% - 2rem));
      margin-top: 0;
      border: 1px solid rgba(212,175,55,0.28);
      border-radius: 999px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.16);
      position: absolute;
      left: 50%;
      bottom: 2.2rem;
      transform: translateX(-50%);
      z-index: 1;
    }
    .marquee-inner {
      display: block;
    }

    /* ── SECTIONS ── */
    section {
      padding: 5rem 2rem;
      scroll-margin-top: 92px;
    }
    .section-label {
      font-family: 'Cinzel', serif;
      font-size: 0.8rem;
      letter-spacing: 4px;
      color: var(--saffron);
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .section-title {
      font-family: 'Cinzel Decorative', cursive;
      font-size: clamp(1.8rem, 4vw, 3rem);
      color: var(--deep-maroon);
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }
    .section-desc {
      font-size: 1.1rem;
      color: var(--text-light);
      max-width: 600px;
      line-height: 1.8;
    }
    .divider {
      width: 80px; height: 3px;
      background: linear-gradient(90deg, var(--saffron), var(--gold));
      margin: 1rem 0 2rem;
      border-radius: 2px;
    }

    /* ── ABOUT ── */
    .about-section {
      background: var(--cream);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }
    .about-img-wrap {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(61,12,17,0.25);
    }
    .about-img-wrap img {
      width: 100%; height: 650px; object-fit: cover;
      display: block;
    }
    .about-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(61,12,17,0.5) 0%, transparent 60%);
    }
    .stat-cards {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1rem; margin-top: 2rem;
    }
    .stat-card {
      background: linear-gradient(135deg, var(--deep-maroon), var(--maroon));
      color: var(--cream);
      padding: 1.2rem;
      border-radius: 8px;
      text-align: center;
      border: 1px solid rgba(212,175,55,0.3);
    }
    .stat-num {
      font-family: 'Cinzel Decorative', cursive;
      font-size: 1.8rem;
      color: var(--gold);
    }
    .stat-lbl { font-size: 0.85rem; opacity: 0.8; margin-top: 0.2rem; }

    /* ── SERVICES ── */
    .services-section {
      background: linear-gradient(135deg, var(--deep-maroon) 0%, #5C0F1C 100%);
      padding: 5rem 2rem;
    }
    .services-section .section-title { color: var(--gold-light); }
    .services-section .section-label { color: var(--gold); }
    .services-section .section-desc { color: rgba(255,248,238,0.7); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      max-width: 1200px;
      margin: 2.5rem auto 0;
    }
    .service-card {
      background: rgba(255,248,238,0.05);
      border: 1px solid rgba(212,175,55,0.25);
      border-radius: 18px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    }
    .service-card:hover {
      background: rgba(212,175,55,0.1);
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .service-card-media {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(122,15,17,0.75), rgba(212,175,55,0.45));
    }
    .service-card-media::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.35) 100%);
      pointer-events: none;
    }
    .service-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.01);
    }
    .service-card-body {
      display: flex;
      flex: 1;
      flex-direction: column;
      padding: 1.35rem 1.25rem 1.25rem;
      text-align: left;
    }
    .service-name {
      font-family: 'Cinzel', serif;
      font-size: 1.02rem;
      color: var(--gold-light);
      margin-bottom: 0.65rem;
      line-height: 1.45;
    }
    .service-desc {
      font-size: 0.94rem;
      color: rgba(255,248,238,0.68);
      line-height: 1.7;
      margin-bottom: 1rem;
      flex: 1;
    }
    .service-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-bottom: 1rem;
    }
    .service-price,
    .service-location-pill {
      display: inline-flex;
      align-items: center;
      background: rgba(255,107,0,0.2);
      color: var(--gold-light);
      font-family: 'Cinzel', serif;
      font-size: 0.8rem;
      padding: 0.35rem 0.8rem;
      border-radius: 20px;
      border: 1px solid rgba(255,107,0,0.4);
    }
    .service-location-pill {
      background: rgba(255,248,238,0.07);
      border-color: rgba(255,248,238,0.12);
      color: rgba(255,248,238,0.8);
    }
    .service-actions {
      margin-top: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
    }
    .service-action-btn {
      appearance: none;
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 0.8rem 1rem;
      font-family: 'Cinzel', serif;
      font-size: 0.84rem;
      letter-spacing: 0.03em;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }
    .service-action-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 22px rgba(0,0,0,0.22);
    }
    .service-book-btn {
      background: linear-gradient(135deg, var(--saffron), var(--gold));
      color: var(--dark);
    }
    .service-learn-btn {
      background: rgba(255,248,238,0.08);
      color: var(--gold-light);
      border-color: rgba(212,175,55,0.32);
    }
    .service-learn-btn:hover {
      background: rgba(212,175,55,0.16);
    }

    /* ── PANDITS ── */
    .pandits-section { max-width: 1200px; margin: 0 auto; }
    .pandits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .pandit-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(61,12,17,0.1);
      border: 1px solid rgba(212,175,55,0.2);
      transition: all 0.3s;
    }
    .pandit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(61,12,17,0.18); }
    .pandit-banner {
      height: 10px;
      background: linear-gradient(90deg, var(--saffron), var(--gold));
    }
    .pandit-body { padding: 1.5rem 1rem; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .pandit-featured { margin: 2.5rem 0 0.75rem; }
    .featured-pandit {
      background: linear-gradient(135deg, #fff8f0 0%, #fff 50%, #fff8f0 100%);
      border: 2px solid rgba(212,175,55,0.6);
      box-shadow: 0 25px 60px rgba(82,28,0,0.25), 0 0 0 1px rgba(212,175,55,0.1);
      position: relative;
      overflow: hidden;
    }
    .featured-pandit::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 50%);
      pointer-events: none;
    }
    .featured-pandit .pandit-banner {
      height: 20px;
      background: linear-gradient(90deg, #7a0f11 0%, #c88a1c 25%, #ffd700 50%, #c88a1c 75%, #7a0f11 100%);
      background-size: 200% 100%;
      animation: shimmer 3s ease-in-out infinite;
    }
    @keyframes shimmer {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    .featured-pandit-body {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      padding: 2.5rem 3rem;
      text-align: left;
      position: relative;
      z-index: 1;
    }
    .featured-pandit-copy { flex: 1; }
    .pandit-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      margin-bottom: 1rem;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 100%);
      border: 1px solid rgba(212,175,55,0.3);
      color: #8B4513;
      font-family: 'Cinzel', serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      box-shadow: 0 2px 8px rgba(212,175,55,0.15);
    }
    .featured-pandit .pandit-name {
      font-size: 2rem;
      margin-bottom: 0.8rem;
      background: linear-gradient(135deg, #8B4513 0%, #D4AF37 50%, #8B4513 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
      text-shadow: none;
    }
    .featured-pandit .pandit-spec {
      max-width: 540px;
      color: #5D4037;
      font-style: normal;
      line-height: 1.8;
      margin-bottom: 1.2rem;
      font-size: 1rem;
      font-weight: 400;
    }
    .featured-pandit .pandit-tags {
      justify-content: flex-start;
      margin-bottom: 0;
    }
    .featured-pandit .tag {
      background: rgba(122,15,17,0.08);
      color: var(--deep-maroon);
      border-color: rgba(122,15,17,0.14);
    }
    .pandit-avatar {
      width: 100%;
      height: 200px;
      border-radius: 8px;
      border: none;
      margin: 0 auto 1.2rem;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 8px 24px rgba(61,12,17,0.18);
    }
    .featured-pandit-avatar {
      width: 220px;
      height: 220px;
      border-radius: 50%;
      border: 6px solid transparent;
      background: linear-gradient(#fff, #fff) padding-box,
                  linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%) border-box;
      box-shadow: 0 20px 50px rgba(122,15,17,0.3), 
                  0 0 0 4px rgba(212,175,55,0.2),
                  inset 0 0 20px rgba(212,175,55,0.1);
      flex-shrink: 0;
      position: relative;
    }
    .featured-pandit-avatar::after {
      content: '';
      position: absolute;
      top: -8px;
      left: -8px;
      right: -8px;
      bottom: -8px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(212,175,55,0.3) 0%, rgba(255,215,0,0.1) 50%, rgba(212,175,55,0.3) 100%);
      z-index: -1;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.05); opacity: 0.8; }
    }
    .pandit-avatar img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center top;
      display: block;
    }
    .featured-pandit-avatar img { 
      object-position: center top;
      filter: contrast(1.1) saturate(1.15) brightness(1.05);
      transition: filter 0.3s ease;
    }
    .featured-pandit-avatar:hover img {
      filter: contrast(1.15) saturate(1.2) brightness(1.08);
    }
    .pandit-name {
      font-family: 'Cinzel', serif;
      font-size: 1.35rem;
      color: var(--deep-maroon);
      margin-bottom: 0;
    }
    .pandit-spec { font-size: 0.88rem; color: var(--text-light); font-style: italic; margin-bottom: 0.8rem; }
    .pandit-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; margin-bottom: 1rem; }
    .tag {
      font-size: 0.72rem;
      background: rgba(255,107,0,0.1);
      color: var(--saffron);
      border: 1px solid rgba(255,107,0,0.2);
      border-radius: 20px;
      padding: 0.2rem 0.6rem;
      font-family: 'Cinzel', serif;
    }
    .pandit-avail {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-size: 0.8rem;
      color: #2d7a2d;
      font-family: 'Cinzel', serif;
      margin-bottom: 1rem;
    }
    .dot { width: 8px; height: 8px; border-radius: 50%; background: #2d7a2d; display: inline-block; animation: blink 1.5s infinite; }
    @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
    .pandit-unavail { color: #999; }
    .pandit-unavail .dot { background: #999; animation: none; }
    .btn-book {
      width: 100%;
      padding: 0.7rem;
      background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
      color: #fff;
      border: none;
      border-radius: 6px;
      font-family: 'Cinzel', serif;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      letter-spacing: 0.5px;
      transition: all 0.2s;
    }
    .btn-book:hover { background: linear-gradient(135deg, var(--deep-saffron), var(--maroon)); transform: scale(1.02); }
    @media (max-width: 768px) {
      .featured-pandit-body {
        flex-direction: row;
        text-align: left;
      }
      .featured-pandit .pandit-tags { justify-content: center; }
      .featured-pandit .pandit-spec { max-width: none; }
    }
    .btn-book:disabled { background: #ccc; cursor: not-allowed; transform: none; }

    /* ── BOOKING FORM ── */
    .booking-section {
      background: linear-gradient(135deg, #FFF3E0, #FFF8EE);
      padding: 5rem 2rem;
    }
    .booking-wrap {
      max-width: 800px;
      margin: 0 auto;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(61,12,17,0.12);
      overflow: hidden;
      border: 1px solid rgba(212,175,55,0.25);
    }
    .booking-header {
      background: linear-gradient(135deg, var(--deep-maroon), var(--maroon));
      padding: 2rem;
      text-align: center;
    }
    .booking-header h3 {
      font-family: 'Cinzel Decorative', cursive;
      color: var(--gold-light);
      font-size: 1.5rem;
    }
    .booking-header p { color: rgba(255,248,238,0.7); margin-top: 0.4rem; font-size: 0.95rem; }
    .booking-body { padding: 2.5rem; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-group.full { grid-column: 1 / -1; }
    .location-help {
      display: block;
      margin-top: 0.45rem;
      color: var(--text-light);
      font-size: 0.92rem;
      line-height: 1.45;
    }
    #f-loc option:disabled {
      color: #8c7b6d;
    }

    .form-group label {
      font-family: 'Cinzel', serif;
      font-size: 0.78rem;
      letter-spacing: 1px;
      color: var(--maroon);
      text-transform: uppercase;
    }
    .form-group input, .form-group select, .form-group textarea {
      border: 1.5px solid rgba(212,175,55,0.35);
      border-radius: 6px;
      padding: 0.75rem 1rem;
      font-family: 'EB Garamond', serif;
      font-size: 1rem;
      color: var(--text);
      background: var(--cream);
      transition: border-color 0.2s;
      outline: none;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--saffron);
      box-shadow: 0 0 0 3px rgba(255,107,0,0.08);
    }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-submit {
      margin-top: 1.5rem;
      width: 100%;
      padding: 1rem;
      background: linear-gradient(135deg, var(--saffron), var(--gold));
      color: var(--dark);
      border: none;
      border-radius: 8px;
      font-family: 'Cinzel', serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,0,0.3); }

    /* ── TIMING ── */
    .timing-section { max-width: 1200px; margin: 0 auto; }
    .timing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-top: 2.5rem;
    }
    .timing-card {
      background: var(--deep-maroon);
      border-radius: 10px;
      padding: 1.5rem;
      text-align: center;
      border: 1px solid rgba(212,175,55,0.25);
      position: relative; overflow: hidden;
    }
    .timing-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--saffron), var(--gold));
    }
    .timing-icon { font-size: 2rem; margin-bottom: 0.5rem; }
    .timing-name {
      font-family: 'Cinzel', serif;
      color: var(--gold-light);
      font-size: 0.95rem;
      margin-bottom: 0.4rem;
    }
    .timing-time {
      font-family: 'Cinzel Decorative', cursive;
      color: var(--gold);
      font-size: 1.1rem;
    }
    .timing-desc { font-size: 0.8rem; color: rgba(255,248,238,0.5); margin-top: 0.4rem; }

    /* ── TIMING TABLES ── */
    .timing-tables {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 2.5rem;
      text-align: left;
    }
    .timing-table-card {
      background: var(--deep-maroon);
      border-radius: 14px;
      border: 1px solid rgba(212,175,55,0.25);
      overflow: hidden;
      box-shadow: 0 12px 32px rgba(61,12,17,0.18);
    }
    .timing-table-head {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      padding: 0.9rem 1.2rem;
      background: linear-gradient(90deg, rgba(212,175,55,0.16), rgba(255,107,0,0.10));
      border-bottom: 1px solid rgba(212,175,55,0.3);
    }
    .timing-table-icon { font-size: 1.6rem; }
    .timing-table-title {
      font-family: 'Cinzel', serif;
      color: var(--gold-light);
      font-size: 1.02rem;
      letter-spacing: 0.5px;
    }
    .timing-table-sub {
      font-size: 0.75rem;
      color: rgba(255,248,238,0.55);
      font-style: italic;
      margin-top: 0.1rem;
    }
    .timing-table-row {
      display: flex;
      align-items: baseline;
      gap: 1rem;
      padding: 0.55rem 1.2rem;
      border-bottom: 1px solid rgba(212,175,55,0.12);
    }
    .timing-table-row:nth-child(even) { background: rgba(255,248,238,0.03); }
    .timing-table-row:last-child { border-bottom: none; }
    .timing-table-time {
      font-family: 'Cinzel', serif;
      color: var(--gold);
      font-size: 0.88rem;
      white-space: nowrap;
      min-width: 6.8rem;
    }
    .timing-table-event {
      color: rgba(255,248,238,0.9);
      font-size: 0.9rem;
      line-height: 1.45;
    }
    .timing-table-event em { color: rgba(255,248,238,0.5); font-style: italic; font-size: 0.82em; }

    @media (max-width: 860px) {
      .timing-tables { grid-template-columns: 1fr; gap: 1.2rem; }
    }

    /* ── GALLERY ── */
    .gallery-section { background: #f5ede0; padding: 5rem 2rem; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      max-width: 900px;
      margin: 2rem auto 0;
    }
    .gallery-item {
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 1;
      background: linear-gradient(135deg, var(--deep-maroon), var(--maroon));
      display: flex; align-items: center; justify-content: center;
      font-size: 3rem;
      cursor: pointer;
      transition: transform 0.3s;
      border: 2px solid rgba(212,175,55,0.2);
    }
    .gallery-item:hover { transform: scale(1.03); }


    /* ── PREMIUM GALLERY ── */
    .gallery-section {
      padding: 5rem 2rem;
      background:
        radial-gradient(circle at top, rgba(212,175,55,0.18), transparent 35%),
        linear-gradient(180deg, #fffaf1 0%, #fff4e3 100%);
    }
    .gallery-intro {
      max-width: 760px;
      margin: 1rem auto 2.5rem;
      color: var(--text-light);
      text-align: center;
      font-size: 1.02rem;
      line-height: 1.8;
    }
    .gallery-masonry {
      column-count: 3;
      column-gap: 18px;
      margin-top: 2.2rem;
    }
    .gallery-card {
      break-inside: avoid;
      margin-bottom: 18px;
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(61,12,17,0.14);
      border: 1px solid rgba(212,175,55,0.22);
      background: #fff;
      cursor: pointer;
      transform: translateZ(0);
      transition: transform 0.28s ease, box-shadow 0.28s ease;
    }
    .gallery-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 50px rgba(61,12,17,0.2);
    }
    .gallery-card img {
      width: 100%;
      display: block;
      height: auto;
    }
    .gallery-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,10,0,0.66), rgba(26,10,0,0.05) 45%, transparent 70%);
      opacity: 0;
      transition: opacity 0.25s ease;
      pointer-events: none;
    }
    .gallery-card:hover::after {
      opacity: 1;
    }
    .gallery-caption {
      position: absolute;
      left: 1rem;
      right: 1rem;
      bottom: 0.95rem;
      color: #fff8ee;
      z-index: 2;
      font-size: 0.95rem;
      line-height: 1.45;
      text-shadow: 0 2px 14px rgba(0,0,0,0.65);
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.25s ease, transform 0.25s ease;
      font-weight: 500;
    }
    .gallery-card:hover .gallery-caption {
      opacity: 1;
      transform: translateY(0);
    }
    .gallery-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.48rem 0.9rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(212,175,55,0.35);
      color: var(--deep-maroon);
      font-family: 'Cinzel', serif;
      font-size: 0.82rem;
      letter-spacing: 0.6px;
      margin: 1.25rem auto 0;
      backdrop-filter: blur(8px);
    }
    .gallery-lightbox {
      position: fixed;
      inset: 0;
      background: rgba(10, 6, 2, 0.92);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 3000;
      padding: 2rem;
    }
    .gallery-lightbox.active {
      display: flex;
    }
    .gallery-lightbox-content {
      position: relative;
      width: min(1100px, 100%);
      max-height: 92vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    .gallery-lightbox-img-wrap {
      width: 100%;
      max-height: calc(92vh - 90px);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
      overflow: hidden;
      background: rgba(255,255,255,0.04);
      box-shadow: 0 30px 70px rgba(0,0,0,0.35);
    }
    .gallery-lightbox img {
      width: 100%;
      height: auto;
      max-height: calc(92vh - 90px);
      object-fit: contain;
      display: block;
    }
    .gallery-lightbox-caption {
      color: #fff8ee;
      font-size: 1rem;
      text-align: center;
      max-width: 840px;
      line-height: 1.7;
    }
    .gallery-lightbox-close,
    .gallery-lightbox-nav {
      border: none;
      cursor: pointer;
      background: rgba(255,255,255,0.12);
      color: #fff;
      backdrop-filter: blur(10px);
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .gallery-lightbox-close:hover,
    .gallery-lightbox-nav:hover {
      background: rgba(255,255,255,0.2);
      transform: scale(1.04);
    }
    .gallery-lightbox-close {
      position: absolute;
      top: -0.5rem;
      right: 0;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      font-size: 1.5rem;
      line-height: 1;
    }
    .gallery-lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      font-size: 1.6rem;
    }
    .gallery-lightbox-nav.prev { left: -26px; }
    .gallery-lightbox-nav.next { right: -26px; }

    @media (max-width: 980px) {
      .gallery-masonry { column-count: 2; }
      .gallery-lightbox-nav.prev { left: 8px; }
      .gallery-lightbox-nav.next { right: 8px; }
    }
    @media (max-width: 640px) {
      .gallery-section { padding: 4rem 1rem; }
      .gallery-masonry { column-count: 1; }
      .gallery-lightbox { padding: 1rem; }
      .gallery-lightbox-close {
        top: 0.25rem;
        right: 0.25rem;
      }
      .gallery-lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 1.35rem;
      }
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      padding: 3rem 2rem 1.5rem;
      border-top: 2px solid var(--gold);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      max-width: 1100px;
      margin: 0 auto 2rem;
    }
    .footer-brand {
      font-family: 'Cinzel Decorative', cursive;
      color: var(--gold);
      font-size: 1.2rem;
      margin-bottom: 0.8rem;
    }
    .footer-desc { color: rgba(255,248,238,0.5); font-size: 0.95rem; line-height: 1.7; }
    .footer-heading {
      font-family: 'Cinzel', serif;
      color: var(--gold-light);
      font-size: 0.85rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-links a { color: rgba(255,248,238,0.55); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-bottom {
      text-align: center;
      border-top: 1px solid rgba(212,175,55,0.15);
      padding-top: 1.5rem;
      color: rgba(255,248,238,0.3);
      font-size: 0.85rem;
    }

    /* ── MODAL ── */
    .modal-overlay {
      display: none;
      position: fixed; inset: 0; z-index: 1000;
      background: rgba(0,0,0,0.7);
      align-items: center; justify-content: center;
      padding: 1rem;
    }
    .modal-overlay.active { display: flex; }
    .modal {
      background: #fff;
      border-radius: 16px;
      max-width: 480px; width: 100%;
      overflow: hidden;
      box-shadow: 0 25px 80px rgba(0,0,0,0.4);
      animation: modalIn 0.3s ease;
    }
    @keyframes modalIn { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: none; } }
    .modal-head {
      background: linear-gradient(135deg, var(--deep-maroon), var(--maroon));
      padding: 1.5rem 2rem;
      display: flex; justify-content: space-between; align-items: center;
    }
    .modal-head h3 { font-family: 'Cinzel', serif; color: var(--gold-light); font-size: 1.2rem; }
    .modal-close { background: none; border: none; color: rgba(255,248,238,0.6); font-size: 1.5rem; cursor: pointer; }
    .modal-body { padding: 2rem; }
    .modal-body .form-grid { grid-template-columns: 1fr; }
    .modal-submit {
      width: 100%; margin-top: 1rem;
      padding: 0.9rem;
      background: linear-gradient(135deg, var(--saffron), var(--gold));
      border: none; border-radius: 6px;
      font-family: 'Cinzel', serif;
      font-weight: 700; font-size: 0.95rem;
      color: var(--dark); cursor: pointer;
      transition: all 0.2s;
    }
    .modal-submit:hover { box-shadow: 0 6px 20px rgba(255,107,0,0.3); }
    .service-learn-modal {
      max-width: 620px;
      background: linear-gradient(180deg, #fff8f0 0%, #fff2de 100%);
    }
    .service-modal-body {
      padding: 1.5rem 2rem 2rem;
    }
    .service-modal-media {
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      background: linear-gradient(135deg, rgba(122,15,17,0.9), rgba(212,175,55,0.55));
      box-shadow: 0 18px 34px rgba(61,12,17,0.12);
      margin-bottom: 1.35rem;
    }
    .service-modal-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .service-modal-summary {
      color: var(--text-light);
      line-height: 1.8;
      font-size: 1rem;
      margin-bottom: 1.15rem;
    }
    .service-modal-meta {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
      margin-bottom: 1rem;
    }
    .service-modal-meta-item {
      background: rgba(122,15,17,0.05);
      border: 1px solid rgba(212,175,55,0.22);
      border-radius: 14px;
      padding: 1rem;
    }
    .service-modal-meta-item span {
      display: block;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(61,12,17,0.55);
      margin-bottom: 0.35rem;
    }
    .service-modal-meta-item strong {
      color: var(--deep-maroon);
      line-height: 1.5;
      font-size: 1rem;
    }
    .service-modal-note {
      color: rgba(61,12,17,0.78);
      line-height: 1.7;
      margin-bottom: 0.35rem;
    }

    /* ── SUCCESS TOAST ── */
    .toast {
      position: fixed; bottom: 2rem; right: 2rem;
      background: #2d7a2d;
      color: #fff;
      padding: 1rem 1.5rem;
      border-radius: 10px;
      font-family: 'Cinzel', serif;
      font-size: 0.9rem;
      box-shadow: 0 8px 25px rgba(0,0,0,0.25);
      transform: translateY(100px);
      opacity: 0;
      transition: all 0.4s;
      z-index: 2000;
    }
    .toast.show { transform: translateY(0); opacity: 1; }

    /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
      .hero {
        background-size: cover;
        background-position: center 16%;
        padding-top: calc(9rem + 56px);
        padding-bottom: 7rem;
      }
      .hero-copy {
        margin-bottom: 1.75rem;
      }
      .hero-mantra-strip {
        width: calc(100% - 1rem);
        margin-top: 0;
        bottom: 1.35rem;
        border-radius: 18px;
      }
      .marquee-strip {
        font-size: 0.95rem;
        letter-spacing: 1px;
      }
      nav {
        padding: 0 1rem;
      }
      .nav-links { display: none; }
      .about-section { grid-template-columns: 1fr; gap: 2rem; }
      .form-grid { grid-template-columns: 1fr; }
      .booking-body { padding: 1.25rem; }
      .form-group input, .form-group select, .form-group textarea { width: 100%; box-sizing: border-box; }
      .featured-pandit-body { flex-direction: column; text-align: center; padding: 2rem 1.2rem; gap: 1.5rem; }
      .featured-pandit-avatar { width: 160px; height: 160px; }
      .featured-pandit-avatar::after { top: -4px; left: -4px; right: -4px; bottom: -4px; }
      .featured-pandit .pandit-spec { max-width: none; }
      .featured-pandit .pandit-tags { justify-content: center; }
      .map-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
      .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .service-actions { grid-template-columns: 1fr; }
      .service-modal-body { padding: 1.2rem; }
      .service-modal-meta { grid-template-columns: 1fr; }
      section { scroll-margin-top: 92px; }
    }

    @media (max-width: 420px) {
      .hero-copy {
        margin-bottom: 1.5rem;
      }
      .hero-title,
      .hero h1 {
        font-size: clamp(1.55rem, 7.2vw, 2.4rem);
      }
      .hero-sub {
        font-size: 1.05rem;
      }
    }


    .tab-btn {
      background: rgba(255,248,238,0.08);
      border: 1.5px solid rgba(212,175,55,0.35);
      color: var(--gold-light);
      padding: 0.5rem 1.2rem;
      border-radius: 25px;
      font-family: 'Cinzel', serif;
      font-size: 0.78rem;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.25s;
    }
    .tab-btn:hover, .tab-btn.active {
      background: linear-gradient(135deg, var(--saffron), var(--gold));
      color: var(--dark);
      border-color: transparent;
    }
    .service-card.hidden { display: none !important; visibility: hidden !important; }

    .nav-brand-wrap {
      display:flex;
      align-items:center;
      gap:0.9rem;
    }
    .text-center { text-align: center; }
    .max-w { max-width: 1200px; margin: 0 auto; }
@keyframes labelBounce {
  0%,100% { transform: translateX(-50%) translateY(0px); }
  50%     { transform: translateX(-50%) translateY(-5px); }
}
@keyframes popFlicker {
  0%,100%{filter:drop-shadow(0 0 20px rgba(255,107,0,0.7));}
  50%{filter:drop-shadow(0 0 35px rgba(255,200,0,0.9));}
}

/* ── LEARN MORE EXPAND/COLLAPSE ── */
.learn-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.learn-more-btn {
  display: inline-block;
  margin-top: 0.75rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--saffron);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.learn-more-btn:hover { color: var(--deep-saffron); }
.learn-more-btn.on-dark { color: #FFD700; }
.learn-more-btn.on-dark:hover { color: #ffe766; }
