/* -------------------------------------------------------------------------
   FIXES APPLIED:
   1.  Hero duplicate - styles.php already defines .hero, .hero-bg, .hero-bg
       img, @keyframes zoomin, .hero-overlay. Removed exact duplicates; kept
       only the one genuine difference: .hero-body lost max-width:1280px in
       styles.php (line 89 has it) but stylenew didn't, so unified below.
   2.  .wa-float conflict - styles.php (line 371) defines .wa-float as a
       simple round button (width/height 52px). stylenew redefines it as a
       flex row with tooltip, destroying styles.php layout on pages that load
       both. Resolved: stylenew only extends with the tooltip row layout and
       keeps the btn selector consistent with styles.php's .wa-float-btn.
   3.  .wa-btn conflict - styles.php line 310 defines .wa-btn as a full-width
       form submit button. stylenew reused the same class for the floating
       action button. Renamed to .wa-float-btn throughout to avoid collision.
   4.  footer conflict - styles.php already has footer{} and ft-grid. stylenew
       redefined footer{} with different padding values and new class names
       (.ft-top, .f-logo, .f-col) that differ from styles.php (.ft-grid,
       .f-brand, .f-col). Removed the conflicting footer block; kept only the
       new class names not present in styles.php.
   5.  .ov-visual height conflict - styles.php sets height:580px; stylenew
       overrides to 520px without a media query guard, making the collage
       shorter than intended on desktop. Removed the flat override; kept only
       the responsive overrides below 860 px where they are intentional.
   6.  .ov-img-inset border conflict - styles.php: border:6px; stylenew: 5px.
       Unified to 6px (styles.php value is the base).
   7.  .ov-img-inset width conflict - styles.php: 55%; stylenew: 52%. Unified
       to 55% (styles.php base).   9.  Missing .route-photo img height on mobile - no responsive rule existed;
       added 280px cap at <=700px.
   10. Missing font-awesome dependency on machame-route.php - that file has no
       <link> to Font Awesome yet uses .fa-brands .fa-whatsapp in the CTA.
       Noted in comment; cannot fix from CSS alone but flagged.
   11. .stat-v was defined in stylenew but never used in either page file.
       Kept (harmless) but flagged.
   12. .dest-tiles responsive breakpoint at 1100px used repeat(3,1fr) but the
       tiles container can clip on mid-range tablets at ~900px. Added an 880px
       breakpoint for repeat(2,1fr).
   13. @keyframes bobfloat duplicate - defined in both files. Removed from
       stylenew; styles.php owns it.
   14. Scroll-reveal classes (.rev, .revL, .revR, .d1-d5) are used throughout
       the pages but the JS that adds .sr-ready and .vis is only present in
       the main site JS, not included in these page files. Added a minimal
       inline fallback scroll-reveal script at the bottom of this file.
-------------------------------------------------------------------------- */

/* -- Stats / quick-facts strip -- */
.stat-v{font-size:.75rem;color:var(--warm);font-weight:500;margin-top:.2rem}

/* -- Overview visual / two-image collage
      (height and sizing owned by styles.php; only add what's missing) -- */
.ov-img-main{position:absolute;top:0;left:0;width:74%;height:80%;object-fit:cover;border-radius:12px;box-shadow:var(--shadow-lg)}
/* unified to styles.php values: 55% wide, 6px border */
.ov-img-inset{position:absolute;bottom:0;right:0;width:55%;height:46%;object-fit:cover;border-radius:12px;border:6px solid var(--white);box-shadow:var(--shadow-md)}

/* -- Destination tiles strip -- */
.dest-tiles{display:grid;grid-template-columns:repeat(5,1fr);gap:.7rem;margin:2.5rem 0}
.dest-tile{border-radius:10px;overflow:hidden;position:relative;aspect-ratio:3/4;cursor:default}
.dest-tile img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.4,0,.2,1)}
.dest-tile:hover img{transform:scale(1.06)}
.dest-tile-grad{position:absolute;inset:0;background:linear-gradient(to top,rgba(26,19,16,.9) 0%,rgba(26,19,16,.06) 55%);transition:background .4s}
.dest-tile:hover .dest-tile-grad{background:linear-gradient(to top,rgba(192,96,24,.9) 0%,rgba(26,19,16,.1) 55%)}
.dest-tile-body{position:absolute;bottom:0;left:0;right:0;padding:1rem .9rem}
.dest-tile-day{font-size:.58rem;letter-spacing:.2em;text-transform:uppercase;color:var(--accent-lt);font-weight:700;margin-bottom:.2rem}
.dest-tile-name{font-family:'DM Serif Display',serif;font-size:1.1rem;color:#fff;font-weight:400;line-height:1.1}

/* -- Itinerary timeline -- */
.itin-timeline{margin-top:2.5rem;display:flex;flex-direction:column;position:relative}
.itin-timeline::before{content:'';position:absolute;left:22px;top:0;bottom:0;width:1px;background:linear-gradient(to bottom,transparent,var(--mist) 5%,var(--mist) 95%,transparent)}
.itin-day{display:grid;grid-template-columns:46px 1fr;padding-bottom:0}
.itin-day-left{display:flex;flex-direction:column;align-items:center;padding-top:1.5rem;position:relative;z-index:1}
.itin-day-num{width:46px;height:46px;border-radius:50%;background:var(--ink);display:flex;align-items:center;justify-content:center;font-family:'DM Serif Display',serif;font-size:1.1rem;font-weight:400;color:#fff;flex-shrink:0;transition:background .25s}
.itin-day:hover .itin-day-num{background:var(--accent)}
.itin-day-right{padding:1.5rem 0 2.5rem 2rem;border-bottom:1px solid var(--mist)}
.itin-day:last-child .itin-day-right{border-bottom:none}
.itin-day-label{font-size:.55rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--accent);margin-bottom:.3rem}
.itin-day-title{font-family:'DM Serif Display',serif;font-size:1.45rem;font-weight:400;color:var(--ink);margin-bottom:.8rem;line-height:1.15}
.itin-day-tags{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:.9rem}
.itin-tag{font-size:.6rem;color:var(--mid);background:var(--off);border:1px solid var(--mist);padding:.22rem .7rem;border-radius:20px;white-space:nowrap;font-weight:500;transition:border-color .2s,color .2s}
.itin-tag:hover{border-color:var(--accent);color:var(--accent)}
.itin-day-text{font-size:.84rem;color:var(--warm);line-height:1.9;font-weight:300;margin-bottom:1.2rem}
.itin-day-img{width:100%;height:220px;object-fit:cover;border-radius:10px;box-shadow:var(--shadow-sm);display:block;transition:transform .5s}
.itin-day-img:hover{transform:scale(1.01)}
.itin-day-img-grid{display:grid;grid-template-columns:1fr 1fr;gap:.7rem}
.itin-day-img-grid .itin-day-img{height:155px}

/* -- Route section -- */
.route-wrap{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.route-stops{display:flex;flex-direction:column}
.route-stop{display:flex;gap:1.2rem;align-items:flex-start;position:relative;padding-bottom:1.8rem}
.route-stop:last-child{padding-bottom:0}
.route-stop::before{content:'';position:absolute;left:9px;top:24px;bottom:0;width:1px;background:var(--mist)}
.route-stop:last-child::before{display:none}
.rs-dot{width:20px;height:20px;border-radius:50%;border:2px solid var(--accent);background:var(--white);flex-shrink:0;position:relative;z-index:1;margin-top:2px;display:flex;align-items:center;justify-content:center;transition:background .25s}
.route-stop:hover .rs-dot{background:var(--accent)}
.rs-dot-inner{width:6px;height:6px;border-radius:50%;background:var(--accent);transition:background .25s}
.route-stop:hover .rs-dot-inner{background:#fff}
.rs-day{font-size:.58rem;letter-spacing:.18em;text-transform:uppercase;color:var(--stone);margin-bottom:.2rem;font-weight:500}
.rs-name{font-family:'DM Serif Display',serif;font-size:1.15rem;color:var(--ink);margin-bottom:.2rem}
.rs-note{font-size:.78rem;color:var(--warm);line-height:1.6;font-weight:300}
.route-photo{position:relative;border-radius:14px;overflow:hidden}
.route-photo img{width:100%;height:500px;object-fit:cover;filter:brightness(.78) saturate(1.1);display:block}
.route-photo-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(26,19,16,.35),rgba(192,96,24,.12))}

/* -- CTA banner -- */
.cta-banner{background:var(--ink);border-radius:16px;padding:clamp(3rem,5vw,5rem) clamp(2rem,5vw,4rem);text-align:center;position:relative;overflow:hidden;margin:3.5rem 0 0}
.cta-banner::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 50% 60%,rgba(192,96,24,.16),transparent 65%);pointer-events:none}
.cta-banner::after{content:'';position:absolute;inset:0;opacity:.025;background-image:radial-gradient(circle at 1.5px 1.5px,rgba(255,255,255,.8) 1px,transparent 0);background-size:28px 28px;pointer-events:none}
.cta-inner{position:relative;z-index:2}
.cta-subtitle{font-size:.9rem;color:rgba(255,255,255,.5);line-height:1.85;max-width:500px;margin:1rem auto 2.5rem;font-weight:300}
.cta-btns{display:flex;gap:.8rem;justify-content:center;flex-wrap:wrap}

