/* ================================================================
   HOME PAGE – PREMIUM REDESIGN
   Hindu Devalaya Yatra | Spiritual Travel
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── SECTION LABEL UTILITY ── */
.hd-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron-primary);
  margin-bottom: 12px;
}
.hd-label::before,
.hd-label::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1.5px;
  background: var(--saffron-primary);
  opacity: .6;
}

/* ── SECTION HEADING ── */
.hd-section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--temple-brown);
  line-height: 1.2;
  margin: 0 0 10px;
}
.hd-section-title span {
  color: var(--saffron-primary);
}
.hd-section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

/* ── VIEW ALL LINK ── */
.hd-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--saffron-primary) !important;
  border: 1.5px solid var(--saffron-primary);
  padding: 8px 20px;
  border-radius: 30px;
  transition: all .3s ease;
}
.hd-view-all:hover {
  background: var(--saffron-primary) !important;
  color: #fff !important;
}

/* ================================================================
   1. HERO SLIDER
================================================================ */
.hd-hero {
  position: relative;
  overflow: hidden;
}
.hd-hero .carousel-item img {
  width: 100%;
  height: 92vh;
  max-height: 820px;
  object-fit: cover;
  filter: brightness(.82);
}
.hd-hero .carousel-item {
  position: relative;
}
/* top gradient mask */
.hd-hero .carousel-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(58,31,20,.55), transparent);
  z-index: 3;
  pointer-events: none;
}
/* bottom gradient mask */
.hd-hero .carousel-inner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, #FFF9F3 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}
.hd-hero .carousel-indicators {
  bottom: 30px !important;
  z-index: 10;
}
.hd-hero .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.55) !important;
  border: none !important;
  transition: all .3s;
  margin: 0 4px;
}
.hd-hero .carousel-indicators button.active {
  background: #fff !important;
  width: 28px;
  border-radius: 8px !important;
}
.hd-hero .carousel-control-prev,
.hd-hero .carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  opacity: 1;
  z-index: 10;
}
.hd-hero .carousel-control-prev { left: 24px; }
.hd-hero .carousel-control-next { right: 24px; }
.hd-hero .carousel-control-prev-icon,
.hd-hero .carousel-control-next-icon { width: 20px; height: 20px; }

/* Floating search/scroll hint */
.hd-hero-scroll {
  position: absolute;
  bottom: 54px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.8);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  animation: scrollBounce 2s infinite;
}
.hd-hero-scroll i { font-size: 22px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   2. TRUST STRIP (below hero)
================================================================ */
.hd-trust-strip {
  background: #fff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}
.hd-trust-strip .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-right: 1px solid var(--divider-soft);
}
.hd-trust-strip .trust-item:last-child { border-right: none; }
.hd-trust-strip .trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff4e6, #fce4cc);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hd-trust-strip .trust-icon i {
  font-size: 20px;
  color: var(--saffron-primary);
}
.hd-trust-strip .trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--temple-brown);
  font-family: 'Inter', sans-serif;
}
.hd-trust-strip .trust-text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ================================================================
   3. INTRO / TRUSTED COMPANY SECTION
================================================================ */
.hd-intro {
  padding: 80px 0 70px;
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}
.hd-intro::before {
  content: 'ॐ';
  position: absolute;
  font-size: 320px;
  color: rgba(200,74,26,.04);
  top: -60px;
  right: -40px;
  line-height: 1;
  font-family: serif;
  pointer-events: none;
  user-select: none;
}
.hd-intro-text {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 20px auto 0;
  text-align: center;
}
.hd-stats-row {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 0;
}
.hd-stat {
  flex: 1;
  max-width: 180px;
  text-align: center;
  padding: 28px 16px;
  position: relative;
}
.hd-stat::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--divider-soft);
}
.hd-stat:last-child::after { display: none; }
.hd-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--saffron-primary);
  line-height: 1;
  display: block;
}
.hd-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

