/*
Theme Name:  The Traveller's Tonic
Theme URI:   https://travelerstonic.com
Author:      Traveller's Tonic
Author URI:  https://travelerstonic.com
Description: Premium Tours & Travel WordPress theme for The Traveller's Tonic agency.
Version:     1.3.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: travellers-tonic
Tags:        travel, tourism, one-page, responsive, custom-menu, featured-images
*/

/* ── RESET & ROOT ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Outfit',sans-serif;background:#FAF7F0;color:#0B1629;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{display:block;width:100%;height:100%;object-fit:cover}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{font-family:'Outfit',sans-serif;cursor:pointer;border:none;background:none}

/* ── CSS VARIABLES ── */
:root{
  --navy:#0B1629;
  --navy2:#0f1e38;
  --gold:#D4A843;
  --gold2:#c9982e;
  --ivory:#FAF7F0;
  --ivory2:#f0ebe0;
  --white:#ffffff;
  --text-sm:0.8125rem;
  --text-base:1rem;
  --text-lg:1.125rem;
  --text-xl:1.25rem;
  --text-2xl:1.5rem;
  --text-3xl:1.875rem;
  --text-4xl:2.25rem;
  --text-5xl:3rem;
  --text-6xl:3.75rem;
  --radius:0.5rem;
  --shadow:0 4px 24px rgba(11,22,41,0.12);
  --shadow-lg:0 8px 48px rgba(11,22,41,0.2);
  --transition:0.3s ease;
}

/* ── UTILITY ── */
.container{max-width:1200px;margin:0 auto;padding:0 1.25rem}
.gold{color:var(--gold)}
.italic{font-style:italic}
.font-display{font-family:'Italiana',serif}
.font-body{font-family:'Libre Baskerville',serif}

/* ── FADE-UP ANIMATION ── */
.fu{opacity:0;transform:translateY(32px);transition:opacity 0.7s ease,transform 0.7s ease}
.fu.on{opacity:1;transform:translateY(0)}
.fu.delay-1{transition-delay:0.1s}
.fu.delay-2{transition-delay:0.2s}
.fu.delay-3{transition-delay:0.3s}
.fu.delay-4{transition-delay:0.4s}
.fu.delay-5{transition-delay:0.5s}

/* ════════════════════════════════════════
   1. HEADER
════════════════════════════════════════ */
#header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:#0B1629;
  background:rgba(11,22,41,0.96);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(212,168,67,0.2);
  transition:background 0.3s ease;
  box-shadow:0 2px 24px rgba(0,0,0,0.3);
}
#header.scrolled{background:#0B1629;background:rgba(11,22,41,0.99)}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:72px;padding:0 1.5rem;max-width:1300px;margin:0 auto;
}
/* Logo */
.logo{display:flex;align-items:center;gap:0.6rem;flex-shrink:0}
.logo-mark{font-size:1.4rem;color:var(--gold);line-height:1}
.logo-text{display:flex;flex-direction:column;line-height:1.1}
.logo-name{font-family:'Italiana',serif;font-size:1.2rem;color:var(--ivory);letter-spacing:0.04em}
.logo-tagline{font-family:'Outfit',sans-serif;font-size:0.58rem;color:var(--gold);letter-spacing:0.18em;text-transform:uppercase;font-weight:500}

/* Desktop Nav */
.desktop-nav{display:none;align-items:center;gap:0.25rem}
.desktop-nav a{
  font-size:0.82rem;font-weight:500;color:#FAF7F0;color:rgba(250,247,240,0.85);
  padding:0.5rem 0.8rem;border-radius:0.5rem;letter-spacing:0.04em;
  transition:color 0.3s ease,background 0.3s ease;
  text-transform:uppercase;text-decoration:none;
}
.desktop-nav a:hover{color:var(--gold);background:rgba(212,168,67,0.08)}
.nav-item{position:relative}
.nav-item:hover .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown{
  position:absolute;top:calc(100% + 8px);left:0;
  background:var(--navy2);border:1px solid rgba(212,168,67,0.2);
  border-radius:var(--radius);min-width:180px;padding:0.5rem 0;
  opacity:0;visibility:hidden;transform:translateY(-8px);
  transition:all var(--transition);box-shadow:var(--shadow-lg);
}
.dropdown a{
  display:block;padding:0.6rem 1.1rem;font-size:0.8rem;
  color:rgba(250,247,240,0.75);border-radius:0;letter-spacing:0.03em;
}
.dropdown a:hover{color:var(--gold);background:rgba(212,168,67,0.06)}

.btn-book-hdr{
  display:none; /* hidden on mobile, shown via media query below */
  background:linear-gradient(135deg,#D4A843,#c9982e);
  color:#0B1629;font-weight:700;font-size:0.8rem;
  padding:0.6rem 1.3rem;border-radius:0.5rem;
  letter-spacing:0.06em;text-transform:uppercase;
  transition:transform 0.3s ease,box-shadow 0.3s ease;
  white-space:nowrap;margin-left:1rem;text-decoration:none;
}
.btn-book-hdr:hover{transform:translateY(-1px);box-shadow:0 4px 16px rgba(212,168,67,0.4)}

/* Hamburger */
.hamburger{
  display:flex;flex-direction:column;justify-content:center;gap:5px;
  width:44px;height:44px;padding:10px;cursor:pointer;z-index:1001;
}
.hamburger span{
  display:block;height:2px;width:100%;background:var(--ivory);
  border-radius:2px;transition:all 0.3s ease;
}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile Drawer */
.mobile-drawer{
  position:fixed;top:0;right:-100%;width:min(320px,100vw);height:100vh;
  background:#0B1629;
  z-index:999;padding:90px 2rem 2rem;
  transition:right 0.35s cubic-bezier(0.4,0,0.2,1);
  border-left:1px solid rgba(212,168,67,0.2);overflow-y:auto;
  box-shadow:-8px 0 32px rgba(0,0,0,0.4);
}
.mobile-drawer.open{right:0}
.mobile-drawer nav{display:flex;flex-direction:column;gap:0.25rem}
.mobile-drawer nav a{
  color:#FAF7F0;color:rgba(250,247,240,0.9);font-size:1.05rem;font-weight:500;
  padding:0.85rem 0;border-bottom:1px solid rgba(212,168,67,0.15);
  letter-spacing:0.03em;display:block;text-decoration:none;
}
.mobile-drawer nav a:hover{color:var(--gold)}
.drawer-book-btn{
  display:block;margin-top:1.5rem;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);font-weight:700;font-size:0.9rem;
  padding:0.9rem;border-radius:var(--radius);text-align:center;
  letter-spacing:0.06em;text-transform:uppercase;
}
.overlay{
  position:fixed;inset:0;background:rgba(11,22,41,0.6);z-index:998;
  opacity:0;visibility:hidden;transition:all var(--transition);
  backdrop-filter:blur(2px);
}
.overlay.open{opacity:1;visibility:visible}

@media(min-width:900px){
  .desktop-nav{display:flex !important}
  .btn-book-hdr{display:inline-block !important}
  .hamburger{display:none !important}
}

/* ════════════════════════════════════════
   2. HERO
════════════════════════════════════════ */
#hero{
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding-top:72px; /* exact header height */
}
.hero-slides{position:absolute;inset:0;overflow:hidden}
.hero-slide{
  position:absolute;inset:0;opacity:0;transition:opacity 1.2s ease;
  background-size:cover;background-position:center;
}
.hero-slide.active{opacity:1}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(160deg,rgba(11,22,41,0.72) 0%,rgba(11,22,41,0.45) 60%,rgba(11,22,41,0.65) 100%);
  z-index:1;
}
.hero-content{
  position:relative;z-index:2;text-align:center;
  padding:2rem 1.25rem;
  max-width:860px;width:100%;
}
.hero-eyebrow{
  font-family:'Outfit',sans-serif;font-size:0.72rem;font-weight:600;
  color:var(--gold);letter-spacing:0.22em;text-transform:uppercase;
  margin-bottom:1.2rem;display:flex;align-items:center;justify-content:center;gap:0.5rem;
}
.hero-eyebrow::before,.hero-eyebrow::after{
  content:'';display:inline-block;width:24px;height:1px;background:var(--gold);opacity:0.7;
}
.hero-title{
  font-family:'Italiana',serif;font-size:clamp(2.4rem,7vw,5.2rem);
  color:var(--ivory);line-height:1.1;margin-bottom:1.2rem;
}
.hero-title em{color:var(--gold);font-style:italic;font-family:'Libre Baskerville',serif}
.hero-sub{
  font-family:'Libre Baskerville',serif;font-size:clamp(0.9rem,2vw,1.1rem);
  color:rgba(250,247,240,0.8);line-height:1.7;margin-bottom:2.2rem;font-style:italic;
}
.hero-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-bottom:3rem}
.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);font-weight:700;font-size:0.85rem;
  padding:0.85rem 2rem;border-radius:var(--radius);letter-spacing:0.06em;
  text-transform:uppercase;transition:all var(--transition);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 6px 24px rgba(212,168,67,0.45)}
.btn-outline{
  border:1.5px solid rgba(250,247,240,0.6);color:var(--ivory);
  font-weight:600;font-size:0.85rem;padding:0.85rem 2rem;
  border-radius:var(--radius);letter-spacing:0.06em;text-transform:uppercase;
  transition:all var(--transition);
}
.btn-outline:hover{border-color:var(--gold);color:var(--gold)}
.hero-stats{
  display:flex;flex-wrap:wrap;justify-content:center;gap:0;margin:0 auto 2.5rem;
  padding:0.85rem 2rem;
  background:rgba(11,22,41,0.55);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(212,168,67,0.25);
  border-radius:999px;
  box-shadow:0 10px 40px rgba(0,0,0,0.35);
  width:fit-content;max-width:100%;
}
.hero-stat{
  text-align:center;
  padding:0 1.75rem;
  position:relative;
}
.hero-stat + .hero-stat::before{
  content:'';
  position:absolute;
  left:0;top:50%;transform:translateY(-50%);
  width:1px;height:60%;
  background:linear-gradient(to bottom,transparent,rgba(212,168,67,0.4),transparent);
}
.hero-stat-num{
  font-family:'Italiana',serif;font-size:2rem;color:var(--gold);display:block;line-height:1;
  text-shadow:0 2px 12px rgba(0,0,0,0.6);
  font-weight:600;
}
.hero-stat-suffix{
  font-family:'Outfit',sans-serif;font-size:1rem;color:var(--gold);vertical-align:super;line-height:1;
  text-shadow:0 2px 8px rgba(0,0,0,0.5);
}
.hero-stat-label{
  font-size:0.7rem;color:#FAF7F0;letter-spacing:0.16em;
  text-transform:uppercase;font-weight:700;margin-top:0.4rem;
  text-shadow:0 1px 4px rgba(0,0,0,0.7);
}
.hero-dots{display:flex;gap:0.5rem;justify-content:center;margin-bottom:2rem}
.hero-dot{
  width:8px;height:8px;border-radius:50%;background:rgba(250,247,240,0.35);
  cursor:pointer;transition:all var(--transition);border:none;padding:0;
}
.hero-dot.active{background:var(--gold);width:24px;border-radius:4px}
.scroll-cue{
  position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);
  z-index:2;display:flex;flex-direction:column;align-items:center;gap:0.5rem;
}
.scroll-cue span{font-size:0.65rem;color:rgba(250,247,240,0.5);letter-spacing:0.15em;text-transform:uppercase}
.scroll-arrow{
  width:28px;height:28px;border:1.5px solid rgba(212,168,67,0.5);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  animation:scrollBounce 1.8s ease-in-out infinite;
}
.scroll-arrow::after{
  content:'';display:block;width:7px;height:7px;
  border-right:1.5px solid var(--gold);border-bottom:1.5px solid var(--gold);
  transform:rotate(45deg) translate(-1px,-1px);
}
@keyframes scrollBounce{0%,100%{transform:translateY(0)}50%{transform:translateY(5px)}}

/* ════════════════════════════════════════
   3. TICKER
════════════════════════════════════════ */
#ticker{background:var(--navy);padding:0.75rem 0;overflow:hidden;border-top:1px solid rgba(212,168,67,0.15);border-bottom:1px solid rgba(212,168,67,0.15)}
.ticker-track{display:flex;gap:0;white-space:nowrap;animation:ticker 30s linear infinite}
.ticker-track:hover{animation-play-state:paused}
.ticker-item{
  display:inline-flex;align-items:center;gap:1.2rem;padding:0 1.5rem;
  font-size:0.78rem;font-weight:600;color:rgba(250,247,240,0.75);
  letter-spacing:0.1em;text-transform:uppercase;
}
.ticker-sep{color:var(--gold);font-size:0.9rem}
@keyframes ticker{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ════════════════════════════════════════
   4. DESTINATIONS
════════════════════════════════════════ */
#destinations{padding:6rem 0;background:var(--ivory)}
.section-label{
  font-size:0.7rem;font-weight:700;letter-spacing:0.22em;color:var(--gold);
  text-transform:uppercase;margin-bottom:0.75rem;display:block;
}
.section-title{
  font-family:'Italiana',serif;font-size:clamp(2rem,5vw,3.2rem);
  color:var(--navy);line-height:1.15;margin-bottom:1rem;
}
.section-sub{
  font-family:'Libre Baskerville',serif;font-style:italic;
  font-size:1rem;color:rgba(11,22,41,0.6);line-height:1.7;max-width:520px;
}
.section-head{margin-bottom:3rem}
.dest-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}
.dest-card{
  position:relative;overflow:hidden;border-radius:var(--radius);
  cursor:pointer;aspect-ratio:unset;
}
.dest-card:first-child{grid-column:1/-1;aspect-ratio:16/7}
.dest-card:not(:first-child){aspect-ratio:4/5}
.dest-card img{transition:transform 0.6s ease;width:100%;height:100%;object-fit:cover;display:block}
.dest-card:hover img{transform:scale(1.06)}
.dest-card-overlay{
  position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(11,22,41,0.75) 0%,rgba(11,22,41,0.1) 55%,transparent 100%);
  z-index:1;
}
.dest-card-info{
  position:absolute;bottom:1.2rem;left:1.2rem;z-index:2;
}
.dest-flag{font-size:1.3rem;line-height:1;margin-bottom:0.3rem}
.dest-name{
  font-family:'Italiana',serif;font-size:1.4rem;color:var(--ivory);line-height:1;
}
.dest-sub{font-size:0.7rem;color:rgba(250,247,240,0.7);letter-spacing:0.1em;text-transform:uppercase;margin-top:0.2rem}
.dest-explore{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) scale(0.8);
  z-index:3;background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);font-weight:700;font-size:0.78rem;padding:0.6rem 1.2rem;
  border-radius:2rem;letter-spacing:0.06em;text-transform:uppercase;
  opacity:0;transition:all 0.35s ease;cursor:pointer;white-space:nowrap;
}
.dest-card:hover .dest-explore{opacity:1;transform:translate(-50%,-50%) scale(1)}

