/* ===============================
   STEP 1 — DESIGN TOKENS
================================ */
:root {
  /* Brand */
  --primary: #0b5cff;
  --primary-dark: #083fae;

  /* Backgrounds */
  --bg-page: #f4f7fb;
  --bg-surface: #ffffff;

  /* Text */
  --text-main: #000000;
  --text-muted: #2e333b;

  /* Borders & Radius */
  --border-light: #e6edf5;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  /* Shadows */
  --shadow-sm: 0 0 2px 2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 0 2px 2px rgba(15, 23, 42, 0.08);

  /* Layout */
  --container-max: 1400px;
  --container-pad: 32px;
}

/* ===============================
   STEP 1 — RESET
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Inter, sans-serif;
  color: var(--text-main);
  background: var(--bg-page);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ===============================
   STEP 1 — TOUR PAGE WRAPPER
================================ */
.tour-page {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 32px var(--container-pad) 96px;
}

/* ===============================
   STEP 1 — RESPONSIVE BASE
================================ */
@media (max-width: 1024px) {
  .tour-page {
    padding: 28px 24px 88px;
  }
}

@media (max-width: 600px) {
  :root {
    --container-pad: 16px;
  }

  .tour-page {
    padding: 20px 16px 80px;
  }
}

/* ===============================
   STEP 2 — TOUR CONTENT GRID
================================ */
.tour-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 64px;
  align-items: start;
  margin-top: 32px;
}

.tour-left {
  min-width: 0;
}

.tour-right {
  position: relative;
}



/* ===============================
   STEP 2 — TABLET (≤1024px)
================================ */
@media (max-width: 1024px) {
  .tour-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

 /* 🔑 KEEP NORMAL FLOW */
  .tour-left {
    order: 0;
  }

  .tour-right {
    order: 1;
  }
}

/* ===============================
   STEP 2 — MOBILE (≤600px)
================================ */
@media (max-width: 600px) {
  .tour-content {
    gap: 20px;
  }
}




/* ===============================
   STEP 3 — TOUR HERO (FINAL, STABLE)
================================ */

.tour-hero {
  margin-bottom: 10px;
}

/* ===============================
   DESKTOP HERO (LAPTOP + DESKTOP + iPad Pro)
================================ */

.hero-desktop {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 12px;
  height: 450px;
  border-radius: 22px;
  overflow: hidden;
}

/* LEFT MAIN IMAGE */
.hero-main {
  height: 100%;
  overflow: hidden;
}

.hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* RIGHT SIDE GRID */
.hero-side {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 100%;
}

/* SIDE TILE WRAPPER */
.hero-side > div {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* SIDE IMAGES */
.hero-side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ==================================================
   MOBILE + TABLET HERO SLIDER (BASE)
================================================== */

.hero-slider {
  display: none;          /* 🔑 visibility controlled by media queries */
  overflow: hidden;
  border-radius: 16px;
  flex-wrap: nowrap;
}

.hero-slider img {
  min-width: 100%;        /* 🔑 one image only */
  width: 100%;
  height: 260px;          /* overridden by breakpoints */
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  cursor: pointer;
}

/* DOTS — FINAL FIX */
.hero-dots {
  display: none;
  width: 100%;
  min-height: 24px;              /* 🔑 FORCE HEIGHT */
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 0px;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #94a3b8;           /* 🔑 DARKER, VISIBLE */
}

.hero-dots span.active {
  background: var(--primary);
}

.hero-slider-track {
  display: flex;
  transition: transform 0.35s ease;
}

.hero-slider-track img {
  min-width: 100%;
  flex-shrink: 0;
}


/* ==================================================
   FULLSCREEN MODAL SLIDER
================================================== */

.slider-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
}

.slider-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SLIDER TRACK */
.slider-track {
  display: flex;
  height: 100vh;
  width: fit-content;
  min-width: 100%;
  transition: transform 0.35s ease;
}

/* EACH SLIDE */
.slider-track img {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  object-fit: contain;
}

/* CLOSE BUTTON */
.slider-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 22px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

