/* ================================================================
   MATHURA VRINDAVAN TOUR PACKAGE — SHARED STYLESHEET
   ================================================================
   Covers: Homepage, Itinerary, About, Legal, Contact pages.

   TABLE OF CONTENTS
   -----------------
    1.  CSS Custom Properties
    2.  Reset & Base
    3.  Utility Classes
    4.  Topbar
    5.  Main Header / Navbar
    6.  Buttons
    7.  Section Headings
    8.  Shared Card Base
    9.  Shared Hero Elements (pill, lead, meta, crumbs)
   10.  Hero Slider (homepage carousel)
   11.  Hero Content Block (homepage)
   12.  Hero Panels (inner pages)
   13.  Feature Strip
   14.  Tour Cards & Grid
   15.  Story / About Section
   16.  Why Choose Us Cards
   17.  Sacred Destinations Grid
   18.  Route / Package Collections
   19.  Bus Tours
   20.  Trust Stats & Info Strip
   21.  Client Gallery Marquee
   22.  Reviews
   23.  Blog Grid
   24.  CTA Band
   25.  FAQ
   26.  Itinerary — Sidebar & Enquiry
   27.  Itinerary — Content Grid & Cards
   28.  Itinerary — Timeline / Day Cards
   29.  Itinerary — Tour Table
   30.  Itinerary — Gallery Grid & Related Tours
   31.  About Page — Components
   32.  Legal Page — Components
   33.  Contact Page — Components
   34.  Footer
   35.  Responsive — Large  (≤ 1199px)
   36.  Responsive — Medium (≤  991px)
   37.  Responsive — Mobile (≤  767px)
   ================================================================ */

/* ================================================================
   1. CSS CUSTOM PROPERTIES
   ================================================================ */
:root {
  --primary: #fe8800;
  --primary-dark: #c75f00;
  --primary-soft: #ffb347;

  --accent: #ff7a59;
  --accent-2: #fff2ec;

  --rose: #ff7a59;

  --ink: #1d1a2f;
  --text: #504a68;
  --muted: #7a748f;

  --white: #ffffff;

  --surface: #fffaf6;
  --surface-2: #fff3ec;

  --line: rgba(254, 136, 0, 0.18);

  /* HERO GRADIENT (premium orange blend) */
  --grad-hero: linear-gradient(135deg,
      rgba(254, 136, 0, 0.96) 0%,
      rgba(255, 122, 89, 0.92) 55%,
      rgba(255, 183, 77, 0.85) 100%);

  /* TOP BAR */
  --grad-topbar: linear-gradient(90deg,
      rgba(254, 136, 0, 0.98) 0%,
      rgba(255, 122, 89, 0.96) 55%,
      rgba(255, 183, 77, 0.9) 100%);

  /* CTA BUTTONS */
  --grad-cta: linear-gradient(135deg,
      rgba(254, 136, 0, 0.96),
      rgba(255, 122, 89, 0.94) 55%,
      rgba(255, 183, 77, 0.88));

  /* SHADOWS (warm tone instead of purple) */
  --shadow: 0 18px 50px rgba(254, 136, 0, 0.18);
  --shadow-soft: 0 10px 30px rgba(254, 136, 0, 0.10);

  --radius-xl: 30px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --radius-xs: 14px;
  --radius-pill: 999px;

  --container: 1320px;
}

/* ================================================================
   2. RESET & BASE
   ================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right,
      rgba(64, 199, 180, 0.16),
      transparent 24%),
    radial-gradient(circle at left center,
      rgba(91, 63, 211, 0.1),
      transparent 22%),
    linear-gradient(180deg, #fcfbff 0%, #f5fffd 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

h3{
    font-size: 20px;
}
/* ================================================================
   3. UTILITY CLASSES
   ================================================================ */
.container-max {
  max-width: var(--container);
}

.titleFont {
  font-family: "Cinzel", serif;
}

.sectionSpace {
  padding: 35px 0;
}

.sectionSpaceSm {
  padding: 42px 0;
}

/* ================================================================
   4. TOPBAR
   ================================================================ */
.topbar {
  position: relative;
  z-index: 1035;
}

.topbar-desktop {
  display: block;
  background: var(--grad-topbar);
  color: #f8fbff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbarInner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.topbarContact,
.topbarLinks {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbarLink,
.topbarInfo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.2;
}

.topbarLink {
  transition: color 0.25s ease;
}

.topbarLink:hover {
  color: #fff;
}

.topbarLink i,
.topbarInfo i {
  width: 18px;
  text-align: center;
  color: #fff;
  font-size: 0.92rem;
  flex-shrink: 0;
}

.topbarMobile {
  display: none;
  background: var(--grad-topbar);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0 12px;
}

.topbarMobileGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mobileTopItem {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mobileTopItem i {
  color: #fff;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.mobileTopItem:hover {
  color: #fff;
}

.mobileTopItem--call {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .topbar-desktop {
    display: block;
  }

  .topbarMobile {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .topbar-desktop {
    display: none;
  }

  .topbarMobile {
    display: block;
  }
}

/* ================================================================
   5. MAIN HEADER / NAVBAR
   ================================================================ */
.mainHeader {
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: blur(12px);
  background: rgba(252, 251, 255, 0.88);
  border-bottom: 1px solid rgba(91, 63, 211, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.brandLogo {
  height: 75px;
  /* control height as per header */
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: var(--ink);
  font-weight: 600;
  padding: 0.85rem 1rem !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

/* ================================================================
   6. BUTTONS
   ================================================================ */
.btnTemple,
.btnGhost,
.btnOutlineTemple,
.chipBtn,
.contactActionBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  line-height: 1.1;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.btnTemple {
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 0.78rem 1.15rem;
  border-radius: var(--radius-xs);
  box-shadow: 0 12px 28px rgba(91, 63, 211, 0.24);
}

.btnTemple:hover {
  transform: translateY(-2px);
  color: #fff;
}

.btnGhost {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  padding: 0.78rem 1.15rem;
  border-radius: var(--radius-xs);
}

.btnOutlineTemple {
  background: #fff;
  border: 1px solid rgba(91, 63, 211, 0.14);
  color: var(--primary-dark);
  padding: 0.78rem 1.1rem;
  border-radius: var(--radius-xs);
}

.chipBtn {
  background: var(--surface-2);
  padding: 0.72rem 1rem;
  border-radius: var(--radius-pill);
  color: var(--primary-dark);
  font-size: 0.9rem;
  border: 1px solid rgba(91, 63, 211, 0.08);
}

.contactActionBtn {
  background: var(--surface-2);
  border: 1px solid rgba(91, 63, 211, 0.1);
  color: var(--primary-dark);
  padding: 0.86rem 1.05rem;
  border-radius: 16px;
}

.btnOutlineTemplePill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(111, 75, 20, 0.18);
  color: var(--primary-dark);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  line-height: 1.1;
}

/* Tour card buttons */
.tourBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  padding: 14px 18px;
  border-radius: 18px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.28s ease;
  text-align: center;
}

.tourBtnPrimary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 14px 28px rgba(91, 63, 211, 0.18);
}

.tourBtnPrimary:hover {
  color: #fff;
  transform: translateY(-2px);
}

.readMoreBtn {
  margin-top: 10px;
  background: none;
  border: none;
  color: #fe8800;
  font-weight: 900;
  cursor: pointer;
}

.tourBtnSecondary {
  background: var(--surface-2);
  color: var(--primary-dark);
  border: 1px solid rgba(91, 63, 211, 0.12);
}

.tourBtnSecondary:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ================================================================
   7. SECTION HEADINGS
   ================================================================ */
.secHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.secKicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: var(--accent-2);
  border: 1px solid rgba(91, 63, 211, 0.1);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  margin-bottom: 14px;
}

.secKicker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--rose));
}

