/* ============================================================
   BEOND JOURNEYS — Spiritual Tours Hub Page Styles
   File: css/hub-spiritual.css   v1.0.0
   Devotional layout  |  Poppins font  |  Brand colours only
   Prefix: bs-
============================================================ */

/* Import Geologica font */
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* 0. VARIABLES & BASE --------------------------------------- */
:root {
  --bs-primary: #f97251;
  --bs-primary-dk: #e05c3c;
  --bs-primary-pale: #fef3ef;
  --bs-cream: #fdf8f3;
  --bs-cream2: #f5ede4;
  --bs-border: #ecddd4;
  --bs-text: #666;
  --bs-dark: #2d1206;
  --bs-white: #fff;
  --bs-green: #25d366;
  --bs-green-dk: #1cb857;
  --bs-shadow: 0 4px 24px rgba(249, 114, 81, 0.12);
  --bs-shadow-lg: 0 12px 40px rgba(249, 114, 81, 0.18);
  --bs-radius: 10px;
  --bs-radius-sm: 5px;
  --bs-transition: 0.26s ease;
  --bs-font: "Geologica", sans-serif;
  --bs-container: 1180px;
}

/* Hide theme's auto page title banner on this hub page */
.traveltour-page-title-wrap {
  display: none !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[class^="bs-"],
[class*=" bs-"],
[class^="bs-"] *,
[class*=" bs-"] * {
  font-family: var(--bs-font) !important;
}

.bs-container {
  max-width: var(--bs-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Shared */
.bs-label {
  display: inline-block;
  background: var(--bs-primary-pale);
  color: var(--bs-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.bs-h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--bs-dark);
  line-height: 1.22;
  margin: 0 0 12px;
}
.bs-h2-light {
  color: #fff !important;
}
.bs-sub {
  color: var(--bs-text);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 36px;
}
.bs-sub-light {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Buttons */
.bs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--bs-radius-sm);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--bs-font);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--bs-transition);
  border: none;
  line-height: 1;
}
.bs-btn-primary {
  background: var(--bs-primary);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(224, 92, 60, 0.35);
}
.bs-btn-primary:hover {
  background: var(--bs-primary-dk);
  transform: translateY(-2px);
  color: #fff !important;
}
.bs-btn-outline {
  background: transparent;
  color: var(--bs-primary) !important;
  border: 2px solid var(--bs-primary);
}
.bs-btn-outline:hover {
  background: var(--bs-primary);
  color: #fff !important;
  transform: translateY(-2px);
}
.bs-btn-white {
  background: #fff;
  color: var(--bs-primary) !important;
}
.bs-btn-white:hover {
  background: var(--bs-primary-pale);
  transform: translateY(-2px);
  color: var(--bs-primary) !important;
}
.bs-btn-whatsapp {
  background: var(--bs-green);
  color: #fff !important;
}
.bs-btn-whatsapp:hover {
  background: var(--bs-green-dk);
  transform: translateY(-2px);
  color: #fff !important;
}

/* ============================================================
   1. HERO — full-bleed, warm saffron overlay
============================================================ */
.bs-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-color: var(--bs-primary-dk);
}
.bs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 22, 40, 0.55) 0%,
    rgba(13, 22, 40, 0.45) 50%,
    rgba(13, 22, 40, 0.85) 100%
  );
}
.bs-hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.bs-hero-content {
  max-width: 680px;
  padding: 80px 0 40px;
  text-align: center;
  margin: 0 auto;
}
.bs-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}
.bs-hero-eyebrow::before,
.bs-hero-eyebrow::after {
  content: "🙏";
  font-size: 14px;
}
.bs-hero h1 {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  color: #fff;
  line-height: 1.13;
  margin: 0 0 16px;
  font-family: var(--bs-font) !important;
}
.bs-hero-tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  margin: 0 0 32px;
  line-height: 1.65;
}
.bs-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Stats bar */
.bs-hero-stats {
  position: relative;
  z-index: 3;
  background: rgba(13, 22, 40, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.bs-hero-stats-inner {
  max-width: var(--bs-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.bs-hero-stat {
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.bs-hero-stat:last-child {
  border-right: none;
}
.bs-hero-stat-num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #ffb199;
  line-height: 1;
}
.bs-hero-stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 5px;
  letter-spacing: 0.3px;
}

/* ============================================================
   2. INTRO — centred with a "sacred promise" callout
============================================================ */
.bs-intro {
  background: var(--bs-cream);
  padding: 80px 0;
}
.bs-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.bs-intro-inner p {
  color: var(--bs-text);
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 18px;
}
.bs-intro-inner p:last-child {
  margin-bottom: 0;
}
.bs-intro-inner strong {
  color: var(--bs-dark);
}

/* Sacred Promise callout */
.bs-promise {
  background: var(--bs-primary);
  padding: 56px 0;
}
.bs-promise-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}
.bs-promise-item {
  padding: 24px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.bs-promise-item:last-child {
  border-right: none;
}
.bs-promise-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}
.bs-promise-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.bs-promise-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   3. PACKAGES
============================================================ */
.bs-packages {
  background: var(--bs-white);
  padding: 80px 0;
}
.bs-packages-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Featured card */
.bs-pkg-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--bs-radius);
  overflow: hidden;
  box-shadow: var(--bs-shadow-lg);
  margin-bottom: 24px;
  min-height: 340px;
}
.bs-pkg-featured-img {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 260px;
}
.bs-pkg-featured-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--bs-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
}
.bs-pkg-featured-body {
  background: var(--bs-cream);
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bs-pkg-featured-body h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--bs-dark);
  margin: 0 0 12px;
  line-height: 1.22;
}
.bs-pkg-meta {
  display: flex;
  gap: 18px;
  color: var(--bs-text);
  font-size: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.bs-pkg-desc {
  color: var(--bs-text);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 20px;
}
.bs-pkg-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--bs-primary);
  margin: 0 0 24px;
  line-height: 1;
}
.bs-pkg-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--bs-text);
}