/* -- Footer - new class names used in footer.php that styles.php doesn't have --
   NOTE: do NOT redefine footer{}, .f-col, .f-col ul, .f-col ul li a -
   those are already in styles.php and would conflict. Only add net-new classes. -- */
.ft-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3.5rem;margin-bottom:3rem}
/* .f-logo is a net-new alias for .f-brand used in footer.php */
.f-logo{font-family:'DM Serif Display',serif;font-size:1.25rem;font-weight:400;color:#fff;margin-bottom:.75rem}
.f-logo em{color:var(--accent-lt);font-style:normal}
.f-socs{display:flex;gap:.55rem;margin-top:1.2rem}
.f-s{width:32px;height:32px;border-radius:50%;border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.3);font-size:.8rem;cursor:pointer;transition:all .2s}
.f-s:hover{border-color:var(--accent-lt);color:var(--accent-lt)}
/* ft-bot is a net-new alias - styles.php uses .ft-bar */
.ft-bot{border-top:1px solid rgba(255,255,255,.06);padding-top:1.5rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.5rem;font-size:.68rem;color:rgba(255,255,255,.18)}
.ft-bot a{color:rgba(255,255,255,.18);transition:color .2s}
.ft-bot a:hover{color:var(--accent-lt)}
.cert-row{display:flex;gap:.5rem;flex-wrap:wrap}

/* -- WhatsApp float --
   FIX 2 & 3: styles.php owns .wa-float as a standalone round button.
   stylenew extends it into a row layout without redefining dimensions.
   The floating btn selector is renamed .wa-float-btn to avoid the
   .wa-btn conflict (styles.php uses .wa-btn for the form WA button). -- */
.wa-float{
  /* extend to flex row - do NOT repeat position/z-index/animation,
     those are in styles.php */
  width:auto!important;
  height:auto!important;
  background:transparent!important;
  box-shadow:none!important;
  display:flex;
  align-items:center;
  gap:.65rem;
  flex-direction:row-reverse;
  animation:none!important; /* bobfloat lives in styles.php */
}
.wa-float-btn{
  width:52px;height:52px;border-radius:50%;background:#25D366;
  display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;color:#fff;
  box-shadow:0 6px 24px rgba(37,211,102,.4);
  animation:bobfloat 3s ease-in-out 3s infinite; /* bobfloat in styles.php */
  transition:transform .2s;text-decoration:none
}
.wa-float-btn:hover{transform:scale(1.1)}
.wa-tooltip{
  background:var(--ink);color:#fff;font-size:.75rem;font-weight:500;
  padding:.4rem .9rem;border-radius:6px;white-space:nowrap;
  opacity:0;transform:translateX(8px);
  transition:opacity .25s,transform .25s;
  pointer-events:none;box-shadow:var(--shadow-md)
}
.wa-float:hover .wa-tooltip{opacity:1;transform:none}