/* ================================================================
   4. POPULAR DESTINATIONS (Category Carousel)
================================================================ */
.hd-destinations {
  padding: 70px 0 80px;
  background: var(--temple-brown);
  position: relative;
  overflow: hidden;
}
.hd-destinations::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-accent), var(--saffron-primary), var(--gold-accent));
}
.hd-destinations .hd-label { color: var(--gold-accent); }
.hd-destinations .hd-label::before,
.hd-destinations .hd-label::after { background: var(--gold-accent); }
.hd-destinations .hd-section-title { color: #fff; }
.hd-destinations .hd-section-sub { color: rgba(255,255,255,.6); }
.hd-destinations .hd-view-all {
  border-color: var(--gold-accent);
  color: var(--gold-accent) !important;
}
.hd-destinations .hd-view-all:hover {
  background: var(--gold-accent) !important;
  color: var(--temple-brown) !important;
}

/* Destination Card */
.hd-dest-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin: 8px;
  display: block;
}
.hd-dest-card .hd-dest-img {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.hd-dest-card .hd-dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.hd-dest-card:hover .hd-dest-img img {
  transform: scale(1.08);
}
.hd-dest-card .hd-dest-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,10,0,.85) 0%, transparent 55%);
}
.hd-dest-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  z-index: 2;
}
.hd-dest-overlay h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
}
.hd-dest-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hd-dest-meta .hd-dest-loc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: 4px;
}
.hd-dest-badge {
  background: var(--gold-accent);
  color: var(--temple-brown);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
}

/* ================================================================
   5. WHY CHOOSE US
================================================================ */
.hd-why {
  padding: 80px 0;
  background: #fff;
  position: relative;
}
.hd-why-card {
  padding: 36px 28px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  background: var(--bg-main);
  height: 100%;
  text-align: center;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.hd-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron-primary), var(--gold-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.hd-why-card:hover::before { transform: scaleX(1); }
.hd-why-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(200,74,26,.12);
  background: #fff;
}
.hd-why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff4e6, #fce4cc);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s;
}
.hd-why-card:hover .hd-why-icon {
  background: linear-gradient(135deg, var(--saffron-primary), #e06a2a);
}
.hd-why-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: filter .35s;
}
.hd-why-card:hover .hd-why-icon img { filter: brightness(0) invert(1); }
.hd-why-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--temple-brown);
  margin: 0 0 12px;
}
.hd-why-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

/* ================================================================
   6. WEEKEND PACKAGES
================================================================ */
.hd-packages {
  padding: 80px 0;
  background: var(--bg-soft);
  position: relative;
}

/* Modern Package Card */
.hd-pkg-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hd-pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(58,31,20,.14);
  border-color: var(--gold-accent);
}
.hd-pkg-card .hd-pkg-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.hd-pkg-card .hd-pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.hd-pkg-card:hover .hd-pkg-img img { transform: scale(1.06); }
.hd-pkg-badge-days {
  position: absolute;
  top: 14px;
  left: 0;
  background: linear-gradient(90deg, var(--gold-accent), #f5c842);
  color: var(--temple-brown);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px 5px 10px;
  border-radius: 0 20px 20px 0;
  letter-spacing: .5px;
}
.hd-pkg-tour-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
}
.hd-pkg-body {
  padding: 20px 20px 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.hd-pkg-body h6 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--temple-brown);
  margin: 0 0 10px;
  line-height: 1.4;
}
.hd-pkg-route {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}
.hd-pkg-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.hd-pkg-price .hd-price-old {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #b0b0b0;
  text-decoration: line-through;
}
.hd-pkg-price .hd-price-new {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--saffron-primary);
}
.hd-pkg-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  align-items: center;
}
.hd-pkg-inclusions .inc-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--saffron-primary);
  width: 100%;
  margin-bottom: 2px;
}
.hd-pkg-inclusions .inc-chip {
  background: #fff4e6;
  border: 1px solid #fce4cc;
  color: var(--temple-brown);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hd-pkg-inclusions .inc-chip i {
  font-size: 12px;
  color: var(--saffron-primary);
}
.hd-pkg-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.hd-btn-enquire {
  flex: 1;
  background: var(--saffron-primary);
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: background .3s;
  text-transform: uppercase;
}
.hd-btn-enquire:hover { background: var(--maroon-secondary); }
.hd-btn-view {
  flex: 1;
  background: transparent;
  color: var(--saffron-primary) !important;
  border: 1.5px solid var(--saffron-primary);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 10px 12px;
  border-radius: 10px;
  text-align: center;
  transition: all .3s;
  text-transform: uppercase;
  display: block;
}
.hd-btn-view:hover {
  background: var(--saffron-primary) !important;
  color: #fff !important;
}

/* ================================================================
   7. PILGRIMAGE SECTION (owl carousel grid)
================================================================ */
.hd-pilgrimage {
  padding: 80px 0;
  background: #fff;
  position: relative;
}
.hd-pilgrimage::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-accent), transparent, var(--saffron-primary));
}