@media(min-width:640px){
  .dest-grid{grid-template-columns:repeat(3,1fr)}
  .dest-card:first-child{grid-column:1/-1;aspect-ratio:16/9}
  .dest-card:not(:first-child){aspect-ratio:3/4}
}
@media(min-width:900px){
  .dest-grid{grid-template-columns:repeat(4,1fr)}
  .dest-card:first-child{grid-column:1/-1;aspect-ratio:16/6}
  .dest-card:not(:first-child){aspect-ratio:4/5}
}

/* ════════════════════════════════════════
   5. PACKAGES
════════════════════════════════════════ */
#packages{padding:6rem 0;background:var(--ivory2)}
.pkg-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
.pkg-card{
  background:var(--white);border-radius:calc(var(--radius)*1.5);
  overflow:hidden;box-shadow:var(--shadow);
  transition:transform var(--transition),box-shadow var(--transition);
}
.pkg-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.pkg-img{position:relative;aspect-ratio:16/9;flex-shrink:0}
.pkg-badge{
  position:absolute;top:1rem;left:1rem;z-index:2;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);font-weight:700;font-size:0.68rem;
  padding:0.3rem 0.75rem;border-radius:2rem;letter-spacing:0.08em;text-transform:uppercase;
}
.pkg-body{padding:1.4rem}
.pkg-meta{
  display:flex;gap:1rem;margin-bottom:0.6rem;
}
.pkg-meta span{
  font-size:0.72rem;color:rgba(11,22,41,0.55);letter-spacing:0.06em;
  text-transform:uppercase;font-weight:600;display:flex;align-items:center;gap:0.3rem;
}
.pkg-title{
  font-family:'Italiana',serif;font-size:1.45rem;color:var(--navy);
  margin-bottom:0.4rem;line-height:1.2;
}
.pkg-desc{
  font-family:'Libre Baskerville',serif;font-style:italic;
  font-size:0.82rem;color:rgba(11,22,41,0.6);line-height:1.65;
  margin-bottom:0.85rem;
}
.pkg-tags{display:flex;flex-wrap:wrap;gap:0.4rem;margin-bottom:1.1rem}
.pkg-tag{
  font-size:0.68rem;font-weight:600;padding:0.28rem 0.65rem;
  border-radius:2rem;background:rgba(11,22,41,0.06);color:rgba(11,22,41,0.65);
  letter-spacing:0.05em;
}
.pkg-footer{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.pkg-price{display:flex;flex-direction:column;line-height:1.2}
.pkg-price-label{font-size:0.68rem;color:rgba(11,22,41,0.45);letter-spacing:0.08em;text-transform:uppercase}
.pkg-price-val{font-family:'Italiana',serif;font-size:1.6rem;color:var(--navy)}
.pkg-price-val span{font-size:0.8rem;color:var(--gold);font-family:'Outfit',sans-serif;font-weight:600}
.pkg-btn{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);font-weight:700;font-size:0.78rem;
  padding:0.65rem 1.3rem;border-radius:var(--radius);letter-spacing:0.06em;text-transform:uppercase;
  transition:all var(--transition);white-space:nowrap;
}
.pkg-btn:hover{transform:translateY(-1px);box-shadow:0 4px 14px rgba(212,168,67,0.4)}

@media(min-width:640px){.pkg-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1100px){.pkg-grid{grid-template-columns:repeat(3,1fr)}}

/* ════════════════════════════════════════
   6. COUNTERS
════════════════════════════════════════ */
#counters{
  background:var(--navy);padding:4.5rem 0;
  background-image:radial-gradient(ellipse at 20% 50%,rgba(212,168,67,0.06) 0%,transparent 60%),
                   radial-gradient(ellipse at 80% 50%,rgba(212,168,67,0.04) 0%,transparent 60%);
}
.counters-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem}
.counter-item{text-align:center}
.counter-num{
  font-family:'Italiana',serif;font-size:clamp(2.5rem,6vw,4rem);
  color:var(--gold);display:block;line-height:1;
}
.counter-suffix{font-family:'Italiana',serif;font-size:clamp(1.5rem,3vw,2.2rem);color:var(--gold)}
.counter-label{
  font-size:0.72rem;color:rgba(250,247,240,0.55);letter-spacing:0.15em;
  text-transform:uppercase;font-weight:600;margin-top:0.5rem;display:block;
}
@media(min-width:640px){.counters-grid{grid-template-columns:repeat(4,1fr)}}

/* ════════════════════════════════════════
   7. WHY US
════════════════════════════════════════ */
#whyus{padding:6rem 0;background:var(--ivory)}
.whyus-inner{display:grid;grid-template-columns:1fr;gap:3rem;align-items:center}
.whyus-left .section-sub{max-width:none;margin-bottom:2rem}
.btn-navy{
  display:inline-block;background:var(--navy);color:var(--ivory);
  font-weight:700;font-size:0.82rem;padding:0.85rem 1.8rem;
  border-radius:var(--radius);letter-spacing:0.06em;text-transform:uppercase;
  transition:all var(--transition);
}
.btn-navy:hover{background:var(--navy2);box-shadow:var(--shadow)}
.features-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.feature-card{
  background:var(--white);border-radius:calc(var(--radius)*1.5);
  padding:1.4rem;box-shadow:var(--shadow);
  transition:transform var(--transition);
}
.feature-card:hover{transform:translateY(-3px)}
.feature-icon{
  width:42px;height:42px;border-radius:var(--radius);
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;margin-bottom:0.8rem;flex-shrink:0;
}
.feature-title{font-weight:700;font-size:0.88rem;color:var(--navy);margin-bottom:0.35rem}
.feature-desc{font-size:0.78rem;color:rgba(11,22,41,0.6);line-height:1.6}
@media(min-width:900px){
  .whyus-inner{grid-template-columns:1fr 1fr;gap:5rem}
}

/* ════════════════════════════════════════
   8. HOW IT WORKS
════════════════════════════════════════ */
#howitworks{padding:6rem 0;background:var(--navy)}
#howitworks .section-title{color:var(--ivory)}
.steps-wrap{position:relative;margin-top:3rem}
.steps-connector{
  display:none;position:absolute;top:28px;left:calc(12.5% + 28px);
  right:calc(12.5% + 28px);height:1px;
  border-top:2px dashed rgba(212,168,67,0.35);z-index:0;
}
.steps-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:2rem;position:relative;z-index:1;
}
.step-item{text-align:center;padding:0 0.5rem}
.step-num{
  width:54px;height:54px;border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  display:flex;align-items:center;justify-content:center;
  font-family:'Italiana',serif;font-size:1.4rem;color:var(--navy);
  margin:0 auto 1.1rem;font-weight:700;
}
.step-title{font-family:'Italiana',serif;font-size:1.25rem;color:var(--ivory);margin-bottom:0.5rem}
.step-desc{font-size:0.82rem;color:rgba(250,247,240,0.55);line-height:1.7}
@media(min-width:640px){
  .steps-grid{grid-template-columns:repeat(4,1fr)}
  .steps-connector{display:block}
}

/* ════════════════════════════════════════
   9. TESTIMONIALS
════════════════════════════════════════ */
#testimonials{padding:6rem 0;background:var(--ivory2)}
.testi-carousel{position:relative;overflow:hidden}
.testi-track{display:flex;transition:transform 0.5s cubic-bezier(0.4,0,0.2,1)}
.testi-card{
  min-width:100%;padding:0 0.5rem;box-sizing:border-box;
}
.testi-inner{
  background:var(--white);border-radius:calc(var(--radius)*1.5);
  padding:2rem;box-shadow:var(--shadow);height:100%;
}
.testi-stars{color:var(--gold);font-size:0.9rem;letter-spacing:0.1em;margin-bottom:1rem}
.testi-quote{
  font-family:'Libre Baskerville',serif;font-style:italic;
  font-size:0.95rem;color:rgba(11,22,41,0.75);line-height:1.75;
  margin-bottom:1.2rem;
}
.testi-author{display:flex;align-items:center;gap:0.85rem}
.testi-avatar{
  width:42px;height:42px;border-radius:50%;flex-shrink:0;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:0.85rem;color:var(--navy);
}
.testi-name{font-weight:700;font-size:0.88rem;color:var(--navy)}
.testi-trip{font-size:0.73rem;color:rgba(11,22,41,0.5);letter-spacing:0.06em;text-transform:uppercase}
.testi-controls{display:flex;align-items:center;gap:1rem;justify-content:center;margin-top:2rem}
.testi-btn{
  width:44px;height:44px;border-radius:50%;border:1.5px solid rgba(11,22,41,0.2);
  display:flex;align-items:center;justify-content:center;cursor:pointer;
  background:var(--white);transition:all var(--transition);
  font-size:1rem;color:var(--navy);
}
.testi-btn:hover{background:var(--navy);color:var(--gold);border-color:var(--navy)}
.testi-pips{display:flex;gap:0.4rem}
.testi-pip{
  width:8px;height:8px;border-radius:50%;background:rgba(11,22,41,0.2);
  cursor:pointer;transition:all var(--transition);border:none;padding:0;
}
.testi-pip.active{background:var(--gold);width:20px;border-radius:4px}
@media(min-width:900px){
  .testi-card{min-width:33.333%}
}

/* ════════════════════════════════════════
   10. GALLERY
════════════════════════════════════════ */
#gallery{padding:6rem 0;background:var(--ivory)}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  grid-template-rows:repeat(2,200px);
  gap:0.75rem;
}
.gal-item{position:relative;overflow:hidden;border-radius:var(--radius);cursor:pointer}
.gal-item:first-child{grid-column:1/3;grid-row:1/2}
.gal-item img{transition:transform 0.6s ease}
.gal-item:hover img{transform:scale(1.08)}
.gal-overlay{
  position:absolute;inset:0;background:rgba(11,22,41,0);
  display:flex;align-items:center;justify-content:center;
  transition:background var(--transition);
}
.gal-icon{
  font-size:2rem;color:var(--gold);opacity:0;transform:scale(0.5);
  transition:all 0.35s ease;
}
.gal-item:hover .gal-overlay{background:rgba(11,22,41,0.45)}
.gal-item:hover .gal-icon{opacity:1;transform:scale(1)}
@media(min-width:640px){
  .gallery-grid{
    grid-template-columns:repeat(4,1fr);
    grid-template-rows:220px 220px;
  }
  .gal-item:first-child{grid-column:1/3;grid-row:1/3}
}

/* ════════════════════════════════════════
   11. BOOKING FORM
════════════════════════════════════════ */
#booking{padding:6rem 0;background:var(--navy);position:relative;overflow:hidden}
#booking::before{
  content:'';position:absolute;top:-40%;right:-10%;
  width:500px;height:500px;border-radius:50%;
  background:radial-gradient(circle,rgba(212,168,67,0.06) 0%,transparent 70%);
  pointer-events:none;
}
.booking-inner{display:grid;grid-template-columns:1fr;gap:3rem;align-items:start}
.booking-left .section-title{color:var(--ivory)}
.booking-left .section-sub{color:rgba(250,247,240,0.6)}
.contact-cards{display:flex;flex-direction:column;gap:0.85rem;margin-top:2rem}
.contact-card{
  display:flex;align-items:flex-start;gap:1rem;padding:1rem 1.1rem;
  background:rgba(255,255,255,0.05);border:1px solid rgba(212,168,67,0.15);
  border-radius:var(--radius);
}
.contact-card-icon{
  width:38px;height:38px;flex-shrink:0;border-radius:var(--radius);
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  display:flex;align-items:center;justify-content:center;font-size:1rem;
}
.contact-card-label{font-size:0.68rem;color:rgba(250,247,240,0.45);letter-spacing:0.1em;text-transform:uppercase;margin-bottom:0.2rem}
.contact-card-val{font-size:0.9rem;color:rgba(250,247,240,0.9);font-weight:500}

.form-card{
  background:var(--white);border-radius:calc(var(--radius)*2);
  padding:2rem;box-shadow:0 16px 56px rgba(11,22,41,0.35);
}
.form-grid{display:grid;grid-template-columns:1fr;gap:1rem}
.form-group{display:flex;flex-direction:column;gap:0.35rem}
.form-group label{font-size:0.72rem;font-weight:700;color:var(--navy);letter-spacing:0.08em;text-transform:uppercase}
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;padding:0.75rem 1rem;border:1.5px solid rgba(11,22,41,0.12);
  border-radius:var(--radius);font-family:'Outfit',sans-serif;font-size:0.9rem;
  color:var(--navy);background:var(--ivory);transition:border-color var(--transition);
  outline:none;-webkit-appearance:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{border-color:var(--gold)}
.form-group textarea{resize:vertical;min-height:90px}
.form-submit{
  width:100%;padding:0.95rem;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);font-weight:700;font-size:0.88rem;
  border-radius:var(--radius);letter-spacing:0.07em;text-transform:uppercase;
  transition:all var(--transition);margin-top:0.5rem;
}
.form-submit:hover{transform:translateY(-1px);box-shadow:0 6px 20px rgba(212,168,67,0.45)}
.form-success{
  display:none;text-align:center;padding:3rem 1rem;
}
.form-success .success-icon{font-size:2.5rem;color:var(--gold);margin-bottom:1rem;animation:pulse 1.5s ease-in-out infinite}
.form-success h3{font-family:'Italiana',serif;font-size:1.8rem;color:var(--navy);margin-bottom:0.5rem}
.form-success p{font-size:0.9rem;color:rgba(11,22,41,0.6);line-height:1.6}
@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.15)}}