/* -- Responsive additions -- */
@media(max-width:1100px){
.route-wrap{grid-template-columns:1fr}
  .dest-tiles{grid-template-columns:repeat(3,1fr)}
  /* FIX 12: .ft-top responsive (was missing from original) */
  .ft-top{grid-template-columns:1fr 1fr}
}
/* FIX 12: mid-tablet breakpoint for destination tiles */
@media(max-width:880px){
  .dest-tiles{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:700px){
  .dest-tiles{grid-template-columns:repeat(2,1fr)}
  .itin-day-img-grid{grid-template-columns:1fr}
  .ft-top{grid-template-columns:1fr}
  .ft-bot{flex-direction:column;text-align:center}
  .cta-btns{flex-direction:column;align-items:center}
  /* FIX 5: ov-visual height override at mobile (intentional) */
  .ov-visual{height:320px}
  .ov-img-main{width:80%;height:76%}
  /* unified to 55% base (styles.php) at mobile */
  .ov-img-inset{width:58%;height:42%}
  /* FIX 9: route photo height cap on mobile */
  .route-photo img{height:280px}
}
@media(max-width:500px){
  .ov-visual{height:260px}
}



/* Professional expansion pages */
.aec-hero .hero-body{max-width:980px}
.aec-hero .h1{font-family:'DM Serif Display',serif;font-size:clamp(2.8rem,7vw,5.8rem);font-weight:400;color:#fff;line-height:1;margin-bottom:1.2rem}
.aec-wide{max-width:var(--max);margin:0 auto}
.aec-card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:2rem}
.aec-tour-card{display:block;background:var(--white);border:1px solid var(--mist);border-radius:14px;overflow:hidden;box-shadow:var(--shadow-sm);transition:transform .25s,box-shadow .25s,border-color .25s;color:inherit;text-decoration:none}
.aec-tour-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:rgba(192,96,24,.35)}
.aec-tour-card img{width:100%;height:220px;object-fit:cover;display:block}
.aec-tour-card div{padding:1.25rem}
.aec-tour-card span{display:block;font-size:.56rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--accent);margin-bottom:.45rem}
.aec-tour-card h3{font-family:'DM Serif Display',serif;font-size:1.35rem;font-weight:400;color:var(--ink);line-height:1.15;margin-bottom:.55rem}
.aec-tour-card p{font-size:.82rem;line-height:1.7;color:var(--warm);font-weight:300;margin-bottom:.8rem}
.aec-tour-card strong{font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;color:var(--accent)}
.aec-link-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.8rem;margin-top:1.5rem}
.aec-link-card{border:1px solid var(--mist);border-radius:10px;padding:1rem 1.1rem;background:var(--off);color:var(--ink);font-weight:700;font-size:.75rem;letter-spacing:.08em;text-transform:uppercase;text-decoration:none;transition:background .2s,border-color .2s,transform .2s}
.aec-link-card:hover{background:#fff;border-color:rgba(192,96,24,.35);transform:translateY(-2px)}
.aec-article{max-width:960px;margin:0 auto;padding:4rem 5%}
.aec-article-body{background:#fff}
.aec-contact-form{display:grid;grid-template-columns:1fr 1fr;gap:.8rem;max-width:760px;margin:2rem 0}
.aec-contact-form input,.aec-contact-form textarea{width:100%;border:1px solid var(--mist);border-radius:8px;padding:.95rem 1rem;font-family:'DM Sans',sans-serif;font-size:.9rem;background:#fff;color:var(--ink)}
.aec-contact-form textarea{grid-column:1/-1;min-height:140px;resize:vertical}
.aec-contact-form .btn-primary{width:max-content}
@media(max-width:1000px){.aec-card-grid{grid-template-columns:repeat(2,1fr)}.aec-link-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.aec-card-grid,.aec-link-grid,.aec-contact-form{grid-template-columns:1fr}.aec-tour-card img{height:190px}.aec-contact-form .btn-primary{width:100%}}

.aec-form-message{margin:1rem 0 1.5rem;padding:1rem 1.15rem;border-radius:10px;background:#fff7e6;border:1px solid rgba(200,148,42,.35);color:#3a2a16;font-weight:600}
.aec-form-message-success{background:#edf8ee;border-color:rgba(74,130,75,.35);color:#244b28}
.aec-contact-form button,.aec-plan-form button{border:0;cursor:pointer}
.aec-plan-form{grid-template-columns:repeat(2,minmax(0,1fr))}
.aec-plan-form textarea,.aec-plan-form button{grid-column:1/-1}
.contact-form{display:block}
@media(max-width:720px){.aec-plan-form{grid-template-columns:1fr}.bk-form{grid-template-columns:1fr!important}.contact-form-side{padding:2.2rem 1.2rem!important}}

.aec-field{display:flex;flex-direction:column;gap:.35rem;min-width:0}.aec-field span{font-size:.72rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--warm)}.aec-field input,.aec-field textarea{width:100%}.aec-field-full{grid-column:1/-1}.bk-form textarea{grid-column:1/-1;width:100%;min-height:110px;border:1px solid rgba(255,255,255,.18);border-radius:10px;padding:.95rem 1rem;background:rgba(255,255,255,.1);color:#fff;font-family:'DM Sans',sans-serif;resize:vertical}.bk-form textarea::placeholder{color:rgba(255,255,255,.72)}

/* Final itinerary readability polish */
.itin-timeline{gap:1.25rem}.itin-day{background:#fff;border:1px solid rgba(120,82,42,.16);border-radius:18px;padding:1.15rem;box-shadow:0 14px 38px rgba(33,24,16,.08)}
.itin-day-left{padding-top:.4rem}.itin-day-num{background:linear-gradient(135deg,var(--ink),var(--accent));box-shadow:0 10px 26px rgba(192,96,24,.24);font-weight:800}
.itin-day-right{min-width:0}.itin-day-label{display:inline-flex;align-items:center;gap:.45rem;color:#8a4f1d;font-weight:800;letter-spacing:.12em}.itin-day-label::before{content:'\f3c5';font-family:'Font Awesome 6 Free';font-weight:900;color:var(--accent)}
.itin-day-title{font-size:clamp(1.45rem,2.2vw,2.15rem)!important;line-height:1.15;color:#111!important;font-weight:700!important;margin:.35rem 0 .85rem!important}.itin-day-title::first-letter{color:var(--accent)}
.itin-day-text,.day-desc{font-size:clamp(1rem,1.18vw,1.1rem)!important;line-height:1.78!important;color:#111!important;font-weight:400!important;margin-top:.85rem!important}.itin-day-text + .itin-day-img,.itin-day-text + .itin-day-img-grid{margin-top:1.25rem}
.itin-tag{background:#fff7e8!important;border:1px solid rgba(192,96,24,.2)!important;color:#2b2118!important;font-weight:700!important}.itin-tag i{color:var(--accent);margin-right:.32rem}.itin-day-img,.day-photo{border-radius:16px!important;box-shadow:0 16px 34px rgba(25,18,12,.16);object-fit:cover}.sc{box-shadow:0 24px 60px rgba(23,16,10,.18);border:1px solid rgba(200,148,42,.24)}.sc-form-intro{font-size:.86rem;line-height:1.65;color:rgba(255,255,255,.72);margin:.4rem 0 1rem}.sc-form{display:flex;flex-direction:column;gap:.9rem}.sc-form textarea{width:100%;min-height:120px;resize:vertical}.sc-input-wrap textarea{border:0;background:transparent;color:inherit;font:inherit;outline:0;padding:.82rem .2rem .82rem 0}.sc-textarea-wrap{align-items:flex-start}.sc-textarea-wrap .sc-icon{padding-top:.85rem}.sc-submit{display:flex;align-items:center;justify-content:center;gap:.55rem;border:0}@media(max-width:760px){.itin-day{grid-template-columns:1fr;padding:1rem}.itin-day-left{align-items:flex-start}.itin-day-num{width:42px;height:42px}.itin-day-text,.day-desc{font-size:1rem!important}.sc-row-fields{grid-template-columns:1fr!important}}


/* Final safari tour template consistency */
.itin-sec{
  background:transparent!important;
}
.rec-bar{
  background:transparent!important;
  box-shadow:none!important;
  border:1px solid rgba(192,96,24,.22)!important;
  border-left:3px solid var(--accent)!important;
}
.rec-bar p{
  color:#1a1a1a!important;
  font-size:clamp(.95rem,1.05vw,1.05rem)!important;
}
.inclusions-sec,
.inc-sec{
  background:transparent!important;
}
.inclusions-intro{
  max-width:760px;
  color:#1a1a1a!important;
}
.inc-layout{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:1.5rem!important;
  align-items:start!important;
}
.inc-card{
  background:transparent!important;
  border:1px solid rgba(120,82,42,.2)!important;
  box-shadow:none!important;
  border-radius:16px!important;
  overflow:hidden;
}
.inc-card-head,
.inc-card.yes .inc-card-head,
.inc-card.no .inc-card-head{
  background:transparent!important;
}
.inc-card-head h3{
  color:#111!important;
  font-size:clamp(1.25rem,1.55vw,1.55rem)!important;
  font-weight:700!important;
}
.inc-list li{
  color:#111!important;
  font-size:clamp(.95rem,1vw,1.02rem)!important;
  line-height:1.65!important;
}
.inc-list li span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:1.2rem;
}
.page-sidebar{
  position:sticky!important;
  top:100px!important;
  align-self:start!important;
}
@media(max-width:991px){
  .page-sidebar{
    display:block!important;
    position:static!important;
    top:auto!important;
    width:100%;
  }
  .page-layout{
    grid-template-columns:1fr!important;
  }
  .inc-layout{
    grid-template-columns:1fr!important;
  }
}


/* Final premium readability and pricing polish */
body,
p,
.body-text,
.sub,
.tc-body p,
.tc-hi,
.ov-fact-val,
.rs-note,
.inc-list li,
.smg-body-text,
.smg-day-text,
.smg-prac-text,
.aec-tour-card p,
.contact-form input,
.contact-form textarea{
  color:#111!important;
}
body{
  font-family:'Jost','Inter','Montserrat',Arial,sans-serif!important;
  background:#fbf7f2;
}
h1,h2,h3,.h1,.h2,.ttl,.tc-body h3,.smg-h2,.smg-day-title{
  font-family:'Playfair Display','Cormorant Garamond',Georgia,serif!important;
}
p,.body-text,.sub,.itin-day-text,.day-desc{
  font-size:clamp(1rem,1vw,1.08rem);
  line-height:1.75;
}
.hero,
.home-premium-hero{
  text-align:center;
}
.home-premium-hero{
  min-height:88svh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.home-premium-hero .hero-bg img{
  filter:saturate(1.08) contrast(1.04);
}
.home-premium-hero .hero-overlay{
  background:linear-gradient(180deg,rgba(0,0,0,.52),rgba(0,0,0,.34) 42%,rgba(0,0,0,.82));
}
.home-premium-hero .hero-body{
  margin:0 auto;
  padding-top:var(--nav-h);
  max-width:1040px;
  text-align:center;
}
.home-premium-hero .hero-kicker,
.home-premium-hero .hero-actions,
.home-premium-hero .hero-tags{
  justify-content:center;
}
.home-premium-hero .hero-desc{
  margin-left:auto;
  margin-right:auto;
  max-width:720px;
  color:rgba(255,255,255,.9)!important;
}
.tours-sec{
  padding-top:clamp(4rem,7vw,7rem);
}
.tour-card,
.aec-tour-card,
.season-card,
.inc-card,
.aec-general-price-card,
.aec-price-table-wrap{
  box-shadow:0 18px 48px rgba(39,25,10,.08);
}
.aec-price-section{
  background:transparent;
}
.price-intro{
  max-width:760px;
}
.aec-price-table-wrap{
  margin:2rem 0 1rem;
  overflow-x:auto;
  border:1px solid rgba(120,82,42,.18);
  border-radius:18px;
  background:rgba(255,255,255,.72);
}
.aec-price-table{
  width:100%;
  min-width:760px;
  border-collapse:collapse;
  font-family:'Jost',Arial,sans-serif;
}
.aec-price-table th,
.aec-price-table td{
  padding:1rem .9rem;
  text-align:center;
  border-bottom:1px solid rgba(120,82,42,.12);
  color:#111;
}
.aec-price-table thead th{
  background:#111;
  color:#f7d98a;
  font-size:.72rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.aec-price-table tbody th{
  text-align:left;
  font-family:'Playfair Display',Georgia,serif;
  font-size:1.1rem;
}
.aec-price-table tbody tr:last-child th,
.aec-price-table tbody tr:last-child td{
  border-bottom:0;
}
.aec-price-note{
  display:flex;
  align-items:flex-start;
  gap:.55rem;
  color:#1a1a1a!important;
  max-width:820px;
  margin:1rem 0 1.4rem;
}
.aec-price-note i{
  color:var(--accent);
  margin-top:.25rem;
}
.aec-general-price-card{
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:1.25rem;
  align-items:center;
  border:1px solid rgba(120,82,42,.18);
  border-radius:18px;
  padding:clamp(1.4rem,3vw,2.2rem);
  background:rgba(255,255,255,.74);
}
.aec-price-badge{
  border:1px solid rgba(201,168,76,.34);
  border-radius:16px;
  padding:1rem 1.25rem;
  text-align:center;
  min-width:170px;
}
.aec-price-badge span{
  display:block;
  font-size:.68rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#6d4a21;
  margin-bottom:.35rem;
}
.aec-price-badge strong{
  font-family:'Playfair Display',Georgia,serif;
  font-size:1.35rem;
  color:#111;
}
@media(max-width:900px){
  .aec-general-price-card{
    grid-template-columns:1fr;
  }
  .aec-general-price-card .btn-primary{
    width:100%;
    justify-content:center;
  }
}

/* -------------------------------------------------------------------------
   Africa Endless Cruising premium pass
-------------------------------------------------------------------------- */
:root{
  --aec-ivory:#fbf7f0;
  --aec-paper:#fffdfa;
  --aec-forest:#173d2b;
  --aec-ocean:#1d6472;
  --aec-brass:#b8862f;
  --aec-ink:#17120d;
  --aec-line:rgba(92,64,32,.16);
}

body{
  background:
    linear-gradient(180deg,#fffdfa 0%,#fbf7f0 48%,#fffdfa 100%)!important;
  color:var(--aec-ink)!important;
}

img{
  background:#eadfce;
}

.aec-hp-field{
  position:absolute!important;
  left:-9999px!important;
  width:1px!important;
  height:1px!important;
  opacity:0!important;
  pointer-events:none!important;
}

.hero{
  isolation:isolate;
}

.hero::after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:38%;
  background:linear-gradient(180deg,transparent,rgba(23,18,13,.76));
  z-index:1;
  pointer-events:none;
}

.hero-body{
  z-index:3;
}

.hero-kicker{
  border-color:rgba(235,190,100,.44)!important;
  background:rgba(23,61,43,.34)!important;
  backdrop-filter:blur(12px);
}

.hero h1,
.hero .h1{
  text-wrap:balance;
  letter-spacing:0!important;
}

.hero-desc{
  color:rgba(255,255,255,.88)!important;
  text-shadow:0 1px 14px rgba(0,0,0,.22);
}

.btn-primary,
.f-submit,
.bk-submit,
.sc-submit,
.nav-quote-btn,
.mega-panel-cta{
  background:linear-gradient(135deg,#a25a18 0%,#c58d31 100%)!important;
  color:#fff!important;
  border:0!important;
  box-shadow:0 14px 32px rgba(122,70,21,.22)!important;
}

.btn-primary:hover,
.f-submit:hover,
.bk-submit:hover,
.sc-submit:hover,
.nav-quote-btn:hover,
.mega-panel-cta:hover{
  background:linear-gradient(135deg,#814511 0%,#ad7826 100%)!important;
  transform:translateY(-2px);
}

.btn-outline{
  backdrop-filter:blur(12px);
}

.home-proof-strip{
  background:linear-gradient(135deg,var(--aec-forest),#2b2117 58%,#5c3919);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.12);
  border-bottom:1px solid rgba(184,134,47,.28);
}

.home-proof-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:1rem clamp(1rem,4vw,3.5rem);
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:.75rem;
}

.home-proof-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.65rem;
  min-height:50px;
  padding:.7rem .9rem;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  background:rgba(255,255,255,.055);
  color:rgba(255,255,255,.86);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.03em;
  text-align:center;
}

.home-proof-item i{
  color:#e2bd6c;
  flex-shrink:0;
}

.tours-sec,
.wildlife-sec,
.packing-sec,
.sec,
.aec-price-section{
  position:relative;
}

.tour-card,
.aec-tour-card,
.pk-category,
.season-card,
.award-badge,
.plan-form-card,
.sc,
.inc-card{
  border:1px solid var(--aec-line)!important;
  border-radius:18px!important;
  background:rgba(255,253,250,.88)!important;
  box-shadow:0 22px 54px rgba(50,32,12,.09)!important;
}

.tour-card:hover,
.aec-tour-card:hover,
.pk-category:hover,
.season-card:hover,
.award-badge:hover{
  transform:translateY(-5px);
  box-shadow:0 30px 72px rgba(50,32,12,.13)!important;
}

.tc-img-wrap img,
.aec-tour-card img,
.wl-card img,
.itin-day-img,
.hero-bg img{
  filter:saturate(1.04) contrast(1.03);
}

.label,
.eyebrow,
.wl-tag,
.tc-badge,
.aec-tour-card span{
  color:#8a5e19!important;
  letter-spacing:.16em!important;
}

.ttl,
.h2,
.cf-title,
.sc-form-title{
  color:var(--aec-ink)!important;
  text-wrap:balance;
}

.ttl em,
.h2 em,
.sc-form-title em{
  color:#a25a18!important;
}

.aec-form-message{
  border-radius:14px!important;
  padding:1rem 1.15rem!important;
  line-height:1.55;
}

.aec-form-message-mail_error,
.aec-form-message-invalid{
  background:#fff3ed!important;
  border-color:rgba(187,76,36,.28)!important;
  color:#6f2e17!important;
}

.aec-contact-form,
.contact-form,
.sc-form{
  gap:1rem!important;
}

.aec-field span,
.ff label,
.sc-lbl{
  color:#5f4934!important;
}

.aec-contact-form input,
.aec-contact-form select,
.aec-contact-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea,
.sc-form input,
.sc-form select,
.sc-form textarea,
.f-nl-form input{
  border:1px solid rgba(92,64,32,.22)!important;
  background:#fffdfa!important;
  color:#17120d!important;
  border-radius:12px!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
}

.aec-contact-form input:focus,
.aec-contact-form select:focus,
.aec-contact-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.sc-form input:focus,
.sc-form select:focus,
.sc-form textarea:focus,
.f-nl-form input:focus{
  outline:none!important;
  border-color:rgba(184,134,47,.72)!important;
  box-shadow:0 0 0 4px rgba(184,134,47,.13)!important;
}

.plan-hero{
  min-height:76svh;
  align-items:center;
}

.plan-hero .hero-body{
  max-width:980px;
  margin:0 auto;
  padding-top:var(--nav-h);
  text-align:center;
}

.plan-hero .hero h1,
.plan-hero .h1{
  font-size:clamp(3.1rem,8vw,6.8rem);
  color:#fff!important;
}

.plan-hero .h1 em{
  display:inline;
  color:#e2bd6c!important;
}

.plan-hero .hero-tags,
.plan-hero .hero-kicker{
  justify-content:center;
}

.plan-page{
  padding:clamp(3rem,6vw,6rem) clamp(1rem,4vw,3rem);
}

.plan-shell{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(280px,.9fr) minmax(0,1.5fr);
  gap:clamp(1.5rem,4vw,3.5rem);
  align-items:start;
}

.plan-panel{
  position:sticky;
  top:96px;
  padding:clamp(1.6rem,3vw,2.4rem);
  border-radius:20px;
  color:#fff;
  background:
    linear-gradient(145deg,rgba(23,61,43,.96),rgba(31,25,17,.96) 58%,rgba(96,57,24,.95)),
    url("../../uploads/safari/regalsafari26.webp") center/cover;
  overflow:hidden;
  box-shadow:0 26px 70px rgba(23,18,13,.18);
}

.plan-panel::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(145deg,rgba(23,61,43,.94),rgba(23,18,13,.9));
  z-index:0;
}

.plan-panel > *{
  position:relative;
  z-index:1;
}

.plan-panel .h2,
.plan-panel .label,
.plan-panel p{
  color:#fff!important;
}

.plan-panel .label::before{
  background:#e2bd6c!important;
}

.plan-panel p{
  line-height:1.75;
  color:rgba(255,255,255,.76)!important;
}

.plan-promise-list{
  display:grid;
  gap:.85rem;
  margin-top:1.8rem;
}

.plan-promise-list div{
  display:flex;
  align-items:flex-start;
  gap:.75rem;
  padding:.8rem;
  border:1px solid rgba(255,255,255,.13);
  border-radius:12px;
  background:rgba(255,255,255,.07);
}

.plan-promise-list i{
  color:#e2bd6c;
  margin-top:.2rem;
}

.plan-promise-list span{
  color:rgba(255,255,255,.84);
  font-size:.9rem;
  line-height:1.55;
}

.plan-form-card{
  padding:clamp(1.25rem,3vw,2.25rem);
}

.plan-pro-form{
  max-width:none!important;
  margin:0!important;
}

.form-section-title{
  grid-column:1/-1;
  display:flex;
  align-items:center;
  gap:.85rem;
  margin:.25rem 0 .2rem;
  padding:.9rem 1rem;
  border:1px solid rgba(184,134,47,.18);
  border-radius:14px;
  background:linear-gradient(135deg,rgba(184,134,47,.1),rgba(29,100,114,.06));
}

.form-section-title span{
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  background:var(--aec-forest);
  font-weight:800;
  flex-shrink:0;
}

.form-section-title strong{
  display:block;
  color:var(--aec-ink);
  font-family:'Playfair Display',Georgia,serif;
  font-size:1.05rem;
}

.form-section-title small{
  display:block;
  color:#725a43;
  margin-top:.1rem;
}

.plan-choice-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.65rem;
}

.plan-choice-grid label{
  display:flex;
  align-items:center;
  gap:.5rem;
  padding:.75rem .8rem;
  border:1px solid rgba(92,64,32,.18);
  border-radius:12px;
  background:#fffdfa;
  color:#2a2118;
  font-weight:700;
  font-size:.82rem;
}

.plan-choice-grid input{
  accent-color:#a25a18;
}

.plan-submit{
  grid-column:1/-1;
  width:100%;
  justify-content:center;
  min-height:52px;
}

@media(max-width:980px){
  .home-proof-inner{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .plan-shell{
    grid-template-columns:1fr;
  }
  .plan-panel{
    position:relative;
    top:auto;
  }
}

@media(max-width:680px){
  .home-proof-inner,
  .plan-choice-grid{
    grid-template-columns:1fr;
  }
  .home-proof-item{
    justify-content:flex-start;
    text-align:left;
  }
  .plan-page{
    padding:2rem 1rem 3rem;
  }
  .plan-form-card{
    padding:1rem;
  }
  .form-section-title{
    align-items:flex-start;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline{
    width:100%;
    justify-content:center;
  }
}

/* -------------------------------------------------------------------------
   Homepage marketing expansion
-------------------------------------------------------------------------- */
body{
  font-size:17px;
}

p,
.sub,
.body-text,
.hero-desc,
.tc-body p,
.wl-info p,
.pk-list li,
.packing-tip div{
  font-size:clamp(1rem,1.06vw,1.15rem)!important;
  line-height:1.78!important;
  color:#211915!important;
}

.hero-desc,
.wl-info p,
.home-group-content p,
.home-final-cta p{
  color:rgba(255,255,255,.88)!important;
}

.ttl,
.h1,
.h2,
.cf-title,
.tc-body h3,
.home-tour-tile h3,
.home-beach-card h3,
.home-destination-card span,
.home-steps-grid strong,
.home-testimonial-grid strong{
  font-family:'Playfair Display',Georgia,serif!important;
}

.home-premium-hero .h1{
  max-width:1040px;
  margin-left:auto;
  margin-right:auto;
  font-size:clamp(3.1rem,7.5vw,7.2rem)!important;
}

.home-premium-hero .hero-actions{
  gap:1rem;
}

.home-intro-sec,
.home-signature-top,
.home-product-sec,
.home-private-sec,
.home-destination-sec,
.home-experiences-sec,
.home-why-sec,
.home-testimonial-sec,
.home-steps-sec{
  padding:clamp(4.5rem,7vw,7.5rem) clamp(1rem,4vw,3.5rem);
}

.home-intro-grid,
.home-sec-head,
.home-signature-grid,
.home-tour-grid,
.home-route-grid,
.home-beach-grid,
.home-private-sec,
.home-destination-grid,
.home-experience-grid,
.home-why-sec,
.home-testimonial-grid,
.home-steps-grid,
.home-final-cta{
  max-width:1320px;
  margin-left:auto;
  margin-right:auto;
}

.home-intro-sec{
  background:linear-gradient(180deg,#fffdfa,#f8f0e5);
}

.home-signature-top{
  background:linear-gradient(180deg,#f8f0e5,#fffdfa);
  position:relative;
}

.home-signature-top::before{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(135deg,rgba(184,134,47,.08),transparent 42%,rgba(29,100,114,.07));
}

.home-signature-top > *{
  position:relative;
  z-index:1;
}

.home-signature-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;
}

.home-signature-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  overflow:hidden;
  border-radius:20px;
  background:#fffdfa;
  border:1px solid rgba(122,83,40,.18);
  box-shadow:0 24px 58px rgba(50,32,12,.1);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home-signature-card img{
  width:100%;
  height:230px;
  object-fit:cover;
  transition:transform .6s ease;
}

.home-signature-card div{
  padding:1.25rem;
}

.home-signature-card span{
  display:block;
  color:#8a4f1d;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:.45rem;
}

.home-signature-card h3{
  font-family:'Playfair Display',Georgia,serif;
  color:#17120d;
  font-size:1.35rem;
  line-height:1.12;
  margin-bottom:.55rem;
}

.home-signature-card p{
  margin:0;
}

.home-signature-card:hover{
  transform:translateY(-6px);
  border-color:rgba(184,134,47,.38);
  box-shadow:0 34px 76px rgba(50,32,12,.15);
}

.home-signature-card:hover img{
  transform:scale(1.06);
}

.home-intro-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
  gap:clamp(2rem,5vw,4.5rem);
  align-items:center;
}

.home-intro-copy p,
.home-sec-head p,
.home-private-copy p,
.home-why-card p,
.home-testimonial-sec p{
  max-width:760px;
  margin-top:.85rem;
}

.home-stat-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.8rem;
  margin-top:2rem;
}

.home-stat-row div{
  padding:1.1rem;
  border:1px solid rgba(122,83,40,.18);
  border-radius:16px;
  background:#fffdfa;
  box-shadow:0 16px 38px rgba(50,32,12,.07);
}

.home-stat-row strong{
  display:block;
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(1.8rem,3vw,2.6rem);
  color:#8a4f1d;
  line-height:1;
}

.home-stat-row span{
  display:block;
  margin-top:.45rem;
  color:#39291e;
  font-weight:700;
  line-height:1.45;
}

.home-trust-panel{
  display:grid;
  gap:1rem;
}

.home-trust-card{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:1rem;
  align-items:start;
  padding:1.25rem;
  border-radius:18px;
  background:rgba(255,253,250,.92);
  border:1px solid rgba(122,83,40,.18);
  box-shadow:0 18px 44px rgba(50,32,12,.08);
}

.home-trust-card i{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:16px;
  color:#fff;
  background:linear-gradient(135deg,#173d2b,#b8862f);
  font-size:1.2rem;
}

.home-trust-card strong{
  display:block;
  font-size:1rem;
  color:#17120d;
  margin-bottom:.25rem;
}

.home-trust-card span{
  color:#4a3829;
  line-height:1.6;
}

.home-sec-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:2rem;
  margin-bottom:clamp(2rem,4vw,3rem);
}

.home-sec-head.centered{
  justify-content:center;
  text-align:center;
}

.home-sec-head.centered p{
  margin-left:auto;
  margin-right:auto;
}

.home-text-link{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  color:#8a4f1d;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:.78rem;
  white-space:nowrap;
}

.home-text-link.light{
  color:#f3d28a;
}

.home-product-sec{
  background:#fffdfa;
}

.home-tour-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;
}

.home-tour-tile,
.home-beach-card,
.home-experience-grid a,
.home-route-card,
.home-group-options a,
.home-why-list div,
.home-testimonial-grid article,
.home-steps-grid div{
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home-tour-tile{
  position:relative;
  min-height:310px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  overflow:hidden;
  border-radius:18px;
  padding:1.35rem;
  color:#fff;
  background:#24190f;
  box-shadow:0 22px 52px rgba(50,32,12,.12);
}

.home-tour-tile.feature{
  grid-column:span 2;
}

.home-tour-tile img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.home-tour-tile::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(18,13,8,.88));
}

.home-tour-tile > *:not(img){
  position:relative;
  z-index:1;
}

.home-tour-tile span,
.home-beach-card span{
  font-size:.68rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:900;
  color:#f3d28a;
}

.home-tour-tile h3{
  margin:.35rem 0 .45rem;
  font-size:clamp(1.35rem,2vw,2rem);
  color:#fff;
  line-height:1.08;
}

.home-tour-tile p{
  color:rgba(255,255,255,.86)!important;
  margin:0;
}

.home-tour-tile:hover,
.home-beach-card:hover,
.home-experience-grid a:hover,
.home-route-card:hover,
.home-group-options a:hover,
.home-why-list div:hover,
.home-testimonial-grid article:hover,
.home-steps-grid div:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 72px rgba(50,32,12,.16);
}

.home-tour-tile:hover img,
.home-destination-card:hover img,
.home-beach-card:hover img{
  transform:scale(1.06);
}

.home-dark-band{
  position:relative;
  background:
    linear-gradient(145deg,rgba(20,48,34,.96),rgba(26,19,16,.98)),
    url("../../uploads/kilimanjaro/zameer-khan-SF6uLVWwzPE-unsplash.jpg") center/cover;
  color:#fff;
}

.home-dark-band .ttl,
.home-dark-band .home-sec-head p{
  color:#fff!important;
}

.home-dark-band .ttl em{
  color:#f3d28a!important;
}

.home-route-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;
}

.home-route-card{
  min-height:210px;
  padding:1.35rem;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:#fff;
  backdrop-filter:blur(10px);
}

.home-route-card i{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:rgba(243,210,138,.14);
  color:#f3d28a;
  margin-bottom:1rem;
}

.home-route-card strong{
  display:block;
  font-family:'Playfair Display',Georgia,serif;
  font-size:1.2rem;
  margin-bottom:.55rem;
}

.home-route-card span{
  color:rgba(255,255,255,.76);
  line-height:1.62;
}

.home-beach-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;
}

.home-beach-card{
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(122,83,40,.16);
  background:#fffdfa;
  box-shadow:0 22px 52px rgba(50,32,12,.09);
}

.home-beach-card img{
  width:100%;
  height:230px;
  object-fit:cover;
  transition:transform .6s ease;
}

.home-beach-card div{
  padding:1.25rem;
}

.home-beach-card span{
  color:#1d6472;
}

.home-beach-card h3{
  margin:.35rem 0 .5rem;
  color:#17120d;
  font-size:1.35rem;
}

.home-beach-card p{
  margin:0;
}

.home-group-sec{
  position:relative;
  padding:clamp(4.5rem,8vw,8rem) clamp(1rem,4vw,3.5rem);
  overflow:hidden;
  color:#fff;
}

.home-group-bg,
.home-group-overlay{
  position:absolute;
  inset:0;
}

.home-group-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.home-group-overlay{
  background:linear-gradient(90deg,rgba(23,18,13,.94),rgba(23,61,43,.82),rgba(23,18,13,.48));
}

.home-group-content{
  position:relative;
  z-index:1;
  max-width:1180px;
  margin:0 auto;
}

.home-group-content .ttl{
  color:#fff!important;
  max-width:820px;
}

.home-group-content .ttl em{
  color:#f3d28a!important;
}

.home-group-content > p{
  max-width:760px;
  margin:1rem 0 2rem;
}

.home-group-options{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;
  margin-bottom:2rem;
}

.home-group-options a{
  padding:1.15rem;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.09);
  color:#fff;
  backdrop-filter:blur(10px);
}

.home-group-options i{
  color:#f3d28a;
  font-size:1.25rem;
  margin-bottom:.8rem;
}

.home-group-options strong,
.home-group-options span{
  display:block;
}

.home-group-options strong{
  margin-bottom:.4rem;
  font-size:1rem;
}

.home-group-options span{
  color:rgba(255,255,255,.78);
  line-height:1.6;
}

.home-private-sec{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.85fr);
  gap:clamp(2rem,5vw,4rem);
  align-items:center;
  background:#fbf7f0;
}

.home-private-list{
  display:grid;
  gap:.7rem;
  margin:1.5rem 0 2rem;
}

.home-private-list span{
  display:flex;
  gap:.65rem;
  align-items:flex-start;
  color:#211915;
  font-weight:700;
  line-height:1.5;
}

.home-private-list i{
  color:#8a4f1d;
  margin-top:.24rem;
}

.home-private-image{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  min-height:500px;
  box-shadow:0 28px 76px rgba(50,32,12,.16);
}

.home-private-image img{
  width:100%;
  height:100%;
  min-height:500px;
  object-fit:cover;
}

.home-destination-sec{
  background:#fffdfa;
}

.home-destination-grid{
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr;
  grid-auto-rows:260px;
  gap:.8rem;
}

.home-destination-card{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  display:flex;
  align-items:flex-end;
  padding:1.2rem;
  color:#fff;
  background:#211915;
}

.home-destination-card.large{
  grid-row:span 2;
}

.home-destination-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.home-destination-card::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.76));
}

.home-destination-card span{
  position:relative;
  z-index:1;
  color:#fff;
  font-size:clamp(1.3rem,2vw,2rem);
  line-height:1.1;
}

.home-experiences-sec{
  background:linear-gradient(180deg,#fbf7f0,#fffdfa);
}

.home-experience-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
}

.home-experience-grid a{
  min-height:210px;
  padding:1.4rem;
  border-radius:18px;
  border:1px solid rgba(122,83,40,.16);
  background:#fffdfa;
  box-shadow:0 22px 52px rgba(50,32,12,.08);
}

.home-experience-grid i{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:15px;
  color:#fff;
  background:linear-gradient(135deg,#173d2b,#1d6472);
  margin-bottom:1rem;
}

.home-experience-grid strong,
.home-experience-grid span{
  display:block;
}

.home-experience-grid strong{
  font-size:1.2rem;
  color:#17120d;
  margin-bottom:.45rem;
}

.home-experience-grid span{
  color:#4a3829;
  line-height:1.62;
}

.home-why-sec{
  display:grid;
  grid-template-columns:minmax(280px,.8fr) minmax(0,1.2fr);
  gap:2rem;
  align-items:start;
  background:#fffdfa;
}

.home-why-card{
  position:sticky;
  top:96px;
  padding:2rem;
  border-radius:22px;
  border:1px solid rgba(122,83,40,.16);
  background:#fbf7f0;
}

.home-why-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem;
}

.home-why-list div{
  padding:1.35rem;
  border-radius:18px;
  border:1px solid rgba(122,83,40,.16);
  background:#fffdfa;
  box-shadow:0 22px 52px rgba(50,32,12,.08);
}

.home-why-list i{
  color:#8a4f1d;
  font-size:1.35rem;
  margin-bottom:.8rem;
}

.home-why-list strong,
.home-why-list span{
  display:block;
}

.home-why-list strong{
  color:#17120d;
  font-size:1.05rem;
  margin-bottom:.4rem;
}

.home-why-list span{
  color:#4a3829;
  line-height:1.62;
}

.home-testimonial-sec{
  background:linear-gradient(180deg,#fbf7f0,#fffdfa);
}

.home-testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
}

.home-testimonial-grid article{
  padding:1.6rem;
  border-radius:20px;
  border:1px solid rgba(122,83,40,.16);
  background:#fffdfa;
  box-shadow:0 22px 52px rgba(50,32,12,.08);
}

.home-stars{
  color:#b8862f;
  letter-spacing:.08em;
  margin-bottom:1rem;
}

.home-testimonial-grid article p{
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(1.08rem,1.3vw,1.35rem)!important;
  line-height:1.55!important;
  color:#211915!important;
  margin-bottom:1.2rem;
}

.home-testimonial-grid strong,
.home-testimonial-grid span{
  display:block;
}

.home-testimonial-grid strong{
  color:#17120d;
}

.home-testimonial-grid span{
  color:#725a43;
  margin-top:.2rem;
}

.home-steps-sec{
  background:#fffdfa;
}

.home-steps-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;
}