/* 2x2 grid */
.bs-pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.bs-pkg-card {
  border-radius: var(--bs-radius);
  overflow: hidden;
  background: var(--bs-cream);
  border: 1px solid var(--bs-border);
  display: grid;
  grid-template-columns: 200px 1fr;
  transition:
    box-shadow var(--bs-transition),
    transform var(--bs-transition);
}
.bs-pkg-card:hover {
  box-shadow: var(--bs-shadow-lg);
  transform: translateY(-4px);
}
.bs-pkg-card-img {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 180px;
}
.bs-pkg-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bs-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
}
.bs-pkg-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bs-pkg-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--bs-dark);
  margin: 0 0 8px;
  line-height: 1.35;
}
.bs-pkg-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--bs-text);
  font-size: 12px;
  margin-bottom: 10px;
}
.bs-pkg-card-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--bs-primary);
  margin: 0 0 14px;
  line-height: 1;
}
.bs-pkg-card-price small {
  font-size: 12px;
  font-weight: 500;
  color: var(--bs-text);
}

/* CTA card */
.bs-pkg-card--cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  background: var(--bs-primary-pale);
  border: 2px dashed var(--bs-primary);
  padding: 28px 36px;
  border-radius: var(--bs-radius);
  gap: 20px;
}
.bs-pkg-cta-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--bs-dark);
  margin: 0 0 6px;
}
.bs-pkg-cta-text p {
  font-size: 14px;
  color: var(--bs-text);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   4. DESTINATIONS — 2-col list
============================================================ */
.bs-destinations {
  background: var(--bs-cream2);
  padding: 80px 0;
}
.bs-dest-header {
  text-align: center;
  margin-bottom: 48px;
}
.bs-dest-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bs-dest-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-radius: var(--bs-radius);
  overflow: hidden;
  text-decoration: none;
  background: var(--bs-white);
  border: 1px solid var(--bs-border);
  transition: all var(--bs-transition);
}
.bs-dest-row:hover {
  box-shadow: var(--bs-shadow);
  transform: translateY(-3px);
}
.bs-dest-row-img {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 130px;
}
.bs-dest-row-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 60%,
    rgba(224, 92, 60, 0.15)
  );
}
.bs-dest-row-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bs-dest-row-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--bs-dark);
  margin: 0 0 5px;
  line-height: 1.3;
}
.bs-dest-row-body span {
  font-size: 12px;
  color: var(--bs-text);
  line-height: 1.5;
}
.bs-dest-row-arrow {
  font-size: 16px;
  color: var(--bs-primary);
  margin-top: 10px;
  font-weight: 700;
}

/* ============================================================
   5. WHY US
============================================================ */
.bs-why {
  background: var(--bs-white);
  padding: 80px 0;
}
.bs-why-header {
  text-align: center;
  margin-bottom: 48px;
}
.bs-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bs-why-card {
  background: var(--bs-cream);
  border-radius: var(--bs-radius);
  padding: 30px 26px;
  border-left: 4px solid var(--bs-primary);
  transition: all var(--bs-transition);
}
.bs-why-card:hover {
  box-shadow: var(--bs-shadow);
  transform: translateY(-4px);
}
.bs-why-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 14px;
}
.bs-why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--bs-dark);
  margin: 0 0 8px;
}
.bs-why-card p {
  color: var(--bs-text);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* ============================================================
   6. PROCESS — vertical timeline
============================================================ */
.bs-process {
  background: var(--bs-primary);
  padding: 80px 0;
}
.bs-process-header {
  text-align: center;
  margin-bottom: 56px;
}
.bs-process-timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.bs-process-timeline::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
}
.bs-process-step {
  display: flex;
  gap: 28px;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}
