/* ==========================================================================
   SHREE SHARADA TAXI - TOUR PACKAGES PAGE STYLESHEET
   Dedicated stylesheet for tours.html adhering strictly to designandcolor.md
   Color System: Obsidian Dark (#0A0A0B) & Brand Taxi Yellow (#F4C401)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. PAGE HERO (Dark #0A0A0B)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background-color: var(--bg-dark);
  padding: 8.5rem 0 5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/tourhhero.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}

.page-hero-ambient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(244, 196, 1, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(244, 196, 1, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-hero-content {
  max-width: 800px;
}

.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-white);
  line-height: 1.1;
  margin: 0.85rem 0 1.25rem;
}

.page-hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.page-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.15) !important;
  border: 1px solid rgba(37, 211, 102, 0.4) !important;
  color: #25D366 !important;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.btn-whatsapp:hover {
  background: #25D366 !important;
  color: #0A0A0B !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* Category Quick Jump Bar */
.tour-jump-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.jump-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.jump-link:hover {
  background: var(--primary);
  color: #0a0a0b;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 196, 1, 0.25);
}

/* Page Hero Badge Card (Right Side) */
.page-hero-badge-card {
  background: linear-gradient(145deg, #141417 0%, #0d0d0f 100%);
  border: 1px solid rgba(244, 196, 1, 0.3);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.page-hero-badge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F4C401, #FFE089);
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: #FFFFFF;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(244, 196, 1, 0.4);
}

.trust-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(244, 196, 1, 0.2);
  border: 1px solid rgba(244, 196, 1, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  color: #B38800;
  flex-shrink: 0;
}

.trust-badge-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0A0A0B;
  line-height: 1.1;
}

.trust-badge-sub {
  font-size: 0.88rem;
  color: #555555;
  font-weight: 700;
  margin-top: 0.25rem;
}

