/* ================================================================
KILIMANJARO SAFARI COMBO PAGE
Resilience Expedition — Summit-to-Savanna aesthetic
Dark volcanic peaks + warm savanna gold + crater green
Mobile-first | Performance-optimized | 320px–1400px
================================================================ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0
}

html {
font-size: 16px;
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased
}

body {
font-family: 'Outfit', sans-serif;
background: #F3EDE2;
color: #1C1410;
line-height: 1.72;
overflow-x: hidden
}

img {
max-width: 100%;
height: auto;
display: block
}

a {
color: inherit;
text-decoration: none
}

ul,
ol {
list-style: none
}

button,
input,
select,
textarea {
font-family: inherit
}

a:focus-visible,
button:focus-visible {
outline: 3px solid #D4860A;
outline-offset: 3px
}

.sr {
position: absolute;
width: 1px;
height: 1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap
}

/* ── DESIGN TOKENS ── */
:root {
/* Mountain palette */
--peak: #0A0F14;
--snow: #F0EDE6;
--glacier: #B8D4E8;
--ridge: #2A3A4A;

/* Savanna palette */
--sun: #D4860A;
--sun-lt: #E8A830;
--sun-pale: #FBF3E2;
--savanna: #C47828;
--earth: #8A4E1A;

/* Green (Ngorongoro/forest) */
--forest: #1A5030;
--forest-lt: #2A7848;
--forest-bright: #3AA868;
--forest-pale: #E8F4EC;

/* Neutrals */
--bg: #F3EDE2;
--bg-dk: #EAE2D4;
--chalk: #FDFAF4;
--sand: #E2D4B8;
--stone: #C8BAA4;
--ink: #1C1410;
--ash: #685E52;
--mist: #9A8E80;
--border: #DDD0B8;
--border-sun: rgba(212, 134, 10, .18);

/* Typography */
--fd: 'Playfair Display', Georgia, serif;
--fb: 'Outfit', sans-serif;

/* Shadows — performance: use sparingly */
--sh-sm: 0 1px 8px rgba(20, 14, 8, .08);
--sh-md: 0 4px 20px rgba(20, 14, 8, .12);
--sh-lg: 0 12px 48px rgba(20, 14, 8, .16);

/* Radii */
--r8: 8px;
--r12: 12px;
--r16: 16px;
--r20: 20px;
--r24: 24px;
--rpill: 100px;

/* Transition */
--t: .2s ease;

/* Spacing scale */
--s2: .5rem;
--s3: .75rem;
--s4: 1rem;
--s5: 1.25rem;
--s6: 1.5rem;
--s8: 2rem;
--s10: 2.5rem;
--s12: 3rem;
--s16: 4rem;
}

/* ── SKIP LINK ── */
.skip {
position: absolute;
left: var(--s4);
top: -100%;
background: var(--peak);
color: var(--snow);
padding: var(--s2) var(--s5);
border-radius: var(--r8);
font-size: 14px;
z-index: 9999;
transition: top .2s
}

.skip:focus {
top: var(--s3)
}

/* ================================================================
HEADER
================================================================ */
.hdr {
position: sticky;
top: 0;
z-index: 400;
background: rgba(10, 15, 20, .96);
backdrop-filter: blur(14px);
border-bottom: 1px solid rgba(212, 134, 10, .22)
}

.hdr-in {
max-width: 1280px;
margin: 0 auto;
padding: 0 var(--s4);
display: flex;
align-items: center;
justify-content: space-between;
height: 62px;
gap: var(--s4)
}

.logo {
display: flex;
align-items: center;
gap: .65rem;
flex-shrink: 0
}

.logo img {
width: 40px;
height: 40px;
border-radius: 6px;
object-fit: contain
}

.logo-t {
display: flex;
flex-direction: column;
line-height: 1.15
}

.logo-n {
font-family: var(--fd);
font-size: clamp(.78rem, 2vw, .95rem);
font-weight: 700;
color: var(--snow)
}

.logo-s {
font-size: 9px;
font-weight: 500;
color: rgba(255, 255, 255, .32);
letter-spacing: .13em;
text-transform: uppercase
}

.hdr-nav {
display: none;
align-items: center;
gap: 2px
}

@media(min-width:800px) {
.hdr-nav {
display: flex
}
}

.hdr-nav a {
padding: .38rem .7rem;
font-size: 13px;
font-weight: 500;
color: rgba(255, 255, 255, .62);
border-radius: 6px;
transition: background var(--t), color var(--t)
}

.hdr-nav a:hover,
.hdr-nav a.cur {
background: rgba(212, 134, 10, .18);
color: var(--sun-lt)
}

.hdr-cta {
padding: .45rem 1.1rem;
background: var(--sun);
color: #fff;
border-radius: var(--rpill);
font-size: 13px;
font-weight: 700;
border: none;
cursor: pointer;
transition: background var(--t);
white-space: nowrap
}

.hdr-cta:hover {
background: var(--sun-lt)
}

.ham {
display: flex;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: .5rem;
border-radius: 6px
}

@media(min-width:800px) {
.ham {
display: none
}
}

.ham span {
display: block;
width: 22px;
height: 2px;
background: rgba(255, 255, 255, .8);
border-radius: 2px;
transition: transform .2s, opacity .2s
}

.ham[aria-expanded=true] span:nth-child(1) {
transform: translateY(7px) rotate(45deg)
}

.ham[aria-expanded=true] span:nth-child(2) {
opacity: 0
}

.ham[aria-expanded=true] span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg)
}

.mob-nav {
display: none;
flex-direction: column;
gap: 2px;
padding: var(--s3) 0 var(--s4);
border-top: 1px solid rgba(255, 255, 255, .08)
}

.mob-nav.open {
display: flex
}

.mob-nav a {
padding: .7rem var(--s4);
font-size: 15px;
font-weight: 500;
color: rgba(255, 255, 255, .72);
border-radius: 8px;
transition: background var(--t), color var(--t)
}

.mob-nav a:hover {
background: rgba(212, 134, 10, .18);
color: var(--sun-lt)
}

/* ── BREADCRUMB ── */
.bc {
background: var(--peak);
border-bottom: 1px solid rgba(212, 134, 10, .16);
overflow-x: auto;
white-space: nowrap;
scrollbar-width: none
}

.bc::-webkit-scrollbar {
display: none
}

.bc-in {
max-width: 1280px;
margin: 0 auto;
padding: .5rem var(--s4)
}

.bc ol {
display: inline-flex;
align-items: center;
gap: .45rem;
font-size: 11.5px;
color: rgba(255, 255, 255, .36)
}

.bc li+li::before {
content: "›";
font-size: 13px
}

.bc a {
color: rgba(255, 255, 255, .52);
transition: color var(--t)
}

.bc a:hover {
color: var(--sun-lt)
}

.bc [aria-current] {
color: rgba(255, 255, 255, .8);
font-weight: 600
}

/* ================================================================
HERO — Summit + Savanna
================================================================ */
.hero {
position: relative;
min-height: clamp(520px, 65vw, 740px);
display: flex;
align-items: flex-end;
overflow: hidden;
background: var(--peak)
}

.hero-bg {
position: absolute;
inset: 0;
will-change: transform
}

.hero-bg img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 25%;
filter: brightness(.55) saturate(1.15)
}

.hero-ov {
position: absolute;
inset: 0;
background: linear-gradient(160deg, rgba(10, 15, 20, .08) 0%, rgba(10, 15, 20, .25) 30%, rgba(10, 15, 20, .65) 62%, rgba(10, 15, 20, .98) 100%)
}

.hero-ridge {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 80px;
background: linear-gradient(to top, var(--bg), transparent);
z-index: 1;
pointer-events: none
}

/* Elevation facts band */
.hero-facts {
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 3;
display: flex;
overflow-x: auto;
scrollbar-width: none
}

.hero-facts::-webkit-scrollbar {
display: none
}

.hf-item {
flex: 1;
min-width: 80px;
padding: .55rem .75rem;
text-align: center;
background: rgba(10, 15, 20, .52);
backdrop-filter: blur(8px);
border-bottom: 3px solid rgba(212, 134, 10, .45)
}

.hf-val {
font-size: 12px;
font-weight: 700;
color: var(--sun-lt);
white-space: nowrap
}

.hf-lbl {
font-size: 9px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .08em;
color: rgba(255, 255, 255, .38);
white-space: nowrap
}

.hero-content {
position: relative;
z-index: 2;
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: clamp(3rem, 10vw, 5rem) var(--s4) clamp(3rem, 8vw, 4.5rem)
}

