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

    :root {
      --saffron: #E8761A;
      --deep-maroon: #6B1212;
      --maroon: #8B1A1A;
      --gold: #ffb706;
      --gold-light: #F4C842;
      --cream: #FDF6E8;
      --warm-white: #FFFBF3;
      --charcoal: #1A1209;
      --text-body: #3D2B0E;
      --text-muted: #7A5C38;
      --border: #E8D5B0;
      --shadow: rgba(107,18,18,0.12);
      --nav-h: 72px;
      --radius: 10px;
      --font-display: 'Yatra One', cursive;
      --font-body: 'DM Sans', sans-serif;
      --font-serif: 'Tiro Devanagari Sanskrit', serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--warm-white);
      color: var(--text-body);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 999;
      background: var(--maroon);
      height: var(--nav-h);
      display: flex;
      align-items: center;
      padding: 0 5%;
      box-shadow: 0 2px 16px rgba(0,0,0,.25);
    }
    .nav-logo img { height: 52px; object-fit: contain; }
    .nav-logo { display: flex; align-items: center; text-decoration: none; }
    .nav-main { display: flex; align-items: center; gap: 0; list-style: none; margin-left: auto; }
    .nav-main > li { position: relative; }
    .nav-main > li > a, .nav-main > li > span {
      display: block;
      padding: 0 14px;
      height: var(--nav-h);
      line-height: var(--nav-h);
      color: #fff;
      text-decoration: none;
      font-size: .85rem;
      font-weight: 500;
      white-space: nowrap;
      cursor: pointer;
      transition: background .2s;
      letter-spacing: .02em;
    }
    .nav-main > li:hover > a,
    .nav-main > li:hover > span { background: rgba(255,255,255,.12); }
    .nav-dropdown {
      position: absolute;
      top: var(--nav-h);
      left: 0;
      background: #fff;
      min-width: 220px;
      border-radius: 0 0 var(--radius) var(--radius);
      box-shadow: 0 8px 32px rgba(0,0,0,.18);
      opacity: 0; pointer-events: none;
      transform: translateY(-6px);
      transition: opacity .2s, transform .2s;
      list-style: none;
      z-index: 200;
    }
    .nav-main > li:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
    .nav-dropdown a {
      display: block;
      padding: 10px 18px;
      color: var(--text-body);
      text-decoration: none;
      font-size: .83rem;
      border-bottom: 1px solid var(--border);
      transition: background .15s, color .15s;
    }
    .nav-dropdown li:last-child a { border-bottom: none; }
    .nav-dropdown a:hover { background: var(--cream); color: var(--maroon); }
    .nav-phone { margin-left: 14px; }
    .nav-phone a {
      display: flex; align-items: center; gap: 6px;
      background: var(--gold);
      color: var(--charcoal) !important;
      padding: 8px 16px !important;
      border-radius: 50px;
      height: auto !important;
      line-height: 1 !important;
      font-weight: 700 !important;
      font-size: .83rem !important;
    }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; margin-left: auto; padding: 8px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('https://jyotirlingainmaharashtra.com/img/jyotirlinga-in-maharashtra.jpg');
      background-size: cover;
      background-position: center;
      transform: scale(1.06);
      transition: transform 8s ease-out;
      z-index: 0;
    }
    .hero:hover .hero-bg { transform: scale(1); }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(160deg, rgba(107,18,18,.75) 0%, rgba(20,8,2,.8) 100%);
      z-index: 1;
    }
    .hero-pattern {
      position: absolute; inset: 0; z-index: 1; opacity: .06;
      background-image: radial-gradient(circle, #F4C842 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .hero-content { position: relative; z-index: 2; padding: 40px 20px; max-width: 840px; }
    .hero-badge {
      display: inline-block;
      background: var(--gold);
      color: var(--charcoal);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 6px 20px;
      border-radius: 50px;
      margin-bottom: 20px;
      animation: fadeUp .8s ease both;
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 7vw, 3.8rem);
      color: #fff;
      line-height: 1.15;
      margin-bottom: 15px;
      animation: fadeUp .9s .1s ease both;
      text-shadow: 0 4px 20px rgba(0,0,0,.4);
    }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: rgba(255,255,255,.88);
      margin-bottom: 16px;
      font-family: var(--font-serif);
      font-style: italic;
      animation: fadeUp 1s .2s ease both;
    }
    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--saffron);
      color: #fff;
      padding: 16px 36px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 8px 28px rgba(232,118,26,.5);
      transition: transform .2s, box-shadow .2s;
      animation: fadeUp 1.1s .3s ease both;
	  margin-top:10px;
    }
    .hero-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(232,118,26,.55); }
    .hero-scroll {
      position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
      color: rgba(255,255,255,.6); font-size: .75rem; letter-spacing: .1em;
    }
    .scroll-dot { width: 6px; height: 6px; background: rgba(255,255,255,.6); border-radius: 50%; animation: bounce 1.5s infinite; }
	.quick-facts{background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 14px 18px;
  margin:0 auto;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  max-width: 480px;
  text-align: left;}

    @keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
    @keyframes bounce { 0%,100% { transform:translateY(0); } 50% { transform:translateY(6px); } }

    /* ── SECTION COMMONS ── */
    section { padding: 80px 5%; }
    .section-label {
      display: inline-block;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--saffron);
      margin-bottom: 10px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 4vw, 3rem);
      color: var(--maroon);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-desc {
      max-width: 680px;
      color: var(--text-muted);
      font-size: 1rem;
      margin-bottom: 50px;
    }
    .divider {
      width: 56px; height: 4px;
      background: linear-gradient(90deg, var(--saffron), var(--gold));
      border-radius: 2px;
      margin: 14px 0 24px;
    }
    .center { text-align: center; }
    .center .section-desc { margin-left: auto; margin-right: auto; }
    .center .divider { margin-left: auto; margin-right: auto; }
	
	.author-bio{background:rgba(139,26,26,0.04);border-left:3px solid #8B1A1A;padding:16px 20px;border-radius:0 8px 8px 0;margin:24px 0;display:flex;gap:16px;align-items:flex-start;}

    /* ── PACKAGES GRID ── */
    #packages { background: var(--cream); }
    .packages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 28px;
    }
    .pkg-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 20px var(--shadow);
      transition: transform .25s, box-shadow .25s;
      display: flex;
      flex-direction: column;
    }
    .pkg-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px var(--shadow); }
    .pkg-card figure { position: relative; aspect-ratio: 16/10; overflow: hidden; }
    .pkg-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; loading: lazy; }
    .pkg-card:hover figure img { transform: scale(1.06); }
    .pkg-badge {
      position: absolute; top: 14px; left: 14px;
      background: var(--maroon);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 50px;
      letter-spacing: .06em;
    }
    .pkg-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
    .pkg-body h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--maroon); margin-bottom: 8px; line-height: 1.3; }
    .pkg-route { font-size: .82rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.5; flex: 1; }
    .pkg-route span { color: var(--saffron); font-weight: 600; }
    .pkg-actions { display: flex; gap: 10px; flex-wrap: wrap; }
    .btn-enquiry, .btn-view {
      display: inline-block; padding: 9px 18px; border-radius: 50px;
      font-size: .8rem; font-weight: 700; text-decoration: none;
      transition: .2s;
    }
    .btn-enquiry { background: var(--saffron); color: #fff; }
    .btn-enquiry:hover { background: var(--maroon); }
    .btn-view { border: 1.5px solid var(--maroon); color: var(--maroon); }
    .btn-view:hover { background: var(--maroon); color: #fff; }
	
	/* ===== REVIEWS SECTION ===== */
.reviews-section {
  padding: 60px 20px;
  background: var(--bg-light, #fdf8f5);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(139, 26, 26, 0.12);
  border-top: 4px solid #8B1A1A;
  position: relative;
}

.review-stars {
  font-size: 18px;
  color: #c8a000;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}

.review-body {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  padding-left: 18px;
}

.review-body::before {
  content: '\201C';
  font-size: 48px;
  color: rgba(139, 26, 26, 0.15);
  position: absolute;
  left: -6px;
  top: -12px;
  line-height: 1;
  font-style: normal;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(139, 26, 26, 0.1);
  padding-top: 14px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #8B1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-size: 13px;
  font-weight: 600;
  color: #8B1A1A;
  display: block;
  margin-bottom: 2px;
}

.review-meta {
  font-size: 12px;
  color: #888;
  display: block;
}

.review-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(139, 26, 26, 0.07);
  color: #8B1A1A;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reviews-summary {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: #888;
}

.reviews-summary strong {
  color: #8B1A1A;
}

    /* ── STATS ── */
    #stats {
      background: linear-gradient(135deg, var(--maroon) 0%, var(--deep-maroon) 100%);
      position: relative; overflow: hidden;
    }
    #stats::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(244,200,66,.08) 1px, transparent 1px);
      background-size: 30px 30px;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      position: relative; z-index: 1;
    }
    .stat-item { text-align: center; }
    .stat-icon { font-size: 2.4rem; margin-bottom: 8px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.3)); }
    .stat-num {
      font-family: var(--font-display);
      font-size: 3.2rem;
      color: var(--gold-light);
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-label { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
      position: relative; z-index: 1;
    }
    .service-card {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 14px;
      padding: 28px 24px;
      text-align: center;
      backdrop-filter: blur(4px);
    }
    .service-card .icon { font-size: 2rem; margin-bottom: 14px; }
    .service-card h4 { color: var(--gold-light); font-weight: 700; margin-bottom: 6px; font-size: 1rem; }
    .service-card p { color: rgba(255,255,255,.7); font-size: .87rem; line-height: 1.6; }
    #stats .section-title { color: #fff; }
    #stats .divider { margin-left: auto; margin-right: auto; }

    /* ── ABOUT ── */
    #about { background: var(--warm-white); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .about-content h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--maroon); margin-bottom: 14px; }
    .about-content p { color: var(--text-muted); margin-bottom: 16px; font-size: .96rem; line-height: 1.8; }
    .about-content h3 { font-family: var(--font-display); color: var(--maroon); font-size: 1.2rem; margin: 26px 0 8px; }
    .about-aside { position: sticky; top: calc(var(--nav-h) + 24px); }
    .about-aside .contact-card {
      background: linear-gradient(135deg, var(--maroon), var(--deep-maroon));
      border-radius: 16px;
      padding: 34px 30px;
      color: #fff;
      margin-bottom: 24px;
    }
    .contact-card h4 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 16px;color:#fff; }
    .contact-card p { font-size: .9rem; opacity: .85; margin-bottom: 22px; line-height: 1.6; color:#fff; }
    .contact-card a.cta-btn {
      display: block; text-align: center;
      background: var(--gold);
      color: var(--charcoal);
      padding: 14px;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      font-size: .95rem;
      margin-bottom: 12px;
      transition: .2s;
    }
    .contact-card a.cta-btn:hover { background: var(--gold-light); }
    .contact-info-list { list-style: none; margin-top: 18px; }
    .contact-info-list li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.85); font-size: .85rem; margin-bottom: 10px; }
    .contact-info-list li span { font-size: 1.1rem; flex-shrink: 0; }
	
	.google-review{display:inline-flex;align-items:center;gap:12px;background:#fff;border:1.5px solid #dadce0;border-radius:8px;padding:12px 20px;text-decoration:none;font-family:sans-serif;font-size:15px;font-weight:500;color:#3c4043;}
	.google-review:hover {
  border-color: #4285F4;
  box-shadow: 0 1px 6px rgba(66,133,244,0.2);
}
	.sidebar-card-head h3{ margin:12px 0 8px; color:#FFFFFF;}

    /* ── JYOTIRLINGA INFO ── */
    #jyotirlinga-info { background: var(--cream); }
    .info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
    .info-card {
      background: #fff;
      border-radius: 14px;
      padding: 28px 26px;
      border-left: 4px solid var(--saffron);
      box-shadow: 0 3px 16px var(--shadow);
      transition: transform .2s;
    }
    .info-card:hover { transform: translateY(-4px); }
    .info-card .num {
      font-family: var(--font-display);
      font-size: 3rem;
      color: var(--border);
      line-height: 1;
      margin-bottom: 4px;
    }
    .info-card h3 { color: var(--maroon); font-size: 1.15rem; margin-bottom: 10px; }
    .info-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }
    .info-card ul { padding-left: 18px; color: var(--text-muted); font-size: .88rem; line-height: 1.8; }
    .info-card h4 { font-size: .9rem; color: var(--text-body); margin: 10px 0 4px; font-weight: 600; }

    /* ── FAQ ── */
    #faq { background: var(--warm-white); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .faq-item {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
	  margin-bottom: 10px;
    }
    .faq-q {
      padding: 16px 20px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      font-size: .9rem;
      color: var(--text-body);
      background: #fff;
      transition: background .2s;
      user-select: none;
    }
    .faq-q:hover { background: var(--cream); }
    .faq-q.open { background: var(--maroon); color: #fff; }
    .faq-q .arrow { font-size: 1rem; flex-shrink: 0; transition: transform .3s; }
    .faq-q.open .arrow { transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s;
      background: var(--cream);
      font-size: .88rem;
      color: var(--text-muted);
      line-height: 1.7;
      padding: 0 20px;
    }
    .faq-a.open { max-height: 300px; padding: 14px 20px; }

    /* ── TRAVEL GUIDE LINKS ── */
    #guide { background: var(--cream); }
    .link-group { margin-bottom: 36px; }
    .link-group h3 { font-family: var(--font-display); color: var(--maroon); font-size: 1.2rem; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--border); }
    .link-list { display: flex; flex-wrap: wrap; gap: 8px; }
    .link-list a {
      display: inline-block;
      background: #fff;
      border: 1px solid var(--border);
      color: var(--maroon);
      padding: 7px 14px;
      border-radius: 50px;
      font-size: .82rem;
      text-decoration: none;
      transition: .2s;
    }
    .link-list a:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }

    /* ── FOOTER ── */
    footer {
      background: var(--charcoal);
      color: rgba(255,255,255,.75);
      padding: 60px 5% 28px;
    }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand img { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); }
    .footer-brand p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 14px; }
    .footer-address { font-size: .82rem; line-height: 1.7; }
    footer h4 { color: var(--gold-light); font-size: .95rem; margin-bottom: 14px; font-weight: 700; }
    footer ul { list-style: none; }
    footer ul li { margin-bottom: 8px; }
    footer ul li a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .83rem; transition: color .2s; }
    footer ul li a:hover { color: var(--gold-light); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 20px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: gap;
      font-size: .8rem; color: rgba(255,255,255,.4);
    }

    /* ── FLOATING BTNS ── */
    .floating-bar {
      position: fixed; bottom: 0; left: 0; right: 0;
      display: none;
      background: #fff;
      border-top: 1px solid var(--border);
      padding: 0px;
      gap: 1px;
      z-index: 998;
      box-shadow: 0 -4px 20px rgba(0,0,0,.1);
    }
    .floating-bar a {
      flex: 1; text-align: center; padding: 11px; 
      font-size: .85rem; font-weight: 700; text-decoration: none; padding:10px 0px 10px 0px;
    }
    .fb-query { background: var(--maroon); color: #fff; }
    .fb-call { background: var(--saffron); color: #fff; }
    .fb-wa { background: #25D366; color: #fff; }

    /* ── MODAL ── */
    .modal-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,.65); z-index: 1000;
      align-items: center; justify-content: center;
      backdrop-filter: blur(4px);
    }
    .modal-overlay.active { display: flex; }
    .modal-box {
      background: #fff; border-radius: 16px;
      width: 100%; max-width: 480px; margin: 20px;
      padding: 20px 14px; position: relative;
      box-shadow: 0 20px 60px rgba(0,0,0,.3);
      animation: fadeUp .3s ease;
    }
    .modal-close {
      position: absolute; top: 16px; right: 16px;
      font-size: 1.4rem; cursor: pointer; color: var(--text-muted);
      background: none; border: none;
      transition: color .2s;
    }
    .modal-close:hover { color: var(--maroon); }
    .modal-box h3 { font-family: var(--font-display); color: var(--maroon); font-size: 1.5rem; margin-bottom: 6px; }
    .modal-box p { color: var(--text-muted); font-size: .88rem; margin-bottom: 22px; }
    .form-row { margin-bottom: 16px; }
    .form-row label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; color: var(--text-body); }
    .form-row input, .form-row select, .form-row textarea {
      width: 100%; padding: 11px 14px;
      border: 1.5px solid var(--border); border-radius: 8px;
      font-size: .9rem; font-family: var(--font-body); outline: none;
      transition: border .2s;
    }
    .form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--saffron); }
    .form-row textarea { resize: vertical; min-height: 80px; }
    .form-submit {
      width: 100%; background: var(--saffron); color: #fff;
      border: none; padding: 14px; border-radius: 50px;
      font-size: 1rem; font-weight: 700; cursor: pointer;
      transition: background .2s;
    }
    .form-submit:hover { background: var(--maroon); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .about-grid { grid-template-columns: 1fr; }
      .about-aside { position: static; }
      .faq-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-main { display: none; }
      .nav-main.open { display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--maroon); padding: 10px 0; gap: 0; }
      .nav-main.open > li > a, .nav-main.open > li > span { height: auto; line-height: 1.6; padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
      .nav-dropdown { position: static; opacity: 1; transform: none; box-shadow: none; border-radius: 0; pointer-events: all; display: none; }
      .nav-main.open li.dd-open .nav-dropdown { display: block; background: rgba(0,0,0,.2); }
      .nav-dropdown a { color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.1); padding-left: 32px; }
      .hamburger { display: flex; }
      .floating-bar { display: flex; }
      body { padding-bottom: 66px; }
      .footer-grid { grid-template-columns: 1fr; }
      .info-cards { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      section { padding: 60px 4%; }
      .packages-grid { grid-template-columns: 1fr; }
      .nav-phone { display: none; }
    }

    /* ── WHATSAPP BUBBLE ── */
    .wa-bubble {
      position: fixed; bottom: 80px; right: 18px;
      background: #ffb706; color: #000; padding:10px 0px 10px 0px; height:41px; width:140px; border-radius: 20px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem; text-decoration: none;
      box-shadow: 0 6px 20px rgba(37,211,102,.4);
      z-index: 997;
      transition: transform .2s;
    }
    .wa-bubble:hover { transform: scale(1.1); }
    @media (max-width: 768px) { .wa-bubble { bottom: 78px; display:none; } }
	
	
	
	   /* ── BREADCRUMB ── */
    .breadcrumb { background: var(--cream); padding: 12px 5%; font-size: .82rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
    .breadcrumb a { color: var(--maroon); text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb span { margin: 0 6px; }

    /* ── PAGE HERO ── */
    .page-hero {
      position: relative;
      height: 60vh;
      min-height: 410px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(107,18,18,.92) 0%, rgba(20,8,2,.4) 60%, transparent 100%); z-index: 1; }
    .page-hero-content { position: relative; z-index: 2; padding: 40px 5%; width: 100%; }
	.page-hero-content p{ text-align:center; color:#FFFFFF;}
    .page-hero-badge { display: inline-block; background: var(--gold); color: var(--charcoal); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 16px; border-radius: 50px; margin-bottom: 12px; }
    .page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.1rem); color: #fff; line-height: 1.2; margin-bottom: 32px; text-shadow: 0 2px 12px rgba(0,0,0,.4); text-align:center; }
    .page-hero-meta { display: flex; gap: 20px; flex-wrap: wrap; }
    .meta-pill { background: rgba(255,255,255,.15); color: #fff; padding: 6px 16px; border-radius: 50px; font-size: .84rem; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.2); }

    /* ── LAYOUT ── */
    .content-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 60px 5%; }
    .main-content { min-width: 0; }
    .sidebar { position: sticky; top: calc(var(--nav-h) + 20px); align-self: start; }

    /*-section { padding: 0; margin-bottom: 48px; }--*/
	section.iti-pad{padding: 0; margin-bottom: 48px;}
    .section-label { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--saffron); margin-bottom: 8px; }
    .section-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--maroon); margin-bottom: 14px; }
    .divider { width: 48px; height: 4px; background: linear-gradient(90deg, var(--saffron), var(--gold)); border-radius: 2px; margin-bottom: 20px; }
    p { color: var(--text-muted); font-size: .97rem; line-height: 1.8; margin-bottom: 14px; }
    h3 { font-family: var(--font-display); color: var(--maroon); font-size: 1.2rem; margin: 22px 0 8px; }
    h4 { color: var(--text-body); font-size: .95rem; margin: 14px 0 4px; font-weight: 700; }

    /* ── TOUR HIGHLIGHTS ── */
    .highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin: 24px 0; }
    .highlight { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 16px; text-align: center; box-shadow: 0 2px 10px var(--shadow); }
    .highlight .icon { font-size: 1.8rem; margin-bottom: 8px; }
    .highlight strong { display: block; color: var(--maroon); font-size: .95rem; margin-bottom: 2px; }
    .highlight span { color: var(--text-muted); font-size: .82rem; }

    /* ── INCLUSIONS / EXCLUSIONS ── */
    .inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
    .inc-box, .exc-box { border-radius: var(--radius); padding: 22px 20px; }
    .inc-box { background: #f0fdf4; border: 1px solid #86efac; }
    .exc-box { background: #fff7f7; border: 1px solid #fca5a5; }
    .inc-box h4 { color: #16a34a; margin-bottom: 10px; }
    .exc-box h4 { color: #dc2626; margin-bottom: 10px; }
    .inc-box ul, .exc-box ul { list-style: none; padding: 0; }
    .inc-box ul li, .exc-box ul li { font-size: .87rem; padding: 4px 0; color: var(--text-muted); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
    .inc-box ul li::before { content: '✓'; color: #16a34a; font-weight: 700; flex-shrink: 0; }
    .exc-box ul li::before { content: '✗'; color: #dc2626; font-weight: 700; flex-shrink: 0; }

    /* ── ITINERARY ── */
    .itinerary { position: relative; }
    .itinerary::before { content: ''; position: absolute; left: 19px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(to bottom, var(--saffron), var(--gold)); }
    .day-card { position: relative; padding-left: 52px; margin-bottom: 32px; }
    .day-dot { position: absolute; left: 8px; top: 2px; width: 24px; height: 24px; background: var(--saffron); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; color: #fff; border: 3px solid var(--warm-white); z-index: 1; }
    .day-card h3 { font-family: var(--font-display); color: var(--maroon); font-size: 1.1rem; margin: 0 0 6px; padding-top: 2px; }
    .day-card p { margin-bottom: 10px; }
    .day-card .highlight-note { background: var(--cream); border-left: 3px solid var(--saffron); padding: 10px 14px; border-radius: 0 8px 8px 0; font-size: .87rem; color: var(--text-body); margin-top: 8px; }

    /* ── TEMPLES INFO ── */
    .temple-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 18px var(--shadow); margin-bottom: 24px; border-left: 5px solid var(--saffron); display: flex; flex-direction: column; }
    .temple-card-body { padding: 22px 24px; }
    .temple-card .t-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--border); line-height: 1; }
    .temple-card h3 { color: var(--maroon); font-size: 1.3rem; margin: 4px 0 10px; }
    .temple-card .t-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
    .t-tag { background: var(--cream); color: var(--maroon); font-size: .76rem; font-weight: 600; padding: 4px 12px; border-radius: 50px; border: 1px solid var(--border); }

    /* ── FAQ ── */
    .faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 10px; }
    .faq-q { padding: 14px 18px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: .9rem; color: var(--text-body); background: #fff; transition: background .2s; user-select: none; }
    .faq-q:hover { background: var(--cream); }
    .faq-q.open { background: var(--maroon); color: #fff; }
    .faq-q .arrow { font-size: 1rem; flex-shrink: 0; transition: transform .3s; }
    .faq-q.open .arrow { transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; background: var(--cream); font-size: .88rem; color: var(--text-muted); line-height: 1.7; padding: 0 18px; }
    .faq-a.open { max-height: 250px; padding: 12px 18px; }

    /* ── SIDEBAR ── */
    .sidebar-card { background: #fff; border-radius: 14px; box-shadow: 0 4px 20px var(--shadow); overflow: hidden; margin-bottom: 20px; }
    .sidebar-card-head { background: linear-gradient(135deg, var(--maroon), var(--deep-maroon)); color: #fff; padding: 3px 9px; }
    .sidebar-card-head h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 1px; color: #fff; }
    .sidebar-card-head p { font-size: .82rem; opacity: .8; margin: 0; }
    .sidebar-card-body { padding: 20px 22px; }
    .price-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .87rem; }
    .price-row:last-of-type { border-bottom: none; }
    .price-row .label { color: var(--text-muted); }
    .price-row .val { font-weight: 700; color: var(--text-body); }
    .price-big { text-align: center; padding: 14px 0; }
    .price-big .amount { font-family: var(--font-display); font-size: 2.4rem; color: var(--maroon); }
    .price-big .per { font-size: .82rem; color: var(--text-muted); }
    .cta-btn { display: block; width: 100%; text-align: center; background: var(--saffron); color: #fff; padding: 13px; border-radius: 50px; font-weight: 700; text-decoration: none; font-size: .95rem; margin: 6px 0; transition: background .2s; border: none; cursor: pointer; font-family: var(--font-body); }
    .cta-btn:hover { background: var(--maroon); }
    .cta-btn.outline { background: none; border: 2px solid var(--maroon); color: var(--maroon); }
    .cta-btn.outline:hover { background: var(--maroon); color: #fff; }
    .cta-btn.wa { background: #25D366; }
    .cta-btn.wa:hover { background: #16a34a; }
    .quick-links { list-style: none; }
    .quick-links li a { display: flex; align-items: center; gap: 8px; padding: 9px 0; border-bottom: 1px solid var(--border); color: var(--text-body); text-decoration: none; font-size: .85rem; transition: color .2s; }
    .quick-links li:last-child a { border-bottom: none; }
    .quick-links li a:hover { color: var(--maroon); }
	
/*--------contact us css---------------------------------------*/
/* PAGE HERO */
    .page-hero-part { position:relative; padding:80px 40px 70px; text-align:center; overflow:hidden; }
    .page-hero-part::before { content:''; position:absolute; inset:0; background:#1a1209 70%; }
    .page-hero-part::after { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C9993A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
    .page-hero-inner-p { position:relative; z-index:1; }
    .page-hero-badge-p { display:inline-block; font-family:'Inter',sans-serif; font-size:11px; font-weight:500; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); border:1px solid var(--border); padding:5px 16px; margin-bottom:10px; }
    .page-hero-part h1 { font-size:clamp(28px,5vw,52px); font-weight:700; color:#fff; margin-bottom:9px; }
    .page-hero-part p { color:#fff; font-size:18px; max-width:540px; margin:0 auto; }
    .contact-wrapper { max-width:1200px; margin:0 auto; padding:60px 40px 80px; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }

    /* CONTACT INFO */
    .contact-info h2 { font-size:28px; color:var(--text); margin-bottom:10px; }
    .section-label { display:inline-block; font-size:11px; font-weight:500; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
    .divider { width:50px; height:2px; background:linear-gradient(90deg,var(--gold),transparent); margin:16px 0 28px; }
    .contact-info > p { color:#000; font-size:17px; margin-bottom:32px; }

    .contact-cards { display:flex; flex-direction:column; gap:16px; }
    .contact-card {
      display:flex; align-items:flex-start; gap:18px;
      background:var(--surface); border:1px solid var(--border);
      padding:22px; transition:border-color .3s;
    }
    .contact-card:hover { border-color:rgba(201,153,58,.4); }
    .contact-card-icon {
      width:48px; height:48px; min-width:48px;
      background:var(--crimson);
      display:flex; align-items:center; justify-content:center;
      font-size:20px;
    }
    .contact-card-content h4 { font-size:14px; color:var(--gold); margin-bottom:6px; letter-spacing:.05em; }
    .contact-card-content p { font-size:15px; color:#000; margin:0; line-height:1.5; }
    .contact-card-content a { color:#000; }
    .contact-card-content a:hover { color:var(--gold-light); }

    /* WHY US */
    .why-us { margin-top:36px; padding:24px; background:var(--dark-3); border:1px solid var(--border); }
    .why-us h4 { font-size:15px; color:var(--gold); margin-bottom:16px; }
    .why-us ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
    .why-us ul li { display:flex; align-items:center; gap:10px; font-size:15px; color:#000; }
    .why-us ul li::before { content:'✓'; color:var(--gold); font-weight:700; font-size:13px; }

    /* FORM */
    .contact-form-box { background:var(--surface); border:1px solid var(--border); border-top:3px solid var(--gold); padding:40px; }
    .contact-form-box h3 { font-size:22px; color:var(--text); margin-bottom:8px; }
    .contact-form-box > p { color:#000; font-size:15px; margin-bottom:28px; }
    

    /* MAP SECTION */
    .map-section { max-width:1200px; margin:0 auto 0; padding:0 40px 80px; }
    .map-section h2 { font-size:24px; color:var(--text); margin-bottom:6px; }
    .map-section > p { color:#000; font-size:16px; margin-bottom:24px; }
    .map-embed { width:100%; height:380px; border:1px solid var(--border); overflow:hidden; }
    .map-embed iframe { width:100%; height:100%; border:0; filter:invert(.9) hue-rotate(170deg) saturate(0.5); }
	
	/*------------------------------------contact end here------*/	
	

    /* ── CITY LINKS ── */
    .city-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
    .city-chips a { background: var(--cream); border: 1px solid var(--border); color: var(--maroon); padding: 6px 14px; border-radius: 50px; font-size: .82rem; text-decoration: none; transition: .2s; }
    .city-chips a:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }
	
	@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
	
	/* ── RESPONSIVE ── */
    @media (max-width: 1024px) { .content-layout { grid-template-columns: 1fr; } .sidebar { position: static; } .inc-exc { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .content-layout { padding: 40px 4%; } .nav-phone { display: none; } .highlights-grid { grid-template-columns: 1fr; }.page-hero {min-height: 550px;} }