.home-steps-grid div{
  position:relative;
  padding:1.5rem;
  border-radius:20px;
  border:1px solid rgba(122,83,40,.16);
  background:#fbf7f0;
  overflow:hidden;
}

.home-steps-grid div > span{
  position:absolute;
  right:1rem;
  top:.7rem;
  font-family:'Playfair Display',Georgia,serif;
  font-size:3.2rem;
  color:rgba(138,79,29,.12);
  line-height:1;
}

.home-steps-grid i{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:#173d2b;
  color:#f3d28a;
  margin-bottom:1.4rem;
}

.home-steps-grid strong{
  display:block;
  color:#17120d;
  font-size:1.15rem;
  margin-bottom:.5rem;
}

.home-steps-grid p{
  margin:0;
}

.home-final-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
  margin-top:clamp(3rem,6vw,5.5rem);
  margin-bottom:clamp(3rem,6vw,5.5rem);
  padding:clamp(2rem,4vw,3rem);
  border-radius:26px;
  color:#fff;
  background:
    linear-gradient(135deg,rgba(23,61,43,.95),rgba(38,27,18,.96)),
    url("../../uploads/safari/regalsafari28.webp") center/cover;
  box-shadow:0 30px 80px rgba(50,32,12,.18);
}

.home-final-cta .ttl{
  color:#fff!important;
  margin:.35rem 0 .65rem;
}

