
:root {
      --splentrip-radius: 30px;

  --sp-navy:      #0f1c2e;
  --sp-navy2:     #162236;
  --sp-blue:      #1a6fc4;
  --sp-gold:      #e8a020;
  --sp-gold2:     #f5c518;
  --sp-orange:    #e07b39;
  --sp-white:     #ffffff;
  --sp-off:       #f7f4ef;
  --sp-text:      #2c2c2c;
  --sp-muted:     #6b7280;
  --sp-border:    #e5e0d8;
  --sp-radius:    12px;
  --sp-font-head: 'Cormorant Garamond', serif;
  --sp-font-body: 'DM Sans', sans-serif;
  --sp-shadow:    0 4px 24px rgba(0,0,0,0.10);
  --sp-shadow-lg: 0 8px 40px rgba(0,0,0,0.16);


 --splenpage-gold:      #C9952A;
      --splenpage-gold-lt:   #E8B84B;
      --splenpage-dark:      #0E0B07;
      --splenpage-brown:     #2A1A08;
      --splenpage-cream:     #FAF6EE;
      --splenpage-sand:      #F0E6D0;
      --splenpage-text:      #3A2E22;
      --splenpage-muted:     #7A6A58;
      --splenpage-border:    rgba(201,149,42,.25);
      --splenpage-r:         12px;
      --splenpage-hero-h:    92vh;
      --ff-display:          'Cormorant Garamond', serif;
      --ff-body:             'DM Sans', sans-serif;
}
 
 /*---- TOP BAR ---- */
.splentrip-header {
  background: var(--splenpage-gold-lt);
  font-family: var(--splentrip-font);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
 
.splentrip-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
 
 /*---- LOGO ---- */
.splentrip-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
 
.splentrip-logo-icon {
  width: 36px;
  height: 36px;
}
 
.splentrip-logo-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--splenpage-text);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
 
 /*---- SEARCH BAR ---- */
.splentrip-search-wrap {
  flex: 1;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}
 
.splentrip-search {
  width: 100%;
  height: 42px;
  border-radius: 30px;
  border: none;
  background: var(--splenpage-text);
  padding: 0 44px 0 42px;
  font-size: 14px;
  font-family: var(--splentrip-font);
  color: white;
  outline: none;
  transition: box-shadow 0.2s;
}
 
.splentrip-search:focus {
  box-shadow: var(--splenpage-text);
}
 
.splentrip-search::placeholder { color: white; }
 
.splentrip-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
 
.splentrip-mic-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 50%;
  transition: background 0.15s;
}
 
.splentrip-mic-btn:hover { background: #f0f0f0; }
 
 /*---- RIGHT ACTIONS ---- */
.splentrip-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
 
.splentrip-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--splenpage-text);
  color: var(--splentrip-white);
  border: none;
  border-radius: var(--splentrip-radius);
  padding: 9px 16px;
  font-size: 14.5px;
  font-weight: 600;
  font-family: var(--splentrip-font);
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.18s, box-shadow 0.18s;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(26,111,196,0);
}
 
.splentrip-phone:hover {
  background: var(--splentrip-blue2);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.3);
}
 
.splentrip-phone svg { flex-shrink: 0; }
 
.splentrip-phone-chevron {
  width: 14px;
  height: 14px;
  opacity: 0.75;
}
 
 /*Login button */
.splentrip-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  color: var(--splentrip-white);
  cursor: pointer;
  font-family: var(--splentrip-font);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s;
}
 
.splentrip-login:hover { background: rgba(255,255,255,0.08); }
 
.splentrip-login svg { width: 26px; height: 26px; }
 
.splentrip-country {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--splenpage-text);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--splentrip-radius);
  padding: 7px 13px;
  color: wheat;
  font-size: 13px;
  font-family: var(--splentrip-font);
  cursor: pointer;
  transition: background 0.15s;
}
 
.splentrip-country:hover { background: rgba(255,255,255,0.14); }
 
.splentrip-flag { font-size: 18px; line-height: 1; }
 
 /*---- NAV BAR ---- */
.splentrip-navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 32px;
  height: 44px;
  background: var(--splentrip-navy2);
}
 
.splentrip-nav-item {
  position: relative;
}
 
.splentrip-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 13px;
  color: var(--splenpage-text);
  font-size: 13.5px;
  font-weight: 500;
  font-family: var(--splentrip-font);
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  background: none;
  border: none;
}
 
.splentrip-nav-link:hover,
.splentrip-nav-link.splentrip-active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
 
 /*Tiny chevron */
.splentrip-nav-link svg {
  width: 12px;
  height: 12px;
  opacity: 0.6;
}
 
 /*---- DROPDOWN ---- */