/* ================================================================
   8. ABOUT SECTION
================================================================ */
.hd-about {
  padding: 80px 0;
  background: linear-gradient(135deg, #3A1F14 0%, #5c2f1c 100%);
  position: relative;
  overflow: hidden;
}
.hd-about::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(242,183,5,.06);
  pointer-events: none;
}
.hd-about::after {
  content: '🕉';
  position: absolute;
  left: -30px; bottom: -30px;
  font-size: 280px;
  opacity: .04;
  line-height: 1;
  pointer-events: none;
}
.hd-about .hd-label { color: var(--gold-accent); }
.hd-about .hd-label::before,
.hd-about .hd-label::after { background: var(--gold-accent); }
.hd-about .hd-section-title { color: #fff; }
.hd-about-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,.75);
  margin: 16px 0;
}
.hd-about-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
}
.hd-about-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.hd-about-img::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--gold-accent), transparent, var(--saffron-primary));
  z-index: -1;
}
.hd-about-badge {
  position: absolute;
  bottom: -1px; left: -1px;
  background: var(--gold-accent);
  color: var(--temple-brown);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 20px 0 24px;
}
.hd-about-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}
.hd-about-points li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.8);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hd-about-points li i {
  color: var(--gold-accent);
  font-size: 16px;
  flex-shrink: 0;
}
.hd-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-accent);
  color: var(--temple-brown) !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all .3s;
  border: none;
  cursor: pointer;
}
.hd-btn-gold:hover {
  background: #fff !important;
  color: var(--temple-brown) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(242,183,5,.3);
}

/* ================================================================
   9. TESTIMONIALS
================================================================ */
.hd-testimonials {
  padding: 80px 0;
  background: var(--bg-main);
  position: relative;
}

.hd-review-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  margin: 10px 8px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 24px rgba(58,31,20,.06);
  position: relative;
  overflow: hidden;
}
.hd-review-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: 'Cinzel', serif;
  font-size: 120px;
  color: var(--saffron-primary);
  opacity: .06;
  line-height: 1;
}
.hd-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.hd-review-stars i { color: var(--gold-accent); font-size: 14px; }
.hd-review-body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-height: 130px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.hd-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hd-review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-light);
}
.hd-review-author strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--temple-brown);
}
.hd-review-author span {
  font-size: 11px;
  color: var(--text-muted);
}
.hd-review-google {
  width: 18px;
  height: 18px;
  margin-left: auto;
}

/* Override clientSEC styles for the new layout */
.hd-testimonials .clientSEC {
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
}
.hd-testimonials .clientSEC::before,
.hd-testimonials .clientSEC::after { display: none !important; }
.hd-testimonials #reviews-slider { padding: 0 30px !important; }
.hd-testimonials .reviews-box {
  background: #fff;
  border: 1px solid var(--border-light) !important;
  border-radius: 20px !important;
  padding: 28px !important;
  margin: 10px 8px !important;
  padding-left: 28px !important;
  box-shadow: 0 4px 24px rgba(58,31,20,.06) !important;
}
.hd-testimonials .profile-img {
  position: relative !important;
  left: auto !important;
  margin-bottom: 14px;
}
.hd-testimonials .profile-img img {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  object-fit: cover;
}
.hd-testimonials .reviews-header {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.hd-testimonials .profile-details h4 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--temple-brown);
}
.hd-testimonials .gkt_scroll {
  max-height: 130px !important;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 991px) {
  .hd-hero .carousel-item img {
    height: 70vh;
    max-height: 600px;
  }
  .hd-stats-row { flex-wrap: wrap; gap: 0; }
  .hd-stat { flex: 1 0 50%; }
  .hd-stat:nth-child(2)::after { display: none; }
  .hd-trust-strip .trust-item {
    padding: 0 12px;
    border-right: none;
    border-bottom: 1px solid var(--divider-soft);
  }
  .hd-about-img { margin-top: 40px; }
}