.hero-eyebrow {
display: inline-flex;
align-items: center;
gap: .45rem;
background: rgba(212, 134, 10, .16);
border: 1px solid rgba(212, 134, 10, .38);
color: var(--sun-lt);
font-size: 10.5px;
font-weight: 700;
letter-spacing: .18em;
text-transform: uppercase;
padding: .32rem 1.1rem;
border-radius: var(--rpill);
margin-bottom: var(--s4)
}

.hero-h1 {
font-family: var(--fd);
font-size: clamp(2rem, 6.5vw, 4.8rem);
font-weight: 700;
color: var(--snow);
line-height: 1.06;
letter-spacing: -.035em;
margin-bottom: var(--s4);
max-width: 860px
}

.hero-h1 em {
font-style: italic;
color: var(--sun-lt)
}

.hero-h1 span {
color: var(--forest-bright)
}

.hero-sub {
font-size: clamp(14px, 2.2vw, 17px);
color: rgba(255, 255, 255, .65);
max-width: 580px;
line-height: 1.78;
margin-bottom: var(--s6)
}

.hero-pills {
display: flex;
flex-wrap: wrap;
gap: .45rem;
margin-bottom: var(--s6)
}

.pill {
display: inline-flex;
align-items: center;
gap: .35rem;
background: rgba(255, 255, 255, .09);
border: 1px solid rgba(255, 255, 255, .16);
color: rgba(255, 255, 255, .78);
font-size: 12px;
font-weight: 500;
padding: .28rem .85rem;
border-radius: var(--rpill)
}

.pill b {
color: var(--sun-lt);
font-weight: 700
}

.hero-btns {
display: flex;
flex-wrap: wrap;
gap: .65rem
}

.btn-sun {
display: inline-flex;
align-items: center;
gap: .45rem;
background: var(--sun);
color: #fff;
padding: .8rem 1.85rem;
border-radius: var(--rpill);
font-size: 15px;
font-weight: 700;
border: none;
cursor: pointer;
transition: background var(--t), transform var(--t);
white-space: nowrap
}

.btn-sun:hover {
background: var(--sun-lt);
transform: translateY(-2px)
}

.btn-sun svg {
width: 14px;
height: 14px
}

.btn-ghost {
display: inline-flex;
align-items: center;
gap: .45rem;
background: rgba(255, 255, 255, .1);
border: 1px solid rgba(255, 255, 255, .26);
color: rgba(255, 255, 255, .85);
padding: .8rem 1.6rem;
border-radius: var(--rpill);
font-size: 14px;
font-weight: 600;
transition: background var(--t);
white-space: nowrap
}

.btn-ghost:hover {
background: rgba(255, 255, 255, .18)
}

/* ── TRUST BAR ── */
.trust-bar {
background: var(--peak);
padding: var(--s4) var(--s4)
}

.trust-in {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: .65rem
}

@media(min-width:580px) {
.trust-in {
grid-template-columns: repeat(4, 1fr)
}
}

.trust-item {
display: flex;
align-items: center;
gap: .65rem;
padding: .65rem .9rem;
background: rgba(212, 134, 10, .08);
border: 1px solid rgba(212, 134, 10, .18);
border-radius: var(--r12)
}

.ti-ico {
font-size: 20px;
flex-shrink: 0;
line-height: 1
}

.ti-val {
font-family: var(--fd);
font-size: 1rem;
font-weight: 700;
color: var(--sun-lt);
line-height: 1
}

.ti-lbl {
font-size: 10px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .07em;
color: rgba(255, 255, 255, .36)
}

/* ================================================================
MAIN LAYOUT
================================================================ */
.pw {
max-width: 1280px;
margin: 0 auto;
padding: var(--s10) var(--s4)
}

@media(min-width:768px) {
.pw {
padding: var(--s12) var(--s6)
}
}

.main-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s8)
}

@media(min-width:1060px) {
.main-grid {
grid-template-columns: 1fr 285px;
gap: var(--s10);
align-items: start
}
}

/* ── TOC SIDEBAR ── */
.toc-card {
background: var(--chalk);
border: 1px solid var(--border);
border-radius: var(--r20);
padding: var(--s5);
position: sticky;
top: 78px;
box-shadow: var(--sh-sm)
}

.toc-hd {
font-family: var(--fd);
font-size: .95rem;
font-weight: 700;
color: var(--ink);
margin-bottom: var(--s4);
padding-bottom: var(--s3);
border-bottom: 1px solid var(--border)
}

.toc-list {
display: flex;
flex-direction: column;
gap: 2px
}

.toc-list a {
display: flex;
align-items: center;
gap: .5rem;
padding: .4rem .6rem;
font-size: 12.5px;
font-weight: 500;
color: var(--ash);
border-radius: 7px;
transition: background var(--t), color var(--t);
line-height: 1.35
}

.toc-list a:hover,
.toc-list a.act {
background: var(--sun-pale);
color: var(--sun)
}

.toc-list a.act {
font-weight: 700
}

.toc-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--sun-lt);
flex-shrink: 0;
opacity: .35
}

.toc-list a.act .toc-dot {
opacity: 1
}

.toc-sep {
height: 1px;
background: var(--border);
margin: var(--s3) 0
}

.toc-cta {
display: flex;
flex-direction: column;
gap: .45rem
}

.toc-cta span {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .1em;
color: var(--ash)
}

.toc-price {
font-family: var(--fd);
font-size: 1.25rem;
font-weight: 700;
color: var(--sun);
line-height: 1
}

.toc-btn {
display: flex;
align-items: center;
justify-content: center;
gap: .4rem;
padding: .65rem;
background: var(--sun);
color: #fff;
border-radius: var(--r12);
font-size: 13px;
font-weight: 700;
border: none;
cursor: pointer;
transition: background var(--t)
}

.toc-btn:hover {
background: var(--sun-lt)
}

.toc-btn svg {
width: 12px;
height: 12px
}

.toc-wa {
display: flex;
align-items: center;
justify-content: center;
gap: .4rem;
padding: .55rem;
background: rgba(37, 211, 102, .12);
border: 1px solid rgba(37, 211, 102, .25);
color: #1A7A40;
border-radius: var(--r12);
font-size: 12.5px;
font-weight: 700;
transition: background var(--t)
}

.toc-wa:hover {
background: rgba(37, 211, 102, .2)
}

.toc-wa svg {
width: 13px;
height: 13px
}

/* ── SECTION STRUCTURE ── */
.sec {
margin-bottom: var(--s12);
scroll-margin-top: 88px
}

.sec-lbl {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .16em;
color: var(--sun);
display: block;
margin-bottom: .45rem
}

.sec-h2 {
font-family: var(--fd);
font-size: clamp(1.6rem, 3.5vw, 2.4rem);
font-weight: 700;
color: var(--ink);
line-height: 1.18;
margin-bottom: var(--s4);
letter-spacing: -.025em
}

.sec-h2 .acc {
color: var(--sun)
}

.sec-h2 em {
font-style: italic
}

.sec-h2 .grn {
color: var(--forest)
}

.sec-lead {
font-size: 16px;
color: var(--ash);
line-height: 1.8;
margin-bottom: var(--s6);
max-width: 740px
}

.sec-h3 {
font-family: var(--fd);
font-size: 1.25rem;
font-weight: 700;
color: var(--ink);
margin: var(--s6) 0 var(--s3)
}

.sec-h3:first-child {
margin-top: 0
}

.prose {
font-size: 15px;
color: var(--ash);
line-height: 1.82;
margin-bottom: var(--s4)
}

.prose strong {
color: var(--ink);
font-weight: 700
}

.prose a {
color: var(--sun);
text-decoration: underline;
text-underline-offset: 3px
}

/* ── CALLOUT ── */
.callout {
display: flex;
gap: var(--s4);
padding: var(--s5);
border-radius: var(--r16);
margin: var(--s5) 0;
border: 1px solid
}

@media(max-width:479px) {
.callout {
flex-direction: column;
gap: var(--s3)
}
}

.callout.sun {
background: var(--sun-pale);
border-color: rgba(212, 134, 10, .2)
}

.callout.sun .cl-icon {
background: rgba(212, 134, 10, .12)
}

.callout.sun .cl-head {
color: var(--savanna)
}

.callout.grn {
background: var(--forest-pale);
border-color: rgba(26, 80, 48, .16)
}

.callout.grn .cl-icon {
background: rgba(26, 80, 48, .1)
}

.callout.grn .cl-head {
color: var(--forest)
}

.callout.dark {
background: #EEF2F6;
border-color: rgba(42, 58, 74, .14)
}