.splentrip-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  min-width: 180px;
  padding: 8px 0;
  z-index: 200;
}
 
.splentrip-nav-item:hover .splentrip-dropdown { display: block; }
 
.splentrip-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  color: #1a202c;
  text-decoration: none;
  font-family: var(--splentrip-font);
  transition: background 0.12s;
}
 
.splentrip-dropdown a:hover { background: #f5f7fa; color: var(--splentrip-blue); }
 
 /*=============================================*/
 /*  MOBILE STYLES*/
 /*  ============================================= */
 
 /*Hamburger */
.splentrip-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 4px;
  flex-shrink: 0;
}
 
 /*Mobile nav drawer */
.splentrip-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--splentrip-navy2);
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
 
.splentrip-mobile-nav.splentrip-open {
  max-height: 600px;
}
 
.splentrip-mobile-nav a {
  padding: 13px 24px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-family: var(--splentrip-font);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 
.splentrip-mobile-nav a:hover { background: rgba(255,255,255,0.06); color: #fff; }
 
@media (max-width: 768px) {
 
  /* Show hamburger, hide desktop nav */
  .splentrip-hamburger { display: flex; }
  .splentrip-navbar { display: none; }
  .splentrip-mobile-nav { display: flex; }
 
  /* Topbar adjustments */
  .splentrip-topbar {
    padding: 0 16px;
    height: 60px;
    gap: 10px;
  }
 
  /* Hide logo text on mobile */
  .splentrip-logo-text { display: none; }
 
  /* Search goes below on its own row */
  .splentrip-search-wrap {
    display: none; /* hidden in topbar on mobile */
  }
 
  /* Show search row below topbar on mobile */
  .splentrip-mobile-search {
    display: flex;
    padding: 10px 16px;
    background: var(--splentrip-navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
 
  .splentrip-mobile-search .splentrip-search-wrap {
    display: block;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
 
  /* Hide country selector on mobile */
  .splentrip-country { display: none; }
 
  /* Phone pill shrinks on mobile */
  .splentrip-phone-text { display: inline; }
 
  /* Login text */
  .splentrip-login span { display: none; }
}
 
@media (max-width: 380px) {
  .splentrip-phone { padding: 8px 11px; font-size: 13px; }
}
@media (min-width: 768px) {
    .splentrip-mobile-search {
        display: none !important;
    }
}




    /* ─── HERO ───────────────────────────────────────────────── */
    .splenpage-hero {
      position: relative;
      height: var(--splenpage-hero-h);
      min-height: 580px;
      display: flex; align-items: center;
      overflow: hidden;
    }
    .splenpage-hero__bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(160deg, rgba(14,11,7,.72) 0%, rgba(42,26,8,.55) 60%, rgba(14,11,7,.88) 100%),
        url('https://images.unsplash.com/photo-1564507592333-c60657eea523?w=1800&q=80') center/cover no-repeat;
      transform: scale(1.04);
      animation: splenpage-kenburns 14s ease-in-out infinite alternate;
    }
    @keyframes splenpage-kenburns {
      from { transform: scale(1.04) translateX(0); }
      to   { transform: scale(1.00) translateX(-1%); }
    }
    .splenpage-hero__particles {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(201,149,42,.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 75% 55%, rgba(201,149,42,.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 80%, rgba(201,149,42,.2) 0%, transparent 100%);
    }
    .splenpage-hero__content {
      position: relative; z-index: 2;
      max-width: 780px; padding: 0 5%;
      animation: splenpage-fadein .9s ease both;
    }
    @keyframes splenpage-fadein {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .splenpage-hero__badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,149,42,.18);
      border: 1px solid var(--splenpage-border);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
      color: var(--splenpage-gold-lt);
      margin-bottom: 28px;
      animation: splenpage-fadein .9s .1s ease both;
    }
    .splenpage-hero__badge::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--splenpage-gold-lt);
      animation: splenpage-pulse 2s infinite;
    }
    @keyframes splenpage-pulse {
      0%,100% { opacity: 1; } 50% { opacity: .3; }
    }
    .splenpage-hero__title {
      font-family: var(--ff-display);
      font-size: clamp(2.8rem, 6vw, 5.4rem);
      font-weight: 300;
      line-height: 1.08;
      letter-spacing: -.01em;
      margin-bottom: 20px;
      animation: splenpage-fadein .9s .2s ease both;
    }
    .splenpage-hero__title em {
      font-style: italic;
      color: var(--splenpage-gold-lt);
    }
    .splenpage-hero__sub {
      font-size: clamp(.88rem, 1.4vw, 1.05rem);
      font-weight: 500;
      opacity: .78;
      color: white !important; 
      max-width: 480px;
      line-height: 1.7;
      margin-bottom: 40px;
      animation: splenpage-fadein .9s .3s ease both;
    }
    .splenpage-hero__actions {
      display: flex; flex-wrap: wrap; gap: 14px;
      animation: splenpage-fadein .9s .4s ease both;
    }
    .splenpage-btn {
      display: inline-flex; align-items: center; gap: 9px;
      font-family: var(--ff-body);
      font-size: .8rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
      border-radius: 50px;
      padding: 14px 30px;
      cursor: pointer;
      transition: transform .22s, box-shadow .22s, background .22s;
    }
    .splenpage-btn--primary {
      background: var(--splenpage-gold);
      color: var(--splenpage-dark);
      box-shadow: 0 8px 28px rgba(201,149,42,.38);
    }
    .splenpage-btn--primary:hover {
      background: var(--splenpage-gold-lt);
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(201,149,42,.5);
    }
    .splenpage-btn--ghost {
      background: transparent;
      color: var(--splenpage-cream);
      border: 1px solid rgba(255,255,255,.35);
    }
    .splenpage-btn--ghost:hover {
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.6);
      transform: translateY(-2px);
    }
    .splenpage-btn svg { width: 16px; height: 16px; }
 
    /* Hero stats strip */
    .splenpage-hero__stats {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
      display: none;
      background: rgba(14,11,7,.75);
      backdrop-filter: blur(12px);
      border-top: 1px solid var(--splenpage-border);
    }
    .splenpage-hero__stat {
      flex: 1;
      padding: 22px 5%;
      text-align: center;
      border-right: 1px solid var(--splenpage-border);
    }
    .splenpage-hero__stat:last-child { border-right: none; }
    .splenpage-hero__stat-num {
      font-family: var(--ff-display);
      font-size: 2rem;
      font-weight: 600;
      color: var(--splenpage-gold-lt);
      display: block;
    }
    .splenpage-hero__stat-lbl {
      font-size: .7rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      opacity: .55;
      display: block;
      color: white;
      margin-top: 3px;
    }
 
    /* ─── SECTION SHARED ─────────────────────────────────────── */
    .splenpage-section { padding: 100px 5%; }
    .splenpage-section--light {
      background: var(--splenpage-cream);
      color: var(--splenpage-text);
    }
    .splenpage-section--sand {
      background: var(--splenpage-sand);
      color: var(--splenpage-text);
    }
    .splenpage-label {
      display: inline-block;
      font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--splenpage-gold);
      margin-bottom: 14px;
    }
    .splenpage-heading {
      font-family: var(--ff-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300;
      line-height: 1.18;
    }
    .splenpage-heading em { font-style: italic; color: var(--splenpage-gold); }
    .splenpage-divider {
      width: 48px; height: 2px;
      background: var(--splenpage-gold);
      margin: 22px 0 30px;
    }
 
    /* ─── HIGHLIGHTS / ITINERARY ─────────────────────────────── */
    .splenpage-itinerary {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
    }
    .splenpage-itinerary__sticky { position: sticky; top: 100px; }
    .splenpage-itinerary__img {
      border-radius: var(--splenpage-r);
      overflow: hidden;
      aspect-ratio: 4/5;
      box-shadow: 0 24px 60px rgba(0,0,0,.22);
      margin-bottom: 20px;
    }
    .splenpage-itinerary__img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .6s ease;
    }
    .splenpage-itinerary__img:hover img { transform: scale(1.04); }
    .splenpage-itinerary__caption {
      display: flex; align-items: center; gap: 10px;
      font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
      color: var(--splenpage-muted);
    }
    .splenpage-itinerary__caption::before {
      content: ''; width: 24px; height: 1px; background: var(--splenpage-gold);
    }
 
    /* stops */
    .splenpage-stops { list-style: none; margin-top: 14px; }
    .splenpage-stop {
      display: flex; gap: 20px;
      padding: 28px 0;
      border-bottom: 1px solid rgba(58,46,34,.12);
      cursor: default;
      transition: background .2s;
    }
    .splenpage-stop:first-child { border-top: 1px solid rgba(58,46,34,.12); }
    .splenpage-stop__num {
      font-family: var(--ff-display);
      font-size: 2rem;
      font-weight: 600;
      color: var(--splenpage-gold);
      min-width: 44px;
      line-height: 1;
      margin-top: 2px;
    }
    .splenpage-stop__body {}
    .splenpage-stop__place {
      font-family: var(--ff-display);
      font-size: 1.25rem; font-weight: 600;
      margin-bottom: 6px;
    }
    .splenpage-stop__desc {
      font-size: .85rem; line-height: 1.7;
      color: var(--splenpage-muted);
    }
    .splenpage-stop__tags {
      display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px;
    }
    .splenpage-tag {
      background: rgba(201,149,42,.1);
      border: 1px solid rgba(201,149,42,.2);
      color: var(--splenpage-gold);
      font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
      padding: 4px 12px; border-radius: 50px;
    }
 
    /* ─── TOUR FEATURES ──────────────────────────────────────── */
    .splenpage-features {
      max-width: 1200px; margin: 0 auto;
      text-align: center;
    }
    .splenpage-features__intro { max-width: 520px; margin: 0 auto 60px; }
    .splenpage-features__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 28px;
    }
    .splenpage-feature-card {
      background: var(--splenpage-brown);
      border: 1px solid var(--splenpage-border);
      border-radius: var(--splenpage-r);
      padding: 36px 28px;
      text-align: left;
      transition: transform .25s, box-shadow .25s, border-color .25s;
    }
    .splenpage-feature-card:hover {
      transform: translateY(-6px);
      border-color: var(--splenpage-gold);
      box-shadow: 0 20px 48px rgba(0,0,0,.45);
    }
    .splenpage-feature-card__icon {
      font-size: 2rem; margin-bottom: 20px;
    }
    .splenpage-feature-card__title {
      font-family: var(--ff-display);
      font-size: 1.15rem; font-weight: 600;
      margin-bottom: 10px;
      color: white;
    }
    .splenpage-feature-card__text {
      font-size: .82rem; line-height: 1.7; opacity: .65; color: white;
    }
 
    /* ─── OTHER TOURS ────────────────────────────────────────── */
    .splenpage-tours {
      max-width: 1200px; margin: 0 auto;
    }
    .splenpage-tours__header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 50px;
      flex-wrap: wrap; gap: 20px;
    }
    .splenpage-tours__grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
      gap: 26px;
    }
    .splenpage-tour-card {
      background: var(--splenpage-cream);
      border-radius: var(--splenpage-r);
      overflow: hidden;
      box-shadow: 0 6px 28px rgba(58,46,34,.1);
      transition: transform .28s, box-shadow .28s;
      color: var(--splenpage-text);
      display: flex; flex-direction: column;
    }
    .splenpage-tour-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 22px 52px rgba(58,46,34,.2);
    }
    .splenpage-tour-card__thumb {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
    }
    .splenpage-tour-card__thumb img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .5s ease;
    }
    .splenpage-tour-card:hover .splenpage-tour-card__thumb img { transform: scale(1.07); }
    .splenpage-tour-card__badge {
      position: absolute; top: 14px; left: 14px;
      background: var(--splenpage-gold);
      color: var(--splenpage-dark);
      font-size: .64rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
      padding: 5px 12px; border-radius: 50px;
    }
    .splenpage-tour-card__fav {
      position: absolute; top: 14px; right: 14px;
      background: rgba(14,11,7,.55);
      backdrop-filter: blur(6px);
      border: none; cursor: pointer;
      width: 34px; height: 34px; border-radius: 50%;
      display: grid; place-items: center;
      font-size: 1rem;
      transition: background .2s;
    }
    .splenpage-tour-card__fav:hover { background: rgba(14,11,7,.85); }
    .splenpage-tour-card__body { padding: 24px 22px; flex: 1; display: flex; flex-direction: column; }
    .splenpage-tour-card__meta {
      display: flex; gap: 16px;
      font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
      color: var(--splenpage-muted);
      margin-bottom: 10px;
    }
    .splenpage-tour-card__meta span { display: flex; align-items: center; gap: 5px; }
    .splenpage-tour-card__name {
      font-family: var(--ff-display);
      font-size: 1.3rem; font-weight: 600;
      margin-bottom: 8px;
      line-height: 1.2;
    }
    .splenpage-tour-card__desc {
      font-size: .82rem; line-height: 1.65;
      color: var(--splenpage-muted);
      margin-bottom: 20px;
      flex: 1;
    }
    .splenpage-tour-card__footer {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 16px;
      border-top: 1px solid rgba(58,46,34,.1);
    }
    .splenpage-tour-card__price {
        display: none;
      font-family: var(--ff-display);
      font-size: 1.4rem; font-weight: 600;
      color: var(--splenpage-gold);
    }
    .splenpage-tour-card__price small {
      font-family: var(--ff-body);
      font-size: .7rem; font-weight: 400;
      color: var(--splenpage-muted);
      display: block;
      line-height: 1.2;
    }
    .splenpage-tour-card__btn {
      background: var(--splenpage-dark);
      color: var(--splenpage-cream);
      font-size: .74rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
      padding: 10px 20px; border-radius: 50px;
      transition: background .2s, transform .2s;
    }
    .splenpage-tour-card__btn:hover {
      background: var(--splenpage-gold);
      color: var(--splenpage-dark);
      transform: translateY(-1px);
    }
 
    /* ─── INCLUDED / EXCLUDED ────────────────────────────────── */
    .splenpage-inclusions {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    }
    .splenpage-incl__title {
      font-family: var(--ff-display);
      font-size: 1.4rem; font-weight: 600;
      margin-bottom: 26px;
      display: flex; align-items: center; gap: 12px;
    }
    .splenpage-incl__title::after {
      content: ''; flex: 1; height: 1px;
      background: rgba(58,46,34,.15);
    }
    .splenpage-incl__list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .splenpage-incl__item {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: .88rem; line-height: 1.55;
    }
    .splenpage-incl__icon {
      width: 20px; height: 20px; border-radius: 50%;
      display: grid; place-items: center;
      font-size: .7rem; flex-shrink: 0; margin-top: 1px;
    }
    .splenpage-incl__icon--yes {
      background: rgba(34,139,34,.12); color: #22842d;
    }
    .splenpage-incl__icon--no {
      background: rgba(180,50,50,.1); color: #b43232;
    }
 
    /* ─── BOOKING FORM ───────────────────────────────────────── */
    .splenpage-booking {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start;
    }
    .splenpage-booking__info {}
    .splenpage-booking__price-box {
      background: var(--splenpage-brown);
      border: 1px solid var(--splenpage-border);
      border-radius: var(--splenpage-r);
      padding: 36px 32px;
    }
    .splenpage-booking__price-main {
      font-family: var(--ff-display);
      font-size: 3rem; font-weight: 300;
      color: var(--splenpage-gold-lt);
    }
    .splenpage-booking__price-main span {
      font-size: 1.1rem; color: var(--splenpage-muted); font-weight: 400;
    }
    .splenpage-booking__form {
      background: var(--splenpage-cream);
      border-radius: var(--splenpage-r);
      padding: 40px 36px;
      color: var(--splenpage-text);
      box-shadow: 0 16px 50px rgba(0,0,0,.12);
    }
    .splenpage-form-title {
      font-family: var(--ff-display);
      font-size: 1.6rem; font-weight: 600;
      margin-bottom: 8px;
    }
    .splenpage-form-sub {
      font-size: .82rem; color: var(--splenpage-muted);
      margin-bottom: 28px;
    }
    .splenpage-form-group { margin-bottom: 18px; }
    .splenpage-form-group label {
      display: block;
      font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
      color: var(--splenpage-muted);
      margin-bottom: 8px;
    }
    .splenpage-form-group input,
    .splenpage-form-group select,
    .splenpage-form-group textarea {
      width: 100%;
      background: var(--splenpage-sand);
      border: 1.5px solid transparent;
      border-radius: 8px;
      padding: 13px 16px;
      font-family: var(--ff-body);
      font-size: .88rem;
      color: var(--splenpage-text);
      outline: none;
      transition: border-color .2s;
    }
    .splenpage-form-group input:focus,
    .splenpage-form-group select:focus,
    .splenpage-form-group textarea:focus {
      border-color: var(--splenpage-gold);
    }
    .splenpage-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .splenpage-form-submit {
      width: 100%; margin-top: 8px;
      background: var(--splenpage-gold);
      color: var(--splenpage-dark);
      border: none; cursor: pointer;
      font-family: var(--ff-body);
      font-size: .82rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
      padding: 16px;
      border-radius: 8px;
      transition: background .2s, transform .2s;
    }
    .splenpage-form-submit:hover {
      background: var(--splenpage-gold-lt);
      transform: translateY(-1px);
    }
    .splenpage-form-note {
      text-align: center;
      font-size: .72rem; color: var(--splenpage-muted);
      margin-top: 12px;
    }
 
    /* ─── TESTIMONIALS ───────────────────────────────────────── */
    .splenpage-testimonials {
      max-width: 1200px; margin: 0 auto;
    }
    .splenpage-testimonials__grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 60px;
    }
    .splenpage-tcard {
      background: var(--splenpage-brown);
      border: 1px solid var(--splenpage-border);
      border-radius: var(--splenpage-r);
      padding: 32px 28px;
      transition: border-color .25s;
    }
    .splenpage-tcard:hover { border-color: var(--splenpage-gold); }
    .splenpage-tcard__stars { color: var(--splenpage-gold); font-size: 1rem; margin-bottom: 16px; }
    .splenpage-tcard__text {
      font-family: var(--ff-display);
      font-size: 1.05rem; font-style: italic; line-height: 1.7;
      opacity: .88;
      color: white;
      margin-bottom: 24px;
    }
    .splenpage-tcard__author {
      display: flex; align-items: center; gap: 12px;
    }
    .splenpage-tcard__avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--splenpage-gold);
      display: grid; place-items: center;
      font-family: var(--ff-display);
      font-size: 1rem; font-weight: 600;
      color: var(--splenpage-dark);
      flex-shrink: 0;
    }
    .splenpage-tcard__name {
      font-size: .88rem; font-weight: 500; color: white;
    }
    .splenpage-tcard__origin {
      font-size: .75rem; opacity: .5; margin-top: 2px; color: white;
    }
 
    /* ─── FAQ ────────────────────────────────────────────────── */
    .splenpage-faq {
      max-width: 840px; margin: 0 auto;
    }
    .splenpage-faq__list { margin-top: 50px; }
    .splenpage-faq__item {
      border-bottom: 1px solid rgba(58,46,34,.15);
    }
    .splenpage-faq__q {
      display: flex; align-items: center; justify-content: space-between;
      padding: 22px 0;
      cursor: pointer;
      font-family: var(--ff-display);
      font-size: 1.1rem; font-weight: 600;
      user-select: none;
    }
    .splenpage-faq__q .splenpage-faq__icon {
      width: 28px; height: 28px; border-radius: 50%;
      background: rgba(201,149,42,.12);
      border: 1px solid var(--splenpage-border);
      display: grid; place-items: center;
      font-size: .9rem; flex-shrink: 0;
      transition: background .2s, transform .3s;
    }
    .splenpage-faq__item.open .splenpage-faq__icon {
      background: var(--splenpage-gold);
      color: var(--splenpage-dark);
      transform: rotate(45deg);
    }
    .splenpage-faq__a {
      max-height: 0; overflow: hidden;
      font-size: .88rem; line-height: 1.75;
      color: var(--splenpage-muted);
      transition: max-height .35s ease, padding .35s;
    }
    .splenpage-faq__item.open .splenpage-faq__a {
      max-height: 300px;
      padding-bottom: 22px;
    }
 
    /* ─── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 900px) {
      .splenpage-nav__links { display: none; }
      .splenpage-nav__burger { display: flex; }
      .splenpage-itinerary { grid-template-columns: 1fr; gap: 40px; }
      .splenpage-itinerary__sticky { position: static; }
      .splenpage-booking { grid-template-columns: 1fr; gap: 36px; }
      .splenpage-inclusions { grid-template-columns: 1fr; gap: 36px; }
      .splenpage-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .splenpage-hero__stats { flex-wrap: wrap; }
      .splenpage-hero__stat { flex: 1 1 50%; }
    }
    @media (max-width: 600px) {
      .splenpage-section { padding: 70px 5%; }
      .splenpage-footer__grid { grid-template-columns: 1fr; }
      .splenpage-hero__stats { display: none; }
      .splenpage-form-row { grid-template-columns: 1fr; }
      .splenpage-sticky-bar { flex-direction: column; gap: 10px; align-items: stretch; text-align: center; }
    }
 
 
 
  
    /* ─── CARD WRAPPER ─── */
    .indiawalk-card {
      width: 100%;
      max-width: 100%;
          margin: 30px 0px;
    padding: 3px;
      background: #ffffff;
      overflow: hidden;
      display: flex;
      flex-direction: row;
    }
 
    /* ─── LEFT PANEL ─── */
    .indiawalk-left {
      width: 46%;
      flex-shrink: 0;
      border-radius: 20px;
      background: #3a2e22;
      position: relative;
      min-height: 540px;
      overflow: hidden;
    }
 
    /* top-right circle decoration */
    .indiawalk-circle-top {
      position: absolute;
      top: -70px;
      right: -70px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: rgba(232, 184, 75, 0.12);
      z-index: 0;
    }
 
    /* bottom-left circle decoration */
    .indiawalk-circle-bottom {
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(232, 184, 75, 0.08);
      z-index: 0;
    }
 
    /* image placeholder block */
    .indiawalk-img-wrap {
      position: absolute;
      top: 28px;
      left: 28px;
      right: 28px;
      bottom: 100px;
      border-radius: 16px;
      overflow: hidden;
      z-index: 2;
      background: #5a4535;
    }
 
    /* stacked CSS layers that simulate a warm heritage photo */
    .indiawalk-sky {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, #d4b896 0%, #e8c87a 45%, #c49040 100%);
    }
 
    .indiawalk-arch-left {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 38%;
      height: 70%;
      background: #8b6840;
      border-radius: 0 80px 0 0;
      opacity: 0.85;
    }
 
    .indiawalk-arch-right {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 38%;
      height: 64%;
      background: #7a5c34;
      border-radius: 80px 0 0 0;
      opacity: 0.82;
    }
 
    .indiawalk-dome {
      position: absolute;
      top: 22%;
      left: 50%;
      transform: translateX(-50%);
      width: 18%;
      height: 13%;
      background: #f0e0b0;
      border-radius: 50% 50% 0 0;
      opacity: 0.96;
    }
 
    .indiawalk-taj-body {
      position: absolute;
      top: 35%;
      left: 50%;
      transform: translateX(-50%);
      width: 16%;
      height: 16%;
      background: #eedad8;
      opacity: 0.93;
    }
 
    .indiawalk-min-left {
      position: absolute;
      top: 30%;
      left: 35%;
      width: 4%;
      height: 22%;
      background: #e8d4a0;
      border-radius: 6px 6px 0 0;
      opacity: 0.88;
    }
 
    .indiawalk-min-right {
      position: absolute;
      top: 30%;
      right: 35%;
      width: 4%;
      height: 22%;
      background: #e8d4a0;
      border-radius: 6px 6px 0 0;
      opacity: 0.88;
    }
 
    .indiawalk-ground {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 34%;
      background: linear-gradient(180deg, #a07840 0%, #6b4e28 100%);
    }
 
    .indiawalk-path {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 24%;
      height: 34%;
      background: linear-gradient(180deg, #e0c870 0%, #b08830 100%);
      clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    }
 
    .indiawalk-tree-left {
      position: absolute;
      bottom: 32%;
      left: 16%;
      width: 10%;
      height: 10%;
      background: #4a7030;
      border-radius: 50%;
      opacity: 0.7;
    }
 
    .indiawalk-tree-right {
      position: absolute;
      bottom: 32%;
      right: 16%;
      width: 9%;
      height: 9%;
      background: #3e6028;
      border-radius: 50%;
      opacity: 0.65;
    }
 
    /* figure: guide */
    .indiawalk-fig1 {
      position: absolute;
      bottom: 32%;
      left: 40%;
      width: 5%;
      height: 12%;
      background: #c05020;
      border-radius: 4px 4px 0 0;
      opacity: 0.9;
    }
 
    .indiawalk-fig1-head {
      position: absolute;
      bottom: 43%;
      left: 40.5%;
      width: 4%;
      height: 5%;
      background: #3a2010;
      border-radius: 50%;
      opacity: 0.9;
    }
 
    /* figure: tourist */
    .indiawalk-fig2 {
      position: absolute;
      bottom: 32%;
      right: 42%;
      width: 5%;
      height: 11%;
      background: #2860b0;
      border-radius: 4px 4px 0 0;
      opacity: 0.88;
    }
 
    .indiawalk-fig2-head {
      position: absolute;
      bottom: 42%;
      right: 42.5%;
      width: 4%;
      height: 5%;
      background: #e8c0a0;
      border-radius: 50%;
      opacity: 0.9;
    }
 
    /* overlay gradient for caption readability */
    .indiawalk-img-shadow {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(0deg, rgba(30,16,6,0.78) 0%, transparent 100%);
      z-index: 3;
    }
 
    /* caption text inside image */
    .indiawalk-img-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px 18px 16px;
      z-index: 4;
    }
 
    .indiawalk-caption-title {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 15px;
      color: #fff;
      display: block;
    }
 
    .indiawalk-caption-sub {
      font-size: 11px;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.6px;
      margin-top: 3px;
      display: block;
    }
 
    /* floating dot accents */
    .indiawalk-dot {
      position: absolute;
      border-radius: 50%;
      z-index: 5;
    }
 
    .indiawalk-dot-1 {
      width: 10px;
      height: 10px;
      background: #e8b84b;
      top: 40px;
      right: 56px;
      animation: indiawalk-bob 3.5s ease-in-out infinite alternate;
    }
 
    .indiawalk-dot-2 {
      width: 6px;
      height: 6px;
      background: rgba(232,184,75,0.45);
      top: 62px;
      right: 78px;
      animation: indiawalk-bob 4s 0.7s ease-in-out infinite alternate;
    }
 
    .indiawalk-dot-3 {
      width: 8px;
      height: 8px;
      background: rgba(232,184,75,0.6);
      bottom: 112px;
      left: 40px;
      animation: indiawalk-bob 3s 1.3s ease-in-out infinite alternate;
    }
 
    @keyframes indiawalk-bob {
      from { transform: translateY(0); }
      to   { transform: translateY(-8px); }
    }
 
    /* years badge */
    .indiawalk-badge {
      position: absolute;
      bottom: 22px;
      right: 22px;
      width: 106px;
      height: 106px;
      background: #e8b84b;
      border-radius: 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 6;
      box-shadow: 0 8px 28px rgba(0,0,0,0.3);
      animation: indiawalk-pop 0.5s 0.4s ease both;
    }
 
    @keyframes indiawalk-pop {
      from { transform: scale(0.7); opacity: 0; }
      to   { transform: scale(1); opacity: 1; }
    }
 
    .indiawalk-badge-num {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      font-weight: 700;
      color: #3a2e22;
      line-height: 1;
    }
 
    .indiawalk-badge-text {
      font-size: 10px;
      font-weight: 600;
      color: #5a4020;
      text-align: center;
      margin-top: 4px;
      letter-spacing: 0.2px;
    }
 
    /* ─── RIGHT PANEL ─── */
    .indiawalk-right {
      flex: 1;
      padding: 52px 48px 44px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
 
    /* eyebrow */
    .indiawalk-eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2.8px;
      text-transform: uppercase;
      color: #e8b84b;
      margin-bottom: 14px;
    }
 
    .indiawalk-eyebrow-line {
      display: inline-block;
      width: 30px;
      height: 2px;
      background: #e8b84b;
      border-radius: 2px;
      flex-shrink: 0;
    }
 
    /* heading */
    .indiawalk-heading {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 700;
      color: #3a2e22;
      line-height: 1.18;
      margin-bottom: 18px;
    }
 
    .indiawalk-heading-gold {
      font-style: italic;
      color: #c4922a;
    }
 
    /* bold intro */
    .indiawalk-intro {
      font-size: 14.5px;
      font-weight: 600;
      color: #3a2e22;
      line-height: 1.58;
      margin-bottom: 14px;
    }
 
    /* body text */
    .indiawalk-body {
      font-size: 14px;
      font-weight: 400;
      color: #6b5840;
      line-height: 1.82;
      margin-bottom: 12px;
    }
 
    /* divider */
    .indiawalk-divider {
      width: 48px;
      height: 3px;
      background: #e8b84b;
      border-radius: 3px;
      margin: 22px 0;
    }
 
    /* checklist */
    .indiawalk-checklist {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 24px;
      list-style: none;
    }
 
    .indiawalk-check-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13.5px;
      font-weight: 600;
      color: #3a2e22;
    }
 
    .indiawalk-tick-wrap {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      background: #fdf3dc;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid #e8b84b;
    }
 
    /* CSS-only checkmark */
    .indiawalk-tick {
      display: block;
      width: 10px;
      height: 6px;
      border-left: 2px solid #c4922a;
      border-bottom: 2px solid #c4922a;
      transform: rotate(-45deg) translateY(-1px);
    }
 
    /* stats row */
    .indiawalk-stats {
      display: flex;
      margin-top: 28px;
      padding-top: 22px;
      border-top: 1px solid #eddfc8;
    }
 
    .indiawalk-stat {
      flex: 1;
      text-align: center;
      padding: 0 8px;
      border-right: 1px solid #eddfc8;
    }
 
    .indiawalk-stat:last-child {
      border-right: none;
    }
 
    .indiawalk-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      color: #3a2e22;
      line-height: 1;
    }
 
    .indiawalk-stat-accent {
      color: #c4922a;
    }
 
    .indiawalk-stat-label {
      font-size: 11px;
      font-weight: 500;
      color: #9a7e60;
      margin-top: 5px;
    }
 
    /* ─── RESPONSIVE ─── */
    @media (max-width: 860px) {
      .indiawalk-card {
        flex-direction: column;
      }
 
      .indiawalk-left {
        width: 100%;
        min-height: 320px;
      }
 
      .indiawalk-img-wrap {
        bottom: 88px;
      }
 
      .indiawalk-right {
        padding: 36px 30px 40px;
      }
 
      .indiawalk-heading {
        font-size: 28px;
      }
    }
 
    @media (max-width: 520px) {
      body {
        padding: 20px 12px;
      }
 
      .indiawalk-left {
        min-height: 260px;
      }
 
      .indiawalk-img-wrap {
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 78px;
      }
 
      .indiawalk-badge {
        width: 84px;
        height: 84px;
        bottom: 16px;
        right: 16px;
      }
 
      .indiawalk-badge-num {
        font-size: 32px;
      }
 
      .indiawalk-right {
        padding: 24px 20px 30px;
      }
 
      .indiawalk-heading {
        font-size: 24px;
      }
 
      .indiawalk-checklist {
        grid-template-columns: 1fr;
      }
 
      .indiawalk-stats {
        flex-wrap: wrap;
      }
 
      .indiawalk-stat {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1px solid #eddfc8;
        padding: 10px 0;
      }
 
      .indiawalk-stat:last-child {
        border-bottom: none;
      }
    }
    
    /* Day Header */
.splentrip-day-header {
    background: var(--splenpage-text);
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    color: var(--splenpage-gold-lt);
    margin-bottom: 15px;
}
.splentrip-subtitle {
    font-size: 20px;
    color: black;
    font-weight: 600;
    margin-bottom: 10px;
}