.bs-process-step:last-child {
  margin-bottom: 0;
}
.bs-process-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  color: var(--bs-primary);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.bs-process-body {
  padding-top: 12px;
}
.bs-process-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.bs-process-body p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}
.bs-process-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 52px;
}

/* ============================================================
   7. INCLUSIONS
============================================================ */
.bs-inclusions {
  background: var(--bs-cream);
  padding: 80px 0;
}
.bs-inclusions-header {
  text-align: center;
  margin-bottom: 48px;
}
.bs-inc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.bs-inc-col {
  background: var(--bs-white);
  border-radius: var(--bs-radius);
  padding: 30px 34px;
  border-top: 4px solid transparent;
}
.bs-inc-col--yes {
  border-top-color: #22c55e;
}
.bs-inc-col--no {
  border-top-color: #ef4444;
}
.bs-inc-col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.bs-inc-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.bs-inc-col--yes .bs-inc-icon {
  background: #dcfce7;
  color: #16a34a;
}
.bs-inc-col--no .bs-inc-icon {
  background: #fee2e2;
  color: #dc2626;
}
.bs-inc-col h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--bs-dark);
  margin: 0;
}
.bs-inc-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bs-inc-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--bs-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--bs-cream2);
}
.bs-inc-col ul li:last-child {
  border-bottom: none;
}
.bs-inc-col--yes ul li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
}
.bs-inc-col--no ul li::before {
  content: "✗";
  color: #dc2626;
  font-weight: 700;
  flex-shrink: 0;
}

/* Price banner */
.bs-price-banner {
  background: var(--bs-primary-dk);
  border-radius: var(--bs-radius);
  padding: 34px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.bs-price-from {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}
.bs-price-amount {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.bs-price-amount em {
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 4px;
}
.bs-price-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
  min-width: 180px;
}

/* ============================================================
   8. GUIDES — horizontal cards
============================================================ */
.bs-guides {
  background: var(--bs-white);
  padding: 80px 0;
}
.bs-guides-header {
  text-align: center;
  margin-bottom: 48px;
}
.bs-guide-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bs-guide-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-radius: var(--bs-radius);
  overflow: hidden;
  box-shadow: var(--bs-shadow);
  text-decoration: none;
  background: var(--bs-cream);
  border: 1px solid var(--bs-border);
  transition:
    transform var(--bs-transition),
    box-shadow var(--bs-transition);
}
.bs-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bs-shadow-lg);
}
.bs-guide-img {
  background-size: cover;
  background-position: center;
  min-height: 180px;
}
.bs-guide-body {
  padding: 26px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bs-guide-cat {
  display: inline-block;
  background: var(--bs-primary-pale);
  color: var(--bs-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 10px;
}
.bs-guide-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--bs-dark);
  margin: 0 0 8px;
  line-height: 1.4;
}
.bs-guide-body p {
  color: var(--bs-text);
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 12px;
}
.bs-guide-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--bs-primary);
}

/* ============================================================
   9. TESTIMONIALS — cream bg
============================================================ */
.bs-testimonials {
  background: var(--bs-cream2);
  padding: 80px 0;
}
.bs-testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}
.bs-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bs-testi-card {
  background: var(--bs-white);
  border-radius: var(--bs-radius);
  padding: 30px 26px;
  border: 1px solid var(--bs-border);
  position: relative;
  overflow: hidden;
  box-shadow: var(--bs-shadow);
}
.bs-testi-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 80px;
  color: var(--bs-primary);
  opacity: 0.12;
  line-height: 1;
  font-family: Georgia, serif !important;
}
.bs-testi-stars {
  color: var(--bs-primary);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.bs-testi-card > p {
  color: var(--bs-text);
  font-size: 14px;
  line-height: 1.85;
  margin: 0 0 20px;
  font-style: italic;
}
.bs-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bs-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bs-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bs-testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--bs-dark);
}
.bs-testi-author span {
  display: block;
  font-size: 12px;
  color: var(--bs-text);
  margin-top: 2px;
}

/* ============================================================
   10. FAQ
============================================================ */
.bs-faq {
  background: var(--bs-cream);
  padding: 80px 0;
}
.bs-faq-header {
  text-align: center;
  margin-bottom: 44px;
}
.bs-faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.bs-faq-item {
  background: var(--bs-white);
  border-radius: var(--bs-radius-sm);
  margin-bottom: 8px;
  border: 1px solid var(--bs-border);
  overflow: hidden;
}
.bs-faq-q {
  width: 100%;
  background: none !important;
  border: none;
  padding: 18px 24px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px !important;
  font-weight: 600;
  color: var(--bs-dark) !important;
  font-family: var(--bs-font);
  text-align: left;
  gap: 14px;
  transition: color var(--bs-transition);
}
.bs-faq-q:hover {
  color: var(--bs-primary) !important;
  background: var(--bs-primary-pale) !important;
}
.bs-faq-icon {
  font-size: 22px;
  color: var(--bs-primary);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--bs-transition);
}
.bs-faq-item.bs-faq-open .bs-faq-icon {
  transform: rotate(45deg);
}
.bs-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s ease;
}
.bs-faq-a p {
  padding: 0 24px 22px;
  color: var(--bs-text);
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
}