/* NAVIGATION */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  font-size: 28px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.modal-prev { left: 20px; }
.modal-next { right: 20px; }

/* COUNTER */
.slider-count {
  position: absolute;
  top: 20px;
  right: 80px;
  color: #fff;
  font-size: 14px;
}

/* CTA */
.slider-cta {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 14.5px;
  cursor: pointer;
}

/* ==================================================
   RESPONSIVE SWITCH (FINAL & CORRECT)
================================================== */

/* MOBILE PHONES (≤600px) */
@media (max-width: 600px) {
  .hero-desktop {
    display: none;
  }

  .hero-slider {
    display: flex;
  }

  .hero-dots {
    display: flex;
  }

  .hero-slider img {
    height: 220px;
  }
}

/* TABLETS (iPad Mini + iPad Air) */
@media (min-width: 601px) and (max-width: 1199px) {
  .hero-desktop {
    display: none;
  }

  .hero-slider {
    display: flex;
  }

  .hero-dots {
    display: flex;
  }

  .hero-slider img {
    height: 400px;
  }
}

/* DESKTOP + iPad Pro (≥1200px) */
@media (min-width: 1200px) {
  .hero-desktop {
    display: grid;
  }

  .hero-slider,
  .hero-dots {
    display: none;
  }
}










/* ===============================
   STEP 4 — TOUR TITLE
================================ */
.tour-title {
  margin: 24px 0 28px;
}

.tour-title h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin: 0 0 8px;
}


/* ===============================
   STEP 4 — META ROW
================================ */
.tour-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

/* ===============================
   STEP 4 — RATING
================================ */
.tour-meta .stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 20px;       /* slightly smaller */
  color: #f59e0b;
  line-height: 1.2;      /* 🔑 FIX */
}

.tour-meta .stars span {
  font-size: 14.5px;     /* 🔑 better visual balance */
  color: #000;
  font-weight: 500;
  line-height: 1.2;
}

/* ===============================
   STEP 4 — BADGES
================================ */
.badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;

  font-size: 12.5px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;

  box-shadow:
    0 0 2px rgb(27 84 206), inset 0 0 2px rgb(27 84 206);
    background: #202dbc;
    color: white;
}

/* ===============================
   POPULAR (Cool Blue)
================================ */
.badge-popular {
  background: linear-gradient(
    180deg,
    #e0f7fa 0%,
    #ecfeff 100%
  );
  color: #0369a1;
  border-color: #bae6fd;
}

/* ===============================
   BEST SELLER (Warm Premium)
================================ */
.badge-bestseller {
  background: linear-gradient(
    180deg,
    #2563eb 0%,
    #1d4ed8 100%
  );
  color: #ffffff;
}

/* ===============================
   LIMITED (Urgent, Elegant Red)
================================ */
.badge-limited {
  background: linear-gradient(
    180deg,
    #fee2e2 0%,
    #fef2f2 100%
  );
  color: #b91c1c;
  border-color: #fecaca;
}

/* ===============================
   STEP 4 — RESPONSIVE TITLE
================================ */
@media (max-width: 1024px) {
  .tour-title h1 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .tour-title {
    margin: 20px 0 24px;
  }

  .tour-title h1 {
    font-size: 22px;
  }

  .tour-meta {
    gap: 10px 14px;
  }
}







/* ===============================
   STEP 5 — OVERVIEW
================================ */
.tour-overview {
  margin-bottom: 20px;
}

.tour-overview h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}

.overview-text {
  font-size: 15.5px;
  color: var(--text-main);
  line-height: 1.65;
  max-height: 4.9em; /* ~3 lines */
  overflow: hidden;
  position: relative;
  margin:0;
}

.overview-text.expanded {
  max-height: none;
}

.overview-toggle {
  margin-top: 8px;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
}

/* ===============================
   STEP 5 — ABOUT ACTIVITY
================================ */
.about-activity {
  margin-bottom: 10px;
}

.about-activity h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}

/* ===============================
   STEP 5 — ACTIVITY ROWS
================================ */
.activity-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 8px 0;
}