.secHead h2,
.sectionTitle,
.contentTitle,
.pageTitle,
.contactTitle {
  font-family: "Cinzel", serif;
  color: var(--primary-dark);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.16;
  margin: 0 0 10px;
  font-weight: 800;
}

.secHead h2 span,
.sectionTitle span,
.contentTitle span,
.pageTitle span,
.contactTitle span {
  color: var(--rose);
}


.sectionText {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin: 0;
}

.secHead p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin: 0;
}

/* ================================================================
   8. SHARED CARD BASE
   ================================================================ */
.sideCard,
.contentCard,
.miniCard,
.floatingCard,
.enquiryCard,
.sectionCard,
.tourCard,
.whyCard,
.destinationCard,
.trustCard,
.reviewCard,
.faqCard,
.faqIntro,
.routeCard,
.busCard,
.storyCard,
.featureStrip,
.blogCard,
.relatedTourCard,
.valueCard,
.teamCard,
.statCard,
.infoCard,
.galleryCard {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(91, 63, 211, 0.1);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

/* ================================================================
   9. SHARED HERO ELEMENTS
   ================================================================ */
.crumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.92rem;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.crumbs a {
  color: #fff;
}

.crumbs .sep {
  opacity: 0.7;
}

.heroPill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.88rem;
  backdrop-filter: blur(8px);
  width: max-content;
  margin-bottom: 18px;
}

.heroPill i {
  color: #fff;
}

.heroLead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 249, 240, 0.92);
  max-width: 740px;
  margin-bottom: 24px;
}

.heroMeta {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.heroMetaItem {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 14px;
}

.heroMetaItem strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.heroMetaItem span {
  display: block;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
}

.heroActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.heroSide {
  display: grid;
  gap: 22px;
}

.sidebarSticky {
  position: sticky;
  top: 110px;
}

/* ================================================================
   10. HERO SLIDER (homepage)
   ================================================================ */
.mainHeroSlider {
  position: relative;
  overflow: hidden;
}

.mainHeroSlider .carousel,
.mainHeroSlider .carousel-inner,
.mainHeroSlider .carousel-item {
  min-height: 78vh;
}

.heroSlideBg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.heroSlideOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(20, 10, 5, 0.88) 0%,
      /* dark left for readability */
      rgba(40, 18, 6, 0.75) 32%,
      rgba(254, 136, 0, 0.28) 62%,
      /* main orange */
      rgba(255, 122, 89, 0.22) 100%
      /* soft coral */
    )
}

.heroSlideContentWrap {
  position: relative;
  z-index: 2;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 88px;
}

.heroSlideContent {
  max-width: 760px;
  color: #fff;
}

.heroIndicators {
  margin-bottom: 2rem;
  z-index: 4;
}

.heroIndicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  border: none;
  margin: 0 6px !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.heroIndicators .active {
  background-color: #fe8800 !important;
}

.heroControl {
  width: 6%;
  z-index: 4;
}

.heroControl .carousel-control-prev-icon,
.heroControl .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background-size: 45% 45%;
  backdrop-filter: blur(8px);
}

/* ================================================================
   11. HERO CONTENT BLOCK (homepage below slider)
   ================================================================ */
.hero {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%,
      rgba(64, 199, 180, 0.16),
      transparent 22%),
    radial-gradient(circle at 84% 22%,
      rgba(255, 122, 89, 0.12),
      transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(91, 63, 211, 0.1), transparent 24%);
  pointer-events: none;
}

.heroWrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 24px;
  align-items: stretch;
}

.heroCardMain {
  padding: 38px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(115deg,
      rgba(16, 10, 36, 0.78) 0%,
      rgba(28, 16, 52, 0.68) 24%,
      rgba(254, 136, 0, 0.22) 52%,
      rgba(255, 122, 89, 0.18) 68%,
      rgba(10, 10, 18, 0.62) 100%),
    linear-gradient(180deg,
      rgba(7, 7, 14, 0.18) 0%,
      rgba(7, 7, 14, 0.10) 24%,
      rgba(7, 7, 14, 0.52) 72%,
      rgba(7, 7, 14, 0.78) 100%),
    radial-gradient(circle at 18% 22%,
      rgba(254, 136, 0, 0.20),
      transparent 34%),
    url("/images/prem-temple.webp") center center / cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.heroBadge i {
  color: #ffb347;
}

.hero h1,
.heroSlideContent h1 {
  font-family: "Cinzel", serif;
  font-size: 35px;
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 760px;
}

.hero h1 span,
.heroSlideContent h1 span,
.heroSlideContent h2 span {
  color: #ffb347;
}

.heroPoints {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0 26px;
}

.heroPoint {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 13px 15px;
  border-radius: 18px;
  backdrop-filter: blur(8px);
  font-weight: 600;
  font-size: 0.95rem;
}

.heroPoint i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  flex-shrink: 0;
}

.heroMiniStats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.heroStat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 16px;
  backdrop-filter: blur(8px);
}

.heroStat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.heroStat span {
  color: rgba(255, 250, 244, 0.82);
  font-size: 0.9rem;
}

.hero .heroSide {
  grid-template-rows: 1fr 1fr;
  height: 100%;
}

.floatingCard {
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(12px);
}

.floatingCard .titleFont {
  font-size: 1.65rem;
  color: var(--primary-dark);
}

.floatingInfo {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.floatingInfo .item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(111, 75, 20, 0.15);
}

.floatingInfo .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.floatingInfo i {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xs);
  display: grid;
  place-items: center;
  background: var(--accent-2);
  color: var(--primary);
  flex-shrink: 0;
}

.enquiryCard {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.enquiryCard h3 {
  font-family: "Cinzel", serif;
  font-size: 1.55rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.enquiryCard p {
  color: var(--muted);
  margin-bottom: 18px;
}

.form-control,
.form-select {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(91, 63, 211, 0.14);
  box-shadow: none;
  padding: 0.85rem 1rem;
  background: #fff;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(91, 63, 211, 0.34);
  box-shadow: 0 0 0 0.2rem rgba(91, 63, 211, 0.08);
}

textarea.form-control {
  min-height: 115px;
  resize: vertical;
}

/* ================================================================
   12. HERO PANELS (inner pages)
   ================================================================ */
.pageHero,
.contactHero {
  padding: 34px 0 24px;
  position: relative;
  overflow: hidden;
}

.pageHero::before,
.contactHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(64, 199, 180, 0.16), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(255, 122, 89, 0.12), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(91, 63, 211, 0.10), transparent 28%);
  pointer-events: none;
}

.heroShell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 24px;
  align-items: stretch;
}

.heroMain {
  border-radius: var(--radius-xl);
  background:
    linear-gradient(115deg,
      rgba(16, 10, 36, 0.78) 0%,
      rgba(28, 16, 52, 0.68) 24%,
      rgba(254, 136, 0, 0.22) 52%,
      rgba(255, 122, 89, 0.18) 68%,
      rgba(10, 10, 18, 0.62) 100%),
    linear-gradient(180deg,
      rgba(7, 7, 14, 0.18) 0%,
      rgba(7, 7, 14, 0.10) 24%,
      rgba(7, 7, 14, 0.52) 72%,
      rgba(7, 7, 14, 0.78) 100%),
    radial-gradient(circle at 18% 22%,
      rgba(254, 136, 0, 0.20),
      transparent 34%),
    url("/images/temple.webp") center center / cover no-repeat;

  color: #fff;
  box-shadow: var(--shadow);
  padding: 34px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 640px;
  justify-content: flex-start;
  isolation: isolate;
}