.callout.dark .cl-icon {
background: rgba(42, 58, 74, .1)
}

.callout.dark .cl-head {
color: var(--ridge)
}

.cl-icon {
width: 44px;
height: 44px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0
}

.cl-icon svg {
width: 20px;
height: 20px
}

.callout.sun .cl-icon svg {
color: var(--savanna)
}

.callout.grn .cl-icon svg {
color: var(--forest)
}

.callout.dark .cl-icon svg {
color: var(--ridge)
}

.cl-head {
font-size: 14.5px;
font-weight: 700;
margin-bottom: .3rem
}

.cl-body {
font-size: 13.5px;
color: var(--ash);
line-height: 1.7;
margin: 0
}

/* ── 3-PHASE VISUAL ── */
.phases {
display: grid;
grid-template-columns: 1fr;
gap: var(--s4);
margin: var(--s6) 0
}

@media(min-width:680px) {
.phases {
grid-template-columns: repeat(3, 1fr)
}
}

.phase-card {
border-radius: var(--r20);
overflow: hidden;
border: 1px solid var(--border);
transition: box-shadow var(--t), transform var(--t);
position: relative
}

.phase-card:hover {
box-shadow: var(--sh-md);
transform: translateY(-3px)
}

.phase-img {
height: 180px;
overflow: hidden;
position: relative
}

.phase-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .5s ease;
will-change: transform
}

.phase-card:hover .phase-img img {
transform: scale(1.06)
}

.phase-ov {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(10, 15, 20, .7) 0%, transparent 55%)
}

.phase-num {
position: absolute;
top: var(--s3);
left: var(--s3);
width: 34px;
height: 34px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: var(--fd);
font-size: 1rem;
font-weight: 700;
backdrop-filter: blur(6px)
}

.phase-card.before .phase-num {
background: rgba(212, 134, 10, .82);
color: #fff
}

.phase-card.during .phase-num {
background: rgba(10, 15, 20, .82);
color: var(--sun-lt)
}

.phase-card.after .phase-num {
background: rgba(58, 168, 104, .82);
color: #fff
}

.phase-label {
position: absolute;
bottom: var(--s3);
left: var(--s4);
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .12em;
color: rgba(255, 255, 255, .7)
}

.phase-title {
position: absolute;
bottom: 2.2rem;
left: var(--s4);
font-family: var(--fd);
font-size: 1.05rem;
font-weight: 700;
color: #fff;
line-height: 1.2;
max-width: calc(100% - 2rem)
}

.phase-body {
background: var(--chalk);
padding: var(--s4) var(--s5)
}

.phase-body p {
font-size: 13px;
color: var(--ash);
line-height: 1.65
}

.phase-tag {
display: inline-flex;
align-items: center;
gap: .3rem;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
padding: 3px 9px;
border-radius: var(--rpill);
margin-top: .75rem;
border: 1px solid
}

.phase-card.before .phase-tag {
background: var(--sun-pale);
color: var(--savanna);
border-color: rgba(212, 134, 10, .22)
}

.phase-card.during .phase-tag {
background: #EEF2F6;
color: var(--ridge);
border-color: rgba(42, 58, 74, .18)
}

.phase-card.after .phase-tag {
background: var(--forest-pale);
color: var(--forest);
border-color: rgba(26, 80, 48, .2)
}

/* ── BEFORE SECTION DETAIL ── */
.before-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s5);
margin: var(--s5) 0
}

@media(min-width:600px) {
.before-grid {
grid-template-columns: 1fr 1fr
}
}

@media(min-width:900px) {
.before-grid {
grid-template-columns: repeat(3, 1fr)
}
}

.bg-card {
background: var(--chalk);
border: 1px solid var(--border);
border-radius: var(--r16);
overflow: hidden;
transition: box-shadow var(--t), transform var(--t)
}

.bg-card:hover {
box-shadow: var(--sh-md);
transform: translateY(-3px)
}

.bg-img {
height: 150px;
overflow: hidden
}

.bg-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .5s;
filter: saturate(1.1)
}

.bg-card:hover .bg-img img {
transform: scale(1.06)
}

.bg-body {
padding: var(--s4) var(--s4)
}

.bg-tag {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .1em;
color: var(--sun);
margin-bottom: .35rem
}

.bg-title {
font-family: var(--fd);
font-size: 1rem;
font-weight: 700;
color: var(--ink);
margin-bottom: .4rem;
line-height: 1.25
}

.bg-desc {
font-size: 12.5px;
color: var(--ash);
line-height: 1.62
}

.bg-dist {
display: inline-flex;
align-items: center;
gap: .3rem;
margin-top: .65rem;
font-size: 11px;
font-weight: 700;
color: var(--forest);
background: var(--forest-pale);
padding: .22rem .7rem;
border-radius: var(--rpill);
border: 1px solid rgba(26, 80, 48, .16)
}

/* ── COMPARISON TABLE ── */
.tbl-wrap {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
border-radius: var(--r12);
border: 1px solid var(--border);
margin: var(--s5) 0;
box-shadow: var(--sh-sm)
}

.dtbl {
width: 100%;
min-width: 540px;
border-collapse: collapse;
font-size: 13px
}

.dtbl th {
padding: .75rem 1rem;
text-align: left;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
color: var(--ash);
background: var(--sand);
border-bottom: 1px solid var(--border);
white-space: nowrap
}

.dtbl td {
padding: .75rem 1rem;
border-bottom: 1px solid var(--border);
vertical-align: middle;
color: var(--ash);
line-height: 1.5
}

.dtbl td strong {
color: var(--ink)
}

.dtbl tr:last-child td {
border-bottom: none
}

.dtbl tr:hover td {
background: var(--sun-pale)
}

.badge-best {
display: inline-block;
background: rgba(212, 134, 10, .1);
color: var(--savanna);
font-size: 11px;
font-weight: 700;
padding: 2px 8px;
border-radius: var(--rpill);
border: 1px solid rgba(212, 134, 10, .22)
}

.badge-good {
display: inline-block;
background: var(--forest-pale);
color: var(--forest);
font-size: 11px;
font-weight: 700;
padding: 2px 8px;
border-radius: var(--rpill);
border: 1px solid rgba(26, 80, 48, .2)
}

.badge-ok {
display: inline-block;
background: #EEF2F6;
color: var(--ridge);
font-size: 11px;
font-weight: 700;
padding: 2px 8px;
border-radius: var(--rpill);
border: 1px solid rgba(42, 58, 74, .16)
}

/* ── DURING SECTION — route cards ── */
.route-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s4);
margin: var(--s5) 0
}

@media(min-width:600px) {
.route-grid {
grid-template-columns: 1fr 1fr
}
}

.route-card {
background: var(--chalk);
border: 1px solid var(--border);
border-left: 4px solid var(--sun);
border-radius: var(--r16);
padding: var(--s5);
transition: box-shadow var(--t), transform var(--t)
}

.route-card:hover {
box-shadow: var(--sh-md);
transform: translateY(-2px)
}

.route-card.rec {
border-left-color: var(--forest)
}

.rc-top {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: var(--s3);
margin-bottom: var(--s3)
}

.rc-name {
font-family: var(--fd);
font-size: 1.1rem;
font-weight: 700;
color: var(--ink);
line-height: 1.2
}

.rc-badge {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
padding: 3px 9px;
border-radius: var(--rpill);
white-space: nowrap;
flex-shrink: 0
}

.route-card .rc-badge {
background: rgba(212, 134, 10, .1);
color: var(--savanna);
border: 1px solid rgba(212, 134, 10, .22)
}

.route-card.rec .rc-badge {
background: var(--forest-pale);
color: var(--forest);
border: 1px solid rgba(26, 80, 48, .2)
}

.rc-specs {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: .45rem;
margin-bottom: var(--s3)
}

.rc-spec {
display: flex;
flex-direction: column;
gap: 2px;
text-align: center;
padding: .4rem .3rem;
background: var(--bg);
border-radius: var(--r8);
border: 1px solid var(--border)
}

.rc-spec-lbl {
font-size: 9.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
color: var(--mist)
}

.rc-spec-val {
font-size: 12.5px;
font-weight: 700;
color: var(--ink)
}

.rc-desc {
font-size: 12.5px;
color: var(--ash);
line-height: 1.62
}

.rc-why {
margin-top: .75rem;
padding-top: .75rem;
border-top: 1px solid var(--border);
font-size: 12px;
color: var(--ash);
display: flex;
align-items: flex-start;
gap: .45rem
}