/* ============================================================
   11. CTA
============================================================ */
.bs-cta {
  background: var(--bs-primary-dk);
  padding: 80px 0;
}
.bs-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.bs-cta-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.25;
}
.bs-cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 28px;
}
.bs-cta-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--bs-radius);
  padding: 34px 30px;
}
.bs-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.bs-cta-form input,
.bs-cta-form select,
.bs-cta-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--bs-radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-family: var(--bs-font);
  outline: none;
  transition: border-color var(--bs-transition);
}
.bs-cta-form input::placeholder,
.bs-cta-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.bs-cta-form select option {
  background: var(--bs-primary-dk);
  color: #fff;
}
.bs-cta-form input:focus,
.bs-cta-form select:focus,
.bs-cta-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.6);
}
.bs-cta-form textarea {
  margin-bottom: 12px;
  resize: vertical;
}
.bs-cta-form .bs-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* ============================================================
   12. INTERNAL LINKS
============================================================ */
.bs-internal-links {
  background: var(--bs-white);
  padding: 64px 0;
}
.bs-links-header {
  text-align: center;
  margin-bottom: 36px;
}
.bs-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bs-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 18px;
  border-radius: var(--bs-radius);
  border: 1px solid var(--bs-border);
  text-decoration: none;
  color: var(--bs-dark);
  background: var(--bs-cream);
  transition: all var(--bs-transition);
}
.bs-link-card:hover {
  border-color: var(--bs-primary);
  background: var(--bs-primary-pale);
  transform: translateY(-4px);
}
.bs-link-icon {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}
.bs-link-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--bs-dark);
  margin: 0 0 6px;
}
.bs-link-card p {
  font-size: 12px;
  color: var(--bs-text);
  line-height: 1.6;
  margin: 0 0 10px;
}
.bs-link-arrow {
  font-size: 16px;
  color: var(--bs-primary);
  font-weight: 700;
  display: block;
  margin-top: auto;
}

/* ============================================================
   13. FOOTER SEO
============================================================ */
.bs-footer-seo {
  background: var(--bs-cream2);
  padding: 48px 0;
  border-top: 1px solid var(--bs-border);
}
.bs-footer-seo-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.bs-footer-seo-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bs-dark);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bs-primary);
  display: inline-block;
}
.bs-footer-seo-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bs-footer-seo-col ul li {
  margin-bottom: 8px;
}
.bs-footer-seo-col ul li a {
  font-size: 14px;
  color: var(--bs-text);
  text-decoration: none;
  transition: color var(--bs-transition);
}
.bs-footer-seo-col ul li a:hover {
  color: var(--bs-primary);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .bs-pkg-grid {
    grid-template-columns: 1fr;
  }
  .bs-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bs-testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bs-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bs-hero {
    min-height: 480px;
  }
  .bs-hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .bs-hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .bs-hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  .bs-hero-stat:nth-child(3),
  .bs-hero-stat:nth-child(4) {
    border-bottom: none;
  }

  .bs-promise-inner {
    grid-template-columns: 1fr;
  }
  .bs-promise-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .bs-promise-item:last-child {
    border-bottom: none;
  }

  .bs-pkg-featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .bs-pkg-featured-img {
    height: 240px;
  }
  .bs-pkg-featured-body {
    padding: 26px 24px;
  }
  .bs-pkg-card {
    grid-template-columns: 1fr;
  }
  .bs-pkg-card-img {
    height: 180px;
  }
  .bs-pkg-card--cta {
    flex-direction: column;
    text-align: center;
  }

  .bs-dest-list {
    grid-template-columns: 1fr;
  }

  .bs-why-grid {
    grid-template-columns: 1fr;
  }

  .bs-process-timeline::before {
    left: 34px;
  }

  .bs-inc-split {
    grid-template-columns: 1fr;
  }
  .bs-price-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px;
  }

  .bs-guide-card {
    grid-template-columns: 1fr;
  }
  .bs-guide-img {
    height: 200px;
  }

  .bs-testi-grid {
    grid-template-columns: 1fr;
  }

  .bs-cta-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .bs-form-row {
    grid-template-columns: 1fr;
  }

  .bs-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bs-footer-seo-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bs-links-grid {
    grid-template-columns: 1fr;
  }
  .bs-hero-content {
    padding-top: 56px;
  }
}
