/* ============================================================
   PG TRAVELS — STYLESHEET
   Theme: Deep Charcoal + Logo-matched Orange accent
   Logo gradient: yellow → orange → pink → purple → blue
   Navbar: pure black to showcase colorful logo
   ============================================================ */

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

:root {
  /* Core — deep charcoal as primary dark, logo-orange as accent */
  --dark: #0d0d0d;
  --dark2: #161616;
  --dark3: #1e1e1e;
  --navy: #0d1a2e;
  --navy-mid: #12274a;
  --navy-light: #1a3860;
  --navy-faint: #f0f4fb;

  /* Logo accent: the warm orange that anchors the logo gradient */
  --amber: #E8860A;
  --amber-dark: #c46f07;
  --amber-light: #fdf1d9;

  /* Logo gradient — used only for decorative elements that echo the logo */
  --logo-grad: linear-gradient(135deg, #f7c948 0%, #e8860a 30%, #e0306a 65%, #7b3fe4 85%, #2a8fe8 100%);
  --logo-grad-subtle: linear-gradient(135deg, #f7c94830 0%, #e8860a30 30%, #e0306a20 65%, #7b3fe420 85%, #2a8fe820 100%);

  --white: #ffffff;
  --text: #1a1a2e;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafd;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
/* Pure black — makes the colorful logo pop against it */
.custom-navbar {
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: fixed; width: 100%; z-index: 9999;
  transition: all 0.3s ease;
}

/* Subtle logo-gradient bottom line on navbar */
.custom-navbar::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--logo-grad);
  opacity: 0.75;
}

/* Logo image in navbar */
.navbar-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  /* Remove the black background from the JPG logo */
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 8px rgba(232,134,10,0.25));
}

/* Brand name text alongside logo */
.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 13px;
  color: rgba(255,255,255,0.70);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}
.brand-tagline {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--logo-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 1px;
}

.nav-link {
  color: rgba(255,255,255,0.78) !important;
  font-weight: 500; font-size: 13.5px;
  padding: 7px 12px !important;
  border-radius: 6px;
  transition: all 0.22s ease;
  letter-spacing: 0.1px;
}
.nav-link:hover { color: white !important; background: rgba(255,255,255,0.07); }
.nav-link.active { color: #f7c948 !important; }
.nav-link::after { display: none; }

/* CTA button uses the logo-gradient for brand alignment */
.nav-cta {
  background: var(--logo-grad) !important;
  color: white !important;
  border-radius: 6px !important;
  padding: 8px 20px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.3px;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
  border: none !important;
  position: relative;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.88 !important; transform: translateY(-1px) !important; color: white !important; }

.custom-toggler {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; cursor: pointer;
}
.custom-toggler span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px; transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden; display: flex; align-items: center; color: white;
  padding-top: 70px;
}
.hero-slider { position: absolute; inset: 0; z-index: 1; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 2s ease-in-out;
}
.slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(160deg, rgba(11,28,61,0.82) 0%, rgba(11,28,61,0.60) 100%);
}
.hero-content { position: relative; z-index: 3; }

.hero-badge {
  display: inline-block;
  background: rgba(232,147,10,0.18);
  border: 1px solid rgba(232,147,10,0.4);
  color: #fdd07a;
  padding: 6px 18px; border-radius: 30px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease both;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 900; line-height: 1.12;
  margin-bottom: 10px;
  animation: fadeUp 0.9s ease 0.1s both;
}
.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300; opacity: 0.80;
  margin-bottom: 16px;
  animation: fadeUp 0.9s ease 0.18s both;
}
.hero-gradient-text { color: var(--amber); }
.hero-text {
  font-size: 15px; max-width: 540px;
  margin: 0 auto 28px; opacity: 0.82; line-height: 1.75;
  animation: fadeUp 0.9s ease 0.26s both;
}

.hero-stats {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px; padding: 14px 28px; gap: 28px;
  margin-bottom: 28px;
  animation: fadeUp 0.9s ease 0.34s both;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 22px; font-weight: 700; color: var(--amber); font-family: 'Montserrat', sans-serif; }
.hero-stat span { font-size: 11px; opacity: 0.75; letter-spacing: 0.3px; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

.hero-buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.42s both;
}
.btn-hero-primary {
  background: var(--amber); color: var(--navy);
  border: none; padding: 14px 34px;
  border-radius: 8px; font-weight: 700; font-size: 14px;
  transition: all 0.25s; text-decoration: none;
}
.btn-hero-primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,147,10,0.4); color: var(--navy); }
.btn-hero-secondary {
  background: transparent;
  color: white; border: 1.5px solid rgba(255,255,255,0.35);
  padding: 13px 32px; border-radius: 8px;
  font-weight: 600; font-size: 14px; transition: all 0.25s; text-decoration: none;
}
.btn-hero-secondary:hover { background: white; color: var(--navy); transform: translateY(-2px); border-color: white; }