.rc-why::before {
content: '';
width: 16px;
height: 16px;
border-radius: 50%;
background: var(--forest-pale);
border: 1px solid rgba(26, 80, 48, .2);
flex-shrink: 0;
margin-top: .1em;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231A5030' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: center;
background-size: 10px
}

/* ── DURING TIPS ── */
.tips-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s4);
margin: var(--s5) 0
}

@media(min-width:600px) {
.tips-grid {
grid-template-columns: 1fr 1fr
}
}

@media(min-width:900px) {
.tips-grid {
grid-template-columns: repeat(3, 1fr)
}
}

.tip-card {
background: var(--chalk);
border: 1px solid var(--border);
border-radius: var(--r16);
padding: var(--s5);
transition: box-shadow var(--t)
}

.tip-card:hover {
box-shadow: var(--sh-sm)
}

.tip-icon {
width: 42px;
height: 42px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: var(--s3);
background: var(--sun-pale);
border: 1px solid rgba(212, 134, 10, .18)
}

.tip-icon svg {
width: 20px;
height: 20px;
color: var(--savanna)
}

.tip-title {
font-family: var(--fd);
font-size: 1rem;
font-weight: 700;
color: var(--ink);
margin-bottom: .4rem
}

.tip-desc {
font-size: 13px;
color: var(--ash);
line-height: 1.65
}

/* ── AFTER — safari cards ── */
.after-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s5);
margin: var(--s5) 0
}

@media(min-width:600px) {
.after-grid {
grid-template-columns: 1fr 1fr
}
}

@media(min-width:1000px) {
.after-grid {
grid-template-columns: repeat(3, 1fr)
}
}

.aft-card {
background: var(--chalk);
border: 1px solid var(--border);
border-radius: var(--r20);
overflow: hidden;
display: flex;
flex-direction: column;
transition: box-shadow var(--t), transform var(--t)
}

.aft-card:hover {
box-shadow: var(--sh-lg);
transform: translateY(-4px)
}

.aft-card.featured {
border: 2px solid var(--sun)
}

.aft-img {
height: 190px;
overflow: hidden;
position: relative
}

.aft-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .5s;
filter: saturate(1.12)
}

.aft-card:hover .aft-img img {
transform: scale(1.07)
}

.aft-img-ov {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(10, 15, 20, .65) 0%, transparent 55%)
}

.aft-badges {
position: absolute;
top: var(--s3);
left: var(--s3);
display: flex;
gap: .35rem;
flex-wrap: wrap
}

.aft-badge {
font-size: 9.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
padding: 3px 8px;
border-radius: var(--rpill);
backdrop-filter: blur(4px)
}

.ab-pop {
background: rgba(212, 134, 10, .82);
color: #fff
}

.ab-best {
background: rgba(26, 80, 48, .82);
color: #C8F0D8
}

.ab-zan {
background: rgba(30, 120, 180, .82);
color: #C8E8FF
}

.aft-wildlife {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: .5rem var(--s4);
display: flex;
flex-wrap: wrap;
gap: .3rem
}

.aw-chip {
font-size: 10px;
font-weight: 600;
color: rgba(255, 255, 255, .9);
background: rgba(10, 15, 20, .55);
backdrop-filter: blur(4px);
padding: 2px 7px;
border-radius: var(--rpill);
border: 1px solid rgba(255, 255, 255, .16)
}

.aft-body {
padding: var(--s4) var(--s5);
flex: 1;
display: flex;
flex-direction: column;
gap: var(--s3)
}

.aft-cat {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .1em;
color: var(--sun)
}

.aft-name {
font-family: var(--fd);
font-size: 1.15rem;
font-weight: 700;
color: var(--ink);
line-height: 1.22
}

.aft-desc {
font-size: 13px;
color: var(--ash);
line-height: 1.65;
flex: 1
}

.aft-specs {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: .4rem
}

.aft-spec {
display: flex;
flex-direction: column;
gap: 2px;
text-align: center;
padding: .4rem .3rem;
background: var(--bg);
border-radius: var(--r8);
border: 1px solid var(--border)
}

.as-lbl {
font-size: 9.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
color: var(--mist)
}

.as-val {
font-size: 12.5px;
font-weight: 700;
color: var(--ink)
}

.aft-foot {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--s3);
padding-top: var(--s3);
border-top: 1px solid var(--border);
flex-wrap: wrap
}

.aft-price-block .af-from {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
color: var(--mist)
}

.aft-price-block .af-price {
font-family: var(--fd);
font-size: 1.4rem;
font-weight: 700;
color: var(--sun);
line-height: 1
}

.aft-price-block .af-per {
font-size: 11px;
color: var(--mist)
}

.aft-cta {
display: inline-flex;
align-items: center;
gap: .4rem;
padding: .55rem 1.1rem;
background: var(--sun);
color: #fff;
border-radius: var(--rpill);
font-size: 13px;
font-weight: 700;
border: none;
cursor: pointer;
transition: background var(--t);
white-space: nowrap
}

.aft-cta:hover {
background: var(--sun-lt)
}

.aft-cta svg {
width: 12px;
height: 12px
}

/* ── PACKAGES SECTION ── */
.pkg-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s5);
margin: var(--s5) 0
}

@media(min-width:600px) {
.pkg-grid {
grid-template-columns: 1fr 1fr
}
}

@media(min-width:1000px) {
.pkg-grid {
grid-template-columns: repeat(3, 1fr)
}
}

.pkg-card {
background: var(--chalk);
border: 1px solid var(--border);
border-top: 5px solid var(--sun);
border-radius: var(--r20);
padding: var(--s5);
display: flex;
flex-direction: column;
gap: var(--s3);
transition: box-shadow var(--t), transform var(--t)
}

.pkg-card:hover {
box-shadow: var(--sh-lg);
transform: translateY(-4px)
}

.pkg-card.feat {
border-top-color: var(--forest)
}

.pkg-dur {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .12em;
color: var(--sun)
}

.pkg-card.feat .pkg-dur {
color: var(--forest)
}

.pkg-name {
font-family: var(--fd);
font-size: 1.2rem;
font-weight: 700;
color: var(--ink);
line-height: 1.22
}

.pkg-desc {
font-size: 13px;
color: var(--ash);
line-height: 1.65
}

.pkg-stops {
display: flex;
flex-direction: column;
gap: .3rem
}

.pkg-stop {
display: flex;
align-items: center;
gap: .5rem;
font-size: 12.5px;
color: var(--ink)
}

.ps-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--sun-lt);
flex-shrink: 0
}

.pkg-card.feat .ps-dot {
background: var(--forest-bright)
}

.pkg-tags {
display: flex;
flex-wrap: wrap;
gap: .35rem
}

.pkg-tag {
font-size: 11px;
font-weight: 500;
color: var(--ash);
background: var(--bg-dk);
padding: 2px 7px;
border-radius: var(--rpill);
border: 1px solid var(--border)
}

.pkg-ft {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--s3);
padding-top: var(--s3);
border-top: 1px solid var(--border);
flex-wrap: wrap;
margin-top: auto
}

.pkg-p-from {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
color: var(--mist)
}

.pkg-p-amt {
font-family: var(--fd);
font-size: 1.4rem;
font-weight: 700;
color: var(--sun);
line-height: 1
}

.pkg-card.feat .pkg-p-amt {
color: var(--forest)
}

.pkg-p-per {
font-size: 11px;
color: var(--mist)
}

.pkg-book-btn {
display: inline-flex;
align-items: center;
gap: .4rem;
padding: .55rem 1.1rem;
background: var(--sun);
color: #fff;
border-radius: var(--rpill);
font-size: 13px;
font-weight: 700;
border: none;
cursor: pointer;
transition: background var(--t);
white-space: nowrap
}

.pkg-book-btn:hover {
background: var(--sun-lt)
}

.pkg-card.feat .pkg-book-btn {
background: var(--forest);
}

.pkg-card.feat .pkg-book-btn:hover {
background: var(--forest-lt)
}

.pkg-book-btn svg {
width: 12px;
height: 12px
}

/* ── MONTHLY PLANNER ── */
.monthly-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: .75rem;
margin: var(--s5) 0
}

@media(min-width:600px) {
.monthly-grid {
grid-template-columns: repeat(3, 1fr)
}
}

@media(min-width:900px) {
.monthly-grid {
grid-template-columns: repeat(6, 1fr)
}
}

.mo-card {
background: var(--chalk);
border: 1px solid var(--border);
border-radius: var(--r12);
padding: var(--s3) var(--s3);
text-align: center;
transition: box-shadow var(--t), transform var(--t);
cursor: default
}