.activity-row:not(:last-child) {
  border-bottom: 1px solid var(--border-light);
}

.activity-icon {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.activity-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.activity-row h3 {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 4px;
}

.activity-row p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ===============================
   STEP 5 — MOBILE TUNING
================================ */
@media (max-width: 600px) {
  .tour-overview h2,
  .about-activity h2 {
    font-size: 18px;
  }

  .overview-text {
    font-size: 15px;
  }

 
  .activity-row {
    gap: 12px;
  }
}







/* ===============================
   STEP 6 — ACCORDION (FINAL STYLE)
================================ */

.tour-page .accordion {
  border-top: 1px solid var(--border-light);
  padding: 14px 0;
}

/* ✅ new */
.tour-page .accordion-includes {
  border-bottom: 1px solid var(--border-light);
}

/* HEADER */
.accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-toggle h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-align: left;
}

/* ARROW */
.accordion .arrow {
  width: 14px;
  height: 14px;
  border-right: 2px solid #334155;
  border-bottom: 2px solid #334155;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.accordion.open .arrow {
  transform: rotate(-135deg);
}

/* CONTENT */
.tour-page .accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-top: 12px;
}

/* ===============================
   HIGHLIGHTS LIST
================================ */
.highlight-list {
  padding-left: 18px;
  margin: 0px 0 0;
}

.highlight-list li {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 8px;
}

/* ===============================
   FULL DESCRIPTION
================================ */
.description-text {
  max-height: 180px;     /* 🔑 limited view */
  overflow: hidden;
}

.description-text.expanded {
  max-height: none;
}

.description-text h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin: 16px 0 6px;
}

.description-text p {
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0 0 12px;
}

/* SEE MORE */
.see-more-btn {
  margin-top: 6px;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
}

/* ===============================
   INCLUDES LIST
================================ */
.include-list {
  list-style: none;
  padding: 8px 0 0;
  margin: 0;
}

.include-list li {
  position: relative;
    padding: 6px 0 3px 20px;
    font-size: 15.5px;
    line-height: 1.0;
    font-weight: 450;
}

/* ✅ GREEN CHECK */
.include-yes::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  background-color: #059669; /* GREEN */

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M7.6 13.2L3.9 9.5l1.4-1.4 2.3 2.3 6.1-6.1 1.4 1.4z'/%3E%3C/svg%3E") no-repeat center;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M7.6 13.2L3.9 9.5l1.4-1.4 2.3 2.3 6.1-6.1 1.4 1.4z'/%3E%3C/svg%3E") no-repeat center;
}

/* ❌ RED CROSS */
.include-no::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  background-color: #dc2626; /* RED */

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M6.4 5l3.6 3.6L13.6 5 15 6.4 11.4 10 15 13.6 13.6 15 10 11.4 6.4 15 5 13.6 8.6 10 5 6.4z'/%3E%3C/svg%3E") no-repeat center;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M6.4 5l3.6 3.6L13.6 5 15 6.4 11.4 10 15 13.6 13.6 15 10 11.4 6.4 15 5 13.6 8.6 10 5 6.4z'/%3E%3C/svg%3E") no-repeat center;
}



/* ===============================
   MOBILE TWEAK
================================ */
@media (max-width: 600px) {
  .accordion-toggle h2 {
    font-size: 18px;
  }
  
  .description-text {
    max-height: 140px;
  }
  
}

/* =========================================
   iOS SAFARI FIX — FORCE BLACK HEADINGS
========================================= */

/* Accordion headings */
.accordion-toggle,
.accordion-toggle h2 {
  color: var(--text-main) !important;
  -webkit-text-fill-color: var(--text-main);
}









/* ===============================
   STEP 7 — BOOKING SECTION
================================ */
.booking-section {
  margin: 20px 0;
}

/* ===============================
   STEP 7 — PRICE WIDGET WRAP
================================ */
.price-widget-wrap {
  width: 100%;
}

/* ===============================
   STEP 7 — PRICE WIDGET
================================ */
.price-widget {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px 24px 24px;
  box-shadow: var(--shadow-md);
}