@media(min-width:900px){
  .booking-inner{grid-template-columns:1fr 1.2fr;gap:4rem}
  .form-grid{grid-template-columns:1fr 1fr}
  .form-group.full{grid-column:1/-1}
}

/* ════════════════════════════════════════
   12. CTA BAND
════════════════════════════════════════ */
#ctaband{padding:5rem 0;background:var(--ivory);text-align:center}
#ctaband .section-title{margin-bottom:0.75rem}
#ctaband .section-sub{margin:0 auto 2rem;text-align:center}
.cta-btns{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center}

/* ════════════════════════════════════════
   13. FOOTER
════════════════════════════════════════ */
#footer{background:var(--navy);border-top:1px solid var(--gold)}
.footer-top{padding:4rem 0 3rem}
.footer-grid{display:grid;grid-template-columns:1fr;gap:2.5rem}
.footer-brand .logo-name{font-size:1.4rem}
.footer-brand-desc{
  font-family:'Libre Baskerville',serif;font-style:italic;
  font-size:0.82rem;color:rgba(250,247,240,0.5);line-height:1.7;
  margin-top:1rem;max-width:240px;
}
.footer-social{display:flex;gap:0.6rem;margin-top:1.25rem}
.social-btn{
  width:36px;height:36px;border-radius:50%;border:1px solid rgba(212,168,67,0.25);
  display:flex;align-items:center;justify-content:center;
  color:rgba(250,247,240,0.6);font-size:0.85rem;
  transition:all var(--transition);cursor:pointer;
}
.social-btn:hover{border-color:var(--gold);color:var(--gold);background:rgba(212,168,67,0.08)}
.footer-col h4{
  font-size:0.72rem;font-weight:700;color:var(--gold);
  letter-spacing:0.18em;text-transform:uppercase;margin-bottom:1.1rem;
}
.footer-col ul{display:flex;flex-direction:column;gap:0.55rem}
.footer-col ul li a{
  font-size:0.83rem;color:rgba(250,247,240,0.55);
  transition:color var(--transition);letter-spacing:0.02em;
}
.footer-col ul li a:hover{color:var(--gold)}
.footer-bottom{
  border-top:1px solid rgba(212,168,67,0.1);padding:1.25rem 0;
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:0.75rem;
}
.footer-copy{font-size:0.72rem;color:rgba(250,247,240,0.35);letter-spacing:0.04em}
.footer-legal{display:flex;gap:1.25rem}
.footer-legal a{font-size:0.72rem;color:rgba(250,247,240,0.35);transition:color var(--transition)}
.footer-legal a:hover{color:var(--gold)}
@media(min-width:640px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(min-width:900px){.footer-grid{grid-template-columns:1.4fr 1fr 1fr 1fr}}

/* ════════════════════════════════════════
   14. FLOATING PHONE
════════════════════════════════════════ */
#float-phone{
  position:fixed;bottom:1.75rem;right:1.75rem;z-index:900;
  width:54px;height:54px;border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;box-shadow:0 4px 20px rgba(212,168,67,0.45);
  cursor:pointer;transition:transform var(--transition),box-shadow var(--transition);
  animation:floatPulse 3s ease-in-out infinite;
}
#float-phone:hover{transform:scale(1.1);box-shadow:0 6px 28px rgba(212,168,67,0.6);animation:none}
@keyframes floatPulse{0%,100%{box-shadow:0 4px 20px rgba(212,168,67,0.45)}50%{box-shadow:0 4px 32px rgba(212,168,67,0.65)}}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
════════════════════════════════════════ */

/* ── TABLET (640px – 899px) ── */
@media(min-width:640px) and (max-width:899px){
  #hero{padding-top:0;justify-content:flex-start}
  .hero-content{padding-top:140px !important;padding-bottom:2rem;padding-left:1.25rem;padding-right:1.25rem}
  .hero-title{font-size:clamp(2.4rem,6vw,3.6rem)}
  .hero-stats{gap:0;padding:0.7rem 1.25rem}
  .hero-stat{padding:0 1.25rem}
}

/* ── MOBILE (max 639px) ── */
@media(max-width:639px){

  /* --- Hero --- */
  #hero{padding-top:0 !important;justify-content:flex-start}
  .hero-content{padding-top:140px !important;padding-bottom:1.5rem !important;padding-left:1rem !important;padding-right:1rem !important}
  .hero-eyebrow{
    font-size:0.6rem;
    letter-spacing:0.12em;
    margin-bottom:0.6rem;
  }
  .hero-title{
    font-size:2rem;
    line-height:1.1;
    margin-bottom:0.75rem;
  }
  .hero-sub{
    font-size:0.85rem;
    margin-bottom:1.25rem;
  }
  .hero-btns{
    flex-direction:column;
    align-items:stretch;
    padding:0;
    gap:0.6rem;
    margin-bottom:1.25rem;
  }
  .btn-primary,
  .btn-outline{
    width:100%;
    text-align:center;
    display:block;
  }
  .hero-stats{
    gap:0;
    margin-bottom:0.75rem;
    padding:0.65rem 1rem;
  }
  .hero-stat{padding:0 1rem}
  .hero-stat-num{font-size:1.4rem}
  .hero-stat-label{font-size:0.58rem;letter-spacing:0.08em}
  .hero-dots{margin-bottom:0.5rem}
  .scroll-cue{bottom:0.75rem}

  /* --- General --- */
  .btn-navy,.form-submit{width:100%;text-align:center;display:block}
  .section-title{font-size:1.9rem}
  .section-sub{font-size:0.88rem}

  /* --- Sections padding --- */
  #destinations,#packages,#whyus,
  #howitworks,#testimonials,#gallery,
  #booking,#ctaband{padding:3rem 0}

  /* --- Destinations --- */
  .dest-grid{grid-template-columns:repeat(2,1fr);gap:0.75rem}
  .dest-card:first-child{grid-column:1/-1;aspect-ratio:16/8}
  .dest-card:not(:first-child){aspect-ratio:4/5}

  /* --- Packages --- */
  .pkg-grid{grid-template-columns:1fr}
  .pkg-title{font-size:1.2rem}

  /* --- Counters --- */
  .counters-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem}
  .counter-num{font-size:2.2rem}

  /* --- Features --- */
  .features-grid{grid-template-columns:1fr}

  /* --- Steps --- */
  .steps-grid{grid-template-columns:1fr 1fr;gap:1.5rem}
  .step-title{font-size:1rem}
  .step-desc{font-size:0.78rem}

  /* --- Testimonials --- */
  .testi-quote{font-size:0.88rem}

  /* --- Gallery --- */
  .gallery-grid{
    grid-template-columns:1fr 1fr;
    grid-template-rows:160px 160px 160px;
  }
  .gal-item:first-child{grid-column:1/3;grid-row:1/2}

  /* --- Booking --- */
  .form-grid{grid-template-columns:1fr}
  .form-group.full{grid-column:1}
  .form-card{padding:1.25rem}
  .contact-cards{gap:0.6rem}

  /* --- Footer --- */
  .footer-grid{grid-template-columns:1fr}
  .footer-top{padding:2.5rem 0 2rem}

  /* --- Float phone --- */
  #float-phone{width:46px;height:46px;font-size:1.1rem;bottom:1.25rem;right:1.25rem}

  /* --- Header --- */
  .header-inner{padding:0 1rem}
  .logo-name{font-size:1rem}
  .logo-tagline{font-size:0.5rem}
}

/* ── SMALL MOBILE (max 380px) ── */
@media(max-width:380px){
  #hero{padding-top:0 !important}
  .hero-content{padding-top:130px !important;padding-bottom:1rem !important;padding-left:0.75rem !important;padding-right:0.75rem !important}
  .hero-title{font-size:1.75rem}
  .hero-stat-num{font-size:1.1rem}
  .hero-btns{padding:0}
}

/* ── WordPress admin bar offsets ── */
body.admin-bar #hero{padding-top:104px}
@media screen and (max-width:782px){
  body.admin-bar #hero{padding-top:118px}
}

/* ═══════════════════════════════════════
   MIGRATED FROM INLINE - index.php styles
═══════════════════════════════════════ */
/* ── RESET & ROOT ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Outfit',system-ui,-apple-system,sans-serif;background:#FAF7F0;color:#0B1629;overflow-x:hidden;-webkit-font-smoothing:antialiased;}
img{display:block;width:100%;height:100%;object-fit:cover}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{font-family:'Outfit',sans-serif;cursor:pointer;border:none;background:none}

/* ── CSS VARIABLES ── */
:root{
  --navy:#0B1629;
  --navy2:#0f1e38;
  --gold:#D4A843;
  --gold2:#c9982e;
  --ivory:#FAF7F0;
  --ivory2:#f0ebe0;
  --white:#ffffff;
  --text-sm:0.8125rem;
  --text-base:1rem;
  --text-lg:1.125rem;
  --text-xl:1.25rem;
  --text-2xl:1.5rem;
  --text-3xl:1.875rem;
  --text-4xl:2.25rem;
  --text-5xl:3rem;
  --text-6xl:3.75rem;
  --radius:0.5rem;
  --shadow:0 4px 24px rgba(11,22,41,0.12);
  --shadow-lg:0 8px 48px rgba(11,22,41,0.2);
  --transition:0.3s ease;
}

/* ── UTILITY ── */
.container{max-width:1200px;margin:0 auto;padding:0 1.25rem}
.gold{color:var(--gold)}
.italic{font-style:italic}
.font-display{font-family:'Italiana',serif}
.font-body{font-family:'Libre Baskerville',serif}

/* ── FADE-UP ANIMATION ── */
.fu{opacity:0;transform:translateY(32px);transition:opacity 0.7s ease,transform 0.7s ease}
.fu.on{opacity:1;transform:translateY(0)}
.fu.delay-1{transition-delay:0.1s}
.fu.delay-2{transition-delay:0.2s}
.fu.delay-3{transition-delay:0.3s}
.fu.delay-4{transition-delay:0.4s}
.fu.delay-5{transition-delay:0.5s}

/* ════════════════════════════════════════
   1. HEADER
════════════════════════════════════════ */
#header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:#0B1629;
  background:rgba(11,22,41,0.96);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(212,168,67,0.2);
  transition:background 0.3s ease;
  box-shadow:0 2px 24px rgba(0,0,0,0.3);
}
#header.scrolled{background:#0B1629;background:rgba(11,22,41,0.99)}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:72px;padding:0 1.5rem;max-width:1300px;margin:0 auto;
}
/* Logo */
.logo{display:flex;align-items:center;gap:0.6rem;flex-shrink:0}
.logo-mark{
  width:8px;height:8px;border-radius:50%;
  background:#D4A843;
  box-shadow:0 0 0 2px rgba(212,168,67,0.25);
  flex-shrink:0;margin-top:2px;
  font-size:0;
}
.logo-text{display:flex;flex-direction:column;line-height:1.1}
.logo-name{font-family:'Italiana',serif;font-size:1.1rem;color:var(--ivory);letter-spacing:0.04em}
.logo-tagline{font-family:'Outfit',sans-serif;font-size:0.58rem;color:var(--gold);letter-spacing:0.18em;text-transform:uppercase;font-weight:500}

/* Desktop Nav */
.desktop-nav{display:none;align-items:center;gap:0.25rem}
.desktop-nav a{
  font-size:0.82rem;font-weight:500;color:#FAF7F0;color:rgba(250,247,240,0.85);
  padding:0.5rem 0.8rem;border-radius:0.5rem;letter-spacing:0.04em;
  transition:color 0.3s ease,background 0.3s ease;
  text-transform:uppercase;text-decoration:none;
}
.desktop-nav a:hover{color:var(--gold);background:rgba(212,168,67,0.08)}
.nav-item{position:relative}
.nav-item:hover .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown{
  position:absolute;top:calc(100% + 8px);left:0;
  background:var(--navy2);border:1px solid rgba(212,168,67,0.2);
  border-radius:var(--radius);min-width:180px;padding:0.5rem 0;
  opacity:0;visibility:hidden;transform:translateY(-8px);
  transition:all var(--transition);box-shadow:var(--shadow-lg);
}
.dropdown a{
  display:block;padding:0.6rem 1.1rem;font-size:0.8rem;
  color:rgba(250,247,240,0.75);border-radius:0;letter-spacing:0.03em;
}
.dropdown a:hover{color:var(--gold);background:rgba(212,168,67,0.06)}

.btn-book-hdr{
  display:none; /* hidden on mobile, shown via media query below */
  background:linear-gradient(135deg,#D4A843,#c9982e);
  color:#0B1629;font-weight:700;font-size:0.8rem;
  padding:0.6rem 1.3rem;border-radius:0.5rem;
  letter-spacing:0.06em;text-transform:uppercase;
  transition:transform 0.3s ease,box-shadow 0.3s ease;
  white-space:nowrap;margin-left:1rem;text-decoration:none;
}
.btn-book-hdr:hover{transform:translateY(-1px);box-shadow:0 4px 16px rgba(212,168,67,0.4)}

/* ── Hamburger Button ── */
.hamburger{
  display:flex;flex-direction:column;justify-content:center;gap:5px;
  width:44px;height:44px;padding:10px;cursor:pointer;z-index:1002;
  background:none;border:none;
}
.hamburger span{
  display:block;height:2px;border-radius:2px;background:var(--ivory);
  transition:all 0.35s cubic-bezier(0.4,0,0.2,1);transform-origin:center;
}
.hamburger span:nth-child(1){width:100%}
.hamburger span:nth-child(2){width:70%}
.hamburger span:nth-child(3){width:85%}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);width:100%}
.hamburger.open span:nth-child(2){opacity:0;transform:translateX(10px);width:100%}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);width:100%}

/* ── Overlay ── */
.overlay{
  position:fixed;inset:0;background:rgba(5,12,25,0.75);z-index:1000;
  opacity:0;visibility:hidden;
  transition:opacity 0.35s ease,visibility 0.35s ease;
  backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);
}
.overlay.open{opacity:1;visibility:visible}