.mo-card:hover {
box-shadow: var(--sh-sm);
transform: translateY(-2px)
}

.mo-card.peak {
border-color: rgba(212, 134, 10, .4);
background: var(--sun-pale)
}

.mo-card.good {
border-color: rgba(26, 80, 48, .25);
background: var(--forest-pale)
}

.mo-card.ok {
border-color: var(--border)
}

.mo-name {
font-family: var(--fd);
font-size: .95rem;
font-weight: 700;
color: var(--ink);
margin-bottom: .35rem
}

.mo-weather {
font-size: 10.5px;
color: var(--ash);
margin-bottom: .35rem
}

.mo-kili {
font-size: 10px;
font-weight: 600;
padding: 2px 7px;
border-radius: var(--rpill);
display: inline-block;
margin-bottom: .3rem;
border: 1px solid
}

.mo-card.peak .mo-kili {
background: rgba(212, 134, 10, .12);
color: var(--savanna);
border-color: rgba(212, 134, 10, .22)
}

.mo-card.good .mo-kili {
background: var(--forest-pale);
color: var(--forest);
border-color: rgba(26, 80, 48, .2)
}

.mo-card.ok .mo-kili {
background: var(--bg-dk);
color: var(--ash);
border-color: var(--border)
}

.mo-safari {
font-size: 10px;
font-weight: 600;
color: var(--mist)
}

/* ── CHECKLISTS ── */
.checklist {
display: flex;
flex-direction: column;
gap: var(--s3);
margin: var(--s4) 0
}

.cl-item {
display: flex;
align-items: flex-start;
gap: .7rem;
font-size: 14.5px;
color: var(--ash);
line-height: 1.65
}

.cl-check {
width: 20px;
height: 20px;
border-radius: 50%;
flex-shrink: 0;
margin-top: .12em;
background-repeat: no-repeat;
background-position: center
}

.cl-check.yes {
background: rgba(26, 80, 48, .1);
border: 1px solid rgba(26, 80, 48, .2);
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231A5030' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
background-size: 11px
}

.cl-check.warn {
background: rgba(212, 134, 10, .1);
border: 1px solid rgba(212, 134, 10, .22);
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='4.5' stroke='%23C47828' stroke-width='1.5' fill='none'/%3E%3Cpath d='M6 4v2.5' stroke='%23C47828' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='6' cy='8.5' r='.6' fill='%23C47828'/%3E%3C/svg%3E");
background-size: 12px
}

.cl-item strong {
color: var(--ink);
font-weight: 700
}

/* ── RECOVERY SECTION ── */
.rec-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s4);
margin: var(--s5) 0
}

@media(min-width:600px) {
.rec-grid {
grid-template-columns: 1fr 1fr
}
}

.rec-card {
background: var(--chalk);
border: 1px solid var(--border);
border-radius: var(--r16);
padding: var(--s5);
display: flex;
gap: var(--s4);
align-items: flex-start;
transition: box-shadow var(--t)
}

.rec-card:hover {
box-shadow: var(--sh-sm)
}

.rec-ico {
width: 44px;
height: 44px;
border-radius: 10px;
background: var(--sun-pale);
border: 1px solid rgba(212, 134, 10, .18);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0
}

.rec-ico svg {
width: 20px;
height: 20px;
color: var(--savanna)
}

.rec-title {
font-family: var(--fd);
font-size: 1rem;
font-weight: 700;
color: var(--ink);
margin-bottom: .4rem
}

.rec-desc {
font-size: 13px;
color: var(--ash);
line-height: 1.62
}

/* ── FAQ ── */
.faq-wrap {
display: flex;
flex-direction: column;
margin: var(--s5) 0
}

@media(min-width:780px) {
.faq-wrap {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0 var(--s8)
}
}

.faq-col {
display: flex;
flex-direction: column
}

.faq-item {
border-bottom: 1px solid var(--border)
}

.faq-q {
width: 100%;
background: none;
border: none;
text-align: left;
padding: var(--s4) 0;
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: var(--s4);
font-size: 14px;
font-weight: 600;
color: var(--ink);
cursor: pointer;
transition: color var(--t);
line-height: 1.42
}

.faq-q:hover {
color: var(--sun)
}

.faq-q[aria-expanded=true] {
color: var(--savanna)
}

.faq-q svg {
width: 18px;
height: 18px;
flex-shrink: 0;
color: var(--mist);
margin-top: 2px;
transition: transform .2s
}

.faq-q[aria-expanded=true] svg {
transform: rotate(45deg);
color: var(--sun)
}

.faq-a {
display: none;
padding-bottom: var(--s5);
font-size: 14px;
color: var(--ash);
line-height: 1.78
}

.faq-a.open {
display: block
}

.faq-a strong {
color: var(--ink);
font-weight: 700
}

/* ── TESTIMONIALS ── */
.testi-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s4);
margin: var(--s5) 0
}

@media(min-width:600px) {
.testi-grid {
grid-template-columns: 1fr 1fr
}
}

@media(min-width:900px) {
.testi-grid {
grid-template-columns: repeat(3, 1fr)
}
}

.testi-card {
background: var(--chalk);
border: 1px solid var(--border);
border-radius: var(--r16);
padding: var(--s5);
position: relative;
transition: box-shadow var(--t)
}

.testi-card:hover {
box-shadow: var(--sh-md)
}

.t-qt {
position: absolute;
top: var(--s3);
right: var(--s4);
font-family: var(--fd);
font-size: 3.5rem;
font-weight: 700;
color: var(--sand);
line-height: 1;
pointer-events: none
}

.t-stars {
color: var(--sun);
font-size: 14px;
letter-spacing: 1px;
margin-bottom: var(--s3)
}

.t-text {
font-size: 13.5px;
color: var(--ink);
line-height: 1.75;
font-style: italic;
position: relative;
z-index: 1
}

.t-author {
display: flex;
align-items: center;
gap: .75rem;
margin-top: var(--s4);
padding-top: var(--s3);
border-top: 1px solid var(--border)
}

.t-av {
width: 38px;
height: 38px;
border-radius: 50%;
background: var(--sun-pale);
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 14px;
color: var(--savanna);
flex-shrink: 0
}

.t-name {
font-size: 13px;
font-weight: 700;
color: var(--ink)
}

.t-pkg {
font-size: 11px;
color: var(--ash)
}

/* ── CTA BAND ── */
.cta-band {
background: linear-gradient(135deg, var(--peak) 0%, var(--ridge) 55%, rgba(42, 58, 74, .5) 100%);
border-radius: var(--r24);
padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
margin: var(--s12) 0;
position: relative;
overflow: hidden
}

.cta-band::before {
content: '';
position: absolute;
top: -60px;
right: -60px;
width: 300px;
height: 300px;
border-radius: 50%;
background: rgba(212, 134, 10, .07);
pointer-events: none
}

.cta-band::after {
content: '';
position: absolute;
bottom: -80px;
left: 20%;
width: 400px;
height: 400px;
border-radius: 50%;
background: rgba(58, 168, 104, .05);
pointer-events: none
}

.cta-in {
position: relative;
z-index: 1;
text-align: center;
max-width: 620px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
gap: var(--s4)
}

.cta-eyebrow {
display: inline-flex;
align-items: center;
gap: .45rem;
background: rgba(212, 134, 10, .15);
border: 1px solid rgba(212, 134, 10, .32);
color: var(--sun-lt);
font-size: 10.5px;
font-weight: 700;
letter-spacing: .18em;
text-transform: uppercase;
padding: .32rem 1.1rem;
border-radius: var(--rpill)
}

.cta-title {
font-family: var(--fd);
font-size: clamp(1.6rem, 4vw, 2.5rem);
font-weight: 700;
color: var(--snow);
line-height: 1.18
}

.cta-title em {
font-style: italic;
color: var(--sun-lt)
}

.cta-sub {
font-size: 15.5px;
color: rgba(255, 255, 255, .55);
line-height: 1.72;
max-width: 480px
}

.cta-actions {
display: flex;
flex-wrap: wrap;
gap: .65rem;
justify-content: center
}

.cta-trust {
display: flex;
flex-wrap: wrap;
gap: var(--s3) var(--s5);
justify-content: center
}

.ct-item {
display: flex;
align-items: center;
gap: .4rem;
font-size: 12.5px;
color: rgba(255, 255, 255, .5)
}

.ct-item svg {
width: 13px;
height: 13px;
color: var(--sun-lt);
flex-shrink: 0
}

/* ── FOOTER ── */
.ftr {
background: var(--peak);
color: rgba(255, 255, 255, .5);
padding: var(--s10) var(--s4) var(--s8);
margin-top: var(--s12)
}