@media (max-width: 767px) {
  .hd-hero .carousel-item img {
    height: 60vh;
    max-height: 480px;
  }
  .hd-hero .carousel-control-prev,
  .hd-hero .carousel-control-next { display: none; }
  .hd-intro, .hd-destinations, .hd-why,
  .hd-packages, .hd-pilgrimage, .hd-about,
  .hd-testimonials { padding: 54px 0; }
  .hd-stat { flex: 1 0 50%; }
  .hd-trust-strip { padding: 12px 0; }
  .hd-trust-strip .trust-item { padding: 8px 16px; }
  .hd-destinations .hd-section-title,
  .hd-about .hd-section-title { font-size: 26px; }
  .hd-dest-card .hd-dest-img { height: 260px; }
  .hd-testimonials #reviews-slider { padding: 0 8px !important; }
  .hd-testimonials .reviews-box { margin: 8px 0px !important; }
  .hd-hero-scroll { display: none; }
}

/* ================================================================
   FILTER WIDGET — Hero Search Bar + Live Results
================================================================ */

/* ── Outer wrapper that "floats" above the page break ── */
.hd-filter-wrap {
  position: relative;
  z-index: 40;
  margin-top: -48px;
  padding-bottom: 0;
}

/* ── The card itself ── */
.hd-filter-bar {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(58,31,20,.18), 0 2px 8px rgba(0,0,0,.06);
  display: flex;
  align-items: stretch;
  overflow: visible;
  border: 1px solid var(--border-light);
}

/* ── Each filter cell ── */
.hd-filter-cell {
  flex: 1;
  position: relative;
  padding: 18px 20px;
  border-right: 1px solid var(--divider-soft);
  cursor: pointer;
  transition: background .2s;
  min-width: 0;
}
.hd-filter-cell:hover { background: #fdf8f4; }
.hd-filter-cell:first-child { border-radius: 20px 0 0 20px; }
.hd-filter-cell-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.hd-filter-cell-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--temple-brown);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hd-filter-cell-value i {
  color: var(--saffron-primary);
  font-size: 18px;
  flex-shrink: 0;
}
.hd-filter-cell-value .hd-filter-placeholder {
  color: #bbb;
  font-weight: 400;
}

/* ── Keyword cell has an actual input ── */
.hd-filter-cell-keyword input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--temple-brown);
  width: 100%;
  padding: 0;
}
.hd-filter-cell-keyword input::placeholder { color: #bbb; font-weight: 400; }

/* ── Search button ── */
.hd-filter-search-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron-primary) 0%, #e06a2a 100%);
  color: #fff;
  border: none;
  border-radius: 0 20px 20px 0;
  padding: 0 36px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .3s;
  min-width: 130px;
  justify-content: center;
}
.hd-filter-search-btn i { font-size: 18px; }
.hd-filter-search-btn:hover {
  background: linear-gradient(135deg, var(--maroon-secondary) 0%, var(--saffron-primary) 100%);
  box-shadow: 0 8px 24px rgba(200,74,26,.35);
}