/* ── Mobile Drawer ── */
.mobile-drawer{
  position:fixed;top:0;right:0;
  width:min(300px,85vw);height:100vh;
  background:linear-gradient(160deg,#0B1629 0%,#0f1e38 100%);
  z-index:1001;
  transform:translateX(100%);
  transition:transform 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y:auto;overflow-x:hidden;
  display:flex;flex-direction:column;
  border-left:1px solid rgba(212,168,67,0.25);
  box-shadow:-12px 0 48px rgba(0,0,0,0.6);
}
.mobile-drawer.open{transform:translateX(0)}

/* Drawer Header */
.drawer-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.1rem 1.25rem;
  border-bottom:1px solid rgba(212,168,67,0.15);
  background:rgba(255,255,255,0.03);
  flex-shrink:0;
}
.drawer-logo{
  display:flex;align-items:center;gap:0.5rem;text-decoration:none;
}
.drawer-logo-dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--gold);box-shadow:0 0 8px rgba(212,168,67,0.6);
}
.drawer-logo-text{
  font-family:'Outfit',sans-serif;font-size:0.95rem;font-weight:700;
  color:var(--ivory);letter-spacing:0.04em;
}
.drawer-logo-tag{
  display:block;font-size:0.48rem;color:var(--gold);
  letter-spacing:0.16em;text-transform:uppercase;font-weight:500;
}
.drawer-close{
  width:34px;height:34px;border-radius:50%;
  background:rgba(212,168,67,0.1);border:1px solid rgba(212,168,67,0.25);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:var(--ivory);font-size:1.1rem;line-height:1;
  transition:all 0.2s ease;flex-shrink:0;
}
.drawer-close:hover{background:rgba(212,168,67,0.2);color:var(--gold)}

/* Drawer Nav */
.drawer-nav{
  flex:1;display:flex;flex-direction:column;
  padding:0.75rem 0;
}
.drawer-nav-item{
  display:flex;align-items:center;gap:0.9rem;
  padding:0.9rem 1.25rem;
  color:rgba(250,247,240,0.85);font-size:0.95rem;font-weight:500;
  font-family:'Outfit',sans-serif;letter-spacing:0.03em;
  text-decoration:none;
  border-left:3px solid transparent;
  transition:all 0.22s ease;
  position:relative;
}
.drawer-nav-item:not(:last-child){
  border-bottom:1px solid rgba(212,168,67,0.08);
}
.drawer-nav-item .nav-icon{
  width:32px;height:32px;border-radius:8px;
  background:rgba(212,168,67,0.08);border:1px solid rgba(212,168,67,0.15);
  display:flex;align-items:center;justify-content:center;
  font-size:0.9rem;flex-shrink:0;
  transition:all 0.22s ease;
}
.drawer-nav-item .nav-label{flex:1}
.drawer-nav-item .nav-arrow{
  font-size:0.7rem;color:rgba(250,247,240,0.3);
  transition:all 0.22s ease;
}
.drawer-nav-item:hover,
.drawer-nav-item:active{
  color:var(--gold);
  background:rgba(212,168,67,0.06);
  border-left-color:var(--gold);
  padding-left:1.4rem;
}
.drawer-nav-item:hover .nav-icon{
  background:rgba(212,168,67,0.18);
  border-color:rgba(212,168,67,0.4);
  color:var(--gold);
}
.drawer-nav-item:hover .nav-arrow{
  color:var(--gold);transform:translateX(3px);
}

/* Drawer Footer */
.drawer-footer{
  padding:1.25rem;
  border-top:1px solid rgba(212,168,67,0.15);
  flex-shrink:0;
}
.drawer-book-btn{
  display:flex;align-items:center;justify-content:center;gap:0.5rem;
  width:100%;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);font-weight:700;font-size:0.88rem;
  padding:0.9rem 1.5rem;border-radius:var(--radius);
  letter-spacing:0.07em;text-transform:uppercase;
  text-decoration:none;transition:all 0.25s ease;
  box-shadow:0 4px 20px rgba(212,168,67,0.3);
}
.drawer-book-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(212,168,67,0.45);
}
.drawer-contact{
  display:flex;align-items:center;justify-content:center;gap:1.25rem;
  margin-top:1rem;padding-top:1rem;
  border-top:1px solid rgba(212,168,67,0.1);
}
.drawer-contact a{
  display:flex;align-items:center;gap:0.4rem;
  font-size:0.72rem;color:rgba(250,247,240,0.55);
  letter-spacing:0.06em;text-transform:uppercase;text-decoration:none;
  transition:color 0.2s ease;
}
.drawer-contact a:hover{color:var(--gold)}

@media(min-width:900px){
  .desktop-nav{display:flex !important}
  .btn-book-hdr{display:inline-block !important}
  .hamburger{display:none !important}
}

/* ════════════════════════════════════════
   2. HERO
════════════════════════════════════════ */
#hero{
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding-top:72px;
}
.hero-slides{position:absolute;inset:0;overflow:hidden;min-height:100vh}
.hero-slide{
  position:absolute;inset:0;opacity:0;transition:opacity 0.8s ease;
  background-size:cover;background-position:center;
  will-change:opacity;
}
.hero-slide.active{opacity:1}
.hero-overlay{
  position:absolute;inset:0;min-height:100vh;
  background:linear-gradient(160deg,rgba(11,22,41,0.72) 0%,rgba(11,22,41,0.45) 60%,rgba(11,22,41,0.65) 100%);
  z-index:1;
}
.hero-content{
  position:relative;z-index:2;text-align:center;
  padding:2rem 1.25rem;
  max-width:900px;
  width:100%;
}
@media(max-width:899px){
  #hero{
    justify-content:flex-start !important;
    align-items:center !important;
    padding-top:0 !important;
  }
  .hero-content{
    padding-top:140px !important;
    padding-bottom:2rem !important;
    padding-left:1rem !important;
    padding-right:1rem !important;
  }
}
@media(max-width:380px){
  .hero-content{
    padding-top:130px !important;
    padding-left:0.75rem !important;
    padding-right:0.75rem !important;
  }
}
.hero-eyebrow{
  font-family:'Outfit',sans-serif;font-size:0.65rem;font-weight:600;
  color:#D4A843;letter-spacing:0.22em;text-transform:uppercase;
  margin-bottom:0.75rem;display:flex;align-items:center;justify-content:center;gap:0.5rem;
  flex-wrap:wrap;text-align:center;width:100%;
}
.hero-eyebrow::before,.hero-eyebrow::after{
  content:'';display:inline-block;width:24px;height:1px;background:#D4A843;opacity:0.7;flex-shrink:0;
}
.hero-title{
  font-family:'Italiana',serif;font-size:clamp(2rem,5.5vw,4.4rem);
  color:#FAF7F0;line-height:1.05;margin-bottom:1rem;
}
.hero-title em{color:var(--gold);font-style:italic;font-family:'Libre Baskerville',serif}
.hero-sub{
  font-family:'Libre Baskerville',serif;font-size:clamp(0.85rem,1.6vw,1rem);
  color:rgba(250,247,240,0.85);line-height:1.6;margin-bottom:1.5rem;font-style:italic;
}
.hero-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-bottom:1.5rem}
.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);font-weight:700;font-size:0.85rem;
  padding:0.85rem 2rem;border-radius:var(--radius);letter-spacing:0.06em;
  text-transform:uppercase;transition:all var(--transition);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 6px 24px rgba(212,168,67,0.45)}
.btn-outline{
  border:1.5px solid rgba(250,247,240,0.6);color:var(--ivory);
  font-weight:600;font-size:0.85rem;padding:0.85rem 2rem;
  border-radius:var(--radius);letter-spacing:0.06em;text-transform:uppercase;
  transition:all var(--transition);
}
.btn-outline:hover{border-color:var(--gold);color:var(--gold)}
.hero-stats{
  display:flex;flex-wrap:wrap;justify-content:center;gap:0;margin:0 auto 1rem;
  padding:0.75rem 1.75rem;
  background:rgba(11,22,41,0.55);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(212,168,67,0.25);
  border-radius:999px;
  box-shadow:0 10px 40px rgba(0,0,0,0.35);
  width:fit-content;max-width:100%;
}
.hero-stat{
  text-align:center;
  padding:0 1.5rem;
  position:relative;
}
.hero-stat + .hero-stat::before{
  content:'';
  position:absolute;
  left:0;top:50%;transform:translateY(-50%);
  width:1px;height:60%;
  background:linear-gradient(to bottom,transparent,rgba(212,168,67,0.4),transparent);
}
.hero-stat-num{
  font-family:'Italiana',serif;font-size:1.9rem;color:var(--gold);display:block;line-height:1;
  text-shadow:0 2px 12px rgba(0,0,0,0.6);
  font-weight:600;
}
.hero-stat-suffix{
  font-family:'Outfit',sans-serif;font-size:1rem;color:var(--gold);vertical-align:super;line-height:1;
  text-shadow:0 2px 8px rgba(0,0,0,0.5);
}
.hero-stat-label{
  font-size:0.7rem;color:#FAF7F0;letter-spacing:0.16em;
  text-transform:uppercase;font-weight:700;margin-top:0.4rem;
  text-shadow:0 1px 4px rgba(0,0,0,0.7);
}
.hero-dots{display:flex;gap:0.5rem;justify-content:center;margin-bottom:0.5rem}
.hero-dot{
  width:8px;height:8px;border-radius:50%;background:rgba(250,247,240,0.35);
  cursor:pointer;transition:all var(--transition);border:none;padding:0;
}
.hero-dot.active{background:var(--gold);width:24px;border-radius:4px}
.scroll-cue{
  position:absolute;bottom:1rem;left:50%;transform:translateX(-50%);
  z-index:2;display:flex;flex-direction:column;align-items:center;gap:0.3rem;
}
.scroll-cue span{font-size:0.65rem;color:rgba(250,247,240,0.5);letter-spacing:0.15em;text-transform:uppercase}
.scroll-arrow{
  width:28px;height:28px;border:1.5px solid rgba(212,168,67,0.5);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  animation:scrollBounce 1.8s ease-in-out infinite;
}
.scroll-arrow::after{
  content:'';display:block;width:7px;height:7px;
  border-right:1.5px solid var(--gold);border-bottom:1.5px solid var(--gold);
  transform:rotate(45deg) translate(-1px,-1px);
}
@keyframes scrollBounce{0%,100%{transform:translateY(0)}50%{transform:translateY(5px)}}

/* ════════════════════════════════════════
   2b. DESTINATIONS WE LOVE (Fan Slider)
════════════════════════════════════════ */
#dest-love{
  padding:5rem 0 4rem;
  background:var(--navy);
  overflow:hidden;
  position:relative;
}
#dest-love::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 80% 60% at 50% 50%,rgba(212,168,67,0.07) 0%,transparent 70%);
  pointer-events:none;
}
.dest-love-head{
  text-align:center;margin-bottom:3rem;position:relative;z-index:1;
}
.dest-love-head .section-label{color:var(--gold)}
.dest-love-head .section-title{color:var(--ivory)}
.dest-love-head .section-sub{
  color:rgba(250,247,240,0.55);margin:0 auto;
}

/* ── Non-stop Marquee ── */
.dest-love-stage{
  position:relative;
  width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  padding:1.5rem 0 2.5rem;
  -webkit-overflow-scrolling:touch;
  scroll-behavior:auto;
  /* edge fade */
  -webkit-mask:linear-gradient(90deg,transparent 0%,#000 4%,#000 96%,transparent 100%);
  mask:linear-gradient(90deg,transparent 0%,#000 4%,#000 96%,transparent 100%);
  /* hide scrollbar but keep functional */
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.dest-love-stage::-webkit-scrollbar{display:none}
.dest-love-stage.is-dragging{cursor:grabbing !important;scroll-behavior:auto;user-select:none}
.dest-love-stage.is-dragging .dlove-card{pointer-events:none}

.dest-love-track{
  display:flex;
  gap:1.5rem;
  width:max-content;
  padding:0 1.5rem;
  /* track no longer animated via CSS — JS auto-advances scrollLeft */
  will-change:scroll-position;
}
/* keep keyframes defined as no-op so any inline references don't error */
@keyframes dlove-scroll{ 0%,100%{transform:none;} }

/* ── Country Card ── */
.dlove-card{
  flex:0 0 200px;
  border-radius:1rem;
  overflow:hidden;
  position:relative;
  aspect-ratio:3/4;
  transition:transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
  cursor:pointer;
  box-shadow:0 8px 32px rgba(0,0,0,0.4);
  transform-origin:bottom center;
  /* anchor for in-page scroll snapping */
  scroll-snap-align:start;
  /* the card is now an anchor — clean its native styles */
  text-decoration:none;
  color:inherit;
  display:block;
  -webkit-user-drag:none;
}
.dlove-card img{-webkit-user-drag:none;user-drag:none;pointer-events:none}
.dlove-card:hover{
  transform:translateY(-14px) scale(1.04);
  box-shadow:0 24px 64px rgba(0,0,0,0.6),0 0 0 1px rgba(212,168,67,0.35);
  z-index:5;
}
.dlove-card img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 0.6s ease;
  display:block;
}
.dlove-card:hover img{transform:scale(1.08)}
.dlove-card-overlay{
  position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(11,22,41,0.9) 0%,rgba(11,22,41,0.15) 55%,transparent 100%);
}
.dlove-card-body{
  position:absolute;bottom:0;left:0;right:0;
  padding:1.1rem 1rem 1rem;
  z-index:2;
}

.dlove-card-flag{ display:none; }
.dlove-card-badge{ display:none; } /* badge no longer rendered, but hide if cached */
.dlove-card-country{
  font-family:'Italiana',serif;font-size:1.25rem;color:var(--ivory);
  line-height:1.1;margin-bottom:0.3rem;
}
.dlove-card-places{
  display:inline-flex;align-items:center;gap:0.35rem;
  background:rgba(212,168,67,0.18);border:1px solid rgba(212,168,67,0.35);
  border-radius:2rem;padding:0.2rem 0.65rem;
  font-size:0.65rem;font-weight:600;color:var(--gold);
  letter-spacing:0.08em;text-transform:uppercase;
}
.dlove-card-places svg{width:10px;height:10px;flex-shrink:0}

/* "Explore" hover pill on carousel cards */
.dlove-card-explore{
  display:inline-block;
  margin-top:0.5rem;
  font-size:0.6rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--navy);
  background:var(--gold);
  border-radius:2rem;padding:0.22rem 0.7rem;
  opacity:0;transform:translateY(4px);
  transition:opacity 0.25s ease,transform 0.25s ease;
  pointer-events:none;
}
.dlove-card:hover .dlove-card-explore{
  opacity:1;transform:translateY(0);
}