.home-final-cta p{
  max-width:720px;
}

.home-final-actions{
  display:flex;
  gap:.8rem;
  flex-wrap:wrap;
  justify-content:flex-end;
}

@media(max-width:1180px){
  .home-signature-grid,
  .home-tour-grid,
  .home-route-grid,
  .home-beach-grid,
  .home-group-options,
  .home-steps-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .home-experience-grid,
  .home-testimonial-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:900px){
  p,
  .sub,
  .body-text,
  .hero-desc,
  .tc-body p,
  .wl-info p,
  .pk-list li,
  .packing-tip div{
    font-size:clamp(1rem,2.8vw,1.06rem)!important;
    line-height:1.72!important;
  }
  .home-intro-grid,
  .home-private-sec,
  .home-why-sec{
    grid-template-columns:1fr;
  }
  .home-sec-head,
  .home-final-cta{
    flex-direction:column;
    align-items:flex-start;
  }
  .home-why-card{
    position:relative;
    top:auto;
  }
  .home-private-image,
  .home-private-image img{
    min-height:360px;
  }
  .home-destination-grid{
    grid-template-columns:1fr 1fr;
  }
  .home-destination-card.large{
    grid-row:auto;
  }
  .home-final-actions{
    justify-content:flex-start;
  }
}

@media(max-width:640px){
  .home-intro-sec,
  .home-product-sec,
  .home-private-sec,
  .home-destination-sec,
  .home-experiences-sec,
  .home-why-sec,
  .home-testimonial-sec,
  .home-steps-sec,
  .home-group-sec{
    padding:3.75rem 1rem;
  }
  .home-stat-row,
  .home-signature-grid,
  .home-tour-grid,
  .home-route-grid,
  .home-beach-grid,
  .home-group-options,
  .home-experience-grid,
  .home-why-list,
  .home-testimonial-grid,
  .home-steps-grid,
  .home-destination-grid{
    grid-template-columns:1fr;
  }
  .home-tour-tile.feature{
    grid-column:auto;
  }
  .home-tour-tile{
    min-height:280px;
  }
  .home-beach-card img{
    height:210px;
  }
  .home-destination-grid{
    grid-auto-rows:220px;
  }
  .home-final-cta{
    margin:2rem 1rem 3rem;
    border-radius:20px;
  }
  .home-final-actions,
  .home-final-actions a{
    width:100%;
  }
.home-final-actions a{
    justify-content:center;
  }
}