.ftr-grid {
max-width: 1280px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: var(--s8)
}

@media(min-width:600px) {
.ftr-grid {
flex-direction: row;
flex-wrap: wrap;
gap: var(--s8)
}
}

.ftr-brand {
flex: 2;
min-width: 0
}

.ftr-logo-row {
display: flex;
align-items: center;
gap: .75rem;
margin-bottom: var(--s4)
}

.ftr-logo-row img {
height: 42px;
width: 42px;
object-fit: contain;
border-radius: 6px
}

.ftr-brand-name {
font-family: var(--fd);
font-size: 1.1rem;
font-weight: 700;
color: var(--snow)
}

.ftr-brand p {
font-size: 13px;
line-height: 1.7;
max-width: 280px
}

.ftr-col {
flex: 1;
min-width: 140px
}

.ftr-col h4 {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .1em;
color: var(--sun-lt);
margin-bottom: var(--s4)
}

.ftr-col ul {
display: flex;
flex-direction: column;
gap: .5rem
}

.ftr-col a {
font-size: 13px;
color: rgba(255, 255, 255, .48);
transition: color var(--t)
}

.ftr-col a:hover {
color: var(--snow)
}

.ftr-bottom {
max-width: 1280px;
margin: var(--s8) auto 0;
padding-top: var(--s5);
border-top: 1px solid rgba(255, 255, 255, .08);
display: flex;
flex-direction: column;
gap: .5rem;
font-size: 12px;
color: rgba(255, 255, 255, .28)
}

@media(min-width:520px) {
.ftr-bottom {
flex-direction: row;
justify-content: space-between;
align-items: center
}
}

.ftr-bottom a {
color: inherit;
transition: color var(--t)
}

.ftr-bottom a:hover {
color: rgba(255, 255, 255, .6)
}

/* ── MOBILE STICKY CTA ── */
.mob-stick {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 200;
background: rgba(10, 15, 20, .97);
border-top: 2px solid rgba(212, 134, 10, .35);
padding: .7rem var(--s4);
display: flex;
align-items: center;
gap: var(--s4)
}

@media(min-width:1060px) {
.mob-stick {
display: none
}
}

.ms-left {
flex: 1
}

.ms-lbl {
font-size: 9.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
color: rgba(255, 255, 255, .38);
display: block;
line-height: 1
}

.ms-price {
font-family: var(--fd);
font-size: 1.2rem;
font-weight: 700;
color: var(--sun-lt);
line-height: 1.1
}

.ms-btn {
padding: .6rem 1.2rem;
background: var(--sun);
color: #fff;
border: none;
border-radius: var(--rpill);
font-size: 14px;
font-weight: 700;
cursor: pointer;
transition: background var(--t);
white-space: nowrap
}

.ms-btn:hover {
background: var(--sun-lt)
}

/* ── MODAL ── */
.modal-bd {
position: fixed;
inset: 0;
background: rgba(10, 15, 20, .82);
backdrop-filter: blur(8px);
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
padding: var(--s4);
opacity: 0;
pointer-events: none;
transition: opacity .25s ease
}

.modal-bd.open {
opacity: 1;
pointer-events: auto
}

.modal-box {
background: var(--chalk);
border-radius: var(--r24);
width: 100%;
max-width: 640px;
max-height: 92vh;
overflow-y: auto;
position: relative;
transform: translateY(24px) scale(.97);
transition: transform .3s cubic-bezier(.34, 1.44, .64, 1);
box-shadow: 0 24px 80px rgba(10, 15, 20, .5)
}

.modal-bd.open .modal-box {
transform: translateY(0) scale(1)
}

.modal-hd {
background: linear-gradient(135deg, var(--peak), var(--ridge));
padding: var(--s6);
position: relative;
overflow: hidden
}

.modal-hd::after {
content: '';
position: absolute;
bottom: -50px;
right: -50px;
width: 200px;
height: 200px;
border-radius: 50%;
background: rgba(255, 255, 255, .04)
}

.modal-x {
position: absolute;
top: var(--s4);
right: var(--s4);
width: 32px;
height: 32px;
border-radius: 50%;
background: rgba(255, 255, 255, .14);
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: rgba(255, 255, 255, .8);
transition: background var(--t);
z-index: 1
}

.modal-x:hover {
background: rgba(255, 255, 255, .26)
}

.modal-x svg {
width: 15px;
height: 15px
}

.modal-tag {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .12em;
color: rgba(255, 255, 255, .42);
margin-bottom: .45rem;
display: block
}

.modal-title {
font-family: var(--fd);
font-size: clamp(1.2rem, 3vw, 1.65rem);
font-weight: 700;
color: var(--snow);
line-height: 1.2;
max-width: 460px;
position: relative;
z-index: 1
}

.modal-price-row {
display: flex;
align-items: baseline;
gap: .45rem;
margin-top: .75rem;
position: relative;
z-index: 1
}

.mp-from {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
color: rgba(255, 255, 255, .4)
}

.mp-amt {
font-family: var(--fd);
font-size: 1.5rem;
font-weight: 700;
color: var(--sun-lt);
line-height: 1
}

.mp-per {
font-size: 11.5px;
color: rgba(255, 255, 255, .38)
}

.modal-trust {
display: flex;
flex-wrap: wrap;
gap: .5rem;
margin-top: .75rem;
position: relative;
z-index: 1
}

.mt-item {
display: flex;
align-items: center;
gap: .35rem;
font-size: 11px;
color: rgba(255, 255, 255, .55)
}

.mt-item svg {
width: 12px;
height: 12px;
color: var(--sun-lt);
flex-shrink: 0
}

.modal-form {
padding: var(--s5) var(--s6)
}

@media(max-width:479px) {
.modal-form {
padding: var(--s4)
}
}

.mf-gap {
display: flex;
flex-direction: column;
gap: var(--s4)
}

.mf-row {
display: flex;
flex-direction: column;
gap: var(--s4)
}

@media(min-width:480px) {
.mf-row {
flex-direction: row
}

.mf-row .mf-g {
flex: 1
}
}

.mf-g {
display: flex;
flex-direction: column;
gap: .35rem
}

.mf-g label {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
color: var(--ash)
}

.req {
color: #B43A1A
}

.mf-g input,
.mf-g select,
.mf-g textarea {
width: 100%;
padding: .65rem .9rem;
border: 1px solid var(--border);
border-radius: var(--r8);
background: var(--bg-dk);
color: var(--ink);
font-size: 14px;
outline: none;
transition: border-color .2s, box-shadow .2s;
appearance: none
}

.mf-g input:focus,
.mf-g select:focus,
.mf-g textarea:focus {
border-color: var(--sun);
box-shadow: 0 0 0 3px rgba(212, 134, 10, .12)
}

.mf-g select {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23685E52' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right .75rem center;
padding-right: 2.2rem
}

.mf-g textarea {
resize: vertical;
min-height: 80px
}

.modal-submit {
display: flex;
align-items: center;
justify-content: center;
gap: .5rem;
width: 100%;
padding: var(--s4);
background: var(--sun);
color: #fff;
border: none;
border-radius: var(--r8);
font-size: 15px;
font-weight: 700;
cursor: pointer;
transition: background var(--t)
}

.modal-submit:hover {
background: var(--sun-lt)
}

.modal-submit svg {
width: 16px;
height: 16px
}

.modal-note {
text-align: center;
font-size: 11.5px;
color: var(--ash);
margin-top: var(--s3)
}

.modal-ok {
display: none;
flex-direction: column;
align-items: center;
text-align: center;
gap: var(--s4);
padding: var(--s10) var(--s6)
}

.modal-ok.show {
display: flex
}

.mok-ico {
width: 64px;
height: 64px;
border-radius: 50%;
background: var(--sun-pale);
display: flex;
align-items: center;
justify-content: center;
font-size: 28px
}

.mok-title {
font-family: var(--fd);
font-size: 1.5rem;
font-weight: 700;
color: var(--ink)
}

.mok-sub {
font-size: 14px;
color: var(--ash);
line-height: 1.7;
max-width: 380px
}

.mok-close {
display: inline-flex;
align-items: center;
gap: .45rem;
padding: .7rem 1.75rem;
background: var(--sun);
color: #fff;
border-radius: var(--rpill);
font-size: 14px;
font-weight: 700;
border: none;
cursor: pointer;
transition: background var(--t)
}

.mok-close:hover {
background: var(--sun-lt)
}

/* Performance: reduce motion for accessibility */
@media(prefers-reduced-motion:reduce) {
* {
animation: none !important;
transition: none !important
}
}