/* ===============================
   STEP 7 — PRICE DISPLAY
================================ */
.pw-price {
  margin-bottom: 14px;
}

.pw-old {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pw-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pw-new {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.pw-per {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ===============================
   STEP 7 — TRUST ROW
================================ */
.pw-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  color: #059669;
  margin-bottom: 18px;
}

/* ===============================
   STEP 7 — CTA BUTTON
================================ */
.pw-btn {
  width: 100%;
  height: 52px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
  );
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(11, 92, 255, 0.35);
  transition: transform .15s ease, box-shadow .15s ease;
}

.pw-btn:hover {
  transform: translateY(-1px);
}

.pw-btn:active {
  transform: scale(0.98);
}

/* ===============================
   STEP 7 — POLICY NOTE
================================ */
.pw-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .price-widget {
    box-shadow: var(--shadow-sm);
  }
}

@media (max-width: 600px) {
  .price-widget {
    padding: 20px;
  }

  .pw-new {
    font-size: 24px;
  }
}

/* ===============================
   STEP 7 — PRICE WIDGET VISIBILITY
================================ */

/* Hide on mobile + tablets (phones, iPad Mini, iPad Air) */
/* Sidebar always visible */
.tour-right {
  display: block;
}

/* Price widget desktop only */
@media (max-width: 1199px) {
  .price-widget-wrap {
    display: none;
  }
}


/* Show only on Desktop + iPad Pro */
@media (min-width: 1200px) {
  .price-widget-wrap {
    display: block; /* or flex if needed */
  }
}

/* Desktop + iPad Pro only */
@media (min-width: 1200px) {
  .tour-right .price-widget-wrap {
    display: block;
    position: sticky;
    top: 96px; /* below header */
  }
}






/* ===============================
   STEP 8 — FAQ
================================ */
.faq-box {
  margin: 20px 0;
}

.faq-box h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
}

/* ===============================
   STEP 8 — FAQ ITEMS
================================ */
.faq-item {
  border-top: 1px solid #b6b7ba;
}

.faq-item:first-child {
  border-top: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.faq-question span {
  font-size: 20px;
  color: var(--primary);
}

.faq-answer {
  height: auto !important;
  max-height: 0;
  overflow: hidden;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  padding-bottom: 8px;
}

/* =========================================
   iOS SAFARI FIX — FORCE BLACK HEADINGS
========================================= */

/* FAQ question text */
.faq-question,
.faq-question h3 {
  color: var(--text-main) !important;
  -webkit-text-fill-color: var(--text-main);
}

/* Prevent iOS blue tap highlight */
.accordion-toggle,
.faq-question {
  -webkit-tap-highlight-color: transparent;
}

/* Ensure icons stay styled */
.faq-question span {
  color: var(--primary); /* keep + icon blue */
}




/* ===============================
   RELATED TOURS — CAROUSEL
================================ */

.related-section {
  margin: 32px 0;
}

.related-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Viewport */
.related-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
}

/* Hide scrollbar (clean look) */
.related-viewport::-webkit-scrollbar {
  display: none;
}
.related-viewport {
  scrollbar-width: none;
}

/* Carousel row */
.related-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 18px;
  padding-bottom: 4px;
}

/* Desktop: exactly ~5 cards visible */
@media (min-width: 1200px) {
  .related-carousel {
    grid-auto-columns: 260px; /* forces overflow */
  }
}

/* Tablet */
@media (max-width: 1199px) {
  .related-carousel {
    grid-auto-columns: 280px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .related-carousel {
    grid-auto-columns: 85%;
  }
}

.related-isolated {
  padding: 0;
}

/* ===============================
   RELATED TOURS — ARROWS
================================ */

.related-wrapper {
  position: relative;
}

/* Arrows base */
.related-arrow {
  display: none;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  font-size: 26px;
  font-weight: 600;
  cursor: pointer;
  z-index: 5;
}

/* Arrow positions */
.related-arrow.left {
  left: -22px;
}

.related-arrow.right {
  right: -22px;
}

/* Show arrows ONLY on desktop / iPad Pro */
@media (min-width: 1025px) {
  .related-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Hover effect */
.related-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}








/* ===============================
   STEP 8 — REVIEWS
================================ */
.tour-reviews-section {
  margin: 20px 0;
  padding: 20px 0;
}


/* ===============================
   STEP 8 — EXTRA SECTION
================================ */
.tour-extra-section {
  margin: 20px 0 0;
}

.tour-extra-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
}