@media(max-width:680px){
  html,
  body{
    max-width:100%;
    overflow-x:hidden;
  }
  .home-premium-hero{
    box-sizing:border-box;
    width:100vw;
    max-width:100vw;
    min-height:100svh;
    padding-left:1rem;
    padding-right:1rem;
  }
  .home-premium-hero .hero-body{
    box-sizing:border-box;
    flex:0 1 calc(100vw - 2rem);
    width:calc(100vw - 2rem)!important;
    max-width:calc(100vw - 2rem)!important;
    padding:var(--nav-h) .25rem 3rem!important;
  }
  .home-premium-hero .hero-body > *{
    box-sizing:border-box;
    max-width:100%;
  }
  .home-premium-hero .h1{
    width:100%;
    max-width:330px;
    margin-left:auto;
    margin-right:auto;
    font-size:clamp(2rem,8.8vw,2.8rem)!important;
    line-height:1.06!important;
  }
  .home-premium-hero .hero-kicker{
    width:auto;
    max-width:min(310px, calc(100vw - 2rem));
    margin-left:auto;
    margin-right:auto;
    flex-wrap:wrap;
    justify-content:center;
    white-space:normal;
    line-height:1.45;
    padding:.45rem .8rem;
  }
  .home-premium-hero .hero-kicker span{
    white-space:normal;
    display:block;
    overflow-wrap:anywhere;
    font-size:.56rem;
    letter-spacing:.15em;
  }
  .home-premium-hero .hero-desc{
    max-width:330px;
    font-size:1rem!important;
    line-height:1.72!important;
  }
  .home-premium-hero .hero-tags{
    display:grid;
    grid-template-columns:1fr;
    width:100%;
    max-width:320px;
    margin-left:auto;
    margin-right:auto;
  }
  .home-premium-hero .hero-tag{
    width:100%;
    white-space:normal;
    text-align:center;
  }
  .home-premium-hero .hero-actions{
    width:100%;
    max-width:min(300px, calc(100vw - 2rem));
    margin-left:auto;
    margin-right:auto;
  }
  .home-premium-hero .hero-actions .btn-primary,
  .home-premium-hero .hero-actions .btn-outline{
    box-sizing:border-box;
  }
}