.scroll-indicator { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 4; }
.scroll-dot { width: 7px; height: 7px; background: rgba(255,255,255,0.7); border-radius: 50%; animation: scrollBounce 2.2s infinite; }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.35; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SERVICES STRIP ===== */
.services-strip { background: white; box-shadow: 0 2px 20px rgba(11,28,61,0.07); position: relative; z-index: 10; }
.strip-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 3px solid var(--amber);
}
.strip-item {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 18px; border-right: 1px solid var(--border);
  transition: background 0.22s;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: var(--navy-faint); }
.strip-icon { flex-shrink: 0; }
.strip-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.strip-text span { font-size: 11px; color: var(--text-muted); }

/* ===== SECTION COMMON ===== */
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px; margin-bottom: 12px;
}
.section-label.dark, .section-label:not(.light) {
  background: var(--amber-light); color: var(--amber-dark);
  border-left: 3px solid var(--amber);
  border-radius: 0 4px 4px 0;
}
.section-label.light {
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85);
  border-left: 3px solid var(--amber);
  border-radius: 0 4px 4px 0;
}

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px); font-weight: 800;
  color: var(--navy); margin-bottom: 10px;
}
.section-heading span { color: var(--amber); }
.section-heading-light {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px); font-weight: 800;
  color: white; margin-bottom: 10px;
}
.section-heading-light span { color: var(--amber); }
.section-subtext-light { color: rgba(255,255,255,0.78); font-size: 15px; max-width: 600px; margin: 0 auto; }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 100px 0; background: var(--bg); }
.about-illustration {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-md); overflow: hidden; padding: 8px;
}
.about-badge-new {
  display: inline-block; background: var(--amber-light);
  color: var(--amber-dark); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 0 4px 4px 0;
  border-left: 3px solid var(--amber); margin-bottom: 14px;
}
.about-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 38px); font-weight: 800; margin-bottom: 18px; line-height: 1.2; color: var(--navy);
}
.about-title span { color: var(--amber); }
.about-title em { font-style: italic; color: var(--text-muted); font-weight: 400; font-size: 0.72em; display: block; margin-top: 4px; }
.about-para { color: var(--text-muted); line-height: 1.8; font-size: 15px; margin-bottom: 14px; }

.about-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.feature-chip {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-size: 13px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 8px; transition: all 0.22s;
}
.feature-chip i { color: var(--amber); font-size: 15px; }
.feature-chip:hover { border-color: var(--amber); background: var(--amber-light); }