.hero-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-highlight-item i {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   2. ALTERNATING SECTION RHYTHM
   -------------------------------------------------------------------------- */
.section-yellow {
  background-color: var(--primary) !important;
  color: #0a0a0b;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background-color: var(--bg-dark) !important;
  color: var(--text-primary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   3. SECTION HEADERS
   -------------------------------------------------------------------------- */
.section-header-yellow {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.section-header-yellow .eyebrow-dark {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0a0a0b;
  background: #ffffff;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(10, 10, 11, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.section-header-yellow h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0a0a0b;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header-yellow p {
  font-size: 1.05rem;
  color: #27272a;
  line-height: 1.6;
}

.section-header-dark {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.section-header-dark .eyebrow-gold {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(244, 196, 1, 0.12);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(244, 196, 1, 0.3);
}

.section-header-dark h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header-dark p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   4. TOUR CARDS (YELLOW SECTION & DARK SECTION)
   -------------------------------------------------------------------------- */
.tours-grid-yellow,
.tours-grid-dark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card in Yellow Section: Deep Obsidian Card for High Contrast */
.tour-card-yellow-surface {
  background: #0a0a0b;
  color: var(--text-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(10, 10, 11, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.tour-card-yellow-surface:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(244, 196, 1, 0.55);
}

/* Card in Dark Section: Refined Slate Surface Card */
.tour-card-dark-surface {
  background: #141416;
  color: var(--text-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.tour-card-dark-surface:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 196, 1, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

/* Media Box & Badges */
.tour-media-box {
  position: relative;
  height: 220px;
  background: #0d0d0f;
  overflow: hidden;
}

.tour-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card-yellow-surface:hover .tour-media-box img,
.tour-card-dark-surface:hover .tour-media-box img {
  transform: scale(1.08);
}

.tour-badge-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.tour-badge-overlay .badge {
  background: var(--primary);
  color: #0a0a0b;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.tour-duration-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid rgba(244, 196, 1, 0.35);
  z-index: 2;
}

/* Body Content */
.tour-body-box {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.tour-body-box h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.tour-body-box p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.tour-sight-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.sight-pill {
  font-size: 0.76rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

.tour-pricing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  gap: 1rem;
}

.tour-price-info .label {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.tour-price-info .amount {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-top: 0.15rem;
}

/* Subtle background SVG watermark icon */
.tour-card-bg-icon {
  position: absolute;
  right: -10px;
  bottom: -15px;
  font-size: 8rem;
  color: #ffffff;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

/* --------------------------------------------------------------------------
   5. CUSTOM ITINERARY BUILDER & PLANNER FORM
   -------------------------------------------------------------------------- */
.itinerary-planner-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.planner-benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}

.planner-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.planner-benefit-item i {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.planner-form-card {
  background: linear-gradient(145deg, #141417 0%, #0f0f11 100%);
  border: 1px solid rgba(244, 196, 1, 0.3);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.planner-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F4C401, #FFE089);
}

.field-group {
  margin-bottom: 1.15rem;
}

.field-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.field-input-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0 1rem;
  gap: 0.75rem;
  transition: all var(--transition-fast);
}

.field-input-box:focus-within {
  border-color: var(--primary);
  background: rgba(244, 196, 1, 0.04);
  box-shadow: 0 0 15px rgba(244, 196, 1, 0.15);
}

.field-input-box i {
  color: var(--primary);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.field-input-box input,
.field-input-box select {
  width: 100%;
  padding: 0.85rem 0;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.field-input-box select option {
  background: #141416;
  color: var(--text-white);
}

.field-input-box input::placeholder {
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. TOUR ASSURANCE PILLARS (Pattern 4)
   -------------------------------------------------------------------------- */
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 5rem;
}

.assurance-card {
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.assurance-card:hover {
  transform: translateY(-6px);
}

.assurance-card.card-white {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.assurance-card.card-white h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 0.65rem;
}

.assurance-card.card-white p {
  font-size: 0.92rem;
  color: #555555;
  line-height: 1.6;
}

.assurance-card.card-white .assurance-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(244, 196, 1, 0.2);
  border: 1px solid rgba(244, 196, 1, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #9e6b00;
  margin-bottom: 1.25rem;
}

.assurance-card.card-yellow {
  background: var(--primary);
  color: #0a0a0b;
  box-shadow: 0 15px 35px rgba(244, 196, 1, 0.25);
}

.assurance-card.card-yellow h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0a0a0b;
  margin-bottom: 0.65rem;
}

.assurance-card.card-yellow p {
  font-size: 0.92rem;
  color: #222222;
  line-height: 1.6;
}

.assurance-card.card-yellow .assurance-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #0a0a0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   7. 24/7 DISPATCH READY BOX (Pattern 7)
   -------------------------------------------------------------------------- */
.cta-ready-box {
  background: #111113;
  border: 1px solid rgba(244, 196, 1, 0.35);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.cta-ready-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/bengaluru-airport.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

.cta-ready-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F4C401, #FFE089);
  z-index: 2;
}

.cta-ready-box h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-ready-box p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.cta-buttons-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* --------------------------------------------------------------------------
   8. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .tours-grid-yellow,
  .tours-grid-dark {
    grid-template-columns: repeat(2, 1fr);
  }
  .assurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .itinerary-planner-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .tours-grid-yellow,
  .tours-grid-dark {
    grid-template-columns: 1fr;
  }
  .assurance-grid {
    grid-template-columns: 1fr;
  }
  .planner-benefits-list {
    grid-template-columns: 1fr;
  }
  .section-yellow,
  .section-dark {
    padding: 4.5rem 0;
  }
  .planner-form-card {
    padding: 1.75rem;
  }
  .cta-ready-box {
    padding: 2.5rem 1.5rem;
  }
  .cta-buttons-group {
    flex-direction: column;
    width: 100%;
  }
  .cta-buttons-group .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .page-hero {
    padding: 5.5rem 0 2.75rem;
  }

  .page-hero-title {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
    margin: 0.65rem 0 1rem;
  }

  .page-hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .page-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .page-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .tour-jump-bar {
    gap: 0.45rem;
  }

  .page-hero-badge-card {
    padding: 1.5rem 1.15rem;
  }

  .hero-trust-badge {
    padding: 1rem 1.15rem;
    gap: 0.85rem;
  }

  .section-yellow,
  .section-dark {
    padding: 3rem 0;
  }

  .section-header-yellow,
  .section-header-dark {
    margin-bottom: 2rem;
  }

  .section-header-yellow h2,
  .section-header-dark h2 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
    margin-bottom: 0.65rem;
  }

  .section-header-yellow p,
  .section-header-dark p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .tour-media-box {
    height: 170px;
  }

  .tour-body-box {
    padding: 1.35rem 1.15rem;
  }

  .tour-card-yellow-surface h3,
  .tour-card-dark-surface h3 {
    font-size: 1.25rem;
  }

  .tour-pricing-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .tour-pricing-footer .btn {
    width: 100%;
    justify-content: center;
  }

  .planner-form-card {
    padding: 1.5rem 1.15rem;
  }

  .planner-form-grid {
    grid-template-columns: 1fr;
  }

  .assurance-card {
    padding: 1.6rem 1.15rem;
  }

  .cta-ready-box {
    padding: 2.25rem 1.15rem;
  }

  .cta-ready-box h2 {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem);
  }

  .cta-ready-box p {
    font-size: 0.9rem;
  }
}

@media (max-width: 350px) {
  .page-hero {
    padding: 4.75rem 0 2.25rem;
  }

  .page-hero-title {
    font-size: clamp(1.35rem, 6.5vw, 1.75rem);
  }

  .page-hero-subtitle {
    font-size: 0.85rem;
  }

  .jump-link {
    font-size: 0.78rem;
    padding: 0.35rem 0.65rem;
  }

  .page-hero-badge-card {
    padding: 1.15rem 0.85rem;
  }

  .hero-trust-badge {
    padding: 0.75rem 0.75rem;
    gap: 0.65rem;
  }

  .trust-badge-icon {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }

  .trust-badge-val {
    font-size: 1.25rem;
  }

  .trust-badge-sub {
    font-size: 0.78rem;
  }

  .section-yellow,
  .section-dark {
    padding: 2.25rem 0;
  }

  .section-header-yellow,
  .section-header-dark {
    margin-bottom: 1.5rem;
  }

  .section-header-yellow h2,
  .section-header-dark h2 {
    font-size: clamp(1.2rem, 5.5vw, 1.45rem);
  }

  .section-header-yellow p,
  .section-header-dark p {
    font-size: 0.82rem;
  }

  .tour-media-box {
    height: 135px;
  }

  .tour-body-box {
    padding: 1.15rem 0.85rem;
  }

  .tour-card-yellow-surface h3,
  .tour-card-dark-surface h3 {
    font-size: 1.1rem;
  }

  .tour-card-yellow-surface p,
  .tour-card-dark-surface p {
    font-size: 0.85rem;
  }

  .tour-highlight-pill {
    font-size: 0.75rem;
    padding: 3px 8px;
  }

  .planner-form-card {
    padding: 1.25rem 0.85rem;
  }

  .assurance-card {
    padding: 1.25rem 0.85rem;
  }

  .assurance-card h3 {
    font-size: 1.1rem;
  }

  .assurance-card p {
    font-size: 0.85rem;
  }

  .cta-ready-box {
    padding: 1.75rem 0.85rem;
  }

  .cta-ready-box h2 {
    font-size: clamp(1.2rem, 5vw, 1.45rem);
  }

  .cta-ready-box p {
    font-size: 0.82rem;
  }
}

@media (max-width: 240px) {
  .page-hero-title {
    font-size: 1.2rem;
  }

  .tour-body-box,
  .planner-form-card,
  .assurance-card {
    padding: 1rem 0.65rem;
  }
}