/* Critical CSS loading animation */
@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(16px)
}

to {
opacity: 1;
transform: translateY(0)
}
}

.hero-content>* {
animation: fadeUp .55s ease both
}

.hero-content>*:nth-child(1) {
animation-delay: .05s
}

.hero-content>*:nth-child(2) {
animation-delay: .12s
}

.hero-content>*:nth-child(3) {
animation-delay: .19s
}

.hero-content>*:nth-child(4) {
animation-delay: .26s
}

.hero-content>*:nth-child(5) {
animation-delay: .33s
}

/* ================================================================
KILIMANJARO SAFARI COMBO PAGE - RESPONSIVE OPTIMIZED
================================================================ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0
}

html {
font-size: 16px;
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased
}

body {
font-family: 'Outfit', sans-serif;
background: #F3EDE2;
color: #1C1410;
line-height: 1.72;
overflow-x: hidden;
width: 100%
}

img {
max-width: 100%;
height: auto;
display: block
}

a {
color: inherit;
text-decoration: none
}

ul,
ol {
list-style: none
}

button,
input,
select,
textarea {
font-family: inherit;
font-size: 1rem;
/* Prevents iOS zoom on focus */
}

a:focus-visible,
button:focus-visible {
outline: 3px solid #D4860A;
outline-offset: 3px
}

.sr {
position: absolute;
width: 1px;
height: 1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap
}

/* ── DESIGN TOKENS ── */
:root {
--peak: #0A0F14;
--snow: #F0EDE6;
--glacier: #B8D4E8;
--ridge: #2A3A4A;
--sun: #D4860A;
--sun-lt: #E8A830;
--sun-pale: #FBF3E2;
--savanna: #C47828;
--earth: #8A4E1A;
--forest: #1A5030;
--forest-lt: #2A7848;
--forest-bright: #3AA868;
--forest-pale: #E8F4EC;
--bg: #F3EDE2;
--bg-dk: #EAE2D4;
--chalk: #FDFAF4;
--sand: #E2D4B8;
--stone: #C8BAA4;
--ink: #1C1410;
--ash: #685E52;
--mist: #9A8E80;
--border: #DDD0B8;
--border-sun: rgba(212, 134, 10, .18);
--fd: 'Playfair Display', Georgia, serif;
--fb: 'Outfit', sans-serif;
--sh-sm: 0 1px 8px rgba(20, 14, 8, .08);
--sh-md: 0 4px 20px rgba(20, 14, 8, .12);
--sh-lg: 0 12px 48px rgba(20, 14, 8, .16);
--r8: 8px;
--r12: 12px;
--r16: 16px;
--r20: 20px;
--r24: 24px;
--rpill: 100px;
--t: .2s ease;
--s2: .5rem;
--s3: .75rem;
--s4: 1rem;
--s5: 1.25rem;
--s6: 1.5rem;
--s8: 2rem;
--s10: 2.5rem;
--s12: 3rem;
--s16: 4rem;
}

/* ── SKIP LINK ── */
.skip {
position: absolute;
left: var(--s4);
top: -100%;
background: var(--peak);
color: var(--snow);
padding: var(--s2) var(--s5);
border-radius: var(--r8);
font-size: 14px;
z-index: 9999;
transition: top .2s
}

.skip:focus {
top: var(--s3)
}

/* ================================================================
HEADER
================================================================ */
.hdr {
position: sticky;
top: 0;
z-index: 400;
background: rgba(10, 15, 20, .96);
backdrop-filter: blur(14px);
border-bottom: 1px solid rgba(212, 134, 10, .22);
width: 100%
}

.hdr-in {
max-width: 1280px;
margin: 0 auto;
padding: 0 var(--s4);
display: flex;
align-items: center;
justify-content: space-between;
height: 62px;
gap: var(--s4)
}

.logo {
display: flex;
align-items: center;
gap: .65rem;
flex-shrink: 0
}

.logo img {
width: 36px;
height: 36px;
border-radius: 6px;
object-fit: contain
}

@media(min-width:480px) {
.logo img {
width: 40px;
height: 40px;
}
}

.logo-t {
display: flex;
flex-direction: column;
line-height: 1.15
}

.logo-n {
font-family: var(--fd);
font-size: clamp(.85rem, 4vw, .95rem);
font-weight: 700;
color: var(--snow)
}

.logo-s {
font-size: 9px;
font-weight: 500;
color: rgba(255, 255, 255, .32);
letter-spacing: .13em;
text-transform: uppercase
}

.hdr-nav {
display: none;
align-items: center;
gap: 2px
}

@media(min-width:900px) {
.hdr-nav {
display: flex
}
}

.hdr-nav a {
padding: .38rem .7rem;
font-size: 13px;
font-weight: 500;
color: rgba(255, 255, 255, .62);
border-radius: 6px;
transition: background var(--t), color var(--t);
white-space: nowrap
}

.hdr-nav a:hover,
.hdr-nav a.cur {
background: rgba(212, 134, 10, .18);
color: var(--sun-lt)
}

.hdr-cta {
padding: .45rem 1.1rem;
background: var(--sun);
color: #fff;
border-radius: var(--rpill);
font-size: 12px;
font-weight: 700;
border: none;
cursor: pointer;
transition: background var(--t);
white-space: nowrap
}

@media(min-width:480px) {
.hdr-cta {
font-size: 13px;
padding: .45rem 1.25rem;
}
}

.hdr-cta:hover {
background: var(--sun-lt)
}

.ham {
display: flex;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: .5rem;
border-radius: 6px
}

@media(min-width:900px) {
.ham {
display: none
}
}

.ham span {
display: block;
width: 22px;
height: 2px;
background: rgba(255, 255, 255, .8);
border-radius: 2px;
transition: transform .2s, opacity .2s
}

.ham[aria-expanded=true] span:nth-child(1) {
transform: translateY(7px) rotate(45deg)
}

.ham[aria-expanded=true] span:nth-child(2) {
opacity: 0
}

.ham[aria-expanded=true] span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg)
}

.mob-nav {
display: none;
flex-direction: column;
gap: 2px;
padding: var(--s3) var(--s4) var(--s4);
background: var(--peak);
border-top: 1px solid rgba(255, 255, 255, .08)
}

.mob-nav.open {
display: flex
}

.mob-nav a {
padding: .8rem var(--s4);
font-size: 15px;
font-weight: 500;
color: rgba(255, 255, 255, .72);
border-radius: 8px;
transition: background var(--t), color var(--t)
}

/* ── BREADCRUMB ── */
.bc {
background: var(--peak);
border-bottom: 1px solid rgba(212, 134, 10, .16);
overflow-x: auto;
white-space: nowrap;
scrollbar-width: none;
-webkit-overflow-scrolling: touch
}

.bc::-webkit-scrollbar {
display: none
}

.bc-in {
max-width: 1280px;
margin: 0 auto;
padding: .65rem var(--s4)
}

.bc ol {
display: inline-flex;
align-items: center;
gap: .45rem;
font-size: 11px;
color: rgba(255, 255, 255, .36)
}

/* ================================================================
HERO
================================================================ */
.hero {
position: relative;
min-height: clamp(540px, 80vw, 780px);
display: flex;
align-items: flex-end;
overflow: hidden;
background: var(--peak)
}

.hero-bg {
position: absolute;
inset: 0;
z-index: 0
}

.hero-bg img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 30%;
filter: brightness(.5) saturate(1.1)
}

.hero-ov {
position: absolute;
inset: 0;
background: linear-gradient(160deg, rgba(10, 15, 20, 0) 0%, rgba(10, 15, 20, .3) 40%, rgba(10, 15, 20, .95) 100%);
z-index: 1
}

.hero-facts {
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 3;
display: flex;
overflow-x: auto;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
background: rgba(10, 15, 20, .4);
}

.hf-item {
flex: 1 0 100px;
padding: .75rem var(--s3);
text-align: center;
border-bottom: 3px solid rgba(212, 134, 10, .45);
backdrop-filter: blur(8px)
}

.hero-content {
position: relative;
z-index: 2;
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: var(--s12) var(--s4) clamp(3.5rem, 10vw, 5rem);
}

.hero-h1 {
font-family: var(--fd);
font-size: clamp(2.2rem, 8vw, 4.5rem);
font-weight: 700;
color: var(--snow);
line-height: 1.05;
letter-spacing: -.03em;
margin-bottom: var(--s5);
max-width: 900px
}