.btn-about-more {
  display: inline-flex; align-items: center;
  background: var(--navy); color: white;
  border: none; padding: 13px 28px; border-radius: 8px;
  font-weight: 700; text-decoration: none; font-size: 14px;
  transition: all 0.25s;
}
.btn-about-more:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); color: white; }

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--navy); padding: 100px 0; }
.service-card-new {
  background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column;
}
.service-card-new:hover {
  transform: translateY(-8px);
  border-color: rgba(232,147,10,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.service-svg-wrap { overflow: hidden; flex-shrink: 0; }
.service-svg-wrap svg { display: block; width: 100%; }
.service-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h5 { color: white; font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.service-location-tag { color: var(--amber); font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 10px; }
.service-card-body p { color: rgba(255,255,255,0.62); font-size: 13.5px; line-height: 1.65; flex: 1; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--amber); font-weight: 600; font-size: 13px; text-decoration: none; margin-top: 14px; transition: gap 0.2s; }
.service-link:hover { gap: 10px; color: #fdd07a; }

/* ===== TEMPLE TOURS ===== */
.temple-tour-section { padding: 100px 0; background: white; }
.temple-desc { max-width: 700px; margin: 0 auto; color: var(--text-muted); font-size: 15px; line-height: 1.78; }
.temple-card-new {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: all 0.3s; height: 100%;
  border: 1px solid var(--border);
  border-bottom: 3px solid transparent;
}
.temple-card-new:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--amber); }
.temple-card-svg svg { display: block; width: 100%; }
.temple-card-content { padding: 24px; }
.temple-icon-badge { font-size: 26px; margin-bottom: 10px; display: block; }
.temple-card-content h4 { font-weight: 700; font-size: 17px; margin-bottom: 8px; color: var(--navy); }
.temple-card-content p { color: var(--text-muted); font-size: 14px; line-height: 1.72; margin-bottom: 14px; }
.temple-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.temple-meta span { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.temple-meta i { color: var(--amber); }

/* ===== HILL STATIONS ===== */
.hillstation-section { background: var(--navy); padding: 100px 0; }
.hill-desc { max-width: 700px; margin: 0 auto; color: rgba(255,255,255,0.70); font-size: 15px; line-height: 1.78; }
.hill-card-new {
  background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s; height: 100%;
}
.hill-card-new:hover { transform: translateY(-6px); border-color: rgba(232,147,10,0.4); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.hill-svg svg { display: block; width: 100%; }
.hill-card-body { padding: 20px; }
.hill-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; display: block; }
.hill-card-body h4 { color: white; font-weight: 700; font-size: 16px; margin-bottom: 7px; }
.hill-card-body p { color: rgba(255,255,255,0.62); font-size: 13.5px; line-height: 1.65; }

/* ===== FEATURED PACKAGES SWIPER ===== */
.featured-packages { padding: 100px 0; background: var(--bg); }
.featured-subtitle { max-width: 640px; margin: 0 auto; color: var(--text-muted); font-size: 15px; }
.featuredSwiper { position: relative; padding: 0 10px; overflow: hidden; }
.tour-card-new {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: all 0.3s; height: 100%;
  border: 1px solid var(--border);
}
.tour-card-new:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-img-wrap { position: relative; overflow: hidden; }
.tour-img-wrap img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s; }
.tour-card-new:hover .tour-img-wrap img { transform: scale(1.05); }
.tour-days-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--amber); color: var(--navy);
  font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 4px;
}
.tour-content-new { padding: 18px; }
.tour-content-new h4 { font-weight: 700; font-size: 15.5px; margin-bottom: 6px; color: var(--navy); }
.tour-content-new p { color: var(--text-muted); font-size: 13px; margin-bottom: 12px; }
.tour-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 14px; }
.tour-tags span { font-size: 11px; font-weight: 600; color: var(--text-muted); background: var(--bg); padding: 3px 10px; border-radius: 4px; }
.tour-btn-new {
  display: inline-block; background: var(--navy); color: white;
  padding: 9px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 700; text-decoration: none; transition: all 0.25s;
}
.tour-btn-new:hover { background: var(--amber); color: var(--navy); transform: translateY(-1px); }

.swiper-button-next, .swiper-button-prev {
  background: white; width: 40px; height: 40px; border-radius: 50%;
  box-shadow: var(--shadow-md); color: var(--navy) !important; top: 38%;
}
.swiper-button-next:after, .swiper-button-prev:after { font-size: 14px; font-weight: 800; }
.swiper-button-prev { left: 0; }
.swiper-button-next { right: 0; }

/* ===== DESTINATIONS ===== */
.destinations-map-section { padding: 90px 0; background: white; }
.destinations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.dest-state-label {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 14px; padding-bottom: 8px;
  border-bottom: 2px solid var(--navy-faint);
}
.dest-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.dest-tags a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 6px;
  text-decoration: none; color: var(--text-muted); font-size: 13px; font-weight: 500;
  transition: all 0.22s;
}
.dest-tags a i { color: var(--amber); font-size: 12px; }
.dest-tags a:hover { background: var(--navy); color: white; border-color: var(--navy); transform: translateY(-1px); }
.dest-tags a:hover i { color: var(--amber); }

/* ===== TRUST / COUNTER ===== */
.trust-section { background: var(--navy); padding: 100px 0; }
.counter-card-new {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius); padding: 36px 20px; text-align: center; transition: all 0.3s;
}
.counter-card-new:hover { transform: translateY(-6px); background: rgba(255,255,255,0.10); }
.counter-icon { font-size: 30px; margin-bottom: 14px; }
.counter-card-new h3, .counter-plus {
  color: var(--amber); font-size: 42px; font-weight: 800;
  display: inline; font-family: 'Montserrat', sans-serif;
}
.counter-plus { font-size: 26px; }
.counter-card-new p { color: rgba(255,255,255,0.72); font-size: 14px; margin-top: 8px; font-weight: 500; }