/* hide old nav — no longer needed (drag + auto-scroll replace it) */
.dest-love-nav{ display:none; }

@media(min-width:640px){.dlove-card{flex:0 0 210px}}
@media(max-width:480px){.dlove-card{flex:0 0 155px;border-radius:0.75rem}.dest-love-track{gap:1rem;padding:0 1rem}}

/* ════════════════════════════════════════
   3. TICKER
════════════════════════════════════════ */
#ticker{background:var(--navy);padding:0.75rem 0;overflow:hidden;border-top:1px solid rgba(212,168,67,0.15);border-bottom:1px solid rgba(212,168,67,0.15)}
.ticker-track{display:flex;gap:0;white-space:nowrap;animation:ticker 30s linear infinite}
.ticker-track:hover{animation-play-state:paused}
.ticker-item{
  display:inline-flex;align-items:center;gap:1.2rem;padding:0 1.5rem;
  font-size:0.78rem;font-weight:600;color:rgba(250,247,240,0.75);
  letter-spacing:0.1em;text-transform:uppercase;
}
.ticker-sep{color:var(--gold);font-size:0.9rem}
@keyframes ticker{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ════════════════════════════════════════
   4. DESTINATIONS
════════════════════════════════════════ */
#destinations{padding:6rem 0;background:var(--ivory)}
.section-label{
  font-size:0.68rem;font-weight:700;letter-spacing:0.22em;color:#D4A843;
  text-transform:uppercase;margin-bottom:0.75rem;display:inline-flex;
  align-items:center;gap:0.5rem;
}
.section-label::before{
  content:'';display:inline-block;width:20px;height:1.5px;
  background:#D4A843;flex-shrink:0;
}
.section-title{
  font-family:'Italiana',serif;font-size:clamp(2rem,5vw,3.2rem);
  color:var(--navy);line-height:1.15;margin-bottom:1rem;
}
.section-sub{
  font-family:'Libre Baskerville',serif;font-style:italic;
  font-size:1rem;color:rgba(11,22,41,0.6);line-height:1.7;max-width:520px;
}
.section-head{margin-bottom:3rem}
.dest-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}
.dest-card{
  position:relative;overflow:hidden;border-radius:var(--radius);
  cursor:pointer;aspect-ratio:unset;
}
.dest-card:first-child{grid-column:1/-1;aspect-ratio:16/7}
.dest-card:not(:first-child){aspect-ratio:4/5}
.dest-card img{transition:transform 0.6s ease;width:100%;height:100%;object-fit:cover;display:block}
.dest-card:hover img{transform:scale(1.06)}
.dest-card-overlay{
  position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(11,22,41,0.75) 0%,rgba(11,22,41,0.1) 55%,transparent 100%);
  z-index:1;
}
.dest-card-info{
  position:absolute;bottom:1.2rem;left:1.2rem;z-index:2;
}
.dest-flag{font-size:1.3rem;line-height:1;margin-bottom:0.3rem}
.dest-name{
  font-family:'Italiana',serif;font-size:1.4rem;color:var(--ivory);line-height:1;
}
.dest-sub{font-size:0.7rem;color:rgba(250,247,240,0.7);letter-spacing:0.1em;text-transform:uppercase;margin-top:0.2rem}
.dest-explore{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) scale(0.8);
  z-index:3;background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);font-weight:700;font-size:0.78rem;padding:0.6rem 1.2rem;
  border-radius:2rem;letter-spacing:0.06em;text-transform:uppercase;
  opacity:0;transition:all 0.35s ease;cursor:pointer;white-space:nowrap;
}
.dest-card:hover .dest-explore{opacity:1;transform:translate(-50%,-50%) scale(1)}

@media(min-width:640px){
  .dest-grid{grid-template-columns:repeat(3,1fr)}
  .dest-card:first-child{grid-column:1/-1;aspect-ratio:16/9}
  .dest-card:not(:first-child){aspect-ratio:3/4}
}
@media(min-width:900px){
  .dest-grid{grid-template-columns:repeat(4,1fr)}
  .dest-card:first-child{grid-column:1/-1;aspect-ratio:16/6}
  .dest-card:not(:first-child){aspect-ratio:4/5}
}

/* ════════════════════════════════════════
   5. PACKAGES
════════════════════════════════════════ */
#packages{padding:6rem 0;background:var(--ivory2)}
.pkg-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
.pkg-card{
  background:var(--white);border-radius:calc(var(--radius)*1.5);
  overflow:hidden;box-shadow:var(--shadow);
  transition:transform var(--transition),box-shadow var(--transition);
}
.pkg-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.pkg-img{position:relative;aspect-ratio:16/9;flex-shrink:0}
.pkg-badge{
  position:absolute;top:1rem;left:1rem;z-index:2;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);font-weight:700;font-size:0.68rem;
  padding:0.3rem 0.75rem;border-radius:2rem;letter-spacing:0.08em;text-transform:uppercase;
}
.pkg-body{padding:1.4rem}
.pkg-meta{
  display:flex;gap:1rem;margin-bottom:0.6rem;
}
.pkg-meta span{
  font-size:0.72rem;color:rgba(11,22,41,0.55);letter-spacing:0.06em;
  text-transform:uppercase;font-weight:600;display:flex;align-items:center;gap:0.3rem;
}
.pkg-title{
  font-family:'Italiana',serif;font-size:1.45rem;color:var(--navy);
  margin-bottom:0.4rem;line-height:1.2;
}
.pkg-desc{
  font-family:'Libre Baskerville',serif;font-style:italic;
  font-size:0.82rem;color:rgba(11,22,41,0.6);line-height:1.65;
  margin-bottom:0.85rem;
}
.pkg-tags{display:flex;flex-wrap:wrap;gap:0.4rem;margin-bottom:1.1rem}
.pkg-tag{
  font-size:0.68rem;font-weight:600;padding:0.28rem 0.65rem;
  border-radius:2rem;background:rgba(11,22,41,0.06);color:rgba(11,22,41,0.65);
  letter-spacing:0.05em;
}
.pkg-footer{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.pkg-price{display:flex;flex-direction:column;line-height:1.2}
.pkg-price-label{font-size:0.68rem;color:rgba(11,22,41,0.45);letter-spacing:0.08em;text-transform:uppercase}
.pkg-price-val{font-family:'Italiana',serif;font-size:1.6rem;color:var(--navy)}
.pkg-price-val span{font-size:0.8rem;color:var(--gold);font-family:'Outfit',sans-serif;font-weight:600}
.pkg-btn{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);font-weight:700;font-size:0.78rem;
  padding:0.65rem 1.3rem;border-radius:var(--radius);letter-spacing:0.06em;text-transform:uppercase;
  transition:all var(--transition);white-space:nowrap;
}
.pkg-btn:hover{transform:translateY(-1px);box-shadow:0 4px 14px rgba(212,168,67,0.4)}

@media(min-width:640px){.pkg-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1100px){.pkg-grid{grid-template-columns:repeat(3,1fr)}}

/* ════════════════════════════════════════
   6. COUNTERS
════════════════════════════════════════ */
#counters{
  background:var(--navy);padding:4.5rem 0;
  background-image:radial-gradient(ellipse at 20% 50%,rgba(212,168,67,0.06) 0%,transparent 60%),
                   radial-gradient(ellipse at 80% 50%,rgba(212,168,67,0.04) 0%,transparent 60%);
}
.counters-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem}
.counter-item{text-align:center}
.counter-num{
  font-family:'Italiana',serif;font-size:clamp(2.5rem,6vw,4rem);
  color:var(--gold);display:block;line-height:1;
}
.counter-suffix{font-family:'Italiana',serif;font-size:clamp(1.5rem,3vw,2.2rem);color:var(--gold)}
.counter-label{
  font-size:0.72rem;color:rgba(250,247,240,0.55);letter-spacing:0.15em;
  text-transform:uppercase;font-weight:600;margin-top:0.5rem;display:block;
}
@media(min-width:640px){.counters-grid{grid-template-columns:repeat(4,1fr)}}

/* ════════════════════════════════════════
   7. WHY US
════════════════════════════════════════ */
#whyus{padding:6rem 0;background:var(--ivory)}
.whyus-inner{display:grid;grid-template-columns:1fr;gap:3rem;align-items:center}
.whyus-left .section-sub{max-width:none;margin-bottom:2rem}
.btn-navy{
  display:inline-block;background:var(--navy);color:var(--ivory);
  font-weight:700;font-size:0.82rem;padding:0.85rem 1.8rem;
  border-radius:var(--radius);letter-spacing:0.06em;text-transform:uppercase;
  transition:all var(--transition);
}
.btn-navy:hover{background:var(--navy2);box-shadow:var(--shadow)}
.features-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.feature-card{
  background:var(--white);border-radius:calc(var(--radius)*1.5);
  padding:1.4rem;box-shadow:var(--shadow);
  transition:transform var(--transition);
}
.feature-card:hover{transform:translateY(-3px)}
.feature-icon{
  width:42px;height:42px;border-radius:var(--radius);
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;margin-bottom:0.8rem;flex-shrink:0;
}
.feature-title{font-weight:700;font-size:0.88rem;color:var(--navy);margin-bottom:0.35rem}
.feature-desc{font-size:0.78rem;color:rgba(11,22,41,0.6);line-height:1.6}
@media(min-width:900px){
  .whyus-inner{grid-template-columns:1fr 1fr;gap:5rem}
}

/* ════════════════════════════════════════
   8. HOW IT WORKS
════════════════════════════════════════ */
#howitworks{padding:6rem 0;background:var(--navy)}
#howitworks .section-title{color:var(--ivory)}
.steps-wrap{position:relative;margin-top:3rem}
.steps-connector{
  display:none;position:absolute;top:28px;left:calc(12.5% + 28px);
  right:calc(12.5% + 28px);height:1px;
  border-top:2px dashed rgba(212,168,67,0.35);z-index:0;
}
.steps-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:2rem;position:relative;z-index:1;
}
.step-item{text-align:center;padding:0 0.5rem}
.step-num{
  width:54px;height:54px;border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  display:flex;align-items:center;justify-content:center;
  font-family:'Italiana',serif;font-size:1.4rem;color:var(--navy);
  margin:0 auto 1.1rem;font-weight:700;
}
.step-title{font-family:'Italiana',serif;font-size:1.25rem;color:var(--ivory);margin-bottom:0.5rem}
.step-desc{font-size:0.82rem;color:rgba(250,247,240,0.55);line-height:1.7}
@media(min-width:640px){
  .steps-grid{grid-template-columns:repeat(4,1fr)}
  .steps-connector{display:block}
}

/* ════════════════════════════════════════
   9. TESTIMONIALS
════════════════════════════════════════ */
#testimonials{padding:6rem 0;background:var(--ivory2)}
.testi-carousel{position:relative;overflow:hidden}
.testi-track{display:flex;transition:transform 0.5s cubic-bezier(0.4,0,0.2,1)}
.testi-card{
  min-width:100%;padding:0 0.5rem;box-sizing:border-box;
}
.testi-inner{
  background:var(--white);border-radius:calc(var(--radius)*1.5);
  padding:2rem;box-shadow:var(--shadow);height:100%;
}
.testi-stars{color:var(--gold);font-size:0.9rem;letter-spacing:0.1em;margin-bottom:1rem}
.testi-quote{
  font-family:'Libre Baskerville',serif;font-style:italic;
  font-size:0.95rem;color:rgba(11,22,41,0.75);line-height:1.75;
  margin-bottom:1.2rem;
}
.testi-author{display:flex;align-items:center;gap:0.85rem}
.testi-avatar{
  width:42px;height:42px;border-radius:50%;flex-shrink:0;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:0.85rem;color:var(--navy);
}
.testi-name{font-weight:700;font-size:0.88rem;color:var(--navy)}
.testi-trip{font-size:0.73rem;color:rgba(11,22,41,0.5);letter-spacing:0.06em;text-transform:uppercase}
.testi-controls{display:flex;align-items:center;gap:1rem;justify-content:center;margin-top:2rem}
.testi-btn{
  width:44px;height:44px;border-radius:50%;border:1.5px solid rgba(11,22,41,0.2);
  display:flex;align-items:center;justify-content:center;cursor:pointer;
  background:var(--white);transition:all var(--transition);
  font-size:1rem;color:var(--navy);
}
.testi-btn:hover{background:var(--navy);color:var(--gold);border-color:var(--navy)}
.testi-pips{display:flex;gap:0.4rem}
.testi-pip{
  width:8px;height:8px;border-radius:50%;background:rgba(11,22,41,0.2);
  cursor:pointer;transition:all var(--transition);border:none;padding:0;
}
.testi-pip.active{background:var(--gold);width:20px;border-radius:4px}
@media(min-width:900px){
  .testi-card{min-width:33.333%}
}

/* ════════════════════════════════════════
   10. GALLERY
════════════════════════════════════════ */
#gallery{padding:6rem 0;background:var(--ivory)}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  grid-template-rows:repeat(2,200px);
  gap:0.75rem;
}
.gal-item{position:relative;overflow:hidden;border-radius:var(--radius);cursor:pointer}
.gal-item:first-child{grid-column:1/3;grid-row:1/2}
.gal-item img{transition:transform 0.6s ease}
.gal-item:hover img{transform:scale(1.08)}
.gal-overlay{
  position:absolute;inset:0;background:rgba(11,22,41,0);
  display:flex;align-items:center;justify-content:center;
  transition:background var(--transition);
}
.gal-icon{
  width:44px;height:44px;border-radius:50%;
  border:2px solid #D4A843;color:#D4A843;
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;font-weight:300;
  opacity:0;transform:scale(0.7);
  transition:all 0.35s ease;
}
.gal-item:hover .gal-overlay{background:rgba(11,22,41,0.45)}
.gal-item:hover .gal-icon{opacity:1;transform:scale(1)}
@media(min-width:640px){
  .gallery-grid{
    grid-template-columns:repeat(4,1fr);
    grid-template-rows:220px 220px;
  }
  .gal-item:first-child{grid-column:1/3;grid-row:1/3}
}