.hero-sub {
font-size: clamp(1rem, 2.5vw, 1.15rem);
color: rgba(255, 255, 255, .7);
max-width: 600px;
line-height: 1.65;
margin-bottom: var(--s8)
}

.hero-btns {
display: flex;
flex-wrap: wrap;
gap: var(--s4)
}

@media(max-width:480px) {

.btn-sun,
.btn-ghost {
width: 100%;
justify-content: center;
}
}

/* ── TRUST BAR ── */
.trust-bar {
background: var(--peak);
padding: var(--s4) var(--s4);
position: relative;
z-index: 5
}

.trust-in {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: .5rem
}

@media(min-width:768px) {
.trust-in {
grid-template-columns: repeat(4, 1fr);
gap: 1rem;
}
}

.trust-item {
padding: .75rem;
background: rgba(212, 134, 10, .08);
border: 1px solid rgba(212, 134, 10, .15);
border-radius: var(--r12);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 4px
}

@media(min-width:480px) {
.trust-item {
flex-direction: row;
text-align: left;
}
}

/* ================================================================
MAIN LAYOUT
================================================================ */
.pw {
max-width: 1280px;
margin: 0 auto;
padding: var(--s8) var(--s4)
}

@media(min-width:768px) {
.pw {
padding: var(--s12) var(--s6);
}
}

.main-grid {
display: grid;
grid-template-columns: minmax(0, 1fr);
gap: var(--s10)
}

@media(min-width:1060px) {
.main-grid {
grid-template-columns: minmax(0, 1fr) 280px;
align-items: start
}
}

/* ── TOC SIDEBAR ── */
.toc-card {
background: var(--chalk);
border: 1px solid var(--border);
border-radius: var(--r20);
padding: var(--s5);
position: sticky;
top: 85px;
/* Offset for header height + gap */
box-shadow: var(--sh-sm);
display: none;
/* Mobile hidden */
}

@media(min-width:1060px) {
.toc-card {
display: block;
}
}

/* ── SECTION CONTENT ── */
.sec {
margin-bottom: var(--s12);
scroll-margin-top: 100px
}

.sec-h2 {
font-family: var(--fd);
font-size: clamp(1.75rem, 5vw, 2.5rem);
font-weight: 700;
color: var(--ink);
line-height: 1.2;
margin-bottom: var(--s5);
letter-spacing: -.02em
}

/* ── GRIDS ── */
.phases,
.before-grid,
.route-grid,
.tips-grid,
.after-grid,
.pkg-grid,
.rec-grid,
.testi-grid {
display: grid;
grid-template-columns: 1fr;
/* Mobile-first 1 column */
gap: var(--s5);
margin: var(--s6) 0
}

/* Shared fluid grid rules */
@media(min-width:640px) {

.before-grid,
.route-grid,
.tips-grid,
.rec-grid,
.testi-grid {
grid-template-columns: repeat(2, 1fr);
}

.phases {
grid-template-columns: repeat(3, 1fr);
gap: var(--s3);
}
}

@media(min-width:960px) {

.before-grid,
.tips-grid,
.after-grid,
.pkg-grid,
.testi-grid {
grid-template-columns: repeat(3, 1fr);
}
}

/* ── TABLE RESPONSIVENESS ── */
.tbl-wrap {
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
border-radius: var(--r12);
border: 1px solid var(--border);
margin: var(--s6) 0;
background: var(--chalk);
}

.dtbl {
width: 100%;
min-width: 600px;
/* Force scroll on small screens */
border-collapse: collapse;
}

/* ── MONTHLY PLANNER GRID ── */
.monthly-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: .5rem;
margin: var(--s6) 0
}

@media(min-width:480px) {
.monthly-grid {
grid-template-columns: repeat(3, 1fr);
}
}

@media(min-width:768px) {
.monthly-grid {
grid-template-columns: repeat(4, 1fr);
}
}

@media(min-width:1000px) {
.monthly-grid {
grid-template-columns: repeat(6, 1fr);
}
}

/* ── CALLOUT BOXES ── */
.callout {
display: grid;
grid-template-columns: auto 1fr;
gap: var(--s4);
padding: var(--s5);
border-radius: var(--r16);
margin: var(--s6) 0;
border: 1px solid
}

@media(max-width:480px) {
.callout {
grid-template-columns: 1fr;
text-align: center;
justify-items: center;
}
}

/* ── FAQ ── */
.faq-wrap {
display: flex;
flex-direction: column;
margin: var(--s5) 0
}

@media(min-width:850px) {
.faq-wrap {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0 var(--s10)
}
}

/* ── CTA BAND ── */
.cta-band {
background: linear-gradient(135deg, var(--peak) 0%, var(--ridge) 100%);
border-radius: var(--r24);
padding: clamp(2rem, 8vw, 4rem) var(--s5);
margin: var(--s10) 0;
text-align: center;
}

.cta-actions {
display: flex;
flex-direction: column;
gap: 1rem;
width: 100%;
max-width: 400px;
margin: 0 auto;
}

@media(min-width:600px) {
.cta-actions {
flex-direction: row;
max-width: 100%;
justify-content: center;
}
}

/* ── FOOTER ── */
.ftr-grid {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr;
gap: var(--s8)
}

@media(min-width:640px) {
.ftr-grid {
grid-template-columns: 2fr 1fr 1fr;
}
}

/* ── MODAL ── */
.modal-box {
width: 95%;
max-width: 600px;
margin: auto;
max-height: 90vh;
}

.mf-row {
display: grid;
grid-template-columns: 1fr;
gap: var(--s4)
}

@media(min-width:500px) {
.mf-row {
grid-template-columns: 1fr 1fr;
}
}

/* ── STICKY MOBILE CTA ── */
.mob-stick {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 300;
background: rgba(10, 15, 20, .98);
backdrop-filter: blur(10px);
border-top: 2px solid var(--sun);
padding: .75rem var(--s4);
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
}

@media(min-width:1060px) {
.mob-stick {
display: none;
}
}

/* ── UTILITY ── */
.prose {
font-size: clamp(14px, 4vw, 15.5px);
max-width: 75ch;
/* Optimal reading width */
}

/* Performance and Accessibility */
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
}



.safari-btn{
display:inline-flex;
align-items:center;
gap:12px;
padding:14px 26px;
border-radius:50px;
background:linear-gradient(135deg,#0f172a,#1e293b);
color:#fff;
font-size:16px;
font-weight:600;
text-decoration:none;
border:1px solid rgba(255,255,255,0.1);
box-shadow:0 8px 25px rgba(0,0,0,0.25);
transition:all .35s ease;
position:relative;
overflow:hidden;
}

.safari-btn::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.15),
transparent
);
transform:translateX(-100%);
transition:0.6s;
}

.safari-btn:hover::before{
transform:translateX(100%);
}

.safari-btn:hover{
transform:translateY(-3px);
box-shadow:0 14px 35px rgba(0,0,0,0.35);
background:linear-gradient(135deg,#111827,#334155);
}

.btn-icon{
display:flex;
align-items:center;
justify-content:center;
width:42px;
height:42px;
border-radius:50%;
background:rgba(255,255,255,0.12);
backdrop-filter:blur(4px);
}

.btn-icon svg{
width:20px;
height:20px;
}

.btn-text{
letter-spacing:0.3px;
}

@media (max-width:768px){
.safari-btn{
width:100%;
justify-content:center;
}
}


.whatsapp-btn{
display:inline-flex;
align-items:center;
gap:14px;
padding:15px 28px;
border-radius:60px;
background:linear-gradient(135deg,#25D366,#128C7E);
color:#fff;
text-decoration:none;
font-size:16px;
font-weight:700;
letter-spacing:0.3px;
box-shadow:0 10px 30px rgba(18,140,126,0.35);
transition:all .35s ease;
position:relative;
overflow:hidden;
}

.whatsapp-btn::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.2),
transparent
);
transform:translateX(-100%);
transition:0.7s ease;
}

.whatsapp-btn:hover::before{
transform:translateX(100%);
}

.whatsapp-btn:hover{
transform:translateY(-4px) scale(1.02);
box-shadow:0 16px 40px rgba(18,140,126,0.45);
}

.whatsapp-icon{
width:46px;
height:46px;
border-radius:50%;
background:rgba(255,255,255,0.18);
display:flex;
align-items:center;
justify-content:center;
backdrop-filter:blur(4px);
flex-shrink:0;
}

.whatsapp-icon svg{
width:24px;
height:24px;
fill:#fff;
}

.whatsapp-text{
white-space:nowrap;
}

@media (max-width:768px){
.whatsapp-btn{
width:100%;
justify-content:center;
}
}