/* ===== ITINERARY ===== */
.itinerary-section { padding: 100px 0; background: var(--bg); }
.itinerary-subtitle { max-width: 580px; margin: 0 auto; color: var(--text-muted); }
.itinerary-card-new {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 30px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber); height: 100%;
  transition: all 0.3s; position: relative;
}
.itinerary-card-new:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.featured-itin { border-top-color: var(--navy); }
.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: white;
  font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 4px; white-space: nowrap;
}
.itinerary-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.itin-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.itinerary-header h4 { font-weight: 700; font-size: 16px; margin: 0 0 5px; color: var(--navy); }
.itin-badge { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--amber); }
.itinerary-list-new { list-style: none; padding: 0; margin: 0 0 20px; }
.itinerary-list-new li {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 13.5px; color: var(--text-muted);
}
.itinerary-list-new li:last-child { border-bottom: none; }
.day-badge {
  background: var(--amber); color: var(--navy);
  padding: 2px 9px; border-radius: 4px;
  font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.itin-book-btn {
  display: block; text-align: center; background: var(--navy); color: white;
  padding: 11px 20px; border-radius: 6px;
  font-weight: 700; font-size: 13px; text-decoration: none; transition: all 0.25s;
}
.itin-book-btn:hover { background: var(--amber); color: var(--navy); transform: translateY(-1px); }
.featured-itin .itin-book-btn { background: var(--navy); }

/* ===== INTERNATIONAL ===== */
.international-section { background: var(--navy-mid); padding: 100px 0; }
.intl-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: white; margin-bottom: 18px; line-height: 1.2;
}
.intl-title span { color: var(--amber); }
.intl-desc { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.8; margin-bottom: 24px; max-width: 520px; }
.intl-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 8px; }
.intl-feature { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.82); font-size: 14px; font-weight: 500; }
.intl-feature i { color: var(--amber); width: 18px; text-align: center; }
.btn-intl {
  background: var(--amber); color: var(--navy); padding: 13px 32px; border-radius: 8px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  display: inline-block; transition: all 0.25s;
}
.btn-intl:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,147,10,0.35); color: var(--navy); }
.intl-illustration { display: flex; justify-content: center; }
.intl-illustration svg { max-width: 380px; width: 100%; }

/* ===== FAQ ===== */
.faq-section { padding: 90px 0; background: white; }
.faq-accordion { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; transition: box-shadow 0.25s;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(11,28,61,0.25); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 17px 20px; font-weight: 600; font-size: 14.5px;
  cursor: pointer; gap: 12px; user-select: none; transition: background 0.2s; color: var(--navy);
}
.faq-q:hover { background: var(--navy-faint); }
.faq-toggle { font-size: 18px; color: var(--amber); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  padding: 0 20px; max-height: 0; overflow: hidden;
  color: var(--text-muted); font-size: 14px; line-height: 1.78;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }

/* ===== TRAVEL GUIDE ===== */
.travel-guide-section { padding: 90px 0; background: var(--bg); }
.guide-card {
  background: white; border-radius: var(--radius); padding: 34px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: all 0.3s; height: 100%;
}
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.guide-icon { font-size: 34px; margin-bottom: 14px; display: block; }
.guide-card h4 { font-weight: 700; font-size: 17px; margin-bottom: 10px; color: var(--navy); }
.guide-card p { color: var(--text-muted); font-size: 14px; line-height: 1.72; margin-bottom: 16px; }
.read-more-btn {
  display: inline-flex; align-items: center;
  padding: 9px 20px; border-radius: 6px;
  background: var(--navy); color: white;
  font-size: 13px; font-weight: 700; text-decoration: none; transition: all 0.25s;
}
.read-more-btn:hover { background: var(--amber); color: var(--navy); transform: translateY(-1px); }

/* ===== CTA SECTION ===== */
.cta-section { padding: 90px 0; background: var(--amber); position: relative; overflow: hidden; }
.cta-section::before {
  content: ""; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(11,28,61,0.07);
  top: -200px; right: -100px; pointer-events: none;
}
.cta-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 4vw, 36px); font-weight: 800; color: var(--navy); margin-bottom: 12px;
}
.cta-inner p { color: rgba(11,28,61,0.72); font-size: 16px; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta-whatsapp {
  background: #25d366; color: white; padding: 14px 32px; border-radius: 8px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px; transition: all 0.25s;
}
.btn-cta-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.25); color: white; background: #1eb558; }
.btn-cta-call {
  background: var(--navy); color: white; border: none;
  padding: 14px 32px; border-radius: 8px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px; transition: all 0.25s;
}
.btn-cta-call:hover { background: var(--navy-light); transform: translateY(-2px); color: white; }