/* ════════════════════════════════════════
   11. BOOKING FORM
════════════════════════════════════════ */
#booking{padding:6rem 0;background:var(--navy);position:relative;overflow:hidden}
#booking::before{
  content:'';position:absolute;top:-40%;right:-10%;
  width:500px;height:500px;border-radius:50%;
  background:radial-gradient(circle,rgba(212,168,67,0.06) 0%,transparent 70%);
  pointer-events:none;
}
.booking-inner{display:grid;grid-template-columns:1fr;gap:3rem;align-items:start}
.booking-left .section-title{color:var(--ivory)}
.booking-left .section-sub{color:rgba(250,247,240,0.6)}
.contact-cards{display:flex;flex-direction:column;gap:0.85rem;margin-top:2rem}
.contact-card{
  display:flex;align-items:flex-start;gap:1rem;padding:1rem 1.1rem;
  background:rgba(255,255,255,0.05);border:1px solid rgba(212,168,67,0.15);
  border-radius:var(--radius);
}
.contact-card-icon{
  width:38px;height:38px;flex-shrink:0;border-radius:var(--radius);
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  display:flex;align-items:center;justify-content:center;font-size:1rem;
}
.contact-card-label{font-size:0.68rem;color:rgba(250,247,240,0.45);letter-spacing:0.1em;text-transform:uppercase;margin-bottom:0.2rem}
.contact-card-val{font-size:0.9rem;color:rgba(250,247,240,0.9);font-weight:500}

.form-card{
  background:var(--white);border-radius:calc(var(--radius)*2);
  padding:2rem;box-shadow:0 16px 56px rgba(11,22,41,0.35);
}
.form-grid{display:grid;grid-template-columns:1fr;gap:1rem}
.form-group{display:flex;flex-direction:column;gap:0.35rem}
.form-group label{font-size:0.72rem;font-weight:700;color:var(--navy);letter-spacing:0.08em;text-transform:uppercase}
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;padding:0.75rem 1rem;border:1.5px solid rgba(11,22,41,0.12);
  border-radius:var(--radius);font-family:'Outfit',sans-serif;font-size:0.9rem;
  color:var(--navy);background:var(--ivory);transition:border-color var(--transition);
  outline:none;-webkit-appearance:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{border-color:var(--gold)}
.form-group textarea{resize:vertical;min-height:90px}
.form-submit{
  width:100%;padding:0.95rem;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);font-weight:700;font-size:0.88rem;
  border-radius:var(--radius);letter-spacing:0.07em;text-transform:uppercase;
  transition:all var(--transition);margin-top:0.5rem;
}
.form-submit:hover{transform:translateY(-1px);box-shadow:0 6px 20px rgba(212,168,67,0.45)}
.form-success{
  display:none;text-align:center;padding:3rem 1rem;
}
.form-success .success-icon{
  width:56px;height:56px;border-radius:50%;
  background:linear-gradient(135deg,#D4A843,#c9982e);
  color:#0B1629;font-size:1.5rem;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1rem;animation:pulse 1.5s ease-in-out infinite;
}
.form-success h3{font-family:'Italiana',serif;font-size:1.8rem;color:var(--navy);margin-bottom:0.5rem}
.form-success p{font-size:0.9rem;color:rgba(11,22,41,0.6);line-height:1.6}
@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.15)}}

@media(min-width:900px){
  .booking-inner{grid-template-columns:1fr 1.2fr;gap:4rem}
  .form-grid{grid-template-columns:1fr 1fr}
  .form-group.full{grid-column:1/-1}
}

/* ════════════════════════════════════════
   12. CTA BAND
════════════════════════════════════════ */
#ctaband{padding:5rem 0;background:var(--ivory);text-align:center}
#ctaband .section-title{margin-bottom:0.75rem}
#ctaband .section-sub{margin:0 auto 2rem;text-align:center}
.cta-btns{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center}

/* ════════════════════════════════════════
   13. FOOTER
════════════════════════════════════════ */
#footer{background:var(--navy);border-top:1px solid var(--gold)}
.footer-top{padding:4rem 0 3rem}
.footer-grid{display:grid;grid-template-columns:1fr;gap:2.5rem}
.footer-brand .logo-name{font-size:1.4rem}
.footer-brand-desc{
  font-family:'Libre Baskerville',serif;font-style:italic;
  font-size:0.82rem;color:rgba(250,247,240,0.5);line-height:1.7;
  margin-top:1rem;max-width:240px;
}
.footer-social{display:flex;gap:0.6rem;margin-top:1.25rem}
.social-btn{
  width:36px;height:36px;border-radius:50%;border:1px solid rgba(212,168,67,0.25);
  display:flex;align-items:center;justify-content:center;
  color:rgba(250,247,240,0.6);font-size:0.85rem;
  transition:all var(--transition);cursor:pointer;
}
.social-btn:hover{border-color:var(--gold);color:var(--gold);background:rgba(212,168,67,0.08)}
.footer-col h4{
  font-size:0.72rem;font-weight:700;color:var(--gold);
  letter-spacing:0.18em;text-transform:uppercase;margin-bottom:1.1rem;
}
.footer-col ul{display:flex;flex-direction:column;gap:0.55rem}
.footer-col ul li a{
  font-size:0.83rem;color:rgba(250,247,240,0.55);
  transition:color var(--transition);letter-spacing:0.02em;
}
.footer-col ul li a:hover{color:var(--gold)}
.footer-bottom{
  border-top:1px solid rgba(212,168,67,0.1);padding:1.25rem 0;
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:0.75rem;
}
.footer-copy{font-size:0.72rem;color:rgba(250,247,240,0.35);letter-spacing:0.04em}
.footer-legal{display:flex;gap:1.25rem}
.footer-legal a{font-size:0.72rem;color:rgba(250,247,240,0.35);transition:color var(--transition)}
.footer-legal a:hover{color:var(--gold)}
@media(min-width:640px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(min-width:900px){.footer-grid{grid-template-columns:1.4fr 1fr 1fr 1fr}}

/* ════════════════════════════════════════
   14. FLOATING PHONE
════════════════════════════════════════ */
#float-phone{
  position:fixed;bottom:1.75rem;right:1.75rem;z-index:900;
  width:54px;height:54px;border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;box-shadow:0 4px 20px rgba(212,168,67,0.45);
  cursor:pointer;transition:transform var(--transition),box-shadow var(--transition);
  animation:floatPulse 3s ease-in-out infinite;
}
#float-phone:hover{transform:scale(1.1);box-shadow:0 6px 28px rgba(212,168,67,0.6);animation:none}
@keyframes floatPulse{0%,100%{box-shadow:0 4px 20px rgba(212,168,67,0.45)}50%{box-shadow:0 4px 32px rgba(212,168,67,0.65)}}

/* ════════════════════════════════════════
   RESPONSIVE HELPERS
════════════════════════════════════════ */
/* ── MOBILE (up to 639px) ── */
@media(max-width:639px){
  /* Buttons full width */
  .btn-primary,.btn-outline,.btn-navy,.form-submit{width:100%;text-align:center;display:block}
  
  /* Hero - handled in base CSS above */
  .hero-title{font-size:2rem;line-height:1.08;margin-bottom:0.75rem}
  .hero-eyebrow{
    font-size:0.58rem;
    letter-spacing:0.1em;
    white-space:normal;
    text-align:center;
    justify-content:center;
    display:flex;
    flex-wrap:wrap;
    width:100%;
    margin-bottom:0.6rem;
    padding:0 0.5rem;
  }
  .hero-sub{font-size:0.88rem;line-height:1.55;margin-bottom:1rem;padding:0 0.5rem}
  .hero-btns{flex-direction:column;align-items:stretch;padding:0 1.5rem;gap:0.6rem;margin-bottom:1rem}
  .hero-stats{gap:0;margin-bottom:0.75rem;padding:0.6rem 0.5rem}
  .hero-stat{padding:0 0.7rem}
  .hero-stat-num{font-size:1.3rem}
  .hero-stat-label{font-size:0.55rem;letter-spacing:0.08em}
  .hero-dots{margin-bottom:0.25rem}
  .scroll-cue{bottom:0.5rem}
  .scroll-cue span{font-size:0.55rem}
  
  /* Header */
  .header-inner{padding:0 1rem}
  .logo-name{font-size:1rem}
  .logo-tagline{font-size:0.5rem}
  
  /* Sections */
  #destinations,#packages,#whyus,#howitworks,#testimonials,#gallery,#booking,#ctaband{
    padding:3.5rem 0
  }
  .section-title{font-size:1.8rem}
  .section-sub{font-size:0.88rem}
  
  /* Destination grid */
  .dest-grid{grid-template-columns:1fr;gap:0.75rem}
  .dest-card:first-child{grid-column:1/2;aspect-ratio:16/8}
  .dest-card:not(:first-child){aspect-ratio:3/2}
  
  /* Package grid */
  .pkg-grid{grid-template-columns:1fr}
  .pkg-title{font-size:1.2rem}
  
  /* Steps */
  .steps-grid{grid-template-columns:1fr 1fr;gap:1.5rem}
  .step-title{font-size:1rem}
  .step-desc{font-size:0.78rem}
  
  /* Counters */
  .counters-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem}
  .counter-num{font-size:2.2rem}
  
  /* Features */
  .features-grid{grid-template-columns:1fr}
  
  /* Testimonials */
  .testi-quote{font-size:0.88rem}
  
  /* Gallery */
  .gallery-grid{
    grid-template-columns:1fr 1fr;
    grid-template-rows:160px 160px 160px;
  }
  .gal-item:first-child{grid-column:1/3;grid-row:1/2}
  
  /* Booking */
  .form-grid{grid-template-columns:1fr}
  .form-group.full{grid-column:1}
  .contact-cards{gap:0.6rem}
  
  /* Footer */
  .footer-grid{grid-template-columns:1fr}
  .footer-social{gap:0.5rem}
  
  /* Float phone */
  #float-phone{width:46px;height:46px;font-size:1.1rem;bottom:1.25rem;right:1.25rem}
}

/* ── SMALL MOBILE (up to 380px) ── */
@media(max-width:380px){
  .hero-title{font-size:1.75rem}
  .hero-btns{padding:0 0.75rem}
  .hero-stats{gap:0;padding:0.5rem 0.25rem}
  .hero-stat{padding:0 0.5rem}
  .hero-stat-num{font-size:1.1rem}
}
  /* WordPress admin bar offset */
  html.wp-toolbar { padding-top: 0 !important; }
  body.admin-bar #header { top: 32px; }
  @media screen and (max-width: 782px) { body.admin-bar #header { top: 46px; } }
  body.admin-bar #hero { padding-top: 104px; }
  @media screen and (max-width: 782px) { body.admin-bar #hero { padding-top: 118px; } }

/* Force override any WP theme conflicts */
#header { background: #0B1629 !important; }
#header * { box-sizing: border-box; }
body { margin: 0 !important; padding: 0 !important; background: #FAF7F0 !important; }
a { text-decoration: none !important; }
ul { list-style: none !important; margin: 0 !important; padding: 0 !important; }
img { max-width: 100%; }


/* ══════════════════════════════════════════════════════════════════
   MEGA DROPDOWN  (header destinations → all countries)
   ══════════════════════════════════════════════════════════════════ */

/* Hide the legacy .dropdown markup if any remains in the DOM */
header#header .desktop-nav .nav-item .dropdown{display:none !important}

/* The wrapper around the trigger link must be a positioning context */
header#header .desktop-nav .nav-item.has-mega{position:relative !important}

/* The mega panel — absolute, hidden by default, only shown on hover/focus */
header#header .desktop-nav .nav-item.has-mega .mega-dropdown{
  position:absolute !important;
  top:calc(100% + 14px) !important;
  /* Anchor to the LEFT edge of the trigger so the panel expands rightward
     into the rest of the header (Packages, Why Us, etc.) instead of bleeding
     off the left side of the viewport. "Destinations" is the leftmost nav
     item so there's always room on its right. */
  left:0 !important;
  right:auto !important;
  background:#0B1629 !important;
  border:1px solid rgba(212,168,67,0.25) !important;
  border-radius:12px !important;
  box-shadow:0 16px 48px rgba(0,0,0,0.55) !important;
  padding:1.25rem !important;
  width:480px !important;
  max-width:calc(100vw - 2rem) !important;
  max-height:70vh !important;
  overflow-y:auto !important;
  opacity:0 !important;
  visibility:hidden !important;
  transform:translateY(8px) !important;
  transition:opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease !important;
  z-index:1100 !important;
  pointer-events:none !important;
}

/* Show on hover or keyboard focus */
header#header .desktop-nav .nav-item.has-mega:hover .mega-dropdown,
header#header .desktop-nav .nav-item.has-mega:focus-within .mega-dropdown{
  opacity:1 !important;
  visibility:visible !important;
  transform:translateY(0) !important;
  pointer-events:auto !important;
}

/* Invisible bridge so the dropdown doesn't close when moving cursor from
   trigger link to panel (covers the 14px gap). Width matches panel. */
header#header .desktop-nav .nav-item.has-mega::after{
  content:'' !important;
  position:absolute !important;
  top:100% !important;
  left:0 !important;
  width:480px !important;
  max-width:calc(100vw - 2rem) !important;
  height:14px !important;
  background:transparent !important;
  pointer-events:auto !important;
}
@media (max-width: 1100px){
  header#header .desktop-nav .nav-item.has-mega::after{
    width:380px !important;
  }
}

/* Grid of country names inside the panel */
header#header .desktop-nav .mega-dropdown .mega-grid{
  display:grid !important;
  grid-template-columns:repeat(3,1fr) !important;
  gap:0.25rem 0.5rem !important;
  margin-bottom:0.85rem !important;
}
header#header .desktop-nav .mega-dropdown .mega-item{
  display:block !important;
  padding:0.55rem 0.7rem !important;
  color:rgba(250,247,240,0.85) !important;
  font-family:'Outfit',sans-serif !important;
  font-size:0.85rem !important;
  font-weight:500 !important;
  letter-spacing:0.02em !important;
  border-radius:6px !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
  text-decoration:none !important;
  background:transparent !important;
  transition:background 0.18s ease, color 0.18s ease !important;
}
header#header .desktop-nav .mega-dropdown .mega-item:hover{
  background:rgba(212,168,67,0.12) !important;
  color:var(--gold) !important;
}
header#header .desktop-nav .mega-dropdown .mega-name{display:block !important}