.heroMain::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(14, 10, 28, 0.56) 0%,
      rgba(14, 10, 28, 0.30) 38%,
      rgba(14, 10, 28, 0.10) 62%,
      rgba(14, 10, 28, 0.18) 100%);
  z-index: 0;
}

.heroMain>* {
  position: relative;
  z-index: 2;
}

.contactHeroMain {
  min-height: 610px;
  justify-content: flex-end;
}

.pageHero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(2.1rem, 2vw, 4rem);
  line-height: 1.08;
  font-weight: 800;
  margin: 0 0 16px;
  max-width: 860px;
  color: #fff;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.38);
}

.pageHero h1 span {
  color: #ffb347;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.heroLead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.08rem;
  line-height: 1.75;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.30);
}

.crumbs,
.heroPill {
  position: relative;
  z-index: 2;
}

.crumbs a,
.crumbs span,
.heroPill {
  color: rgba(255, 255, 255, 0.96);
}

.heroPill {
  width: fit-content;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.heroMeta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.heroMetaItem {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 10px 30px rgba(10, 10, 20, 0.20);
}

.heroMetaItem strong {
  display: block;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.35;
  margin-bottom: 6px;
}

.heroMetaItem span {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.heroActions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* ================================================================
   13. FEATURE STRIP
   ================================================================ */
.featureStrip {
  border-radius: var(--radius-lg);
  padding: 18px;
}

.featureGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.featureItem {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6fffd);
  border: 1px solid rgba(111, 75, 20, 0.08);
}

.featureItem i {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(135deg,
      rgba(91, 63, 211, 0.12),
      rgba(64, 199, 180, 0.14));
  color: var(--primary);
}

.featureItem strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.featureItem span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ================================================================
   14. TOUR CARDS & GRID
   ================================================================ */
.tourGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.tourCard {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease;
}

.tourCard:hover {
  transform: translateY(-8px);
}

.tourMedia {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}

.tourSlider {
  position: relative;
  width: 100%;
  height: 100%;
}

.tourSlides {
  position: relative;
  width: 100%;
  height: 100%;
}

.tourSlides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: tourCardFade 20s infinite;
  transform: scale(1.01);
}

.tourSlides img:nth-child(1) {
  animation-delay: 0s;
}

.tourSlides img:nth-child(2) {
  animation-delay: 4s;
}

.tourSlides img:nth-child(3) {
  animation-delay: 8s;
}

.tourSlides img:nth-child(4) {
  animation-delay: 12s;
}

.tourSlides img:nth-child(5) {
  animation-delay: 16s;
}

@keyframes tourCardFade {
  0% {
    opacity: 0;
  }

  4% {
    opacity: 1;
  }

  20% {
    opacity: 1;
  }

  24% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.tourOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(19, 13, 5, 0.06),
      rgba(19, 13, 5, 0.56));
}

.tourBadgeRow {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  z-index: 2;
}

.tourBadgeGroup {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.tourBadge,
.tourDays {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  backdrop-filter: blur(10px);
}

.tourThumbDots {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.tourThumbDots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fe870079 !important;
  box-shadow: 0 0 0 1px #fe87006e !important;
  animation: tourDotPulse 20s infinite;
}

.tourThumbDots span:nth-child(1) {
  animation-delay: 0s;
}

.tourThumbDots span:nth-child(2) {
  animation-delay: 4s;
}

.tourThumbDots span:nth-child(3) {
  animation-delay: 8s;
}

.tourThumbDots span:nth-child(4) {
  animation-delay: 12s;
}

.tourThumbDots span:nth-child(5) {
  animation-delay: 16s;
}

@keyframes tourDotPulse {

  0%,
  100% {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.58);
  }

  8%,
  20% {
    transform: scale(1.45);
    background: #fff;
  }

  24% {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.58);
  }
}

.tourBody {
  padding: 22px;
}

.tourBody h3 {
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 12px;
  font-weight: 600;
}

.tourCardRating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.tourCardRating .stars {
  display: inline-flex;
  gap: 3px;
  color: #ff9f6b;
}

.tourCardRating .reviews {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 600;
}

.tourMeta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.tourMeta i {
  color: var(--primary);
}

.tourBody p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.tourFooter {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.tourActionGroup {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.tourPrice strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.tourPrice span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ================================================================
   15. STORY / ABOUT SECTION
   ================================================================ */
.storyWrap {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: stretch;
}

.storyMedia {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  height: 100%;
  box-shadow: var(--shadow);
}

.storyMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storyMedia .cardFloat {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(111, 75, 20, 0.08);
}

.storyWrap>div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.storyCards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
  flex-grow: 1;
}

.storyCard {
  padding: 22px;
  border-radius: 24px;
}

.storyCard i {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--accent-2);
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.storyCard h3 {
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 8px;
}

.storyCard p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ================================================================
   16. WHY CHOOSE US CARDS
   ================================================================ */
.whyGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.whyCard {
  padding: 28px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.whyCard::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(233, 191, 102, 0.2),
      transparent 70%);
}

.whyCard i {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,
      rgba(91, 63, 211, 0.12),
      rgba(64, 199, 180, 0.14));
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.whyCard h3 {
  font-size: 1.14rem;
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 12px;
}

.whyCard p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* ================================================================
   17. SACRED DESTINATIONS GRID
   ================================================================ */
.destinationGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.destinationCard {
  border-radius: 26px;
  overflow: hidden;
}

.destinationCard .media {
  position: relative;
  aspect-ratio: 5/5.4;
}

.destinationCard .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destinationCard .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(20, 13, 6, 0) 30%,
      rgba(20, 13, 6, 0.58) 100%);
}

.destinationLabel {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  z-index: 2;
  color: #fff;
}

.destinationLabel span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.destinationLabel h3 {
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  margin: 0 0 6px;
}

.destinationLabel p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 251, 244, 0.88);
}

.destinationBody {
  padding: 22px;
}

.destinationBody ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.destinationBody li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
  font-size: 0.94rem;
}

.destinationBody li i {
  color: var(--primary);
  margin-top: 4px;
}

/* ================================================================
   18. ROUTE / PACKAGE COLLECTIONS
   ================================================================ */
.routeWrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.routeCard {
  padding: 26px;
  border-radius: 26px;
}

.routeCard h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.routeList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.routeList li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(111, 75, 20, 0.12);
  font-size: 0.94rem;
}

.routeList li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.routeList strong {
  color: var(--primary-dark);
}

/* ================================================================
   19. BUS TOURS
   ================================================================ */
.busGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.busCard {
  padding: 28px;
  border-radius: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.busIcon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg,
      rgba(91, 63, 211, 0.12),
      rgba(64, 199, 180, 0.14));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.2rem;
}

.busCard h3 {
  font-size: 1.18rem;
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 10px;
}

.busCard p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* ================================================================
   20. TRUST STATS & INFO STRIP
   ================================================================ */
