
  :root {
    --saffron: #FF6B00;
    --deep-saffron: #E05200;
    --gold: #D4A017;
    --bright-gold: #FFD700;
    --cream: #FFF8EE;
    --maroon: #7B1818;
    --deep-maroon: #4A0000;
    --text-dark: #1A0800;
    --text-mid: #5C3317;
    --lotus-pink: #FF8FAB;
  }

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

  html { scroll-behavior: smooth; }

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

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(74,0,0,0.93);
    backdrop-filter: blur(12px);
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
    border-bottom: 2px solid var(--gold);
  }
  .nav-logo {
    font-family: 'Yatra One', cursive;
    font-size: 1.5rem; color: var(--bright-gold);
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 1.4rem; list-style: none; }
  .nav-links a {
    color: var(--cream); text-decoration: none;
    font-size: 0.88rem; font-weight: 500; letter-spacing: .04em;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--bright-gold); }
  .nav-whatsapp {
    background: #25D366; color: #fff !important;
    padding: .35rem .9rem; border-radius: 20px; font-weight: 600 !important;
  }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; }

  /* ── HERO ── */
  #hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #3a1a00;
    padding: 80px 1.5rem 2rem;
  }
  .temple-bg-anim {
    position: absolute; inset: 0; overflow: hidden;
  }
  .temple-bg-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    animation: heroZoom 18s ease-in-out infinite alternate;
    transform-origin: center center;
  }
  .temple-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      180deg,
      rgba(10,5,0,0.15) 0%,
      rgba(10,5,0,0.05) 45%,
      rgba(10,5,0,0.25) 100%
    );
  }
  @keyframes heroZoom {
    from { transform: scale(1);    filter: brightness(0.92); }
    to   { transform: scale(1.08); filter: brightness(1.05);  }
  }
  /* hero mobile → see comprehensive @media block below */
  @media (max-width: 480px) {
    #hero { padding: 80px 1rem 2rem; }
  }
  .diya-particles { position: absolute; inset: 0; pointer-events: none; }
  .diya { position: absolute; width: 6px; height: 6px; border-radius: 50%;
    background: var(--bright-gold); filter: blur(1px);
    animation: twinkle 3s ease-in-out infinite; }

  @keyframes twinkle {
    0%,100% { opacity: .2; transform: scale(.8); }
    50%      { opacity: 1;  transform: scale(1.4); }
  }

  .om-text {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    color: var(--bright-gold);
    text-shadow: 0 0 40px rgba(255,215,0,.9), 0 4px 20px rgba(0,0,0,.8), 0 2px 8px rgba(0,0,0,0.9);
    animation: glowPulse 3s ease-in-out infinite;
    position: relative; z-index: 2;
  }
  @keyframes glowPulse {
    0%,100% { text-shadow: 0 0 30px rgba(255,215,0,.8), 0 4px 20px rgba(0,0,0,.8); }
    50%      { text-shadow: 0 0 60px rgba(255,215,0,1),  0 4px 20px rgba(0,0,0,.8); }
  }
  .hero-subtitle {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: clamp(1.1rem,2.8vw,2rem);
    color: var(--cream); margin-top: .5rem;
    letter-spacing: .06em; position: relative; z-index: 2;
  }
  .hero-tagline {
    color: rgba(255,248,238,.8);
    font-size: clamp(.85rem,1.8vw,1.05rem);
    margin-top: 1rem; position: relative; z-index: 2;
    font-weight: 300; letter-spacing: .08em;
  }
  .hero-welcome {
    font-family: 'Yatra One', cursive;
    font-size: clamp(1.5rem,4vw,3rem);
    color: var(--bright-gold);
    margin-top: 1.4rem; position: relative; z-index: 2;
    animation: slideIn .9s ease both;
  }
  @keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-desc {
    color: var(--cream); max-width: 580px;
    margin: 1rem auto 0; line-height: 1.7;
    font-size: clamp(.85rem,1.5vw,.97rem);
    position: relative; z-index: 2; font-weight: 300;
  }
  .hero-btns { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; justify-content: center; position: relative; z-index: 2; }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: #fff; padding: .8rem 2rem; border-radius: 30px;
    font-weight: 600; text-decoration: none; font-size: .95rem;
    box-shadow: 0 6px 24px rgba(255,107,0,.4);
    transition: transform .2s, box-shadow .2s;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(255,107,0,.55); }
  .btn-outline {
    border: 2px solid var(--bright-gold); color: var(--bright-gold);
    padding: .8rem 2rem; border-radius: 30px;
    font-weight: 600; text-decoration: none; font-size: .95rem;
    transition: background .2s, color .2s;
  }
  .btn-outline:hover { background: var(--bright-gold); color: var(--deep-maroon); }

  /* ── SECTION COMMONS ── */
  .section-title {
    font-family: 'Yatra One', cursive;
    font-size: clamp(1.6rem,4vw,2.6rem);
    color: var(--deep-maroon); text-align: center;
    position: relative; margin-bottom: 2.5rem;
  }
  .section-title::after {
    content: '';
    display: block; width: 70px; height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    margin: .6rem auto 0; border-radius: 2px;
  }
  section { padding: 80px 2rem; }

  /* ── FEATURES STRIP ── */
  #features {
    background: #fff;
    padding: 60px 2rem;
    position: relative;
    overflow: hidden;
  }
  #features::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      60deg,
      rgba(255,107,0,.03) 0px, rgba(255,107,0,.03) 1px,
      transparent 1px, transparent 40px
    );
  }
  .features-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative; z-index: 1;
  }
  /* features responsive → see comprehensive @media block below */
  .feature-card {
    text-align: center;
    padding: 2rem 1.2rem 1.5rem;
    position: relative;
    background: #fff;
    color: var(--text-dark);
    /* Unique shape: tilted card with cut corners using clip-path */
    clip-path: polygon(18px 0%, calc(100% - 18px) 0%, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0% calc(100% - 18px), 0% 18px);
    box-shadow: 0 8px 32px rgba(255,107,0,.12), 0 2px 8px rgba(0,0,0,.06);
    border: none;
    transition: transform .3s, box-shadow .3s;
    cursor: default;
  }
  .feature-card::before {
    content: '';
    position: absolute; inset: 0;
    clip-path: polygon(18px 0%, calc(100% - 18px) 0%, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0% calc(100% - 18px), 0% 18px);
    background: linear-gradient(135deg, rgba(255,107,0,.08) 0%, rgba(212,160,23,.12) 100%);
    opacity: 0;
    transition: opacity .3s;
    z-index: 0;
  }
  .feature-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 18px 48px rgba(255,107,0,.2); }
  .feature-card:hover::before { opacity: 1; }
  .feature-icon {
    font-size: 2.4rem; margin-bottom: .8rem;
    display: block; position: relative; z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(255,107,0,.3));
    transition: transform .3s;
  }
  .feature-card:hover .feature-icon { transform: scale(1.15) rotate(5deg); }
  .feature-card h3 {
    font-size: .92rem; color: var(--deep-maroon);
    font-weight: 700; margin-bottom: .3rem;
    position: relative; z-index: 1;
  }
  .feature-card p { font-size: .76rem; color: var(--text-mid); line-height: 1.5; position: relative; z-index: 1; }
  .feature-learn-btn {
    margin-top: .9rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: .4rem 1.1rem;
    font-size: .75rem;
    font-weight: 600;
    cursor: pointer;
    position: relative; z-index: 2;
    font-family: 'Poppins', sans-serif;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 3px 12px rgba(255,107,0,.3);
    letter-spacing: .02em;
  }
  .feature-learn-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,0,.45); }

  /* Feature Detail Modal */
  #featureModal {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(10,5,0,.75);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
  }
  #featureModal.open { opacity: 1; pointer-events: all; }
  .fmodal-box {
    background: #fff;
    border-radius: 20px;
    max-width: 520px; width: 100%;
    padding: 2.2rem 2rem;
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,.25);
    border-top: 5px solid var(--saffron);
    transform: translateY(30px);
    transition: transform .3s;
    max-height: 90vh; overflow-y: auto;
  }
  #featureModal.open .fmodal-box { transform: translateY(0); }
  .fmodal-close {
    position: absolute; top: 1rem; right: 1.2rem;
    background: none; border: none; font-size: 1.5rem;
    cursor: pointer; color: var(--text-mid); line-height: 1;
  }
  .fmodal-close:hover { color: var(--saffron); }
  .fmodal-icon { font-size: 3rem; text-align: center; display: block; margin-bottom: .5rem; }
  .fmodal-title {
    font-family: 'Yatra One', cursive;
    font-size: 1.4rem; color: var(--deep-maroon);
    text-align: center; margin-bottom: 1rem;
  }
  .fmodal-desc { font-size: .9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.2rem; }
  .fmodal-points { list-style: none; padding: 0; margin-bottom: 1.4rem; }
  .fmodal-points li {
    padding: .55rem .8rem;
    margin-bottom: .5rem;
    background: var(--cream);
    border-left: 3px solid var(--saffron);
    border-radius: 0 8px 8px 0;
    font-size: .85rem;
    color: var(--text-dark);
    display: flex; align-items: flex-start; gap: .5rem;
  }
  .fmodal-points li span { color: var(--saffron); font-size: 1rem; flex-shrink: 0; }
  .fmodal-cta {
    display: block; width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: #fff; text-align: center;
    padding: .75rem 1.5rem; border-radius: 30px;
    font-weight: 600; text-decoration: none;
    font-size: .9rem; box-shadow: 0 6px 20px rgba(255,107,0,.35);
    transition: transform .2s;
  }
  .fmodal-cta:hover { transform: translateY(-2px); }
  /* Accent dot top-left */
  .feature-card::after {
    content: '';
    position: absolute; top: 10px; left: 10px;
    width: 8px; height: 8px; border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    z-index: 1;
  }

  /* ── TEMPLES GRID ── */
  #temples { background: var(--cream); }
  .temples-wrap { max-width: 1200px; margin: 0 auto; }
  .temples-tabs {
    display: flex; gap: .8rem; justify-content: center;
    margin-bottom: 2rem; flex-wrap: wrap;
  }
  .tab-btn {
    padding: .55rem 1.4rem; border-radius: 24px;
    border: 2px solid var(--saffron); background: transparent;
    color: var(--saffron); font-weight: 600; cursor: pointer;
    font-size: .88rem; transition: all .2s;
    font-family: 'Poppins', sans-serif;
  }
  .tab-btn.active, .tab-btn:hover { background: var(--saffron); color: #fff; }

  .temples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
    gap: 1.8rem;
  }
  .temple-card {
    border-radius: 18px; overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(74,0,0,.1);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
  }
  .temple-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(74,0,0,.18); }
  .temple-img-wrap { position: relative; height: 200px; overflow: hidden; background: linear-gradient(135deg,#7B1818,#FF6B00); }
  .temple-emoji { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
  .temple-location-badge {
    position: absolute; top: 12px; right: 12px;
    background: rgba(0,0,0,.6); color: #fff;
    font-size: .7rem; padding: .3rem .7rem; border-radius: 20px;
    font-weight: 600;
  }
  .temple-rating {
    position: absolute; bottom: 12px; left: 12px;
    background: rgba(255,215,0,.95); color: #1A0800;
    font-size: .75rem; padding: .25rem .6rem; border-radius: 12px;
    font-weight: 700;
  }
  .temple-info { padding: 1.2rem 1.4rem 1.4rem; }
  .temple-info h3 { font-size: 1rem; font-weight: 700; color: var(--deep-maroon); margin-bottom: .4rem; }
  .temple-info p { font-size: .8rem; color: var(--text-mid); line-height: 1.5; margin-bottom: 1rem; }
  .temple-info .timings { font-size: .75rem; color: var(--saffron); font-weight: 600; margin-bottom: 1rem; }
  .temple-link-btn {
    display: inline-block;
    background: linear-gradient(135deg,var(--maroon),var(--saffron));
    color: #fff; padding: .55rem 1.2rem; border-radius: 20px;
    text-decoration: none; font-size: .82rem; font-weight: 600;
    transition: opacity .2s; border: none; cursor: pointer;
    font-family: 'Poppins', sans-serif;
  }
  .temple-link-btn:hover { opacity: .85; }

  /* ── PACKAGES ── */
  #packages {
    background: #fff;
    position: relative; overflow: hidden;
  }
  #packages::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 600px 400px at 20% 50%, rgba(255,107,0,.06) 0%, transparent 70%),
      radial-gradient(ellipse 500px 400px at 80% 50%, rgba(212,160,23,.07) 0%, transparent 70%);
  }
  #packages .section-title { color: var(--deep-maroon); }
  #packages .section-title::after { background: linear-gradient(90deg, var(--saffron), var(--gold)); }
  .packages-grid {
    max-width: 1150px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 2rem;
    position: relative; z-index: 1;
  }
  .pkg-card {
    background: #fff;
    border: none;
    /* Unique shield/tombstone shape: flat top-left, rounded top-right, pointed bottom */
    border-radius: 4px 32px 4px 32px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(74,0,0,.1), 0 1px 4px rgba(0,0,0,.06);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
    position: relative;
    border-top: 4px solid transparent;
    background-clip: padding-box;
  }
  .pkg-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
  }
  @keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
  }
  .pkg-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 52px rgba(255,107,0,.18); }
  .pkg-badge {
    position: absolute; top: 18px; right: 18px;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    color: #fff;
    font-size: .68rem; font-weight: 700; padding: .25rem .7rem;
    border-radius: 0 16px 16px 0;
    margin-right: -18px;
    box-shadow: 0 2px 8px rgba(255,107,0,.3);
  }
  .pkg-header { padding: 1.8rem 1.6rem 1rem; }
  .pkg-icon {
    font-size: 2.8rem; margin-bottom: .6rem; display: block;
    filter: drop-shadow(0 2px 8px rgba(255,107,0,.25));
  }
  .pkg-header h3 { font-family: 'Yatra One',cursive; font-size: 1.25rem; color: var(--deep-maroon); margin-bottom: .3rem; }
  .pkg-header .pkg-subtitle { font-size: .78rem; color: var(--text-mid); }
  .pkg-price { font-size: 2rem; font-weight: 700; color: var(--saffron); margin: .6rem 0 .2rem; }
  .pkg-price span { font-size: .82rem; font-weight: 400; color: var(--text-mid); }
  .pkg-body { padding: 0 1.6rem 1.8rem; }
  .pkg-features { list-style: none; margin-bottom: 1.4rem; }
  .pkg-features li {
    font-size: .82rem; color: var(--text-mid); padding: .35rem 0;
    display: flex; gap: .6rem; align-items: flex-start;
    border-bottom: 1px dashed rgba(212,160,23,.2);
  }
  .pkg-features li:last-child { border-bottom: none; }
  .pkg-features li::before { content: '✦'; color: var(--saffron); flex-shrink: 0; }
  .pkg-btn {
    display: block; text-align: center;
    background: linear-gradient(135deg, var(--deep-maroon), var(--saffron));
    color: #fff; padding: .85rem; border-radius: 0 16px 0 16px;
    text-decoration: none; font-weight: 700; font-size: .88rem;
    transition: opacity .2s, transform .2s;
    letter-spacing: .03em;
  }
  .pkg-btn:hover { opacity: .9; transform: scale(1.02); }

  /* ── CONTACT ── */
  #contact { background: var(--cream); }
  .contact-wrap {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    align-items: start;
  }
  .contact-info h3 { font-family: 'Yatra One',cursive; color: var(--maroon); font-size: 1.4rem; margin-bottom: 1.2rem; }
  .contact-item { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1.2rem; }
  .contact-item .ci-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
  .contact-item h4 { font-size: .85rem; font-weight: 700; color: var(--deep-maroon); }
  .contact-item p, .contact-item a { font-size: .88rem; color: var(--text-mid); text-decoration: none; }
  .contact-item a:hover { color: var(--saffron); }
  .whatsapp-btn {
    display: inline-flex; align-items: center; gap: .6rem;
    background: #25D366; color: #fff;
    padding: .75rem 1.6rem; border-radius: 30px;
    text-decoration: none; font-weight: 700; font-size: .95rem;
    margin-top: .5rem;
    box-shadow: 0 4px 18px rgba(37,211,102,.35);
    transition: transform .2s, box-shadow .2s;
  }
  .whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(37,211,102,.45); }

  /* Google Form embed */
  .form-wrap {
    background: #fff; border-radius: 18px; overflow: hidden;
    box-shadow: 0 6px 28px rgba(74,0,0,.1);
    padding: 1.5rem;
  }
  .form-wrap h3 { font-family: 'Yatra One',cursive; color: var(--maroon); font-size: 1.2rem; margin-bottom: 1rem; }
  .form-wrap iframe { width: 100%; height: 480px; border: none; border-radius: 10px; }

  /* ── MAP ── */
  #map-section { background: #fff; padding: 60px 2rem; }
  .map-wrap { max-width: 1100px; margin: 0 auto; }
  .map-embed { border-radius: 16px; overflow: hidden; box-shadow: 0 6px 28px rgba(0,0,0,.1); }
  .map-embed iframe { width: 100%; height: 400px; border: none; display: block; }

  /* ── TEMPLE DETAIL MODAL ── */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
    align-items: center; justify-content: center; padding: 1rem;
  }
  .modal-overlay.open { display: flex; }
  .modal-box {
    background: var(--cream); border-radius: 22px; max-width: 680px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    animation: modalIn .3s ease;
  }
  @keyframes modalIn {
    from { opacity:0; transform:scale(.92); }
    to   { opacity:1; transform:scale(1); }
  }
  .modal-header { padding: 2rem 2rem 0; display: flex; justify-content: space-between; align-items: flex-start; }
  .modal-header h2 { font-family: 'Yatra One',cursive; color: var(--deep-maroon); font-size: 1.5rem; }
  .modal-close { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--text-mid); }
  .modal-emoji-hero { text-align: center; font-size: 5rem; padding: 1rem 0; }
  .modal-body { padding: 0 2rem 2rem; }
  .modal-body .tag { display: inline-block; background: var(--saffron); color: #fff; font-size: .72rem; font-weight: 600; padding: .2rem .7rem; border-radius: 12px; margin-bottom: 1rem; }
  .modal-body p { color: var(--text-mid); line-height: 1.8; font-size: .9rem; margin-bottom: 1rem; }
  .modal-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-bottom: 1.2rem; }
  .highlight-item { background: #fff; border-radius: 10px; padding: .8rem; border-left: 3px solid var(--saffron); }
  .highlight-item strong { display: block; font-size: .75rem; color: var(--maroon); }
  .highlight-item span { font-size: .8rem; color: var(--text-mid); }
  .modal-pkg-cta { margin-top: 1.4rem; }
  .modal-pkg-cta h4 { font-family: 'Yatra One',cursive; color: var(--maroon); margin-bottom: .7rem; }
  .modal-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

  /* ── FOOTER ── */
  footer {
    background: var(--deep-maroon); color: rgba(255,248,238,.7);
    text-align: center; padding: 2rem;
    font-size: .82rem;
  }
  footer strong { color: var(--bright-gold); }

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    background: #25D366; color: #fff;
    width: 58px; height: 58px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,.5);
    animation: bounce 2.5s ease-in-out infinite;
  }
  @keyframes bounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
  }

  /* ══════════════════════════════════════════════
     FULLY RESPONSIVE — MOBILE + TABLET + DESKTOP
     ══════════════════════════════════════════════ */

  /* ── TABLET (≤ 1024px) ── */
  @media (max-width: 1024px) {
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-wrap  { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .nav-logo      { font-size: 1.25rem; }
    .nav-links     { gap: 1rem; }
    .nav-links a   { font-size: .82rem; }
  }

  /* ── LARGE MOBILE / SMALL TABLET (≤ 768px) ── */
  @media (max-width: 768px) {

    /* NAV */
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.mobile-open {
      display: flex; flex-direction: column; position: absolute;
      top: 64px; left: 0; right: 0;
      background: var(--deep-maroon);
      padding: 1.2rem 1.5rem 1.8rem; gap: 1rem;
      border-top: 2px solid var(--gold);
      z-index: 999; box-shadow: 0 8px 24px rgba(0,0,0,.4);
    }
    .nav-links.mobile-open a { font-size: 1rem; padding: .3rem 0; }
    .nav-links.mobile-open .nav-whatsapp {
      display: inline-flex; align-items: center;
      padding: .6rem 1.2rem; font-size: .95rem;
      border-radius: 24px; width: fit-content;
    }

    /* HERO */
    #hero {
      height: 100svh; height: 100vh;
      min-height: 100vh;
      padding: 90px 1.2rem 2.5rem;
      justify-content: center;
    }
    .temple-bg-photo { object-position: 60% center; }
    .temple-bg-overlay {
      background: linear-gradient(180deg,rgba(10,5,0,.25) 0%,rgba(10,5,0,.05) 50%,rgba(10,5,0,.35) 100%);
    }
    .om-text        { font-size: clamp(2rem, 8vw, 3.2rem); }
    .hero-subtitle  { font-size: clamp(1rem, 4vw, 1.4rem); margin-top: .4rem; }
    .hero-tagline   { font-size: clamp(.75rem, 2.5vw, .92rem); letter-spacing: .04em; margin-top: .8rem; }
    .hero-welcome   { font-size: clamp(1.3rem, 5.5vw, 2rem); margin-top: 1rem; }
    .hero-desc      { font-size: clamp(.82rem, 3vw, .92rem); margin-top: .8rem; max-width: 100%; }
    .hero-btns      { gap: .7rem; margin-top: 1.4rem; flex-direction: column; align-items: center; }
    .btn-primary,
    .btn-outline    { padding: .75rem 2rem; font-size: .92rem; width: 220px; text-align: center; }

    /* SECTIONS */
    section         { padding: 60px 1.2rem; }
    #features       { padding: 50px 1.2rem; }
    #map-section    { padding: 50px 1.2rem; }

    /* FEATURES */
    .features-grid  { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }

    /* TEMPLES */
    .temples-tabs   { gap: .6rem; }
    .tab-btn        { padding: .5rem 1rem; font-size: .8rem; }
    .temples-grid   { grid-template-columns: 1fr; }

    /* PACKAGES */
    .packages-grid  { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    /* CONTACT */
    .contact-wrap   { grid-template-columns: 1fr; gap: 2rem; }
    .form-wrap iframe { height: 420px; }

    /* MODALS */
    .modal-box      { border-radius: 16px; margin: 0; }
    .modal-header   { padding: 1.4rem 1.4rem 0; }
    .modal-header h2 { font-size: 1.2rem; }
    .modal-body     { padding: 0 1.4rem 1.4rem; }
    .modal-highlights { grid-template-columns: 1fr; }
    .modal-emoji-hero { font-size: 3.5rem; padding: .6rem 0; }
    .modal-actions  { flex-direction: column; gap: .6rem; }
    .modal-actions .temple-link-btn { text-align: center; }

    /* FEATURE MODAL */
    .fmodal-box     { padding: 1.8rem 1.4rem; }

    /* MAP */
    .map-embed iframe { height: 280px; }

    /* FOOTER */
    footer          { padding: 1.5rem 1rem; font-size: .78rem; }

    /* WA FLOAT — smaller on mobile */
    .wa-float       { width: 50px; height: 50px; font-size: 1.4rem; bottom: 18px; right: 16px; }

    /* SECTION TITLE */
    .section-title  { font-size: clamp(1.3rem, 5vw, 2rem); margin-bottom: 1.8rem; }
  }

  /* ── SMALL MOBILE (≤ 480px) ── */
  @media (max-width: 480px) {
    /* NAV */
    nav             { padding: 0 1rem; }
    .nav-logo       { font-size: 1.1rem; }

    /* HERO */
    #hero           { padding: 80px 1rem 2rem; }
    .om-text        { font-size: clamp(1.8rem, 9vw, 2.6rem); }
    .hero-subtitle  { font-size: clamp(.9rem, 5vw, 1.2rem); }
    .hero-welcome   { font-size: clamp(1.1rem, 6vw, 1.7rem); }
    .hero-desc      { font-size: .82rem; line-height: 1.65; }
    .btn-primary,
    .btn-outline    { width: 90%; max-width: 280px; }

    /* SECTIONS */
    section         { padding: 50px 1rem; }
    #features       { padding: 40px 1rem; }

    /* FEATURES — single column */
    .features-grid  { grid-template-columns: 1fr; gap: 1rem; }
    .feature-card   { padding: 1.5rem 1rem 1.2rem; }

    /* TEMPLES */
    .tab-btn        { padding: .4rem .8rem; font-size: .76rem; }
    .temples-grid   { grid-template-columns: 1fr; }

    /* PACKAGES */
    .packages-grid  { max-width: 100%; }
    .pkg-header     { padding: 1.4rem 1.2rem .8rem; }
    .pkg-body       { padding: 0 1.2rem 1.4rem; }
    .pkg-price      { font-size: 1.6rem; }

    /* CONTACT */
    .contact-info h3 { font-size: 1.1rem; }
    .form-wrap      { padding: 1rem; }
    .form-wrap iframe { height: 380px; }
    .whatsapp-btn   { font-size: .88rem; padding: .65rem 1.2rem; }

    /* MODAL */
    .modal-box      { border-radius: 12px; }
    .modal-header h2 { font-size: 1.05rem; }
    .modal-photo-gallery img { height: 200px; }

    /* MAP */
    .map-embed iframe { height: 240px; }

    /* SECTION TITLE */
    .section-title  { font-size: clamp(1.2rem, 6vw, 1.8rem); }
  }

  /* ── VERY SMALL (≤ 360px) ── */
  @media (max-width: 360px) {
    .om-text        { font-size: 1.7rem; }
    .hero-welcome   { font-size: 1rem; }
    .hero-btns      { gap: .5rem; }
    .btn-primary,
    .btn-outline    { width: 100%; font-size: .85rem; padding: .7rem 1rem; }
    .nav-logo       { font-size: 1rem; }
    .features-grid  { gap: .8rem; }
    .tab-btn        { padding: .35rem .65rem; font-size: .72rem; }
  }

  /* ── DESKTOP HOVER — disable on touch ── */
  @media (hover: none) {
    .pkg-card:hover      { transform: none; box-shadow: 0 6px 30px rgba(74,0,0,.1); }
    .feature-card:hover  { transform: none; }
    .temple-card:hover   { transform: none; }
    .btn-primary:hover   { transform: none; }
  }

  /* ── REAL TEMPLE IMAGES ── */
  .temple-img-wrap { position: relative; height: 200px; overflow: hidden; background: linear-gradient(135deg,#7B1818,#FF6B00); }
  .temple-real-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
  }
  .temple-card:hover .temple-real-img { transform: scale(1.08); }

  /* Modal photo gallery */
  .modal-photo-tabs { display: flex; gap: .5rem; margin-bottom: .8rem; }
  .photo-tab-btn {
    padding: .4rem 1rem; border-radius: 20px; border: 2px solid var(--saffron);
    background: transparent; color: var(--saffron); font-weight: 600;
    cursor: pointer; font-size: .82rem; font-family: 'Poppins', sans-serif;
    transition: all .2s;
  }
  .photo-tab-btn.active { background: var(--saffron); color: #fff; }
  .modal-photo-gallery {
    width: 100%; border-radius: 14px; overflow: hidden;
    margin-bottom: 1.2rem; position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,.18);
  }
  .modal-photo-gallery img {
    width: 100%; height: 280px; object-fit: cover;
    display: block; transition: opacity .35s ease;
  }
  .modal-photo-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(74,0,0,.7));
    padding: .8rem 1rem;
    font-size: .78rem; color: rgba(255,248,238,.9); font-weight: 500;
  }


/* ── ENQUIRY FORM STYLES ── */
#enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e8d5c0;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: #fffdf9;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.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.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FF6B00' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.enq-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
  margin-top: 0.3rem;
}
.enq-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.5);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0957a;
}

/* ── WHATSAPP FLOAT FIX ── */
.wa-float {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 99999 !important;
  background: #25D366 !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(37,211,102,0.6) !important;
  animation: bounce 2.5s ease-in-out infinite !important;
  cursor: pointer !important;
}
.wa-float svg {
  width: 32px !important;
  height: 32px !important;
  fill: #fff !important;
}