.tour-extra-content p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.tour-extra-list {
  padding-left: 18px;
  margin: 0;
}

.tour-extra-list li {
  font-size: 14.5px;
  margin-bottom: 8px;
}

/* ===============================
   STEP 8 — MOBILE FINAL
================================ */
@media (max-width: 600px) {
 

  .related-section h2,
  .tour-extra-section h2 {
    font-size: 20px;
  }

  .faq-question h3 {
    font-size: 14.5px;
  }
}

/* ===============================
   MOBILE STICKY BOOKING BAR — FINAL CLEAN
================================ */

/* Default hidden */
.mobile-sticky-book {
  display: none;
}

/* Show only on mobile + iPad Mini + iPad Air */
@media (max-width: 1199px) {
  .mobile-sticky-book {
    display: flex;
  }
}

/* Hide on desktop + iPad Pro */
@media (min-width: 1200px) {
  .mobile-sticky-book {
    display: none !important;
  }
}

/* Sticky container */
.mobile-sticky-book {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  background: linear-gradient(135deg, #1a365d 0%, #0f2847 100%);
  border-top: 2px solid #48bb78;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  z-index: 999;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);

  transform: translateY(100%);
  transition: transform 0.3s ease;
}

/* Visible */
.mobile-sticky-book.show {
  transform: translateY(0);
}

/* Price block */
.sticky-price {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
  flex: 1;
}

.sticky-price .from {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.sticky-price .old-price {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
}

.price-row .price {
  font-size: clamp(18px, 4.5vw, 22px);
  font-weight: 800;
  color: #48bb78;
  white-space: nowrap;
}

.price-row .per {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

/* CTA Button */
.sticky-btn {
  height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  border: none;

  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  box-shadow: 0 3px 12px rgba(72, 187, 120, 0.35);

  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;

  transition: all 0.25s ease;
}

.sticky-btn:active {
  transform: scale(0.96);
  box-shadow: 0 2px 8px rgba(72, 187, 120, 0.3);
}

/* Prevent footer overlap when visible - only on mobile */
@media (max-width: 991px) {
  body.has-mobile-sticky {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }
}

/* Smaller screens - adjust button */
@media (max-width: 380px) {
  .sticky-btn {
    padding: 0 14px;
    font-size: 13px;
    height: 40px;
  }
  
  .price-row .price {
    font-size: 18px;
  }
}




/* ===============================
   Step 9 - TRAIN VS CAR — RESPONSIVE TABLE
================================ */

.train-vs-car {
  margin-top: 40px;
}

.train-vs-car h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Desktop / Tablet */
.comparison-table {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-head {
  background: #f8fafc;
  font-weight: 700;
}

.cell {
  padding: 14px 16px;
  font-size: 14.5px;
  color: #0f172a;
}

.cell.feature {
  font-weight: 600;
}

.cell.train {
  color: #065f46;
  font-weight: 600;
}

.cell.car {
  color: #1f2937;
}

.cell.highlight {
  background: #ecfdf5;
  color: #047857;
  font-weight: 700;
  border-radius: 6px;
}

/* ===============================
   Step 9 - MOBILE — CARD STYLE (BEST UX)
================================ */
@media (max-width: 768px) {

  .comparison-row {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .comparison-head {
    display: none;
  }

  .cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    font-size: 14px;
  }

  .cell::before {
    content: attr(data-label);
    font-weight: 600;
    color: #64748b;
  }

  .cell.feature::before {
    content: "Feature";
  }

  .cell.highlight {
    margin-top: 6px;
  }
}

































