.trustWrap {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.trustCard {
  padding: 30px;
  border-radius: 30px;
}

/* trust grid and strip grid share the same cell style */
.stripGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stripItem {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(91, 63, 211, 0.1);
  box-shadow: var(--shadow-soft);
}

.trustItem i,
.stripItem i {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,
      rgba(91, 63, 211, 0.12),
      rgba(64, 199, 180, 0.14));
  color: var(--primary);
  flex-shrink: 0;
}

.trustItem strong,
.stripItem strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.trustItem span,
.stripItem span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.trustList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

/* Shared "icon + text" card — used in trust list, FAQ, story, contact */
.trustListItem,
.faqHighlight,
.storyPoint,
.contactPoint {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6fffd);
  border: 1px solid rgba(91, 63, 211, 0.08);
}

.trustListItem i,
.faqHighlight i,
.storyPoint i,
.contactPoint i {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-xs);
  display: grid;
  place-items: center;
  background: var(--accent-2);
  color: var(--primary);
  flex-shrink: 0;
}

.trustStats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  height: 100%;
}

.trustStat {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #f5f3ff);
  border: 1px solid rgba(111, 75, 20, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
}

.trustStat strong {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--primary-dark);
  display: block;
  line-height: 1;
}

.trustStat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}

.statsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.statCard {
  padding: 22px;
  text-align: center;
}

.statCard strong {
  display: block;
  font-family: "Cinzel", serif;
  color: var(--primary-dark);
  font-size: 2rem;
  line-height: 1;
}

.statCard span {
  display: block;
  color: var(--muted);
  font-weight: 600;
  margin-top: 8px;
  font-size: 0.92rem;
}

/* ================================================================
   21. CLIENT GALLERY MARQUEE
   ================================================================ */
.clientGalleryTrack {
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 6px 0;
}

.clientGalleryMove {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeScroll 34s linear infinite;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.clientPic {
  width: 220px;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  flex: 0 0 auto;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(91, 63, 211, 0.08);
}

.clientPic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================================================
   22. REVIEWS
   ================================================================ */
.reviewGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.reviewCard {
  padding: 28px;
  border-radius: 28px;
  position: relative;
}

.reviewCard::before {
  content: "\201C";
  position: absolute;
  right: 22px;
  top: 10px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(91, 63, 211, 0.08);
  font-family: Georgia, serif;
}

.starRow {
  display: flex;
  gap: 6px;
  color: #ff9f6b;
  margin-bottom: 16px;
}

.reviewCard p {
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 18px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewAvatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--rose));
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  color: var(--ink);
}

.reviewer span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ================================================================
   23. BLOG GRID
   ================================================================ */
.blogGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.blogCard {
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blogMedia {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blogMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blogCard:hover .blogMedia img {
  transform: scale(1.06);
}

.blogBody {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blogTag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: var(--accent-2);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: max-content;
}

.blogBody h3 {
  font-size: 1.1rem;
  line-height: 1.45;
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.blogBody p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ================================================================
   24. CTA BAND
   ================================================================ */
.ctaBand {
  border-radius: 34px;
  padding: 34px;
  background: var(--grad-cta);
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.ctaBand::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -20px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.18),
      transparent 70%);
}

.ctaBand .row {
  position: relative;
  z-index: 1;
}

.ctaBand p {
  color: rgba(255, 249, 240, 0.85);
  margin: 10px 0 0;
  line-height: 1.85;
}

/* ================================================================
   25. FAQ
   ================================================================ */
.faqWrap {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.faqIntro,
.faqCard {
  padding: 30px;
  border-radius: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.faqCard .accordion {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.faqHighlights {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  flex-grow: 1;
}

.accordion-item {
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(91, 63, 211, 0.11);
  padding: 6px 0;
  flex-shrink: 0;
}

.accordion-button {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--ink);
  font-weight: 800;
  padding: 1rem 0;
  font-size: 1rem;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
}

.accordion-body {
  padding: 0 0 1rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ================================================================
   26. ITINERARY — SIDEBAR & ENQUIRY
   ================================================================ */
.sideKicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: var(--accent-2);
  border: 1px solid rgba(91, 63, 211, 0.1);
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sideKicker i {
  color: var(--rose);
}

.sideCard {
  padding: 24px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* 3. TEXT OVERFLOW FIX (IMPORTANT) */
.sideList a,
.sideList span {
  word-break: break-word;
  overflow-wrap: break-word;
}

.sideCard h3 {
  font-family: "Cinzel", serif;
  color: var(--primary-dark);
  margin: 0 0 10px;
}

.sidePrice {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0 18px;
  border-bottom: 1px dashed rgba(91, 63, 211, 0.14);
}

.sidePrice strong {
  display: block;
  font-size: 2rem;
  color: var(--primary-dark);
  line-height: 1;
}

.sidePrice span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 5px;
}

.sideRating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.sideRating .stars {
  display: inline-flex;
  gap: 3px;
  color: #ff9f6b;
}

.sideFeatures {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.sideFeatures li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
  font-size: 0.94rem;
}

.sideFeatures i {
  width: 18px;
  color: var(--primary);
  margin-top: 3px;
}

.enquiryForm {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.enquiryForm input[type="text"],
.enquiryForm textarea,
.enquiryForm button {
  grid-column: span 2;
}

.quickContact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.miniCard {
  padding: 22px;
  display: none;
}

.miniCard h3 {
  font-family: "Cinzel", serif;
  color: var(--primary-dark);
  margin: 0 0 10px;
}

.miniStatGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.miniStat {
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f5f3ff);
  border: 1px solid rgba(91, 63, 211, 0.08);
}

.miniStat strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.miniStat span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  margin-top: 6px;
}

/* ================================================================
   27. ITINERARY — CONTENT GRID & CARDS
   ================================================================ */
.infoStrip {
  padding-top: 10px;
}

.contentGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: 24px;
  align-items: start;
}

.contentMain {
  display: grid;
  gap: 22px;
}

.contentCard {
  padding: 30px;
  overflow: hidden;
}

.tourBadges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tourIntroText {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
}

.highlightGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.highlightItem {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f5f3ff);
  border: 1px solid rgba(91, 63, 211, 0.08);
}

.highlightItem i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-2);
  color: var(--primary);
  flex-shrink: 0;
}

.inclusionGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.listCard {
  padding: 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #f6fffd);
  border: 1px solid rgba(91, 63, 211, 0.08);
}

.listCard h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 12px;
}

.checkList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.checkList li {
  display: flex;
  gap: 12px;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.7;
}

.checkList .yes {
  color: #20a56d;
}

.checkList .no {
  color: #d96b5d;
}

/* ================================================================
   28. ITINERARY — TIMELINE / DAY CARDS
   ================================================================ */
.timeline {
  display: grid;
  gap: 18px;
}

.dayCard {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(91, 63, 211, 0.1);
}

.dayBadge {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--grad-hero);
  color: #fff;
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 1.1rem;
}

.dayHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.dayHead h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.dayHead span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  background: var(--accent-2);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
}

.dayCard p {
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.82;
}

.dayList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.dayList li {
  display: flex;
  gap: 12px;
  color: var(--text);
  font-size: 0.95rem;
}

.dayList i {
  color: var(--primary);
  margin-top: 4px;
}

/* ================================================================
   29. ITINERARY — TOUR TABLE
   ================================================================ */
.tableWrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  border: 1px solid rgba(91, 63, 211, 0.1);
}

.tourTable {
  min-width: 700px;
  border-collapse: collapse;
  background: #fff;
  table-layout: fixed;
  width: 100%;
}