/* ===== FOOTER ===== */
.main-footer { background: var(--navy); color: rgba(255,255,255,0.72); padding: 70px 0 0; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand-name { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 800; color: white; }
.footer-desc { font-size: 13.5px; line-height: 1.78; color: rgba(255,255,255,0.60); margin-bottom: 18px; }
.footer-contact-info p { font-size: 13px; color: rgba(255,255,255,0.62); margin-bottom: 8px; display: flex; align-items: center; gap: 9px; }
.footer-contact-info i { color: var(--amber); width: 16px; }
.footer-heading { color: white; font-weight: 700; font-size: 13px; letter-spacing: 0.5px; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.58); font-size: 13px; text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: "›"; color: var(--amber); }
.footer-links a:hover { color: var(--amber); }
.footer-social { display: flex; gap: 9px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 14px; text-decoration: none; transition: all 0.22s;
}
.footer-social a:hover { background: var(--amber); color: var(--navy); }
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 40px 0 18px; }
.footer-seo-links { text-align: center; margin-bottom: 20px; }
.footer-seo-links a { display: inline-block; color: rgba(255,255,255,0.38); font-size: 11px; text-decoration: none; margin: 3px 7px; transition: color 0.2s; }
.footer-seo-links a:hover { color: var(--amber); }
.footer-bottom { background: rgba(0,0,0,0.3); padding: 16px 0; text-align: center; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.40); margin: 0; }
.footer-bottom a { color: var(--amber); text-decoration: none; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px;
  width: 54px; height: 54px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 26px; z-index: 9998;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45); text-decoration: none; transition: all 0.3s;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 12px 30px rgba(37,211,102,0.55); color: white; }
.whatsapp-float::before {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  background: rgba(37,211,102,0.35); animation: waPulse 2.5s infinite; z-index: -1;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.7; } 70% { transform: scale(1.5); opacity: 0; } 100% { opacity: 0; } }

/* ===== RESPONSIVE ===== */
/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .strip-grid { grid-template-columns: repeat(3, 1fr); }
  .strip-item:nth-child(3) { border-right: none; }
}

@media (max-width: 991px) {
  .about-features-grid { grid-template-columns: 1fr; }
  .intl-illustration { margin-top: 30px; }
  .intl-features-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 767px) {
  /* Hero fixes */
  .hero {
    height: auto;
    min-height: 100svh;
    padding: 100px 0 60px;
    align-items: center;
  }
  .hero-content {
    padding: 0 16px;
  }
  .hero-badge {
    font-size: 11px;
    padding: 5px 13px;
    margin-bottom: 14px;
  }
  .hero-title {
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1.15;
    margin-bottom: 10px;
    word-break: break-word;
  }
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .hero-text {
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 22px;
    padding: 0 4px;
  }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 14px 16px;
    margin-bottom: 22px;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stat {
    flex: 1 1 calc(33% - 12px);
    min-width: 80px;
    padding: 6px 4px;
  }
  .hero-stat strong {
    font-size: 18px;
  }
  .hero-stat span {
    font-size: 10px;
  }
  .hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    align-self: center;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  /* Other section fixes */
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .about-features-grid { grid-template-columns: 1fr 1fr; }
  .destinations-grid { grid-template-columns: 1fr; gap: 20px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-cta-whatsapp, .btn-cta-call { width: 100%; max-width: 256px; justify-content: center; }
  .intl-features-grid { grid-template-columns: 1fr 1fr; }
  .about-section, .services-section, .temple-tour-section, .hillstation-section,
  .featured-packages, .trust-section, .itinerary-section, .international-section,
  .faq-section, .travel-guide-section { padding: 72px 0; }
}

@media (max-width: 480px) {
  /* Hero on very small screens */
  .hero {
    padding: 90px 0 50px;
  }
  .hero-title {
    font-size: clamp(22px, 8vw, 30px);
  }
  .hero-stats {
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
  }
  .hero-stat {
    flex: unset;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
  }
  .hero-stat strong {
    font-size: 20px;
  }
  .hero-stat span {
    font-size: 12px;
    text-align: right;
  }
  .hero-stat-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.15);
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    max-width: 100%;
    width: 100%;
  }

  /* Other */
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item { border-right: none; border-bottom: 1px solid var(--border); }
  .about-features-grid { grid-template-columns: 1fr; }
  .intl-features-grid { grid-template-columns: 1fr; }
  .hero-badge { font-size: 11px; padding: 5px 14px; }
  .about-section, .services-section, .temple-tour-section, .hillstation-section,
  .featured-packages, .trust-section, .itinerary-section, .international-section,
  .faq-section, .travel-guide-section { padding: 56px 0; }
}