@media(max-width:420px){
  .home-premium-hero .hero-body{
    position:relative;
    left:-8vw;
  }
  .home-premium-hero .h1{
    max-width:300px;
    font-size:clamp(1.75rem,8.6vw,2.1rem)!important;
  }
  .home-premium-hero .hero-kicker span{
    letter-spacing:.11em;
  }
}

/* Tour detail pages added for homepage cards */
.tour-detail-main{
  background:linear-gradient(180deg,#fffdfa,#fbf7f0 45%,#fffdfa);
}

.tour-detail-hero .hero-body{
  max-width:1050px;
}

.tour-detail-summary{
  max-width:1180px;
  margin:0 auto;
  padding:clamp(3.5rem,6vw,6rem) clamp(1rem,4vw,3rem);
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,.75fr);
  gap:clamp(2rem,5vw,4rem);
  align-items:start;
}

.tour-detail-summary p{
  margin-top:.85rem;
}

.tour-fact-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.8rem;
}

.tour-fact-grid div,
.tour-detail-card,
.tour-day-card,
.tour-related-card{
  border:1px solid rgba(122,83,40,.16);
  background:#fffdfa;
  border-radius:18px;
  box-shadow:0 20px 48px rgba(50,32,12,.08);
}

.tour-fact-grid div{
  padding:1rem;
}