.tourTable th,
.tourTable td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(91, 63, 211, 0.08);
  font-size: 0.94rem;
  vertical-align: top;
  line-height: 1.6;
}

.tourTable th {
  background: #f5f3ff;
  color: var(--primary-dark);
  font-weight: 800;
}

.tourTable tr:last-child td {
  border-bottom: none;
}

.tourTable th:nth-child(1),
.tourTable td:nth-child(1) {
  width: 30%;
}

.tourTable th:nth-child(2),
.tourTable td:nth-child(2) {
  width: 15%;
}

.tourTable th:nth-child(3),
.tourTable td:nth-child(3) {
  width: 25%;
}

.tourTable th:nth-child(4),
.tourTable td:nth-child(4) {
  width: 15%;
}

.tourTable th:nth-child(5),
.tourTable td:nth-child(5) {
  width: 15%;
}

/* ================================================================
   30. ITINERARY — GALLERY GRID & RELATED TOURS
   ================================================================ */
.galleryGrid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 14px;
}

.galleryItem {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  box-shadow: var(--shadow-soft);
}

.galleryItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galleryItem.tall {
  grid-row: span 2;
  min-height: 460px;
}

.galleryItem::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(20, 13, 6, 0) 40%,
      rgba(20, 13, 6, 0.42) 100%);
}

.galleryTag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.8rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.relatedTourGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.relatedTourCard {
  overflow: hidden;
}

.relatedTourMedia {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.relatedTourMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.relatedTourCard:hover .relatedTourMedia img {
  transform: scale(1.06);
}

.relatedTourMedia::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(20, 13, 6, 0) 30%,
      rgba(20, 13, 6, 0.56) 100%);
}

.relatedTourTag {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.88);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.relatedTourBody {
  padding: 22px;
}

.relatedTourBody h3 {
  font-size: 1.16rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px;
}

.relatedTourBody p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.72;
}

/* ================================================================
   31. ABOUT PAGE — COMPONENTS
   ================================================================ */

.storyLayout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  align-items: stretch;
}

/* RESPONSIVE IMAGE */
.storyImage {
  width: 100%;
  aspect-ratio: 4/3;
  /* perfect control */
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.storyImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storyHighlights {
  display: grid;
  gap: 14px;
}

.valuesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.valueCard {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.valueCard::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(233, 191, 102, 0.2),
      transparent 70%);
}

.valueCard i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,
      rgba(91, 63, 211, 0.12),
      rgba(64, 199, 180, 0.14));
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.valueCard h3 {
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 10px;
}

.valueCard p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.teamGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.teamCard {
  overflow: hidden;
}

.teamMedia {
  aspect-ratio: 4/4.4;
  overflow: hidden;
}

.teamMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teamBody {
  padding: 22px;
}

.teamBody h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 6px;
}

.teamBody .role {
  display: block;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.teamBody p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.94rem;
}

.founderNote {
  padding: 26px;
  border-radius: 28px;
  background: var(--grad-cta);
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.founderNote::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -20px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.18),
      transparent 70%);
}

.founderNote>* {
  position: relative;
  z-index: 1;
}

.founderNote p {
  color: rgba(255, 249, 240, 0.92);
  line-height: 1.85;
  margin: 0 0 14px;
}

.founderSign {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.founderAvatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
  flex-shrink: 0;
}

/* Shared sidebar list (About / Legal / Contact) */
.sideList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.sideList li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(91, 63, 211, 0.14);
}

.sideList li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sideList i {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xs);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,
      rgba(91, 63, 211, 0.12),
      rgba(64, 199, 180, 0.14));
  color: var(--primary);
  flex-shrink: 0;
}

.sideList strong {
  display: block;
  color: var(--ink);
  margin-bottom: 5px;
}

.sideList span,
.sideList a {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.sideActionGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

/* Quick info/support grids */
.quickInfoGrid,
.quickSupportGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quickInfoItem,
.quickSupportItem {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f5f3ff);
  border: 1px solid rgba(91, 63, 211, 0.08);
}

.quickInfoItem strong,
.quickSupportItem strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1rem;
}

.quickInfoItem span,
.quickSupportItem span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 6px;
  line-height: 1.6;
}

/* ================================================================
   32. LEGAL PAGE — COMPONENTS
   ================================================================ */
.legalLayout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.legalSection {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f6fffd);
  border: 1px solid rgba(91, 63, 211, 0.08);
  margin-bottom: 20px;
}

.legalSection h3 {
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 12px;
}

/* ================================================================
   33. CONTACT PAGE — COMPONENTS
   ================================================================ */
.contactLayout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}

.contactMain {
  display: grid;
  gap: 22px;
}

.contactCard {
  padding: 30px;
}

.contactPoints {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.contactPoint strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 6px;
}

.contactPoint span,
.contactPoint a {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.formGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.formGrid .full {
  grid-column: 1 / -1;
}

.submitRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.contactActionGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.mapCard {
  padding: 0;
  overflow: hidden;
}

.mapFrame {
  aspect-ratio: 16/8;
  background: linear-gradient(135deg,
      rgba(91, 63, 211, 0.14),
      rgba(64, 199, 180, 0.12));
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  font-weight: 800;
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
}

.mapFrame i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.mapOverlay {
  padding: 24px;
}

/* ================================================================
   34. FOOTER
   ================================================================ */
footer {
  border-top: 1px solid rgba(111, 75, 20, 0.09);
  color: var(--muted);
  background: linear-gradient(180deg, #f8f6ff 0%, #eefcfa 100%);
  position: relative;
  overflow: hidden;
}

.footerTop {
  padding: 64px 0 34px;
  position: relative;
}

.footerTop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right,
      rgba(91, 63, 211, 0.08),
      transparent 22%),
    radial-gradient(circle at left bottom,
      rgba(64, 199, 180, 0.1),
      transparent 22%);
  pointer-events: none;
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  gap: 26px;
  position: relative;
  z-index: 1;
}

.footerLinks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footerLinks a {
  color: var(--text);
  transition: color 0.25s ease;
}

.footerLinks a:hover {
  color: var(--primary);
}

.socialRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.socialRow a {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xs);
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(91, 63, 211, 0.1);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}

.socialRow a:hover {
  transform: translateY(-2px);
}

.footerTrustRow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.footerTrustItem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(91, 63, 211, 0.1);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.94rem;
}

.footerTrustItem i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,
      rgba(91, 63, 211, 0.12),
      rgba(64, 199, 180, 0.14));
  color: var(--primary);
  flex-shrink: 0;
}

.footerBottomBar {
  background: var(--grad-topbar);
  color: #fff;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footerBottomInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footerBadges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footerBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.footerBadge i {
  color: #fff;
}