/* ── Dropdown panels ── */
.hd-filter-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(58,31,20,.16);
  border: 1px solid var(--border-light);
  z-index: 200;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all .22s cubic-bezier(.34,1.56,.64,1);
  max-height: 320px;
  overflow-y: auto;
}
.hd-filter-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.hd-filter-dropdown-item {
  padding: 12px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #faf5f0;
  transition: background .15s;
}
.hd-filter-dropdown-item:last-child { border-bottom: none; }
.hd-filter-dropdown-item:hover,
.hd-filter-dropdown-item.selected {
  background: #fff4e6;
  color: var(--saffron-primary);
  font-weight: 600;
}
.hd-filter-dropdown-label {
  padding: 10px 18px 5px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ccc;
  border-bottom: 1px solid #faf5f0;
}
.hd-filter-dropdown-item i {
  color: var(--saffron-primary);
  font-size: 14px;
  width: 18px;
}
.hd-filter-dropdown-item .hd-dur-days {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.hd-filter-loading-dots {
  padding: 18px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* ── Active / clear indicators ── */
.hd-filter-clear {
  display: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--saffron-primary);
  color: #fff;
  font-size: 10px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex-shrink: 0;
  cursor: pointer;
  transition: background .2s;
}
.hd-filter-clear:hover { background: var(--maroon-secondary); }
.hd-filter-cell.has-value .hd-filter-clear { display: flex; }
.hd-filter-cell.has-value .hd-filter-placeholder { display: none; }

/* ── Results area below filter bar ── */
.hd-filter-results-wrap {
  padding: 40px 0 60px;
  background: var(--bg-main);
  display: none;
}
.hd-filter-results-wrap.active { display: block; }

.hd-filter-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.hd-filter-results-count {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--temple-brown);
}
.hd-filter-results-count span {
  color: var(--saffron-primary);
}
.hd-filter-reset-all {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--saffron-primary);
  border: 1.5px solid var(--saffron-primary);
  padding: 7px 18px;
  border-radius: 30px;
  background: none;
  cursor: pointer;
  transition: all .25s;
}
.hd-filter-reset-all:hover {
  background: var(--saffron-primary);
  color: #fff;
}

/* Skeleton loader */
.hd-filter-skeleton {
  display: none;
}
.hd-filter-skeleton.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .hd-filter-skeleton.active { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .hd-filter-skeleton.active { grid-template-columns: 1fr; }
}
.hd-skel-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-light);
}
.hd-skel-img {
  height: 200px;
  background: linear-gradient(90deg, #f0e8e0 25%, #f9f2ec 50%, #f0e8e0 75%);
  background-size: 200% 100%;
  animation: hd-skel-shimmer 1.5s infinite;
}
.hd-skel-body { padding: 20px; }
.hd-skel-line {
  height: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f0e8e0 25%, #f9f2ec 50%, #f0e8e0 75%);
  background-size: 200% 100%;
  animation: hd-skel-shimmer 1.5s infinite;
  margin-bottom: 10px;
}
.hd-skel-line.short { width: 55%; }
.hd-skel-line.xshort { width: 35%; }
@keyframes hd-skel-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* Empty state */
.hd-filter-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  display: none;
}
.hd-filter-empty.active { display: block; }
.hd-filter-empty i {
  font-size: 56px;
  color: var(--border-light);
  display: block;
  margin-bottom: 16px;
}
.hd-filter-empty h4 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: var(--temple-brown);
  margin-bottom: 8px;
}
.hd-filter-empty p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

/* Load more */
.hd-filter-loadmore {
  text-align: center;
  margin-top: 36px;
}
.hd-btn-loadmore {
  background: transparent;
  border: 1.5px solid var(--saffron-primary);
  color: var(--saffron-primary);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 36px;
  border-radius: 30px;
  cursor: pointer;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hd-btn-loadmore:hover {
  background: var(--saffron-primary);
  color: #fff;
}
.hd-btn-loadmore.loading {
  opacity: .6;
  pointer-events: none;
}

/* Active tags strip */
.hd-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.hd-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff4e6;
  border: 1px solid #fce4cc;
  color: var(--saffron-primary);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}
.hd-filter-tag button {
  background: none;
  border: none;
  color: var(--saffron-primary);
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* ── Responsive bar stacking ── */
@media (max-width: 991px) {
  .hd-filter-wrap { margin-top: 0; padding: 0 16px; }
  .hd-filter-bar {
    flex-direction: column;
    border-radius: 16px;
  }
  .hd-filter-cell {
    border-right: none;
    border-bottom: 1px solid var(--divider-soft);
    border-radius: 0 !important;
  }
  .hd-filter-search-btn {
    border-radius: 0 0 16px 16px;
    padding: 18px 24px;
    min-width: unset;
    width: 100%;
  }
  .hd-filter-dropdown { min-width: 100%; left: 0; }
}