.tour-fact-grid span{
  display:block;
  font-size:.7rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#8a4f1d;
  font-weight:900;
  margin-bottom:.25rem;
}

.tour-fact-grid strong{
  color:#17120d;
  line-height:1.35;
}

.tour-detail-section{
  max-width:1180px;
  margin:0 auto;
  padding:0 clamp(1rem,4vw,3rem) clamp(3.5rem,6vw,6rem);
}

.tour-detail-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
  margin-top:1.7rem;
}

.tour-detail-card{
  padding:1.3rem;
}

.tour-detail-card i{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  color:#fff;
  background:linear-gradient(135deg,#173d2b,#b8862f);
  margin-bottom:1rem;
}

.tour-detail-card strong,
.tour-detail-card span{
  display:block;
}

.tour-detail-card strong{
  font-family:'Playfair Display',Georgia,serif;
  color:#17120d;
  font-size:1.2rem;
  margin-bottom:.45rem;
}

.tour-detail-card span{
  color:#4a3829;
  line-height:1.62;
}

.tour-day-list{
  display:grid;
  gap:1rem;
  margin-top:1.7rem;
}

.tour-day-card{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:1rem;
  padding:1.2rem;
}

.tour-day-num{
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-family:'Playfair Display',Georgia,serif;
  color:#fff;
  background:#173d2b;
  font-size:1.25rem;
}

.tour-day-card h3{
  font-family:'Playfair Display',Georgia,serif;
  color:#17120d;
  font-size:1.35rem;
  margin-bottom:.45rem;
}

.tour-day-card p{
  margin:0;
}

.tour-inclusion-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
  margin-top:1.7rem;
}

.tour-list-card{
  padding:1.35rem;
  border-radius:18px;
  border:1px solid rgba(122,83,40,.16);
  background:#fffdfa;
}

.tour-list-card h3{
  font-family:'Playfair Display',Georgia,serif;
  color:#17120d;
  margin-bottom:.9rem;
}

.tour-list-card ul{
  list-style:none;
  display:grid;
  gap:.7rem;
  padding:0;
  margin:0;
}

.tour-list-card li{
  display:flex;
  gap:.6rem;
  line-height:1.58;
  color:#2a2118;
}

.tour-list-card li i{
  color:#8a4f1d;
  margin-top:.25rem;
}

.tour-notes-band{
  margin-top:1.7rem;
  padding:1.4rem;
  border-radius:18px;
  background:linear-gradient(135deg,rgba(23,61,43,.96),rgba(38,27,18,.96));
  color:#fff;
}

.tour-notes-band p{
  color:rgba(255,255,255,.84)!important;
  margin:.5rem 0 0;
}

.tour-cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  padding:clamp(1.6rem,4vw,2.5rem);
  border-radius:24px;
  color:#fff;
  background:linear-gradient(135deg,rgba(23,61,43,.96),rgba(138,79,29,.94));
}

.tour-cta-band h2{
  color:#fff!important;
}

.tour-cta-band p{
  color:rgba(255,255,255,.86)!important;
  margin-top:.4rem;
}

.tour-cta-actions{
  display:flex;
  gap:.8rem;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.tour-related-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
  margin-top:1.7rem;
}

.tour-related-card{
  overflow:hidden;
}

.tour-related-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.tour-related-card div{
  padding:1rem;
}

.tour-related-card span{
  color:#8a4f1d;
  font-size:.68rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:900;
}

.tour-related-card h3{
  font-family:'Playfair Display',Georgia,serif;
  color:#17120d;
  margin-top:.25rem;
}

@media(max-width:900px){
  .tour-detail-summary,
  .tour-detail-grid,
  .tour-inclusion-grid,
  .tour-related-grid{
    grid-template-columns:1fr;
  }
  .tour-cta-band{
    flex-direction:column;
    align-items:flex-start;
  }
  .tour-cta-actions{
    justify-content:flex-start;
  }
}

@media(max-width:560px){
  .tour-fact-grid,
  .tour-day-card{
    grid-template-columns:1fr;
  }
  .tour-cta-actions,
  .tour-cta-actions a{
    width:100%;
  }
  .tour-cta-actions a{
    justify-content:center;
  }
}