.footerCopy {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ================================================================
   35. RESPONSIVE — Large (≤ 1199px)
   ================================================================ */
@media (max-width: 1199.98px) {

  .heroWrap,
  .heroShell,
  .storyWrap,
  .trustWrap,
  .faqWrap,
  .relatedTourGrid {
    grid-template-columns: 1fr;
  }

  .tourGrid,
  .whyGrid,
  .destinationGrid,
  .blogGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featureGrid,
  .statsGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .routeWrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviewGrid {
    grid-template-columns: 1fr;
  }

  .footerGrid {
    grid-template-columns: 1fr 1fr;
  }

  .footerTrustRow {
    grid-template-columns: repeat(2, 1fr);
  }

  .heroCardMain {
    min-height: auto;
  }

  .storyMedia {
    min-height: 480px;
  }

  .hero .heroSide {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }
}

/* ================================================================
   36. RESPONSIVE — Medium (≤ 991px)
   ================================================================ */
@media (max-width: 991.98px) {
  .sectionSpace {
    padding: 70px 0;
  }

  .sectionSpaceSm {
    padding: 52px 0;
  }

  .heroCardMain {
    padding: 32px;
  }

  .heroPoints,
  .heroMiniStats,
  .storyCards,
  .storyLayout,
  .trustList,
  .trustStats,
  .busGrid,
  .routeWrap,
  .contactPoints,
  .quickInfoGrid,
  .quickSupportGrid,
  .tourGrid,
  .whyGrid,
  .destinationGrid,
  .featureGrid,
  .blogGrid,
  .valuesGrid,
  .teamGrid,
  .reviewGrid,
  .statsGrid,
  .relatedTourGrid {
    grid-template-columns: 1fr;
  }

  .hero .heroSide {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .tourFooter,
  .tourActionGroup {
    align-items: stretch;
  }

  .tourActionGroup {
    width: 100%;
  }

  .tourBtn {
    flex: 1;
  }

  .sidebarSticky {
    position: static;
  }

  .footerGrid,
  .footerTrustRow {
    grid-template-columns: 1fr;
  }

  .footerBottomInner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================================================================
   37. RESPONSIVE — Mobile (≤ 767px)
   ================================================================ */
@media (max-width: 767.98px) {

  .container,
  .container-max {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* All grids → 1 col */
  .heroWrap,
  .heroShell,
  .storyWrap,
  .trustWrap,
  .faqWrap .footerGrid,
  .footerTrustRow,
  .tourGrid,
  .whyGrid,
  .destinationGrid,
  .featureGrid,
  .routeWrap,
  .busGrid,
  .blogGrid,
  .reviewGrid,
  .valuesGrid,
  .teamGrid,
  .statsGrid,
  .storyLayout,
  .storyCards,
  .trustList,
  .trustStats,
  .heroPoints,
  .heroMiniStats,
  .contentGrid,
  .contactPoints,
  .quickInfoGrid,
  .quickSupportGrid,
  .sideActionGrid,
  .contactActionGrid,
  .formGrid,
  .highlightGrid,
  .inclusionGrid,
  .heroMeta,
  .miniStatGrid,
  .relatedTourGrid {
    grid-template-columns: 1fr !important;
  }

  .galleryGrid {
    grid-template-columns: 1fr;
  }

  /* Spacing */
  .sectionSpace {
    padding: 52px 0;
  }

  .sectionSpaceSm {
    padding: 48px 0;
  }

  .pageHero {
    padding: 24px 0 18px;
  }

  .footerTop {
    padding: 44px 0 24px;
  }

  /* Hero panels */
  .heroMain .heroCardMain {
    padding: 22px 18px;
    border-radius: 20px;
  }

  /* Card radii */
  .miniCard,
  .contentCard,
  .sideCard,
  .faqCard,
  .faqIntro,
  .reviewCard,
  .relatedTourCard,
  .blogCard,
  .storyCard,
  .valueCard,
  .whyCard,
  .busCard,
  .routeCard {
    border-radius: var(--radius-md);
  }

  /* Hero headings */
  .pageHero h1 {
    font-size: clamp(1.5rem, 5vw, 2.75rem);
    line-height: 1.14;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .heroSlideContent h1 {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
    line-height: 1.14;
  }

  /* Hero shared */
  .heroBadge {
    font-size: 0.75rem;
    padding: 8px 12px;
    margin-bottom: 14px;
  }

  .heroLead {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .crumbs {
    font-size: 0.84rem;
    margin-bottom: 14px;
  }

  .heroPill {
    width: 100%;
    font-size: 0.76rem;
    padding: 8px 12px;
    white-space: normal;
    line-height: 1.4;
  }

  .heroMetaItem {
    padding: 14px 15px;
    border-radius: 16px;
  }

  .heroMetaItem strong {
    font-size: 1.1rem;
  }

  .heroMetaItem span {
    font-size: 0.86rem;
  }

  .heroActions,
  .submitRow {
    flex-direction: column;
    align-items: stretch;
  }

  .heroActions .btnTemple,
  .heroActions .btnGhost,
  .heroActions a,
  .btnOutlineTemple,
  .btnOutlineTemplePill,
  .contactActionBtn,
  .chipBtn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Homepage hero */
  .hero {
    padding: 24px 0;
    min-height: auto;
  }

  .heroWrap {
    gap: 18px;
  }

  .heroPoint {
    font-size: 0.85rem;
    padding: 10px 12px;
  }

  .heroPoint i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .heroStat {
    padding: 12px;
  }

  .heroStat strong {
    font-size: 1.1rem;
  }

  .heroStat span {
    font-size: 0.86rem;
  }

  .floatingCard,
  .enquiryCard {
    padding: 18px;
    border-radius: 18px;
  }

  .floatingInfo .item {
    padding: 10px 0;
  }

  .floatingInfo i {
    width: 38px;
    height: 38px;
  }

  /* Slider */
  .mainHeroSlider .carousel,
  .mainHeroSlider .carousel-inner,
  .mainHeroSlider .carousel-item,
  .heroSlideContentWrap {
    min-height: 72vh;
  }

  .heroSlideContentWrap {
    padding-top: 38px;
    padding-bottom: 72px;
  }

  .heroSlideContent {
    max-width: 100%;
  }

  .heroControl {
    display: none;
  }

  .heroIndicators {
    margin-bottom: 1.2rem;
  }

  /* Section headings */
  .secHead {
    margin-bottom: 20px;
  }

  .secHead h2,
  .sectionTitle,
  .contentTitle,
  .pageTitle,
  .contactTitle {
    font-size: clamp(1.65rem, 7.8vw, 2.2rem);
    line-height: 1.2;
  }

  .secHead p,
  .sectionText {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .secKicker {
    font-size: 0.7rem;
    padding: 6px 10px;
    margin-bottom: 12px;
  }

  /* Feature strip */
  .featureStrip {
    padding: 14px;
  }

  .featureItem {
    padding: 14px 15px;
    border-radius: 16px;
  }

  .featureItem i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  /* Tour cards */
  .tourGrid {
    gap: 16px;
  }

  .tourMedia {
    aspect-ratio: 16/10;
  }

  .tourBody {
    padding: 18px;
  }

  .tourBody h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
  }

  .tourMeta {
    gap: 10px;
    font-size: 0.88rem;
    margin-bottom: 10px;
  }

  .tourBody p {
    font-size: 0.92rem;
    line-height: 1.68;
    margin-bottom: 14px;
  }

  .tourCardRating {
    margin-bottom: 10px;
    font-size: 0.84rem;
    flex-wrap: wrap;
  }

  .tourBadgeRow {
    top: 12px;
    left: 12px;
    right: 12px;
    gap: 8px;
  }

  .tourBadge,
  .tourDays {
    padding: 7px 10px;
    font-size: 0.74rem;
  }

  .tourThumbDots {
    bottom: 10px;
  }

  .tourPrice strong {
    font-size: 1.05rem;
  }

  .tourPrice span {
    font-size: 0.78rem;
  }

  .tourActionGroup {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .tourBtn {
    min-width: 0;
    padding: 12px;
    border-radius: 14px;
    font-size: 0.9rem;
  }

  /* Story */
  .storyMedia {
    min-height: 260px;
    height: 260px;
    border-radius: 24px;
  }

  .storyMedia .cardFloat {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 250, 244, 0.95);
    backdrop-filter: blur(6px);
  }

  .storyCard i,
  .whyCard i,
  .busIcon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .storyCard h3,
  .whyCard h3,
  .busCard h3 {
    font-size: 1rem;
  }

  /* Destinations */
  .destinationCard .media {
    aspect-ratio: 16/11;
  }

  .destinationLabel {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .destinationLabel h3 {
    font-size: 1.15rem;
  }

  .destinationBody {
    padding: 18px;
  }

  .destinationBody li {
    font-size: 0.9rem;
  }

  /* Route / bus */
  .routeCard {
    padding: 20px;
  }

  .routeList li {
    font-size: 0.9rem;
    gap: 10px;
  }

  .routeList strong {
    font-size: 0.84rem;
  }

  .busCard {
    padding: 18px;
    gap: 14px;
  }

  /* Trust / shared icon+text items */
  .trustCard {
    padding: 20px;
  }

  .trustStat {
    min-height: auto;
    padding: 18px;
    border-radius: 18px;
  }

  .trustStat strong {
    font-size: 1.45rem;
  }

  .trustListItem,
  .faqHighlight,
  .storyPoint,
  .trustItem,
  .stripItem,
  .contactPoint {
    padding: 14px;
    border-radius: 16px;
  }

  .trustListItem i,
  .faqHighlight i,
  .storyPoint i,
  .trustItem i,
  .stripItem i,
  .contactPoint i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  /* Marquee */
  .clientGalleryTrack {
    padding: 4px 0;
  }

  .clientPic {
    width: 160px;
    height: 200px;
    border-radius: 18px;
  }

  .clientGalleryMove {
    gap: 12px;
  }

  /* Blog */
  .blogGrid {
    gap: 16px;
  }

  .blogMedia {
    aspect-ratio: 16/9;
  }

  .blogBody {
    padding: 18px;
    gap: 10px;
  }

  .blogBody h3 {
    font-size: 1rem;
  }

  .blogBody p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .blogTag {
    font-size: 0.68rem;
    padding: 6px 10px;
  }

  /* Reviews */
  .reviewCard {
    padding: 20px;
    border-radius: 22px;
  }

  .reviewCard p {
    font-size: 0.93rem;
    line-height: 1.72;
  }

  .reviewAvatar {
    width: 46px;
    height: 46px;
  }

  /* CTA */
  .ctaBand {
    padding: 22px;
    border-radius: 24px;
  }

  .ctaBand .btnTemple,
  .ctaBand .btnGhost {
    width: 100%;
    margin-right: 0 !important;
  }

  .ctaBand .col-lg-4 {
    display: grid;
    gap: 10px;
  }

  /* Accordion */
  .accordion-button {
    font-size: 0.93rem;
    padding: 0.9rem 0;
    line-height: 1.44;
  }

  .accordion-body {
    font-size: 0.91rem;
    line-height: 1.72;
  }

  /* FAQ */
  .faqCard,
  .faqIntro {
    padding: 20px;
  }

  /* Itinerary */
  .sidePrice strong {
    font-size: 1.65rem;
  }

  .quickContact {
    grid-template-columns: 1fr;
  }

  .miniCard {
    display: block;
  }

  .contentCard {
    padding: 22px;
  }

  .tourIntroText {
    font-size: 0.96rem;
    line-height: 1.78;
  }

  .highlightItem,
  .listCard {
    padding: 14px;
    border-radius: 18px;
  }

  .dayCard {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
  }

  .dayBadge {
    min-height: 66px;
    border-radius: 16px;
  }

  .dayHead h3 {
    font-size: 1.06rem;
  }

  .dayHead span {
    font-size: 0.74rem;
  }

  .dayCard p,
  .dayList li {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .tourTable th,
  .tourTable td {
    padding: 12px 13px;
    font-size: 0.88rem;
    white-space: normal;
    word-break: break-word;
  }

  .galleryItem,
  .galleryItem.tall {
    min-height: 240px;
    border-radius: 20px;
  }

  /* Contact */
  .contactCard {
    padding: 20px;
  }

  .form-control,
  .form-select {
    min-height: 48px;
    border-radius: 14px;
    padding: 0.78rem 0.92rem;
    font-size: 0.95rem;
  }

  textarea.form-control {
    min-height: 110px;
  }

  /* About */
  .storyImage {
    min-height: 300px;
    border-radius: 22px;
  }

  .valueCard {
    padding: 20px;
  }

  .founderNote {
    padding: 20px;
  }

  .teamBody {
    padding: 18px;
  }

  .statCard {
    padding: 18px;
  }

  /* Footer */
  .footerGrid {
    gap: 22px;
  }

  .footerTop p {
    font-size: 0.9rem;
    line-height: 1.6;
    word-break: break-word;
  }

  .navbar-brand {
    flex-wrap: wrap;
    gap: 8px;
  }

  .brandText span {
    font-size: 0.95rem;
  }

  .socialRow {
    gap: 10px;
  }

  .socialRow a {
    width: 38px;
    height: 38px;
  }

  .footerTrustRow {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .footerTrustItem {
    font-size: 0.8rem;
    padding: 12px;
  }

  .footerBottomInner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footerBadges {
    flex-wrap: wrap;
    gap: 8px;
  }

  .footerBadge {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .footerCopy {
    font-size: 0.84rem;
  }
}

/* MOBILE VIEW → COLUMN */
@media (max-width: 768px) {

  .stripGrid,
  .stripGrid,
  .relatedTourGrid {
    grid-template-columns: 1fr !important;
  }

  .stripItem,
  .trustItem {
    width: 100%;
  }

  .storyMedia .cardFloat {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .cardFloat strong {
    font-size: 1rem !important;
    line-height: 1.4;
  }

  .cardFloat span {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .secKicker {
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  .storyMedia {
    height: 260px;
    /* fixed mobile height */
  }

  .storyMedia {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .storyMedia .cardFloat {
    position: static;
    margin-top: 12px;
  }
}


/* Internal Linking */

.sideLinksBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(64, 199, 180, 0.12), rgba(91, 63, 211, 0.08));
  border: 1px solid rgba(91, 63, 211, 0.12);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.sideLinksBadge i {
  color: var(--rose);
  font-size: 12px;
}

.sideLinksTitle {
  margin: 0 0 10px;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 500;
  color: var(--primary-dark);
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.4px;
  position: relative;
  z-index: 1;
}

.sideLinksText {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.sideLinksList {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.sideLinkItem {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(91, 63, 211, 0.12);
  border-radius: 18px;
  padding: 14px 14px;
  transition: all 0.28s ease;
  box-shadow: 0 6px 18px rgba(38, 21, 95, 0.04);
}

.sideLinkItem:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 63, 211, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 248, 246, 0.75));
  box-shadow: 0 14px 28px rgba(38, 21, 95, 0.10);
}

.sideLinkContent {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.sideLinkContent strong {
  font-size: 15.5px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.sideLinkContent small {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
}

.sideLinkArrow {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 63, 211, 0.08);
  color: var(--primary);
  transition: all 0.28s ease;
}

.sideLinkItem:hover .sideLinkArrow {
  background: var(--primary);
  color: var(--white);
  transform: translateX(2px);
}

/* sticky sidebar optional */
.stickySidebar {
  position: sticky;
  top: 110px;
}

/* responsive */
@media (max-width: 991px) {
  .sideLinksCard {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .sideLinksTitle {
    font-size: 32px;
  }

  .sideLinkItem {
    padding: 13px 12px;
  }
}

@media (max-width: 575px) {
  .sideLinksTitle {
    font-size: 28px;
  }

  .sideLinksText {
    font-size: 14px;
  }

  .sideLinkIcon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 15px;
  }

  .sideLinkContent strong {
    font-size: 14.5px;
  }

  .sideLinkContent small {
    font-size: 12px;
  }
}

/* pop up form */
.qp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(29, 26, 47, 0.58);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all .28s ease;
}

.qp-overlay.active {
  opacity: 1;
  visibility: visible;
}

.qp-modal {
  position: relative;
  width: 100%;
  max-width: 430px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(254, 136, 0, 0.12);
  box-shadow: 0 25px 70px rgba(29, 26, 47, 0.22);
  transform: translateY(20px) scale(.96);
  transition: all .28s ease;

  max-height: calc(100dvh - 28px);
  display: flex;
  flex-direction: column;
}

.qp-overlay.active .qp-modal {
  transform: translateY(0) scale(1);
}

.qp-top {
  position: relative;
  padding: 22px 20px 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 179, 71, .22), transparent 40%),
    linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  flex-shrink: 0;
}

.qp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: 12px;
}

.qp-top h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.qp-top p {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  line-height: 1.65;
  padding-right: 36px;
}

.qp-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: .25s ease;
}

.qp-close:hover {
  background: rgba(255, 255, 255, .3);
  transform: rotate(90deg);
}

.qp-body {
  padding: 18px 20px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.qp-body::-webkit-scrollbar {
  width: 6px;
}

.qp-body::-webkit-scrollbar-thumb {
  background: rgba(254, 136, 0, .25);
  border-radius: 20px;
}

.qp-form {
  display: grid;
  gap: 12px;
}

.qp-field {
  display: grid;
  gap: 7px;
}

.qp-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.qp-input,
.qp-textarea {
  width: 100%;
  border: 1px solid rgba(80, 74, 104, 0.14);
  background: #f4f0ed;
  color: var(--ink);
  border-radius: 16px;
  padding: 13px 14px;
  font-size: 14px;
  outline: none;
  transition: .25s ease;
}

.qp-input {
  height: 48px;
}

.qp-input:focus,
.qp-textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(254, 136, 0, 0.12);
}

.qp-textarea {
  min-height: 90px;
  resize: vertical;
}

.qp-btn {
  border: 0;
  border-radius: 16px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(254, 136, 0, 0.22);
  transition: .25s ease;
  margin-top: 4px;
}

.qp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(254, 136, 0, 0.28);
}

.qp-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.55;
}

.open-popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(254, 136, 0, 0.2);
}

@media (max-width: 575px) {
  .qp-overlay {
    padding: 10px;
    align-items: center;
  }

  .qp-modal {
    max-width: 100%;
    max-height: calc(100dvh - 20px);
    border-radius: 18px;
  }

  .qp-top {
    padding: 18px 16px 14px;
  }

  .qp-top h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .qp-top p {
    font-size: 13px;
    line-height: 1.5;
    padding-right: 28px;
  }

  .qp-badge {
    font-size: 11px;
    padding: 6px 10px;
    margin-bottom: 10px;
  }

  .qp-close {
    width: 34px;
    height: 34px;
    top: 10px;
    right: 10px;
    font-size: 20px;
  }

  .qp-body {
    padding: 14px 16px 16px;
  }

  .qp-form {
    gap: 10px;
  }

  .qp-field {
    gap: 6px;
  }

  .qp-field label {
    font-size: 12px;
  }

  .qp-input,
  .qp-textarea {
    font-size: 14px;
    border-radius: 14px;
    padding: 12px 13px;
  }

  .qp-input {
    height: 44px;
  }

  .qp-textarea {
    min-height: 78px;
  }

  .qp-btn {
    padding: 13px 16px;
    font-size: 14px;
    border-radius: 14px;
  }

  .qp-note {
    font-size: 11px;
    margin-top: 8px;
  }
}

@media (max-height: 700px) {
  .qp-top {
    padding: 16px 16px 12px;
  }

  .qp-top h3 {
    font-size: 18px;
  }

  .qp-top p {
    font-size: 12px;
    line-height: 1.45;
  }

  .qp-body {
    padding: 12px 16px 14px;
  }

  .qp-form {
    gap: 9px;
  }

  .qp-input {
    height: 42px;
  }

  .qp-textarea {
    min-height: 70px;
  }

  .qp-btn {
    padding: 12px 14px;
  }
}

.floatBtn {
  position: fixed;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  /* not circle = unique look */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

/* Call Button */
.callBtn {
  left: 16px;
  bottom: 20px;
  background: linear-gradient(135deg, #fe8800, #ff7a59);
}

/* Hover Effect */
.floatBtn:hover {
  transform: translateY(-3px);
}

/* Mobile adjust */
@media (max-width: 768px) {
  .floatBtn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

.waWidget {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 999999;
  font-family: Arial, sans-serif;
}

.waFloatingBtn {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.waPopup {
  width: 320px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  position: absolute;
  right: 0;
  bottom: 74px;
  display: block; /* default open */
}

.waPopupHeader {
  background: #25d366;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.waPopupBrand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.waPopupLogo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.waPopupLogo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.waPopupText strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}

.waPopupText span {
  display: block;
  font-size: 12px;
  opacity: 0.95;
  margin-top: 2px;
}

.waClose {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
}

.waPopupBody {
  background: #f5f5f5;
  padding: 14px;
}

.waMessageCard {
  max-width: 185px;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.waMessageCard strong {
  display: block;
  color: #222;
  margin-bottom: 8px;
  font-size: 13px;
}

.waMessageCard p {
  margin: 0 0 6px;
  color: #333;
  font-size: 12px;
  line-height: 1.45;
}

.waMessageCard p:last-child {
  margin-bottom: 0;
}

.waPopupFooter {
  background: #f5f5f5;
  padding: 0 14px 14px;
}

.waStartChat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 16px;
  border-radius: 999px;
  font-size: 18px;
}

.waStartChat i {
  font-size: 18px;
}

.waPopup.is-hidden {
  display: none;
}

@media (max-width: 575px) {
  .waWidget {
    right: 12px;
    bottom: 12px;
  }

  .waPopup {
    width: 290px;
    bottom: 70px;
  }

  .waFloatingBtn {
    width: 54px;
    height: 54px;
    font-size: 26px;
  }
}

.qp-captcha-wrap{
  display:flex;
  gap:10px;
  align-items:center;
}

.qp-captcha-question{
  min-width:90px;
  padding:12px;
  border-radius:8px;
  background:#f5f5f5;
  font-weight:700;
  text-align:center;
}

.qp-refresh{
  cursor:pointer;
  font-size:22px;
  user-select:none;
}
.shortCaptchaWrap{
  display:flex;
  gap:10px;
  align-items:center;
}

.shortCaptchaQuestion{
  min-width:95px;
  padding:12px;
  border-radius:8px;
  background:#f5f5f5;
  font-weight:700;
  text-align:center;
}

.shortCaptchaRefresh{
  font-size:22px;
  cursor:pointer;
  user-select:none;
}

@media(max-width:768px){
  .shortCaptchaWrap{
    flex-direction:column;
    align-items:stretch;
  }
}