header#header .desktop-nav .mega-dropdown .mega-cta{
  display:block !important;
  text-align:center !important;
  padding:0.7rem !important;
  background:linear-gradient(135deg,var(--gold),var(--gold2)) !important;
  color:var(--navy) !important;
  font-weight:700 !important;
  font-size:0.78rem !important;
  letter-spacing:0.06em !important;
  text-transform:uppercase !important;
  border-radius:8px !important;
  margin-top:0.5rem !important;
  text-decoration:none !important;
}
header#header .desktop-nav .mega-dropdown .mega-cta:hover{
  transform:translateY(-1px) !important;
  box-shadow:0 6px 18px rgba(212,168,67,0.35) !important;
}

/* On smaller desktops (~900–1100px) shrink panel and use 2 columns */
@media (max-width: 1100px){
  header#header .desktop-nav .nav-item.has-mega .mega-dropdown{
    width:380px !important;
  }
  header#header .desktop-nav .mega-dropdown .mega-grid{
    grid-template-columns:repeat(2,1fr) !important;
  }
}

/* Below 900px the desktop nav is hidden entirely (mobile drawer takes over),
   so the mega-dropdown is irrelevant — but force-hide just to be safe. */
@media (max-width: 899px){
  header#header .desktop-nav .nav-item.has-mega .mega-dropdown{
    display:none !important;
  }
}

/* ══════════════════════════════════════════════════════════════════
   DRAWER COLLAPSIBLE GROUP  (mobile destinations submenu)
   ══════════════════════════════════════════════════════════════════ */
.drawer-group{display:flex;flex-direction:column}
.drawer-toggle{
  background:none;border:none;text-align:left;
  width:100%;font-family:inherit;cursor:pointer;
}
.drawer-toggle .drawer-toggle-arrow{
  transition:transform 0.25s ease;
  font-size:0.85rem;
}
.drawer-toggle[aria-expanded="true"] .drawer-toggle-arrow{
  transform:rotate(180deg);color:var(--gold);
}
.drawer-toggle[aria-expanded="true"]{
  color:var(--gold);
  background:rgba(212,168,67,0.06);
  border-left-color:var(--gold);
}
.drawer-sublist{
  display:flex;flex-direction:column;
  background:rgba(0,0,0,0.18);
  border-bottom:1px solid rgba(212,168,67,0.08);
}
.drawer-sublist[hidden]{display:none}
.drawer-sub-item{
  display:block;
  padding:0.8rem 1.25rem 0.8rem 2rem;
  color:rgba(250,247,240,0.78);
  font-size:0.9rem;font-weight:500;
  font-family:'Outfit',sans-serif;letter-spacing:0.02em;
  border-bottom:1px solid rgba(212,168,67,0.05);
  transition:background 0.18s ease, color 0.18s ease, padding 0.18s ease;
  text-decoration:none;
}
.drawer-sub-item:last-child{border-bottom:none}
.drawer-sub-item:hover,.drawer-sub-item:active{
  color:var(--gold);
  background:rgba(212,168,67,0.06);
  padding-left:2.25rem;
}
.drawer-sub-name{display:block}

/* ══════════════════════════════════════════════════════════════════
   COUNTRY PAGE
   ══════════════════════════════════════════════════════════════════ */

/* Hero --------------------------------------------------- */
.country-hero{
  position:relative;
  min-height:62vh;
  display:flex;align-items:flex-end;
  padding:8rem 0 3.5rem;
  background-size:cover;background-position:center;background-repeat:no-repeat;
  color:var(--ivory);
}
.country-hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(11,22,41,0.55) 0%,rgba(11,22,41,0.85) 100%);
}
.country-hero-inner{position:relative;z-index:2;width:100%}
.breadcrumbs{
  font-family:'Outfit',sans-serif;font-size:0.78rem;
  letter-spacing:0.08em;text-transform:uppercase;
  color:rgba(250,247,240,0.7);
  margin-bottom:1.2rem;
  display:flex;align-items:center;gap:0.5rem;flex-wrap:wrap;
}
.breadcrumbs a{color:rgba(250,247,240,0.8);transition:color 0.18s ease}
.breadcrumbs a:hover{color:var(--gold)}
.bc-sep{color:rgba(212,168,67,0.6)}
.bc-current{color:var(--gold)}
.country-flag{
  font-size:3rem;line-height:1;display:block;margin-bottom:0.6rem;
  filter:drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.country-title{
  font-family:'Italiana',serif;
  font-size:clamp(2.4rem,6vw,4.2rem);
  line-height:1.05;letter-spacing:-0.01em;
  margin-bottom:0.6rem;
  text-shadow:0 4px 18px rgba(0,0,0,0.5);
}
.country-tagline{
  font-family:'Libre Baskerville',serif;font-style:italic;
  font-size:1.05rem;color:rgba(250,247,240,0.85);
  margin-bottom:1.6rem;
  text-shadow:0 2px 8px rgba(0,0,0,0.5);
}
.country-meta{
  display:flex;flex-wrap:wrap;gap:0.75rem;
  margin-bottom:1.8rem;
}
.country-meta-item{
  display:flex;flex-direction:column;
  padding:0.7rem 1.1rem;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(212,168,67,0.25);
  border-radius:var(--radius);
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
}
.country-meta-label{
  font-size:0.62rem;letter-spacing:0.18em;text-transform:uppercase;
  color:rgba(250,247,240,0.7);
}
.country-meta-value{
  font-family:'Outfit',sans-serif;font-weight:600;font-size:0.95rem;
  color:var(--gold);margin-top:0.15rem;
}
.country-hero-cta{
  display:flex;flex-wrap:wrap;gap:0.75rem;
}
.country-hero-cta .btn-outline{
  border-color:rgba(250,247,240,0.7);color:var(--ivory);
}
.country-hero-cta .btn-outline:hover{
  background:var(--ivory);color:var(--navy);
}

/* Intro -------------------------------------------------- */
.country-intro{padding:4.5rem 0 1rem;background:var(--ivory)}
.country-intro-inner{max-width:780px;margin:0 auto;text-align:center}
.country-intro-text{
  font-family:'Libre Baskerville',serif;font-style:italic;
  font-size:1.1rem;line-height:1.8;color:rgba(11,22,41,0.78);
  margin-top:1rem;
}

/* Places grid -------------------------------------------- */
.country-places{padding:4rem 0 5rem;background:var(--ivory)}
.places-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.25rem;
}
@media(min-width:640px){
  .places-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem}
}
@media(min-width:1024px){
  .places-grid{grid-template-columns:repeat(3,1fr)}
}
.place-card{
  position:relative;
  padding:2rem 1.5rem 1.5rem;
  background:#fff;
  border:1px solid rgba(11,22,41,0.08);
  border-radius:var(--radius);
  box-shadow:0 4px 16px rgba(11,22,41,0.04);
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.place-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(11,22,41,0.1);
  border-color:rgba(212,168,67,0.4);
}
.place-num{
  position:absolute;top:-14px;left:1.5rem;
  width:36px;height:36px;border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);font-weight:700;font-size:0.85rem;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(212,168,67,0.4);
  font-family:'Outfit',sans-serif;
}
.place-name{
  font-family:'Italiana',serif;font-size:1.35rem;line-height:1.2;
  color:var(--navy);margin-bottom:0.6rem;
}
.place-desc{
  font-size:0.92rem;line-height:1.6;color:rgba(11,22,41,0.7);
}

/* CTA band ---------------------------------------------- */
.country-cta{
  background:linear-gradient(135deg,#0B1629,#1a2d4f);
  color:var(--ivory);
  padding:3.5rem 0;
}
.country-cta-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:2rem;flex-wrap:wrap;
}
.country-cta-title{
  font-family:'Italiana',serif;font-size:clamp(1.6rem,3.5vw,2.4rem);
  line-height:1.15;margin-bottom:0.5rem;
}
.country-cta-sub{
  font-family:'Libre Baskerville',serif;font-style:italic;
  font-size:1rem;color:rgba(250,247,240,0.78);max-width:560px;
}

/* Prev / Next nav --------------------------------------- */
.country-nav{padding:3rem 0;background:var(--ivory2,#F0EBE0)}
.country-nav-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:1rem;
}
.country-nav-card{
  display:flex;flex-direction:column;gap:0.35rem;
  padding:1.25rem 1.5rem;
  background:#fff;
  border:1px solid rgba(11,22,41,0.08);
  border-radius:var(--radius);
  transition:all 0.25s ease;
}
.country-nav-card.prev{text-align:left}
.country-nav-card.next{text-align:right}
.country-nav-card:hover{
  transform:translateY(-2px);
  border-color:var(--gold);
  box-shadow:0 8px 24px rgba(11,22,41,0.08);
}
.country-nav-dir{
  font-size:0.68rem;letter-spacing:0.16em;text-transform:uppercase;
  color:rgba(11,22,41,0.55);
}
.country-nav-name{
  font-family:'Italiana',serif;font-size:1.2rem;color:var(--navy);
}

/* Other destinations ------------------------------------ */
.country-others{padding:4rem 0 5rem;background:var(--ivory)}
.others-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;
  margin-bottom:2rem;
}
@media(min-width:640px){.others-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1024px){.others-grid{grid-template-columns:repeat(4,1fr)}}
.other-card{
  position:relative;display:block;overflow:hidden;
  border-radius:var(--radius);aspect-ratio:4/5;
}
.other-card img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.5s ease}
.other-card:hover img{transform:scale(1.06)}
.other-overlay{
  position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(11,22,41,0.85) 0%,rgba(11,22,41,0.1) 60%,transparent 100%);
}
.other-info{
  position:absolute;left:0.9rem;right:0.9rem;bottom:0.9rem;
  display:flex;align-items:center;gap:0.5rem;
  color:var(--ivory);
}
.other-flag{font-size:1.1rem;line-height:1;flex-shrink:0}
.other-name{
  font-family:'Italiana',serif;font-size:1.05rem;line-height:1.15;
  text-shadow:0 2px 8px rgba(0,0,0,0.5);
}
.country-others-cta{text-align:center}

/* Mobile country page tweaks ---------------------------- */
@media (max-width:640px){
  .country-hero{min-height:52vh;padding:6.5rem 0 2.5rem}
  .country-meta-item{padding:0.55rem 0.85rem}
  .country-meta-value{font-size:0.85rem}
  .country-cta-inner{justify-content:center;text-align:center}
  .country-nav-grid{grid-template-columns:1fr}
  .country-nav-card.next{text-align:left}
}

/* Hide old simple .dropdown selector if it was bound to inline anchor list */
.desktop-nav .nav-item .dropdown{display:none}

/* ══════════════════════════════════════════════
   DESTINATIONS — TRAVEL POSTER WALL
   ══════════════════════════════════════════════ */
#tposter-section{
  position:relative;
  background:var(--navy);
  padding:5.5rem 0 4.5rem;
  overflow:hidden;
  isolation:isolate;
}
.tposter-bg-decor{
  position:absolute; inset:0;
  z-index:0; pointer-events:none;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(212,168,67,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 8% 90%, rgba(212,168,67,0.06) 0%, transparent 70%);
}
#tposter-section > .container,
#tposter-section > .tposter-rail-wrap{
  position:relative; z-index:1;
}

/* ── Header ── */
.tposter-head{
  text-align:center;
  margin-bottom:3rem;
}
.tposter-eyebrow{
  display:inline-flex; align-items:center; gap:1rem;
  font-size:0.72rem; font-weight:700;
  letter-spacing:0.28em; text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1.25rem;
}
.tposter-eyebrow-line{
  width:36px; height:1px;
  background:linear-gradient(to right, transparent, var(--gold), transparent);
}
.tposter-eyebrow-line:last-child{
  background:linear-gradient(to left, transparent, var(--gold), transparent);
}
.tposter-title{
  font-family:'Italiana', Georgia, serif;
  font-size:clamp(2.2rem, 4.6vw, 3.8rem);
  font-weight:400;
  line-height:1.05;
  letter-spacing:-0.015em;
  color:var(--ivory);
  margin:0 0 1rem;
}
.tposter-title em{
  font-style:italic;
  color:var(--gold);
}
.tposter-desc{
  max-width:560px;
  margin:0 auto;
  color:rgba(250,247,240,0.65);
  font-size:0.98rem;
  line-height:1.7;
}

/* ── Rail (the scrolling row) ── */
.tposter-rail-wrap{
  overflow:hidden;
  cursor:grab;
  user-select:none; -webkit-user-select:none;
  -webkit-tap-highlight-color:transparent;
  touch-action:pan-y;           /* allow vertical page scroll; JS captures horizontal swipes */
  padding:1.5rem 0 2rem;        /* room for the staggered drop + hover lift */
  mask-image:linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image:linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.tposter-rail-wrap.is-dragging{cursor:grabbing}
.tposter-rail-wrap img{
  pointer-events:none;
  -webkit-user-drag:none; user-drag:none;
}
.tposter-rail{
  display:flex;
  align-items:flex-start;
  gap:1.25rem;
  width:max-content;
  padding:0 2rem;
  will-change:transform;
}

/* ── Poster card ── */
.tposter-card{
  flex:0 0 240px;
  height:380px;
  position:relative;
  border-radius:6px;
  overflow:hidden;
  text-decoration:none;
  background:#000;
  box-shadow:0 14px 40px rgba(0,0,0,0.45);
  transition:transform 0.55s cubic-bezier(0.2,0.8,0.2,1),
             box-shadow 0.55s cubic-bezier(0.2,0.8,0.2,1);
  isolation:isolate;
}
.tposter-card--drop{
  margin-top:32px;        /* every 2nd card sits lower → wave rhythm */
}
.tposter-card:hover{
  transform:translateY(-14px);
  box-shadow:0 28px 60px rgba(0,0,0,0.6),
             0 0 0 1px rgba(212,168,67,0.35);
}

/* Image fills the whole poster */
.tposter-card-img{
  position:absolute; inset:0; z-index:0;
  background:#0B1629;
}
.tposter-card-img img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.85s cubic-bezier(0.2,0.8,0.2,1);
}
.tposter-card:hover .tposter-card-img img{
  transform:scale(1.07);
}

/* Soft navy gradient on top so titles always read */
.tposter-card-shade{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(to top,
    rgba(11,22,41,0.95) 0%,
    rgba(11,22,41,0.55) 32%,
    rgba(11,22,41,0.10) 60%,
    rgba(11,22,41,0)    100%);
  transition:opacity 0.5s ease;
}

/* Top-left N° 01 number */
.tposter-card-num{
  position:absolute; top:1rem; left:1.1rem;
  z-index:2;
  font-family:'Italiana', Georgia, serif;
  font-size:0.78rem;
  letter-spacing:0.22em;
  color:rgba(212,168,67,0.9);
  text-shadow:0 1px 6px rgba(0,0,0,0.6);
}

/* Top-right flag emoji */
.tposter-card-flag{
  position:absolute; top:0.85rem; right:1rem;
  z-index:2;
  font-size:1.4rem;
  line-height:1;
  filter:drop-shadow(0 2px 8px rgba(0,0,0,0.55));
}

/* Bottom-left content stack */
.tposter-card-body{
  position:absolute; left:1.25rem; right:1.25rem; bottom:1.2rem;
  z-index:2;
  color:var(--ivory);
}
.tposter-card-tag{
  display:block;
  font-size:0.62rem;
  font-weight:700;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:0.55rem;
}
.tposter-card-name{
  font-family:'Italiana', Georgia, serif;
  font-size:1.7rem;
  font-weight:400;
  line-height:1.05;
  color:var(--ivory);
  margin:0;
  letter-spacing:-0.01em;
  text-shadow:0 2px 12px rgba(0,0,0,0.5);
}
.tposter-card-rule{
  display:block;
  width:28px; height:1px;
  background:var(--gold);
  margin:0.7rem 0 0.55rem;
  transition:width 0.45s ease;
}
.tposter-card:hover .tposter-card-rule{
  width:50px;
}
.tposter-card-meta{
  display:block;
  font-size:0.68rem;
  letter-spacing:0.1em;
  color:rgba(250,247,240,0.7);
}

/* Floating circular arrow — shows on hover */
.tposter-card-arrow{
  position:absolute;
  bottom:1.1rem; right:1.1rem;
  z-index:3;
  width:36px; height:36px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  border:1px solid rgba(212,168,67,0.55);
  background:rgba(11,22,41,0.5);
  color:var(--gold);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  opacity:0;
  transform:translate(6px,-6px) scale(0.9);
  transition:opacity 0.4s ease, transform 0.4s cubic-bezier(0.2,0.8,0.2,1),
             background 0.3s ease, color 0.3s ease;
  pointer-events:none;
}
.tposter-card:hover .tposter-card-arrow{
  opacity:1;
  transform:translate(0,0) scale(1);
  background:var(--gold);
  color:var(--navy);
}

/* ── Drag-hint strip below the rail ── */
.tposter-hint{
  display:flex; align-items:center; justify-content:center;
  gap:0.85rem;
  margin-top:1.25rem;
  font-size:0.7rem; letter-spacing:0.2em;
  text-transform:uppercase;
  color:rgba(250,247,240,0.4);
}
.tposter-hint-arrow{
  display:inline-block;
  font-size:0.85rem;
  color:var(--gold);
  animation:tposterHintFloat 2.2s ease-in-out infinite;
}
.tposter-hint-arrow:last-child{ animation-delay:1.1s }
@keyframes tposterHintFloat{
  0%,100%{ transform:translateX(0); opacity:0.4 }
  50%   { transform:translateX(6px); opacity:0.9 }
}

/* ── Responsive ── */
@media(max-width:768px){
  #tposter-section{ padding:3.75rem 0 3rem; }
  .tposter-head{ margin-bottom:2.25rem; padding:0 1.25rem; }
  .tposter-eyebrow{ font-size:0.65rem; gap:0.65rem; }
  .tposter-eyebrow-line{ width:24px; }
  .tposter-rail{ padding:0 1rem; gap:1rem; }
  .tposter-rail-wrap{ padding:1rem 0 1.5rem; }
  .tposter-card{ flex:0 0 200px; height:320px; }
  .tposter-card--drop{ margin-top:24px; }
  .tposter-card-name{ font-size:1.4rem; }
  .tposter-card-num{ font-size:0.7rem; top:0.85rem; left:0.95rem; }
  .tposter-card-flag{ font-size:1.2rem; top:0.75rem; right:0.85rem; }
  .tposter-card-body{ left:1rem; right:1rem; bottom:1rem; }
  .tposter-card-arrow{ width:32px; height:32px; bottom:0.95rem; right:0.95rem; }
}
@media(max-width:420px){
  .tposter-card{ flex:0 0 175px; height:280px; }
  .tposter-card--drop{ margin-top:20px; }
  .tposter-card-name{ font-size:1.2rem; }
}


/* ══════════════════════════════════════════════
   NEW DESTINATIONS FULL GRID SECTION
   ══════════════════════════════════════════════ */
#destinations{
  background:var(--ivory);
  padding:6rem 0 5rem;
}
.dest2-head{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem 4rem;
  align-items:end;
  margin-bottom:2.5rem;
}
.dest2-title{
  font-size:clamp(2rem,3.5vw,3rem);
  font-weight:900;
  color:var(--navy);
  line-height:1.1;
  letter-spacing:-0.03em;
}
.dest2-title span{
  color:var(--gold2);
}
.dest2-desc{
  color:rgba(11,22,41,0.58);
  font-size:0.95rem;
  line-height:1.75;
  align-self:end;
}
@media(max-width:768px){
  .dest2-head{grid-template-columns:1fr}
}

/* Filter tabs */
.dest2-filters{
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
  margin-bottom:2.5rem;
}
.dest2-tab{
  padding:0.45rem 1.1rem;
  border-radius:2rem;
  font-size:0.8rem;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--navy);
  background:transparent;
  border:1.5px solid rgba(11,22,41,0.18);
  cursor:pointer;
  transition:all 0.25s ease;
}
.dest2-tab:hover{border-color:var(--gold);color:var(--gold2)}
.dest2-tab.active{
  background:var(--navy);
  color:var(--ivory);
  border-color:var(--navy);
}

/* Grid */
.dest2-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
  gap:1.25rem;
}
.dest2-card{
  border-radius:1.1rem;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:#fff;
  box-shadow:0 2px 12px rgba(11,22,41,0.06);
  border:1px solid rgba(11,22,41,0.06);
  text-decoration:none;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  position:relative;
}
.dest2-card:hover{
  transform:translateY(-5px);
  box-shadow:0 16px 40px rgba(11,22,41,0.14);
}
.dest2-card[hidden]{display:none}
.dest2-card-img{
  height:155px;
  overflow:hidden;
  position:relative;
  flex-shrink:0;
}
.dest2-card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.5s ease;
}
.dest2-card:hover .dest2-card-img img{transform:scale(1.08)}
.dest2-card-shine{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events:none;
}
.dest2-card-foot{
  padding:0.8rem 0.9rem 0.75rem;
  display:flex;
  flex-direction:column;
  gap:0.2rem;
  position:relative;
}
.dest2-card-flag-name{
  display:flex;
  align-items:center;
  gap:0.5rem;
}
.dest2-flag{font-size:1.15rem;line-height:1}
.dest2-cname{
  font-size:0.92rem;
  font-weight:800;
  color:var(--navy);
  letter-spacing:-0.01em;
}
.dest2-tagline{
  font-size:0.7rem;
  color:var(--gold2);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.09em;
}
.dest2-arrow{
  position:absolute;
  right:0.9rem;
  bottom:0.75rem;
  font-size:0.9rem;
  color:var(--navy);
  opacity:0;
  transform:translateX(-4px);
  transition:opacity 0.25s ease, transform 0.25s ease;
}
.dest2-card:hover .dest2-arrow{opacity:1;transform:translateX(0)}

@media(max-width:640px){
  .dest2-grid{grid-template-columns:repeat(2,1fr);gap:0.75rem}
  .dest2-card-img{height:120px}
}
@media(min-width:1024px){
  .dest2-grid{grid-template-columns:repeat(5,1fr)}
}

/* ═══════════════════════════════════════════════════════════════════

/* ═══════════════════════════════════════════════════════════════════
   RAM SHANKAR TOUR & TRAVEL — CUSTOM CSS (CLEAN SINGLE VERSION)
   ═══════════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────
   1. KILL the original theme's floating phone
   (uses #float-phone as a gold circle — we
   replace the entire concept with new IDs)
──────────────────────────────────────────── */
#float-phone {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ────────────────────────────────────────────
   2. NEW FLOATING CONTACT BAR
   Two distinct IDs: #rst-wa and #rst-call
   Never conflict with original theme IDs
──────────────────────────────────────────── */
#rst-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

/* WhatsApp button */
#rst-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 13px 22px 13px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
  line-height: 1;
}
#rst-wa:hover,
#rst-wa:focus {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.65);
  color: #fff;
  text-decoration: none;
}
#rst-wa svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* WhatsApp glow ring */
#rst-wa::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50px;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: rstWaPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes rstWaPulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.28); }
}

/* Call button */
#rst-call {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0d2b4e;
  color: #fff;
  padding: 13px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(13,43,78,0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
  line-height: 1;
}
#rst-call:hover,
#rst-call:focus {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(13,43,78,0.55);
  color: #fff;
  text-decoration: none;
}
#rst-call-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Label spans (hidden on small mobile) */
#rst-wa-label,
#rst-call-label {
  display: inline;
}

/* ── MOBILE ≤ 600px: icon-only circles ── */
@media (max-width: 600px) {
  #rst-float {
    bottom: 16px;
    right: 14px;
    gap: 10px;
  }
  #rst-wa-label,
  #rst-call-label {
    display: none;
  }
  #rst-wa {
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    font-size: 0;
  }
  #rst-wa svg {
    width: 26px;
    height: 26px;
  }
  #rst-call {
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
  }
  #rst-call-icon {
    font-size: 1.4rem;
  }
}

/* ────────────────────────────────────────────
   3. TOURIST PLACE FLOATING PHOTO CARDS
──────────────────────────────────────────── */
.places-grid--float {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 44px 32px;
  padding-top: 24px;
}

.place-card--visual {
  background: #fff;
  border-radius: 18px;
  overflow: visible;
  box-shadow: 0 6px 32px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.place-card--visual:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.15);
}

/* Swinging photo */
.place-photo-wrap {
  display: flex;
  justify-content: center;
  margin-top: -26px;
  position: relative;
  z-index: 2;
}
.place-photo-frame {
  width: 88%;
  height: 195px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  transform-origin: top center;
}
.swing-left  .place-photo-frame { animation: swingL 4s ease-in-out infinite alternate; }
.swing-right .place-photo-frame { animation: swingR 4s ease-in-out infinite alternate; animation-delay: 0.6s; }
@keyframes swingL {
  0%   { transform: rotate(-3deg) translateY(0); }
  50%  { transform: rotate(0deg)  translateY(-7px); }
  100% { transform: rotate(3deg)  translateY(0); }
}
@keyframes swingR {
  0%   { transform: rotate(3deg)  translateY(0); }
  50%  { transform: rotate(0deg)  translateY(-7px); }
  100% { transform: rotate(-3deg) translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .swing-left  .place-photo-frame,
  .swing-right .place-photo-frame { animation: none; }
}
.place-photo {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.place-card--visual:hover .place-photo { transform: scale(1.07); }

/* Card info */
.place-info {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
/* number badge — override original absolute positioning */
.place-card--visual .place-num {
  position: static !important;
  display: inline-flex !important;
  width: auto !important;
  height: auto !important;
  padding: 3px 12px !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg,#e87730,#f5a623) !important;
  color: #fff !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
  box-shadow: 0 2px 8px rgba(232,119,48,0.3) !important;
  font-family: 'Outfit', sans-serif !important;
  justify-content: center !important;
  align-items: center !important;
  animation: none !important;
}
.place-card--visual .place-name {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #1a3c5e !important;
  margin: 0 0 8px !important;
  line-height: 1.3 !important;
}
.place-card--visual .place-desc {
  font-size: 0.875rem !important;
  color: #555 !important;
  line-height: 1.65 !important;
  flex: 1 !important;
  margin-bottom: 14px !important;
}
.place-enquire {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.place-enquire:hover { background: #1da851; transform: translateY(-1px); }

/* ────────────────────────────────────────────
   4. PACKAGE PRICES & DUAL CTA
──────────────────────────────────────────── */
.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.pkg-price-original {
  font-size: 0.83rem;
  color: #aaa;
  text-decoration: line-through;
  font-weight: 400;
}
.pkg-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pkg-btn-wa {
  background: #25D366 !important;
  color: #fff !important;
  border: none !important;
  text-align: center;
  padding: 10px 14px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  text-decoration: none !important;
  display: block !important;
  transition: background 0.2s, transform 0.15s !important;
}
.pkg-btn-wa:hover { background: #1da851 !important; transform: translateY(-1px) !important; }
.pkg-btn-call {
  background: transparent !important;
  color: #1a3c5e !important;
  border: 1.5px solid #1a3c5e !important;
  text-align: center;
  padding: 9px 14px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  text-decoration: none !important;
  display: block !important;
  transition: all 0.2s !important;
}
.pkg-btn-call:hover { background: #1a3c5e !important; color: #fff !important; }
.pkg-footer { display: flex; flex-direction: column; gap: 14px; margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.07); }

/* ────────────────────────────────────────────
   5. WHATSAPP CTA IN COUNTRY / PACKAGE PAGES
──────────────────────────────────────────── */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff !important;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none !important;
  box-shadow: 0 3px 14px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(37,211,102,0.5); }
.country-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
@media (max-width: 600px) {
  .country-cta-btns { flex-direction: column; }
  .country-cta-btns .btn-primary,
  .country-cta-btns .btn-whatsapp { width: 100%; justify-content: center; text-align: center; }
  .places-grid--float { grid-template-columns: 1fr; gap: 52px; }
}

