/* ==============================================
   DESI TRAVELLERS UK — v2 Design System
   Matching screenshot: Travello-style 2026
   ============================================== */

/* ---- Google Fonts note: imported via layout.php ---- */

:root {
  /* Core Palette */
  --green-dark:    #1A4A44;
  --green-mid:     #1E6B64;
  --green-light:   #2D9E99;
  --amber:         #F5A623;
  --amber-dark:    #D4891A;
  --amber-light:   #FDD98A;
  --white:         #FFFFFF;
  --off-white:     #F8FAFA;
  --cream:         #FFFBF0;
  --dark:          #112220;
  --text-dark:     #1A2E2C;
  --text-mid:      #4A6664;
  --text-light:    #8AACAA;
  --border:        #E0EEEC;

  --bg:            #F8FAFA;   /* alias for off-white */

  /* Aliases used in templates */
  --accent:        #F5A623;   /* alias for --amber */
  --accent-dark:   #D4891A;   /* alias for --amber-dark */
  --primary:       #1E6B64;   /* alias for --green-mid */
  --primary-dark:  #1A4A44;   /* alias for --green-dark */
  --secondary:     #1A4A44;   /* alias for --green-dark */
  --gray:          #4A6664;   /* alias for --text-mid */
  --font-display:  'Space Grotesk', sans-serif;  /* alias for --font-heading */

  /* Gradients */
  --grad-green:  linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  --grad-amber:  linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  --grad-hero:   linear-gradient(135deg, var(--green-dark) 0%, #1E5C56 60%, rgba(30,92,86,0.7) 100%);

  /* Shadows */
  --sh-sm:  0 2px 8px rgba(26,74,68,.08);
  --sh-md:  0 4px 24px rgba(26,74,68,.12);
  --sh-lg:  0 8px 48px rgba(26,74,68,.16);
  --sh-xl:  0 16px 64px rgba(26,74,68,.20);
  --sh-amb: 0 8px 32px rgba(245,166,35,.35);

  /* Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 100px;

  /* Typography */
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;

  /* Transitions */
  --t-fast: .2s ease;
  --t-base: .35s cubic-bezier(.4,0,.2,1);
  --t-slow: .55s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none !important; color: inherit; transition: color var(--t-fast); }

/* ---- Utilities ---- */
.sec-pad   { padding: 90px 0; }
.sec-pad-sm{ padding: 60px 0; }
.bg-green  { background: var(--green-dark); }
.bg-cream  { background: var(--cream); }
.bg-offwhite{ background: var(--off-white); }

.sec-subtitle {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.sec-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.sec-title .it { color: var(--amber); font-style: italic; }
.sec-title .gr { color: var(--green-light); }
.sec-desc { font-size: 1rem; color: var(--text-mid); max-width: 560px; }

/* Text gradient */
.text-grad {
  background: var(--grad-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: var(--green-dark);
  color: var(--white);
  border: none; border-radius: var(--r-full);
  font-family: var(--font-body); font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: all var(--t-base);
  box-shadow: 0 4px 18px rgba(26,74,68,.3);
}
.btn-green:hover { background: var(--green-mid); color: var(--white); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(26,74,68,.4); }

.btn-amber {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: var(--grad-amber);
  color: var(--dark);
  border: none; border-radius: var(--r-full);
  font-family: var(--font-body); font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: all var(--t-base);
  box-shadow: var(--sh-amb);
}
.btn-amber:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(245,166,35,.55); color: var(--dark); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: var(--white);
  color: var(--green-dark);
  border: none; border-radius: var(--r-full);
  font-family: var(--font-body); font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: all var(--t-base);
  box-shadow: var(--sh-md);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); color: var(--green-dark); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 28px;
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
  border-radius: var(--r-full);
  font-family: var(--font-body); font-size: .92rem; font-weight: 700;
  cursor: pointer; transition: all var(--t-base);
}
.btn-outline:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 28px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  border-radius: var(--r-full);
  font-family: var(--font-body); font-size: .92rem; font-weight: 700;
  cursor: pointer; transition: all var(--t-base);
}
.btn-outline-white:hover { background: var(--white); color: var(--green-dark); }

.btn-sm { padding: 9px 22px; font-size: .88rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ---- Page Loader ---- */
.page-loader {
  position: fixed; inset: 0;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity .6s ease, visibility .6s ease;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-spinner {
  width: 44px; height: 44px;
  border: 3px solid rgba(255,255,255,.15);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ====================================================
   NAVBAR
==================================================== */
.navbar-dt {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}
.navbar-dt.scrolled {
  background: rgba(15,42,39,.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom-color: rgba(255,255,255,.10);
  box-shadow: 0 4px 28px rgba(0,0,0,.22);
}
.navbar-dt .container { height: 72px; display: flex; align-items: center; gap: 16px; }
.navbar-dt .navbar-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { width: 42px; height: 42px; object-fit: cover;}
.brand-text { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.brand-text span { color: var(--amber); }
.navbar-toggler { border: 1.5px solid rgba(255,255,255,.35); padding: 6px 10px; border-radius: var(--r-sm); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
.nav-link {
  color: rgba(255,255,255,.82) !important;
  font-size: .92rem; font-weight: 600;
  padding: 6px 14px !important;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
}
.nav-link:hover, .nav-link.active { color: var(--white) !important; background: rgba(255,255,255,.10); }
.nav-cta {
  background: var(--amber) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  box-shadow: 0 4px 14px rgba(245,166,35,.35);
}
.nav-cta:hover { background: var(--amber-dark) !important; color: var(--white) !important; transform: translateY(-1px); }

@media (max-width: 991px) {
  #navMenu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(26,74,68,.98);
    backdrop-filter: blur(20px);
    border-radius: 0;
    padding: 20px 0;
    margin-top: 0;
    border: 1px solid rgba(255,255,255,.08);
    border-top: 1px solid rgba(255,255,255,.10);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    z-index: 999;
  }
  .navbar-nav {
    flex-direction: column !important;
    gap: 0 !important;
  }
  .nav-item {
    padding: 0;
  }
  #navMenu .nav-link {
    padding: 14px 20px !important;
    border-radius: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  #navMenu .nav-link:hover, #navMenu .nav-link.active {
    background: rgba(255,255,255,.08) !important;
  }
  /* Keep booking tabs nav-link rounded on all screen sizes */
  #bookingTabs .nav-link {
    border-radius: var(--r-full) !important;
    padding: 8px 20px !important;
    border-bottom: none !important;
    margin: 0 !important;
  }
  .nav-cta {
    background: var(--amber) !important;
    margin: 12px 20px 0 20px !important;
    border-radius: var(--r-md) !important;
    padding: 12px 20px !important;
  }
  .bookingFormHeaderBtn {
    margin-bottom: 40px !important;
  }
}

/* ====================================================
   HERO SECTION
==================================================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Split-panel variant (when .hero-left + .hero-right children present) */
.hero-section:has(.hero-left) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-direction: unset;
}

/* Left panel — dark green */
.hero-left {
  background: var(--green-dark);
  display: flex; align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  z-index: 2;
}

/* Right panel — amber + image */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right-bg {
  position: absolute; inset: 0;
  background: var(--amber);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-right-img {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  z-index: 1;
}
.hero-right-img img {
  height: 90%; width: auto;
  object-fit: contain;
  object-position: bottom;
  max-width: 100%;
}

/* Hero discount badge */
.hero-disc-badge {
  position: absolute;
  top: 140px; right: 20px;
  z-index: 2;
  width: 96px; height: 96px;
  background: var(--white);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; line-height: 1.1;
  box-shadow: var(--sh-lg);
  animation: badgePulse 3s ease-in-out infinite;
}
.hero-disc-badge .pct  { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900; color: var(--green-dark); line-height: 1; }
.hero-disc-badge .lbl  { font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-mid); }
@keyframes badgePulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.06);} }

/* Hero particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-particle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.4);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0) scale(1); opacity: .6; }
  100% { transform: translateY(-60vh) scale(.3); opacity: 0; }
}

/* Hero content */
.hero-content { position: relative; z-index: 2; }
.hero-discover {
  font-size: .95rem; font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: 1px; display: block; margin-bottom: 6px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero-title .it {
  font-style: italic;
  color: var(--amber);
}
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  max-width: 400px;
  margin-bottom: 30px;
  line-height: 1.75;
}

/* Hero search bar */
.hero-search {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-xl);
  padding: 8px 8px 8px 20px;
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap;
  margin-top: 28px;
  max-width: 520px;
}
.hs-field {
  flex: 1 1 110px;
  display: flex; align-items: center; gap: 7px;
  padding: 6px 10px;
}
.hs-field i { color: rgba(255,255,255,.6); font-size: .85rem; flex-shrink: 0; }
.hs-input {
  background: transparent; border: none; outline: none;
  color: var(--white); font-size: .88rem;
  font-family: var(--font-body); font-weight: 500;
  width: 100%; min-width: 60px;
}
.hs-input::placeholder { color: rgba(255,255,255,.55); }
.hs-sep { width: 1px; height: 24px; background: rgba(255,255,255,.22); flex-shrink: 0; }
.hs-btn {
  background: var(--amber);
  color: var(--dark);
  border: none; border-radius: var(--r-lg);
  padding: 12px 22px;
  font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: all var(--t-base);
  flex-shrink: 0; font-family: var(--font-body);
}
.hs-btn:hover { background: var(--amber-dark); transform: scale(1.04); }

/* Hero stats */
.hero-stats { display: flex; gap: 32px; margin-top: 30px; flex-wrap: wrap; }
.hero-stat .n { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat .l { font-size: .78rem; color: rgba(255,255,255,.62); margin-top: 2px; }
.hs-divider { width: 1px; background: rgba(255,255,255,.2); align-self: stretch; }

/* Float cards */
.hero-float {
  position: absolute;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  color: var(--white); min-width: 190px;
  z-index: 3;
}
.hero-float.f1 { bottom: 50px; left: 20px; animation: floatCard 3s ease-in-out infinite; }
.hero-float.f2 { top: 120px; right: 30px; animation: floatCard 3s ease-in-out infinite .8s; }
@keyframes floatCard { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-7px);} }
.hf-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.hf-success { background: rgba(34,197,94,.2); color: #4ade80; }
.hf-primary { background: rgba(45,158,153,.2); color: #7EDBD6; }
.hf-title { font-weight: 700; font-size: .88rem; color: var(--white); }
.hf-sub   { font-size: .76rem; color: rgba(255,255,255,.68); }

/* ---- TORN PAPER DIVIDERS ---- */
.torn-white-top {
  display: block; width: 100%; overflow: hidden; line-height: 0;
  background: var(--white);
}
.torn-white-top svg { display: block; width: 100%; }

.torn-down {
  display: block; width: 100%; overflow: hidden; line-height: 0;
}
.torn-down svg { display: block; width: 100%; }

/* ====================================================
   EASY STEPS SECTION
==================================================== */
.steps-section { background: var(--white); padding: 80px 0 60px; }
.steps-section .sec-title { text-align: center; }
.steps-section .sec-desc  { text-align: center; margin: 0 auto; }

.step-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  transition: all var(--t-base);
  position: relative;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.step-num {
  width: 50px; height: 50px;
  background: var(--grad-green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(26,74,68,.32);
}
.step-icon {
  width: 64px; height: 64px;
  background: var(--off-white);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--green-mid);
  margin: 0 auto 14px;
  transition: all var(--t-base);
}
.step-card:hover .step-icon { background: rgba(26,74,68,.08); transform: rotate(-8deg) scale(1.08); }
.step-card h5 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.step-card p  { font-size: .88rem; color: var(--text-mid); }

/* CTA Strip */
.cta-strip {
  background: var(--grad-amber);
  border-radius: var(--r-xl);
  padding: 22px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--sh-amb);
  position: relative; overflow: hidden;
  margin-top: 32px;
}
.cta-strip::after { content:''; position:absolute; top:-40px; right:-40px; width:160px; height:160px; border-radius:50%; background:rgba(255,255,255,.1); pointer-events:none; }
.cta-strip .big { font-family: var(--font-heading); font-size: 3.4rem; font-weight: 900; color: var(--dark); line-height: 1; }
.cta-strip .big sup { font-size: 1.4rem; vertical-align: super; }
.cta-strip .tag { font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(13,33,30,.6); }
.cta-strip h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.cta-strip p  { font-size: .9rem; color: rgba(13,33,30,.7); margin: 0; }

/* ====================================================
   TOURS SECTION
==================================================== */
.tours-section { background: var(--off-white); }

/* Tour Card */
.tour-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  transition: all var(--t-base);
  height: 100%; display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); border-color: rgba(26,74,68,.15); }

.tour-card-image { position: relative; overflow: hidden; height: 220px; flex-shrink: 0; }
.tour-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.tour-card:hover .tour-card-image img { transform: scale(1.08); }
.tour-card-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(26,74,68,.5), transparent);
}

.tour-card-badge {
  position: absolute; top: 14px; left: 14px; z-index: 10;
  padding: 4px 14px; border-radius: var(--r-full);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.badge-upcoming { background: rgba(245,166,35,.92); color: var(--dark); }
.badge-few-left { background: rgba(245,166,35,.88); color: var(--dark); }
.badge-sold-out { background: rgba(220,38,38,.88); color: var(--white); }

.tour-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.tour-card-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.3; }
.tour-card-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.tour-card-meta-item { display: flex; align-items: center; gap: 5px; font-size: .8rem; color: var(--text-mid); font-weight: 500; }
.tour-card-meta-item i { color: var(--green-light); }
.tour-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto; }
.tour-card-price { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--green-dark); }
.tour-card-price .price-label { font-size: .72rem; font-weight: 500; color: var(--text-mid); display: block; }
.tour-card-price .price-old   { font-size: .88rem; color: var(--text-light); text-decoration: line-through; margin-right: 4px; }
.tour-card-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px;
  background: var(--grad-green);
  color: var(--white); border-radius: var(--r-full);
  font-size: .84rem; font-weight: 700; transition: all var(--t-base);
  box-shadow: 0 4px 14px rgba(26,74,68,.28);
}
.tour-card-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(26,74,68,.42); color: var(--white); }

/* ====================================================
   TRENDING DESTINATION
==================================================== */
.trending-section { background: var(--white); padding: 90px 0; }

.trending-feat-list { list-style: none; padding: 0; margin: 0; }
.trending-feat-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-weight: 600; color: var(--text-dark); font-size: .92rem;
}
.trending-feat-list li:last-child { border-bottom: none; }
.tfl-icon {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: rgba(26,74,68,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-mid); font-size: .95rem; flex-shrink: 0;
}
.tfl-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; flex-shrink: 0;
}

.tag-cloud { display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0; }
.tag-pill {
  padding: 6px 16px; border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  background: var(--white); font-size: .8rem; font-weight: 600;
  color: var(--text-mid); cursor: pointer; transition: all var(--t-fast);
}
.tag-pill:hover, .tag-pill.active { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }

.trending-hero-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  position: relative;
}
.trending-hero-img img { width: 100%; height: 500px; object-fit: cover; }

.dest-card {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; cursor: pointer; box-shadow: var(--sh-md);
  transition: all var(--t-base);
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.dest-card:hover img { transform: scale(1.08); }
.dest-card:hover { box-shadow: var(--sh-xl); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,74,68,.75) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
}
.dest-overlay h5 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--white); margin: 0 0 3px; }
.dest-overlay span { font-size: .78rem; color: rgba(255,255,255,.75); }

.slider-dots { display: flex; gap: 8px; margin-top: 18px; }
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer; transition: all var(--t-fast);
}
.slider-dot.active { background: var(--amber); width: 26px; border-radius: var(--r-full); }

/* ====================================================
   PRICING SECTION
==================================================== */
.pricing-section {
  position: relative; overflow: hidden;
  padding: 100px 0;
  background-color: var(--green-dark);
}
.pricing-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80');
  background-size: cover; background-position: center;
}
.pricing-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,28,26,.82) 0%, rgba(10,28,26,.72) 100%);
}
.pricing-section > .container { position: relative; z-index: 1; }
.pricing-section .sec-title,
.pricing-section .sec-desc { color: var(--white); }
.pricing-section .sec-subtitle { color: rgba(255,255,255,.65); }

.price-card {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  text-align: left;
  transition: all var(--t-slow);
  position: relative; height: 100%; display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-12px); box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.price-card--pop {
  background: rgba(255,255,255,.98);
  border: 2px solid var(--amber);
  transform: scale(1.04);
}
.price-card--pop:hover { transform: scale(1.04) translateY(-12px); }
.price-card--pop::before {
  content: 'Most Popular';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--dark);
  font-size: .72rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 18px; border-radius: var(--r-full); white-space: nowrap;
}

.price-card-title { font-size: .82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-mid); margin-bottom: 8px; }
.price-card-amount { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 900; color: var(--text-dark); line-height: 1; margin-bottom: 4px; }
.price-card-amount sup { font-size: 1.4rem; vertical-align: super; }
.price-card-period { font-size: .8rem; color: var(--text-mid); margin-bottom: 20px; }
.price-card-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.price-card-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.price-card-features li { display: flex; align-items: center; gap: 9px; padding: 7px 0; font-size: .88rem; color: var(--text-mid); border-bottom: 1px solid rgba(0,0,0,.04); }
.price-card-features li:last-child { border-bottom: none; }
.price-card-features li i.ok  { color: var(--green-mid); font-size: .8rem; flex-shrink: 0; }
.price-card-features li i.no  { color: var(--text-light); font-size: .8rem; flex-shrink: 0; }
.price-card-features li.na    { opacity: .5; }

/* ====================================================
   RECOMMEND SECTION
==================================================== */
.recommend-section { background: var(--white); padding: 90px 0; }

.rec-images { position: relative; height: 420px; }
.rec-img-main {
  position: absolute; width: 270px; height: 310px;
  border-radius: var(--r-xl); overflow: hidden;
  bottom: 0; left: 0; box-shadow: var(--sh-xl);
}
.rec-img-sec {
  position: absolute; width: 200px; height: 240px;
  border-radius: var(--r-xl); overflow: hidden;
  top: 0; right: 20px; box-shadow: var(--sh-lg);
}
.rec-img-main img, .rec-img-sec img { width: 100%; height: 100%; object-fit: cover; display: block; }
.years-badge {
  position: absolute; right: 0; bottom: 30px;
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--grad-amber);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; line-height: 1.1;
  box-shadow: var(--sh-amb);
}
.years-badge .yn  { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 900; color: var(--dark); }
.years-badge .yl  { font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(13,33,30,.72); }

.rec-feature { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.rec-feature:last-child { border-bottom: none; }
.rec-feat-icon { width: 44px; height: 44px; border-radius: var(--r-md); background: rgba(26,74,68,.08); display: flex; align-items: center; justify-content: center; color: var(--green-mid); font-size: 1.05rem; flex-shrink: 0; }
.rec-feature h6 { font-weight: 700; color: var(--text-dark); margin-bottom: 3px; font-size: .92rem; }
.rec-feature p  { font-size: .84rem; color: var(--text-mid); margin: 0; }

.stars-row { color: var(--amber); font-size: .92rem; }
.rating-info { font-size: .8rem; color: var(--text-mid); margin-left: 6px; }

/* ====================================================
   BOOK STEPS SECTION
==================================================== */
.booksteps-section { background: var(--cream); padding: 90px 0; overflow: hidden; }

.bk-step { display: flex; align-items: flex-start; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.bk-step:last-child { border-bottom: none; }
.bk-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-green); color: var(--white);
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 14px rgba(26,74,68,.32);
}
.bk-step h5 { font-weight: 700; color: var(--text-dark); margin-bottom: 4px; font-size: .95rem; }
.bk-step p  { font-size: .84rem; color: var(--text-mid); margin: 0; }

.off-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 20px; background: var(--amber); border-radius: var(--r-full);
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; color: var(--dark);
  box-shadow: var(--sh-amb);
}

.summer-img-wrap { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); }
.summer-img-wrap img { width: 100%; height: 500px; object-fit: cover; object-position: top; }
.summer-label {
  position: absolute; bottom: 0; right: 0;
  background: var(--amber);
  color: var(--dark); font-family: var(--font-heading); font-size: 2rem; font-weight: 900;
  padding: 18px 24px; border-radius: var(--r-xl) 0 0 0;
  writing-mode: vertical-rl; text-orientation: mixed;
  transform: rotate(180deg);
}

/* ====================================================
   WHY CHOOSE US
==================================================== */
.why-section {
  background: var(--green-dark);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; top: -120px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(45,158,153,.10); pointer-events: none;
}
.why-heading { font-family: var(--font-heading); font-size: clamp(1.7rem,2.8vw,2.4rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 24px; }
.why-heading .it { color: var(--amber); font-style: italic; }

.why-list { list-style: none; padding: 0; margin: 0; }
.why-list li { display: flex; align-items: center; gap: 12px; padding: 11px 0; color: rgba(255,255,255,.85); font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.08); }
.why-list li:last-child { border-bottom: none; }
.why-list li .ck {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(245,166,35,.18); color: var(--amber);
  display: flex; align-items: center; justify-content: center; font-size: .8rem; flex-shrink: 0;
}

.call-box {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 44px 36px; text-align: center;
}
.call-box .exp { display: inline-block; padding: 6px 18px; background: rgba(245,166,35,.15); border: 1px solid rgba(245,166,35,.3); border-radius: var(--r-full); color: var(--amber); font-size: .8rem; font-weight: 700; margin-bottom: 14px; }
.call-box .call-lbl { font-size: .72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
.call-box .call-big { font-family: var(--font-heading); font-size: clamp(2.5rem,5vw,4rem); font-weight: 900; color: var(--white); letter-spacing: -1px; line-height: 1; margin-bottom: 8px; }
.call-box .call-num { font-size: 1.2rem; font-weight: 700; color: var(--amber); margin-bottom: 20px; }
.call-box .call-num a { color: var(--amber); }

/* ====================================================
   FEATURES SECTION
==================================================== */
.features-section { background: var(--white); }
.feat-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 38px 26px; text-align: center;
  box-shadow: var(--sh-md); border: 1px solid var(--border);
  transition: all var(--t-base); height: 100%;
}
.feat-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: rgba(26,74,68,.15); }
.feat-icon {
  width: 68px; height: 68px; border-radius: var(--r-lg);
  background: rgba(26,74,68,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: var(--green-mid);
  margin: 0 auto 20px; transition: all var(--t-base);
}
.feat-card:hover .feat-icon { background: var(--grad-green); color: var(--white); box-shadow: 0 8px 22px rgba(26,74,68,.32); transform: rotate(-5deg) scale(1.08); }
.feat-card h4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.feat-card p  { font-size: .88rem; color: var(--text-mid); }

/* ====================================================
   TESTIMONIALS
==================================================== */
.testimonials-section { background: var(--off-white); padding: 90px 0; position: relative; overflow: hidden; }
.testimonial-wm {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 900; color: transparent;
  -webkit-text-stroke: 2px rgba(26,74,68,.06);
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: -2px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--r-xl); padding: 32px;
  box-shadow: var(--sh-md); border: 1px solid var(--border);
  transition: all var(--t-base); position: relative; overflow: hidden;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.testi-card::before {
  content: '\201C';
  position: absolute; top: -12px; right: 22px;
  font-size: 7rem; font-family: var(--font-heading);
  color: rgba(26,74,68,.05); line-height: 1; pointer-events: none;
}
.testi-stars { color: var(--amber); font-size: .88rem; margin-bottom: 12px; }
.testi-text  { font-size: .9rem; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(26,74,68,.15); }
.testi-name { font-weight: 700; font-size: .92rem; color: var(--text-dark); }
.testi-role { font-size: .78rem; color: var(--text-mid); }

.testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 30px; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: all var(--t-fast); }
.testi-dot.active { background: var(--green-mid); width: 26px; border-radius: var(--r-full); }

/* ====================================================
   REACH / CONTACT SECTION
==================================================== */
.reach-section { background: var(--white); padding: 90px 0; }
.reach-form-box {
  background: var(--off-white);
  border-radius: var(--r-xl); padding: 40px;
  box-shadow: var(--sh-md);
}
.reach-chat-box {
  background: var(--grad-green);
  border-radius: var(--r-xl); padding: 40px;
  color: var(--white); height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden; box-shadow: var(--sh-xl);
}
.reach-chat-box::before { content:''; position:absolute; top:-70px; right:-70px; width:250px; height:250px; border-radius:50%; background:rgba(255,255,255,.07); }
.chat-bubble {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: var(--r-lg);
  padding: 14px 18px; font-size: .9rem; font-weight: 600;
  color: var(--white); position: relative; z-index: 1; margin-bottom: 20px;
}

/* ====================================================
   BLOG SECTION
==================================================== */
.blog-section { background: var(--off-white); padding: 90px 0; }
.blog-card {
  background: var(--white);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-md); border: 1px solid var(--border);
  transition: all var(--t-base); height: 100%; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); border-color: rgba(26,74,68,.12); }
.blog-img { position: relative; overflow: hidden; height: 200px; flex-shrink: 0; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.blog-card:hover .blog-img img { transform: scale(1.07); }
.blog-date-box {
  position: absolute; top: 14px; left: 14px;
  width: 48px; height: 48px; background: var(--amber);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; line-height: 1;
}
.blog-date-box .d { font-size: 1.2rem; font-weight: 900; color: var(--dark); }
.blog-date-box .m { font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: rgba(13,33,30,.7); }
.blog-cat { position: absolute; bottom: 12px; right: 12px; background: rgba(26,74,68,.85); color: var(--white); font-size: .7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-full); backdrop-filter: blur(8px); }
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.35; transition: color var(--t-fast); }
.blog-card:hover .blog-title { color: var(--green-mid); }
.blog-excerpt { font-size: .84rem; color: var(--text-mid); line-height: 1.65; flex: 1; }
.blog-more { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 700; color: var(--green-mid); margin-top: 12px; transition: gap var(--t-fast); }
.blog-card:hover .blog-more { gap: 10px; }

/* ====================================================
   INSTAGRAM SECTION
==================================================== */
.insta-section { background: var(--white); padding: 80px 0; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.insta-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--r-md); cursor: pointer; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.insta-item:hover img { transform: scale(1.12); }
.insta-item::after { content:''; position: absolute; inset: 0; background: rgba(26,74,68,.55); opacity: 0; transition: opacity var(--t-base); }
.insta-item:hover::after { opacity: 1; }
.insta-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.5); color: var(--white); font-size: 1.4rem; opacity: 0; z-index: 1; transition: all var(--t-base); }
.insta-item:hover .insta-icon { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* ====================================================
   SUBSCRIBE SECTION
==================================================== */
.subscribe-section {
  background: var(--amber);
  padding: 60px 0; position: relative; overflow: hidden;
}
.subscribe-section::before { content:''; position:absolute; top:-80px; right:-80px; width:320px; height:320px; border-radius:50%; background:rgba(255,255,255,.12); pointer-events:none; }
.subscribe-section::after  { content:''; position:absolute; bottom:-60px; left:-60px; width:220px; height:220px; border-radius:50%; background:rgba(255,255,255,.08); pointer-events:none; }
.subscribe-section .container { position: relative; z-index: 1; }
.subscribe-heading { font-family: var(--font-heading); font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.subscribe-sub { font-size: .92rem; color: rgba(13,33,30,.72); }
.sub-form {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--r-full); padding: 6px 6px 6px 22px;
  max-width: 460px; width: 100%;
}
.sub-input { flex: 1; background: transparent; border: none; outline: none; color: var(--dark); font-size: .92rem; font-family: var(--font-body); font-weight: 500; min-width: 0; }
.sub-input::placeholder { color: rgba(13,33,30,.5); }
.sub-btn { width: 42px; height: 42px; border-radius: 50%; background: var(--dark); color: var(--white); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: all var(--t-base); font-size: .95rem; }
.sub-btn:hover { background: var(--green-dark); transform: scale(1.08); }

/* ====================================================
   CTA BANNER (countdown)
==================================================== */
.cta-banner {
  background: var(--grad-green); padding: 80px 0; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.cta-banner::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 25% 50%, rgba(45,158,153,.15), transparent 50%), radial-gradient(circle at 75% 50%, rgba(245,166,35,.08), transparent 50%); pointer-events:none; }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--font-heading); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.72); font-size: 1rem; margin-bottom: 24px; }

.countdown-wrapper { display: flex; justify-content: center; gap: 14px; }
.countdown-item { background: rgba(255,255,255,.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 14px 18px; min-width: 76px; text-align: center; }
.count-number { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 800; color: var(--amber-light); line-height: 1; margin-bottom: 3px; }
.count-label  { font-size: .68rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1.2px; }

/* ====================================================
   FOOTER
==================================================== */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
  border-top: 3px solid var(--amber);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.18); }
.footer-brand span { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.footer-brand span em { color: var(--amber); font-style: normal; }
.footer p { font-size: .88rem; color: rgba(255,255,255,.55); }
.footer h5 { font-family: var(--font-heading); font-weight: 700; color: var(--white); margin-bottom: 18px; font-size: .95rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,.58); font-size: .88rem; display: inline-flex; align-items: center; gap: 6px; transition: all var(--t-fast); }
.footer-links a:hover { color: var(--amber); transform: translateX(4px); }
.footer-links a i { font-size: .72rem; color: var(--green-light); }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: var(--r-md); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); font-size: .95rem; transition: all var(--t-base); }
.footer-social a:hover { background: var(--amber); color: var(--dark); border-color: var(--amber); transform: translateY(-3px); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .86rem; color: rgba(255,255,255,.58); }
.footer-contact-item i { color: var(--amber); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); margin-top: 50px; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.38); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.45); font-size: .82rem; transition: color var(--t-fast); }
.footer-bottom a:hover { color: var(--amber); }
.pay-icons { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pay-icon { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.10); border-radius: 4px; padding: 3px 8px; font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }

/* ====================================================
   FLOATING BUTTONS
==================================================== */
.scroll-top {
  position: fixed; bottom: 110px; right: 22px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-green); color: var(--white);
  border: none; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; z-index: 999;
  box-shadow: 0 4px 18px rgba(26,74,68,.38);
  opacity: 0; visibility: hidden; transition: all var(--t-base);
  transform: translateY(12px);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); animation: pulseSoft 2.5s infinite; }
.scroll-top:hover { transform: translateY(-3px) scale(1.08); }
@keyframes pulseSoft { 0%,100%{box-shadow:0 4px 18px rgba(26,74,68,.38);} 50%{box-shadow:0 4px 30px rgba(26,74,68,.60);} }

.whatsapp-float {
  position: fixed; bottom: 40px; left: 22px;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all var(--t-base);
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12) translateY(-3px); color: var(--white); }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.38);} 50%{box-shadow:0 4px 36px rgba(37,211,102,.65);} }

/* ====================================================
   REVEAL ANIMATIONS
==================================================== */
.reveal       { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.revealed, .reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: none; }
.d1{transition-delay:.08s;} .d2{transition-delay:.16s;} .d3{transition-delay:.24s;} .d4{transition-delay:.32s;} .d5{transition-delay:.40s;}

/* ====================================================
   FORM CONTROLS
==================================================== */
.form-control, .form-select {
  border-radius: var(--r-md); padding: 12px 16px;
  border: 1.5px solid var(--border); font-size: .92rem;
  background: var(--white); color: var(--text-dark);
  transition: all var(--t-fast);
}
.form-control:focus, .form-select:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 4px rgba(26,74,68,.08); outline: none;
}
.form-label { font-weight: 600; font-size: .84rem; color: var(--text-dark); margin-bottom: 5px; }

.coupon-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 10px;
  align-items: stretch;
}
.coupon-control .form-control,
.coupon-control .btn {
  height: 54px;
  border-radius: 14px;
  font-size: .95rem;
}
.coupon-control .form-control {
  padding: 0 18px;
}
.coupon-control .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--green-dark);
  color: var(--green-dark);
  background: var(--white);
  font-weight: 700;
  transition: all var(--t-fast);
}
.coupon-control .btn:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(26,74,68,.16);
}

/* ====================================================
   TOAST
==================================================== */
.dt-toast-container { position: fixed; bottom: 32px; right: 32px; z-index: 99999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.dt-toast { display: flex; align-items: center; gap: 12px; background: var(--white); border-left: 5px solid var(--green-mid); border-radius: var(--r-md); padding: 14px 20px; box-shadow: var(--sh-xl); min-width: 280px; max-width: 380px; pointer-events: auto; opacity: 0; transform: translateX(60px); transition: opacity .35s ease, transform .35s cubic-bezier(.34,1.56,.64,1); }
.dt-toast.dt-toast--show { opacity: 1; transform: translateX(0); }
.dt-toast.dt-toast--hide { opacity: 0; transform: translateX(60px); transition: opacity .3s ease, transform .3s ease; }
.dt-toast__icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(26,74,68,.1); display: flex; align-items: center; justify-content: center; color: var(--green-mid); font-size: 1rem; flex-shrink: 0; }
.dt-toast__title { font-weight: 700; font-size: .9rem; color: var(--text-dark); margin-bottom: 1px; }
.dt-toast__msg   { font-size: .8rem; color: var(--text-mid); margin: 0; }

/* ====================================================
   MISC
==================================================== */
.btn-submitting { position: relative; pointer-events: none; opacity: .82; }
.btn-submitting .btn-submit-text { visibility: hidden; }
.btn-submitting::after { content:""; position: absolute; width: 16px; height: 16px; top: 50%; left: 50%; margin: -8px 0 0 -8px; border: 2px solid rgba(255,255,255,.4); border-top-color: var(--white); border-radius: 50%; animation: spin .7s linear infinite; }
.booking-error { display: block; font-size: .78rem; color: #dc2626; margin-top: 3px; }
.page-main { min-height: 100vh; animation: pageEnter .4s ease both; }
@keyframes pageEnter { from{opacity:0;transform:translateY(14px);} to{opacity:1;transform:translateY(0);} }

/* ====================================================
   PAGE HERO (inner pages)
==================================================== */
.page-hero {
  position: relative; padding: 160px 0 90px;
  text-align: center; color: var(--white); overflow: hidden;
  background-color: var(--green-dark);
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(145deg, rgba(10,28,26,.88) 0%, rgba(26,74,68,.75) 50%, rgba(45,158,153,.30) 100%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(2.2rem,4vw,3.4rem); font-weight: 800; margin-bottom: 12px; letter-spacing: -.5px; }
.page-hero p  { color: rgba(255,255,255,.72); font-size: 1rem; margin-bottom: 16px; }
.page-hero .breadcrumb { background: transparent; --bs-breadcrumb-divider: none; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,.68); }
.page-hero .breadcrumb-item a:hover { color: var(--white); }
.page-hero .breadcrumb-item.active { color: var(--amber); }
.page-hero .breadcrumb-item+.breadcrumb-item::before { content:"\f105"; font-family:"Font Awesome 6 Free"; font-weight:900; font-size:.68rem; color:rgba(255,255,255,.38); float:none; padding-right:.5rem; }

/* ====================================================
   FILTER BUTTONS (tours page)
==================================================== */
.filter-btn { border: 1.5px solid var(--border); background: var(--white); color: var(--text-mid); border-radius: var(--r-full); padding: 9px 20px; font-size: .88rem; font-weight: 700; transition: all var(--t-fast); cursor: pointer; }
.filter-btn:hover, .filter-btn.active { background: var(--grad-green); border-color: var(--green-mid); color: var(--white); box-shadow: 0 6px 18px rgba(26,74,68,.28); }

/* ====================================================
   BOOKING STEPS (booking page)
==================================================== */
.step-indicator { display: inline-flex; align-items: center; gap: 9px; border-radius: var(--r-full); padding: 9px 16px; background: var(--off-white); color: var(--text-mid); font-size: .83rem; font-weight: 700; }
.step-indicator span { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--white); color: var(--text-dark); font-size: .8rem; }
.step-indicator.active { background: rgba(26,74,68,.09); color: var(--green-dark); }
.step-indicator.active span { background: var(--green-dark); color: var(--white); }
#bookingTabs { display: flex !important; flex-wrap: wrap; gap: 12px !important; }
#bookingTabs .nav-item { display: inline-block !important; }
#bookingTabs .nav-link { display: inline-flex !important; align-items: center; justify-content: center; border-radius: 50px; min-height: 46px; padding: 11px 26px; font-weight: 700; font-size: .92rem; border: 2px solid var(--green-dark); color: var(--green-dark) !important; background: transparent; transition: all .3s ease; white-space: nowrap; -webkit-appearance: none; appearance: none; background-clip: padding-box; }
#bookingTabs .nav-link.active, #bookingTabs .nav-link:hover { background: var(--grad-green) !important; color: var(--white) !important; border-color: transparent !important; box-shadow: 0 4px 18px rgba(26,74,68,.32); }

/* ====================================================
   ACCORDION & TOUR GALLERY (tour detail)
==================================================== */
.custom-accordion .accordion-item { border: 1px solid var(--border); border-radius: var(--r-md) !important; overflow: hidden; margin-bottom: 10px; }
.custom-accordion .accordion-button { box-shadow: none !important; font-weight: 600; background: var(--white); color: var(--text-dark); }
.custom-accordion .accordion-button:not(.collapsed) { background: rgba(26,74,68,.05); color: var(--green-dark); }
.custom-accordion .accordion-body { color: var(--text-mid); font-size: .9rem; }
.tour-gallery .swiper-slide { display: none; }
.tour-gallery .swiper-slide.active { display: block; }
.tour-gallery .swiper-button-next, .tour-gallery .swiper-button-prev { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--green-dark); display: flex; align-items: center; justify-content: center; position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; border: none; box-shadow: var(--sh-md); }
.tour-gallery .swiper-button-prev { left: 14px; }
.tour-gallery .swiper-button-next { right: 14px; }
.tour-gallery .swiper-pagination { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); display: flex; gap: 7px; z-index: 2; }
.tour-gallery-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,.48); }
.tour-gallery-dot.active { background: var(--white); }

/* TIMELINE */
.timeline { position: relative; display: grid; gap: 38px; }
.timeline::before { content:""; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-left: 50px; display: grid; gap: 10px; }
.timeline-item::before { content:""; position: absolute; left: 13px; top: 16px; width: 14px; height: 14px; border-radius: 50%; background: var(--green-mid); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--green-mid); z-index: 1; }
.timeline-marker { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 16px; border-radius: var(--r-full); background: rgba(26,74,68,.09); color: var(--green-dark); font-weight: 800; width: fit-content; position: relative; z-index: 1; }
.timeline-content { padding: 26px; border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--border); box-shadow: var(--sh-sm); }
.timeline-image { display: none; }
@media (min-width: 768px) {
  .timeline::before { left: 24px; }
  .timeline-item { padding-left: 58px; }
  .timeline-item::before { left: 17px; top: 20px; }
  .timeline-row { display: flex; gap: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--border); height: 120px; }
  .timeline-content { border-radius: 0; border: none; box-shadow: none; display: flex; flex-direction: column; justify-content: center; flex: 0 0 80%; padding: 26px; }
  .timeline-image { display: block; overflow: hidden; flex-shrink: 0; flex: 0 0 20%; }
  .timeline-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
  .timeline-row:hover .timeline-image img { transform: scale(1.06); }
  .timeline-item--reverse .timeline-row { flex-direction: row-reverse; }
}

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width:1199px) {
  .hero-left { padding: 120px 40px 70px; }
  .hero-title { font-size: clamp(2.4rem,5vw,4rem); }
}

@media (max-width:991px) {
  .sec-pad { padding: 70px 0; }
  .hero-section:has(.hero-left) { grid-template-columns: 1fr; min-height: auto; }
  .hero-section { min-height: auto; }
  .hero-left { padding: 110px 24px 60px; }
  .hero-right { height: 340px; }
  .hero-disc-badge { top: 16px; }
  .hero-float { display: none; }
  .booking-sidebar, [style*="position:sticky"] { position: static !important; }
  .step-indicator { font-size: .73rem; padding: 7px 11px; gap: 5px; }
  .step-indicator span { width: 20px; height: 20px; font-size: .72rem; }
  .page-hero { padding: 130px 0 70px; }
}

@media (max-width:767px) {
  .sec-pad { padding: 60px 0; }
  .hero-title { font-size: clamp(2rem,7vw,2.8rem); }
  .hero-subtitle { font-size: .92rem; }
  .hero-search { flex-direction: column; gap: 8px; border-radius: var(--r-xl); padding: 14px; max-width: 100%; }
  .hs-sep { display: none; }
  .hs-field { width: 100%; padding: 4px 0; }
  .hs-btn { width: 100%; border-radius: var(--r-lg); text-align: center; justify-content: center; }
  .hero-right { height: 280px; }
  .hero-stats { gap: 18px; text-align: center; }
  .cta-strip { flex-direction: column; text-align: center; }
  .insta-grid { grid-template-columns: repeat(3,1fr); gap: 4px; }
  .sub-form { flex-direction: column; border-radius: var(--r-xl); padding: 14px; gap: 10px; max-width: 100%; }
  .sub-input { width: 100%; }
  .sub-btn { width: 100%; border-radius: var(--r-lg); height: 44px; }
  .rec-images { height: 280px; }
  .rec-img-main { width: 180px; height: 220px; }
  .rec-img-sec  { width: 145px; height: 175px; }
  .summer-img-wrap img { height: 320px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-social { justify-content: flex-start; }
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 2rem; }
  .countdown-wrapper { gap: 8px; }
  .countdown-item { padding: 10px 12px; min-width: 62px; }
  .count-number { font-size: 1.5rem; }
  .testi-card { padding: 24px 18px; }
  .testimonial-wm { display: none; }
  .bookingFormHeaderBtn { margin-bottom: 20px !important; padding-bottom: 8px; overflow: visible !important; }
  #bookingTabs { row-gap: 10px !important; overflow: visible !important; align-items: stretch; }
  #bookingTabs .nav-item { overflow: visible !important; display: flex; align-items: stretch; }
  #bookingTabs .nav-link { line-height: 1.2; min-height: 46px; overflow: visible !important; transform: translateZ(0); }
  /* Keep step indicators horizontal on mobile */
  #bookingForm>.d-flex.justify-content-center>.d-flex { flex-direction:row; align-items:center; flex-wrap:wrap; gap:8px !important; justify-content:center; }
  #bookingForm>.d-flex.justify-content-center>.d-flex>div[style*="width:40px"] { width:30px !important; height:2px !important; margin:0 2px; }
  /* Booking buttons — stay rounded on mobile */
  .btn-primary-custom, .btn-outline-light-bg, .btn-lg-custom { width: 100%; text-align: center; justify-content: center; border-radius: var(--r-full) !important; }
  #bookingForm .d-flex.justify-content-between { flex-direction: column; gap: 12px; }
  #bookingForm .d-flex.justify-content-between .btn-primary-custom,
  #bookingForm .d-flex.justify-content-between .btn-outline-light-bg { width: 100%; }
}

@media (max-width:575px) {
  .hero-title { font-size: 1.8rem; }
  .hero-stats { gap: 14px; }
  .hero-stat .n { font-size: 1.5rem; }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
  .page-hero { padding: 100px 0 50px; }
  .page-hero h1 { font-size: 1.7rem; }
  .dt-toast-container { bottom: 78px; right: 10px; left: 10px; }
  .dt-toast { max-width: 100%; }
  .brand-text { font-size: .95rem; }
  .brand-logo { width: 36px; height: 36px; }
  .countdown-item { padding: 9px 10px; min-width: 56px; }
  .count-number { font-size: 1.3rem; }
  .bookingFormHeaderBtn { margin-bottom: 18px !important; padding-bottom: 8px; overflow: visible !important; }
  /* Booking form buttons — maintain rounded style on mobile */
  .btn-primary-custom, .btn-outline-light-bg { width: 100%; justify-content: center; border-radius: var(--r-full) !important; }
  #bookingForm .text-end { text-align: center !important; }
  #bookingForm .mt-4.d-flex { flex-direction: column; gap: 12px; }
}

@media (max-width:380px) {
  .hero-stats { flex-direction: column; align-items: center; gap: 12px; }
  .countdown-wrapper { flex-wrap: wrap; gap: 6px; }
  .countdown-item { min-width: 68px; flex: 1 1 40%; }
  .bookingFormHeaderBtn { margin-bottom: 16px !important; padding-bottom: 6px; overflow: visible !important; }
  /* Extra small screens — further optimize step indicators */
  #bookingForm>.d-flex.justify-content-center>.d-flex { gap:6px !important; }
  .step-indicator { padding: 6px 9px; font-size: .68rem; gap: 4px; }
  .step-indicator span { width: 18px; height: 18px; font-size: .65rem; }
  #bookingForm>.d-flex.justify-content-center>.d-flex>div[style*="width:40px"] { width:20px !important; margin:0 1px; }
  /* Ensure buttons take full width and stay rounded */
  .btn-primary-custom, .btn-outline-light-bg { padding: 12px 20px; font-size: .9rem; }
}

/* ====================================================
   COMPATIBILITY ALIASES
   (maps class names used in PHP templates to CSS styles)
==================================================== */

/* ---- Buttons ---- */
.btn-primary-custom { display:inline-flex;align-items:center;gap:8px;padding:13px 30px;background:var(--green-dark);color:var(--white);border:none;border-radius:var(--r-full);font-family:var(--font-body);font-size:.95rem;font-weight:700;cursor:pointer;transition:all var(--t-base);box-shadow:0 4px 18px rgba(26,74,68,.3); }
.btn-primary-custom:hover { background:var(--green-mid);color:var(--white);transform:translateY(-3px);box-shadow:0 8px 28px rgba(26,74,68,.4); }
.btn-accent-custom  { display:inline-flex;align-items:center;gap:8px;padding:13px 30px;background:var(--grad-amber);color:var(--dark);border:none;border-radius:var(--r-full);font-family:var(--font-body);font-size:.95rem;font-weight:700;cursor:pointer;transition:all var(--t-base);box-shadow:var(--sh-amb); }
.btn-accent-custom:hover  { transform:translateY(-3px);box-shadow:0 10px 36px rgba(245,166,35,.55);color:var(--dark); }
.btn-outline-custom { display:inline-flex;align-items:center;gap:8px;padding:11px 28px;background:transparent;color:var(--white);border:2px solid var(--white);border-radius:var(--r-full);font-family:var(--font-body);font-size:.92rem;font-weight:700;cursor:pointer;transition:all var(--t-base); }
.btn-outline-custom:hover { background:var(--white);color:var(--green-dark);transform:translateY(-2px); }
.btn-outline-light-bg { display:inline-flex;align-items:center;gap:8px;padding:11px 28px;background:var(--white);color:var(--green-dark);border:1.5px solid var(--border);border-radius:var(--r-full);font-family:var(--font-body);font-size:.88rem;font-weight:700;cursor:pointer;transition:all var(--t-base);box-shadow:var(--sh-sm); }
.btn-outline-light-bg:hover { border-color:var(--green-mid);color:var(--green-mid);transform:translateY(-2px); }
.btn-dark-custom  { display:inline-flex;align-items:center;gap:8px;padding:13px 30px;background:var(--dark);color:var(--white);border:none;border-radius:var(--r-full);font-family:var(--font-body);font-size:.92rem;font-weight:700;cursor:pointer;transition:all var(--t-base);box-shadow:0 4px 18px rgba(0,0,0,.3); }
.btn-dark-custom:hover  { background:var(--green-dark);color:var(--white);transform:translateY(-2px); }
.btn-glass-custom { display:inline-flex;align-items:center;gap:8px;padding:12px 26px;background:rgba(255,255,255,.14);color:var(--white);border:1.5px solid rgba(255,255,255,.28);border-radius:var(--r-full);font-family:var(--font-body);font-size:.92rem;font-weight:700;cursor:pointer;transition:all var(--t-base);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px); }
.btn-glass-custom:hover  { background:rgba(255,255,255,.22);color:var(--white);transform:translateY(-2px); }
.btn-lg-custom { padding:16px 36px !important;font-size:1rem !important; }
.btn-sm-custom { padding:9px 22px !important;font-size:.88rem !important; }

/* ---- Section utilities ---- */
.section-padding    { padding:90px 0; }
.section-padding-sm { padding:60px 0; }
.delay-1 { transition-delay:.08s; }
.delay-2 { transition-delay:.16s; }
.delay-3 { transition-delay:.24s; }
.delay-4 { transition-delay:.32s; }
.bg-off-white { background:var(--off-white); }
.text-primary-dt { color:var(--green-mid) !important; }

/* ---- Section header ---- */
.section-header { text-align:center;margin-bottom:50px; }
.section-header .subtitle,.subtitle { display:inline-block;font-size:.8rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--text-mid);margin-bottom:10px; }
.section-header h2,.section-title { font-family:var(--font-heading);font-size:clamp(1.8rem,3vw,2.6rem);font-weight:700;color:var(--text-dark);line-height:1.2;margin-bottom:14px; }
.section-header p { font-size:1rem;color:var(--text-mid);max-width:560px;margin:0 auto; }
.accent-word { color:var(--amber);font-style:italic; }
.text-gradient { background:var(--grad-green);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }

/* ---- Hero stat inner aliases ---- */
.hero-stat .number { font-family:var(--font-heading);font-size:1.8rem;font-weight:800;color:var(--white);line-height:1; }
.hero-stat .label  { font-size:.78rem;color:rgba(255,255,255,.62);margin-top:2px; }
.hero-description  { font-size:1rem;color:rgba(255,255,255,.72);max-width:400px;margin-bottom:30px;line-height:1.75; }
.hero-buttons      { display:flex;gap:14px;flex-wrap:wrap;margin-bottom:28px; }
.highlight         { color:var(--amber);font-style:italic; }

/* ---- Hero section (full-screen overlay variant) ---- */
.hero-bg { position:absolute;inset:0;background-image:url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1920&q=85');background-size:cover;background-position:center; }
.hero-overlay { position:absolute;inset:0;background:linear-gradient(135deg,rgba(26,74,68,.95) 0%,rgba(26,74,68,.88) 55%,rgba(26,74,68,.65) 100%); }
.hero-content-wrap { position:relative;z-index:2;width:100%;padding:120px 0 80px; }
.hero-image-wrapper { position:relative; }
.hero-image-card { border-radius:var(--r-xl);overflow:hidden;box-shadow:var(--sh-xl); }
.hero-image-card img { width:100%;height:480px;object-fit:cover; }
.hero-discount-badge { position:absolute;top:-16px;right:20px;width:88px;height:88px;border-radius:50%;background:var(--white);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;line-height:1.1;box-shadow:var(--sh-lg);animation:badgePulse 3s ease-in-out infinite;z-index:2; }
.hero-discount-badge .disc-pct { font-family:var(--font-heading);font-size:1.5rem;font-weight:900;color:var(--green-dark);line-height:1; }
.hero-discount-badge .disc-label { font-size:.55rem;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--text-mid); }
.hero-float-card { position:absolute;background:rgba(255,255,255,.15);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);border:1px solid rgba(255,255,255,.25);border-radius:var(--r-lg);padding:14px 18px;box-shadow:0 8px 32px rgba(0,0,0,.18);color:var(--white);min-width:190px;z-index:3; }
.hero-float-card.card-1 { bottom:30px;left:-10px;animation:floatCard 3s ease-in-out infinite; }
.hero-float-card.card-2 { top:20px;right:-10px;animation:floatCard 3s ease-in-out infinite .8s; }
.float-icon { width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0; }
.float-icon-success { background:rgba(34,197,94,.2);color:#4ade80; }
.float-icon-primary { background:rgba(45,158,153,.2);color:#7EDBD6; }
.float-title { font-weight:700;font-size:.88rem;color:var(--white); }
.float-sub   { font-size:.76rem;color:rgba(255,255,255,.68); }
.hero-search-bar,.hero-search-bar { background:rgba(255,255,255,.10);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border:1px solid rgba(255,255,255,.18);border-radius:var(--r-xl);padding:8px 8px 8px 20px;display:flex;align-items:center;gap:0;flex-wrap:wrap;margin-top:28px;max-width:520px; }
.search-field-wrap { flex:1 1 110px;display:flex;align-items:center;gap:7px;padding:6px 10px; }
.search-field-wrap i { color:rgba(255,255,255,.6);font-size:.85rem;flex-shrink:0; }
.search-field { background:transparent;border:none;outline:none;color:var(--white);font-size:.88rem;font-family:var(--font-body);font-weight:500;width:100%;min-width:60px; }
.search-field::placeholder { color:rgba(255,255,255,.55); }
.search-divider { width:1px;height:24px;background:rgba(255,255,255,.22);flex-shrink:0; }
.search-btn { background:var(--amber);color:var(--dark);border:none;border-radius:var(--r-lg);padding:12px 22px;font-size:.9rem;font-weight:700;cursor:pointer;transition:all var(--t-base);flex-shrink:0;font-family:var(--font-body);text-decoration:none !important;display:inline-flex;align-items:center;gap:5px; }
.search-btn:hover { background:var(--amber-dark);transform:scale(1.04);color:var(--dark); }
.hero-stat-divider { width:1px;background:rgba(255,255,255,.2);align-self:stretch; }
.badge-custom { display:inline-flex;align-items:center;gap:7px;padding:7px 18px;border-radius:var(--r-full);font-size:.8rem;font-weight:700;letter-spacing:.5px; }
.badge-light { background:rgba(255,255,255,.14);backdrop-filter:blur(8px);color:var(--white);border:1px solid rgba(255,255,255,.25); }

/* ---- Steps section aliases ---- */
.step-number { width:50px;height:50px;background:var(--grad-green);color:var(--white);border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:var(--font-heading);font-size:1.2rem;font-weight:800;margin:0 auto 16px;box-shadow:0 6px 18px rgba(26,74,68,.32); }
.step-icon-wrap { width:64px;height:64px;background:var(--off-white);border-radius:var(--r-md);display:flex;align-items:center;justify-content:center;font-size:1.6rem;color:var(--green-mid);margin:0 auto 14px;transition:all var(--t-base); }
.step-card:hover .step-icon-wrap { background:rgba(26,74,68,.08);transform:rotate(-8deg) scale(1.08); }
.cta-banner-strip { background:var(--grad-amber);border-radius:var(--r-xl);padding:22px 32px;display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;box-shadow:var(--sh-amb);position:relative;overflow:hidden;margin-top:32px; }
.cta-banner-strip::after { content:'';position:absolute;top:-40px;right:-40px;width:160px;height:160px;border-radius:50%;background:rgba(255,255,255,.1);pointer-events:none; }
.cta-banner-strip .disc-num { font-family:var(--font-heading);font-size:3.4rem;font-weight:900;color:var(--dark);line-height:1; }
.cta-banner-strip .disc-tag { font-size:.7rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(13,33,30,.6); }
.cta-banner-strip h3 { font-family:var(--font-heading);font-size:1.5rem;font-weight:700;color:var(--dark); }
.cta-banner-strip p  { font-size:.9rem;color:rgba(13,33,30,.7);margin:0; }

/* ---- Destination card aliases ---- */
.destination-card { position:relative;border-radius:var(--r-lg);overflow:hidden;cursor:pointer;box-shadow:var(--sh-md);transition:all var(--t-base); }
.destination-card img { width:100%;height:100%;object-fit:cover;transition:transform .7s ease; }
.destination-card:hover img { transform:scale(1.08); }
.destination-card:hover { box-shadow:var(--sh-xl); }
.destination-overlay { position:absolute;inset:0;background:linear-gradient(to top,rgba(26,74,68,.75) 0%,transparent 55%);display:flex;flex-direction:column;justify-content:flex-end;padding:16px; }
.destination-overlay h5 { font-family:var(--font-heading);font-size:1rem;font-weight:700;color:var(--white);margin:0 0 3px; }
.destination-overlay span { font-size:.78rem;color:rgba(255,255,255,.75); }

/* ---- Trending section aliases ---- */
.trending-heading { font-family:var(--font-heading);font-size:clamp(1.8rem,3vw,2.6rem);font-weight:700;color:var(--text-dark);line-height:1.2;margin-bottom:16px; }
.trending-feature-list { list-style:none;padding:0;margin:0; }
.trending-feature-list li { display:flex;align-items:center;gap:14px;padding:10px 0;border-bottom:1px solid var(--border);font-weight:600;color:var(--text-dark);font-size:.92rem; }
.trending-feature-list li:last-child { border-bottom:none; }
.trending-feat-icon { width:40px;height:40px;border-radius:var(--r-md);background:rgba(26,74,68,.08);display:flex;align-items:center;justify-content:center;color:var(--green-mid);font-size:.95rem;flex-shrink:0; }
.trending-tags { display:flex;gap:8px;flex-wrap:wrap;margin:20px 0; }
.trending-tag { padding:6px 16px;border-radius:var(--r-full);border:1.5px solid var(--border);background:var(--white);font-size:.8rem;font-weight:600;color:var(--text-mid);cursor:pointer;transition:all var(--t-fast); }
.trending-tag:hover,.trending-tag.active { background:var(--green-dark);border-color:var(--green-dark);color:var(--white); }

/* ---- Pricing card aliases ---- */
.pricing-card { background:rgba(255,255,255,.92);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-radius:var(--r-xl);padding:36px 28px;text-align:left;transition:all var(--t-slow);position:relative;height:100%;display:flex;flex-direction:column; }
.pricing-card:hover { transform:translateY(-12px);box-shadow:0 24px 60px rgba(0,0,0,.3); }
.pricing-card--featured { background:rgba(255,255,255,.98);border:2px solid var(--amber);transform:scale(1.04); }
.pricing-card--featured:hover { transform:scale(1.04) translateY(-12px); }
.pricing-card--featured::before { content:'Most Popular';position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:var(--amber);color:var(--dark);font-size:.72rem;font-weight:800;letter-spacing:1px;text-transform:uppercase;padding:4px 18px;border-radius:var(--r-full);white-space:nowrap; }
.pricing-label  { font-size:.82rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--text-mid);margin-bottom:8px; }
.pricing-price  { font-family:var(--font-heading);font-size:2.8rem;font-weight:900;color:var(--text-dark);line-height:1;margin-bottom:4px; }
.pricing-price sup { font-size:1.4rem;vertical-align:super; }
.pricing-period  { font-size:.8rem;color:var(--text-mid);margin-bottom:20px; }
.pricing-divider { height:1px;background:var(--border);margin-bottom:20px; }
.pricing-features { list-style:none;padding:0;margin:0 0 24px;flex:1; }
.pricing-features li { display:flex;align-items:center;gap:9px;padding:7px 0;font-size:.88rem;color:var(--text-mid);border-bottom:1px solid rgba(0,0,0,.04); }
.pricing-features li:last-child { border-bottom:none; }
.pricing-features li i { font-size:.8rem;flex-shrink:0; }
.pricing-features li .fa-check { color:var(--green-mid); }
.pricing-features li .fa-xmark { color:var(--text-light); }
.pricing-features li.na { opacity:.5; }
.pricing-btn { display:block;width:100%;padding:13px 24px;border-radius:var(--r-full);font-size:.9rem;font-weight:700;text-align:center;cursor:pointer;border:none;transition:all var(--t-base);font-family:var(--font-body); }
.pricing-btn--outline { background:transparent;border:2px solid var(--green-dark);color:var(--green-dark); }
.pricing-btn--outline:hover { background:var(--green-dark);color:var(--white); }
.pricing-btn--solid { background:var(--grad-green);color:var(--white);box-shadow:0 4px 18px rgba(26,74,68,.32); }
.pricing-btn--solid:hover { transform:translateY(-2px);box-shadow:0 8px 28px rgba(26,74,68,.4); }
.pricing-btn--accent { background:var(--grad-amber);color:var(--dark);box-shadow:var(--sh-amb); }
.pricing-btn--accent:hover { transform:translateY(-2px);box-shadow:0 8px 28px rgba(245,166,35,.5); }

/* ---- Recommend section aliases ---- */
.recommend-images { position:relative;height:420px; }
.recommend-img-main { position:absolute;width:270px;height:310px;border-radius:var(--r-xl);overflow:hidden;bottom:0;left:0;box-shadow:var(--sh-xl); }
.recommend-img-secondary { position:absolute;width:200px;height:240px;border-radius:var(--r-xl);overflow:hidden;top:0;right:20px;box-shadow:var(--sh-lg); }
.recommend-img-main img,.recommend-img-secondary img { width:100%;height:100%;object-fit:cover;display:block; }
.years-badge .years-num { font-family:var(--font-heading);font-size:1.8rem;font-weight:900;color:var(--dark); }
.years-badge .years-text { font-size:.52rem;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:rgba(13,33,30,.72); }
.recommend-feature { display:flex;align-items:flex-start;gap:14px;padding:16px 0;border-bottom:1px solid var(--border); }
.recommend-feature:last-child { border-bottom:none; }
.recommend-feature-icon { width:44px;height:44px;border-radius:var(--r-md);background:rgba(26,74,68,.08);display:flex;align-items:center;justify-content:center;color:var(--green-mid);font-size:1.05rem;flex-shrink:0; }
.recommend-feature h6 { font-weight:700;color:var(--text-dark);margin-bottom:3px;font-size:.92rem; }
.recommend-feature p  { font-size:.84rem;color:var(--text-mid);margin:0; }
.star-rating { color:var(--amber);font-size:.92rem; }
.rating-count { font-size:.8rem;color:var(--text-mid);margin-left:4px; }

/* ---- Book steps aliases ---- */
.book-steps-section { background:var(--cream);padding:90px 0;overflow:hidden; }
.book-step-item { display:flex;align-items:flex-start;gap:18px;padding:20px 0;border-bottom:1px solid var(--border); }
.book-step-item:last-child { border-bottom:none; }
.book-step-num { width:46px;height:46px;border-radius:50%;background:var(--grad-green);color:var(--white);font-family:var(--font-heading);font-size:1.05rem;font-weight:800;display:flex;align-items:center;justify-content:center;flex-shrink:0;box-shadow:0 4px 14px rgba(26,74,68,.32); }
.book-step-item h5 { font-weight:700;color:var(--text-dark);margin-bottom:4px;font-size:.95rem; }
.book-step-item p  { font-size:.84rem;color:var(--text-mid);margin:0; }
.book-summer-badge { display:inline-flex;align-items:center;gap:4px;padding:8px 20px;background:var(--amber);border-radius:var(--r-full);font-family:var(--font-heading);font-size:1.5rem;font-weight:900;color:var(--dark);box-shadow:var(--sh-amb); }
.book-image-wrap { position:relative;border-radius:var(--r-xl);overflow:hidden;box-shadow:var(--sh-xl); }
.book-image-wrap img { width:100%;height:500px;object-fit:cover;object-position:top; }
.book-image-overlay { position:absolute;bottom:0;left:0;right:0;background:rgba(26,74,68,.72);color:var(--white);font-size:.9rem;font-weight:600;padding:16px 22px;display:flex;align-items:center;gap:8px; }

/* ---- Why Choose Us aliases ---- */
.why-choose-section { background:var(--green-dark);padding:80px 0;position:relative;overflow:hidden; }
.why-choose-section::before { content:'';position:absolute;top:-120px;left:-100px;width:500px;height:500px;border-radius:50%;background:rgba(45,158,153,.10);pointer-events:none; }
.why-choose-heading { font-family:var(--font-heading);font-size:clamp(1.7rem,2.8vw,2.4rem);font-weight:700;color:var(--white);line-height:1.2;margin-bottom:24px; }
.why-checklist { list-style:none;padding:0;margin:0; }
.why-checklist li { display:flex;align-items:center;gap:12px;padding:11px 0;color:rgba(255,255,255,.85);font-weight:600;border-bottom:1px solid rgba(255,255,255,.08); }
.why-checklist li:last-child { border-bottom:none; }
.why-checklist li .fa-check { width:26px;height:26px;border-radius:50%;background:rgba(245,166,35,.18);color:var(--amber);display:flex;align-items:center;justify-content:center;font-size:.8rem;flex-shrink:0; }
.why-call-box { background:rgba(255,255,255,.07);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border:1px solid rgba(255,255,255,.12);border-radius:var(--r-xl);padding:44px 36px;text-align:center; }
.why-exp-badge { display:inline-block;padding:6px 18px;background:rgba(245,166,35,.15);border:1px solid rgba(245,166,35,.3);border-radius:var(--r-full);color:var(--amber);font-size:.8rem;font-weight:700;margin-bottom:14px; }
.call-label { font-size:.72rem;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:var(--amber);margin-bottom:4px; }
.call-us-text { font-family:var(--font-heading);font-size:clamp(2.5rem,5vw,4rem);font-weight:900;color:var(--white);letter-spacing:-1px;line-height:1;margin-bottom:8px; }
.call-number { font-size:1.2rem;font-weight:700;color:var(--amber);margin-bottom:20px; }
.call-number a { color:var(--amber); }

/* ---- Feature card aliases ---- */
.feature-card { background:var(--white);border-radius:var(--r-xl);padding:38px 26px;text-align:center;box-shadow:var(--sh-md);border:1px solid var(--border);transition:all var(--t-base);height:100%; }
.feature-card:hover { transform:translateY(-8px);box-shadow:var(--sh-lg);border-color:rgba(26,74,68,.15); }
.feature-icon { width:68px;height:68px;border-radius:var(--r-lg);background:rgba(26,74,68,.07);display:flex;align-items:center;justify-content:center;font-size:1.7rem;color:var(--green-mid);margin:0 auto 20px;transition:all var(--t-base); }
.feature-card:hover .feature-icon { background:var(--grad-green);color:var(--white);box-shadow:0 8px 22px rgba(26,74,68,.32);transform:rotate(-5deg) scale(1.08); }
.feature-card h4 { font-family:var(--font-heading);font-size:1.05rem;font-weight:700;color:var(--text-dark);margin-bottom:8px; }
.feature-card p  { font-size:.88rem;color:var(--text-mid); }
.stat-value { font-family:var(--font-heading);font-size:2.2rem;font-weight:900;color:var(--green-dark);line-height:1;margin-bottom:6px; }

/* ---- Testimonial aliases ---- */
.testimonial-watermark { position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-family:var(--font-heading);font-size:clamp(5rem,14vw,11rem);font-weight:900;color:transparent;-webkit-text-stroke:2px rgba(26,74,68,.06);white-space:nowrap;pointer-events:none;user-select:none;letter-spacing:-2px; }
.testimonial-card { background:var(--white);border-radius:var(--r-xl);padding:32px;box-shadow:var(--sh-md);border:1px solid var(--border);transition:all var(--t-base);position:relative;overflow:hidden; }
.testimonial-card:hover { transform:translateY(-5px);box-shadow:var(--sh-lg); }
.testimonial-card::before { content:'\201C';position:absolute;top:-12px;right:22px;font-size:7rem;font-family:var(--font-heading);color:rgba(26,74,68,.05);line-height:1;pointer-events:none; }
.testimonial-stars { color:var(--amber);font-size:.88rem;margin-bottom:12px; }
.testimonial-text  { font-size:.9rem;color:var(--text-mid);line-height:1.75;font-style:italic;margin-bottom:20px; }
.testimonial-author { display:flex;align-items:center;gap:12px; }
.testimonial-avatar { width:48px;height:48px;border-radius:50%;object-fit:cover;border:3px solid rgba(26,74,68,.15); }
.testimonial-name { font-weight:700;font-size:.92rem;color:var(--text-dark); }
.testimonial-role { font-size:.78rem;color:var(--text-mid); }
#testimonialTrack { display: flex; flex-wrap: nowrap; gap: 16px; transition: transform 0.6s ease; }
.testimonial-slide { flex: 0 0 calc(33.333% - 11px); min-width: calc(33.333% - 11px); }
.testimonial-card { height: 100%; display: flex; flex-direction: column; }
.testimonial-text { flex: 1; }
.testimonial-dots { display:flex;gap:8px;justify-content:center;margin-top:30px; }
.testimonial-dot { width:10px;height:10px;border-radius:50%;background:var(--border);border:none;cursor:pointer;transition:all var(--t-fast); }
.testimonial-dot.active { background:var(--green-mid);width:26px;border-radius:var(--r-full); }
@media (max-width: 768px) {
  .testimonial-slide { flex: 0 0 calc(100% - 0px); min-width: 100%; }
}

/* ---- Reach section aliases ---- */
.reach-form-wrap { background:var(--off-white);border-radius:var(--r-xl);padding:40px;box-shadow:var(--sh-md); }
.reach-chat-card { background:var(--grad-green);border-radius:var(--r-xl);padding:40px;color:var(--white);height:100%;display:flex;flex-direction:column;justify-content:space-between;position:relative;overflow:hidden;box-shadow:var(--sh-xl); }
.reach-chat-card::before { content:'';position:absolute;top:-70px;right:-70px;width:250px;height:250px;border-radius:50%;background:rgba(255,255,255,.07); }

/* ---- Blog card aliases ---- */
.blog-card-image { position:relative;overflow:hidden;height:200px;flex-shrink:0; }
.blog-card-image img { width:100%;height:100%;object-fit:cover;transition:transform .7s ease; }
.blog-card:hover .blog-card-image img { transform:scale(1.07); }
.blog-date-badge { position:absolute;top:14px;left:14px;width:48px;height:48px;background:var(--amber);border-radius:var(--r-md);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;line-height:1; }
.blog-date-badge .day  { font-size:1.2rem;font-weight:900;color:var(--dark); }
.blog-date-badge .month{ font-size:.56rem;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:rgba(13,33,30,.7); }
.blog-category { position:absolute;bottom:12px;right:12px;background:rgba(26,74,68,.85);color:var(--white);font-size:.7rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;padding:4px 10px;border-radius:var(--r-full);backdrop-filter:blur(8px); }
.blog-card-body { padding:20px;flex:1;display:flex;flex-direction:column; }
.blog-card-title { font-family:var(--font-heading);font-size:1rem;font-weight:700;color:var(--text-dark);margin-bottom:8px;line-height:1.35;transition:color var(--t-fast); }
.blog-card:hover .blog-card-title { color:var(--green-mid); }
.blog-card-excerpt { font-size:.84rem;color:var(--text-mid);line-height:1.65;flex:1; }
.blog-read-more { display:inline-flex;align-items:center;gap:6px;font-size:.82rem;font-weight:700;color:var(--green-mid);margin-top:12px;transition:gap var(--t-fast); }
.blog-card:hover .blog-read-more { gap:10px; }

/* ---- Tour card template adjustments ---- */
.tour-card-link { display:block;height:100%;text-decoration:none !important;color:inherit; }
.tour-card-image .tour-card-price { position:absolute;bottom:14px;right:14px;z-index:1;background:var(--amber);color:var(--dark);font-family:var(--font-heading);font-size:1rem;font-weight:800;padding:4px 12px;border-radius:var(--r-full);box-shadow:0 2px 8px rgba(0,0,0,.18); }
.tour-card-date { font-size:.8rem;color:var(--text-mid);margin-bottom:6px;display:flex;align-items:center;gap:5px; }
.tour-card-location { font-size:.82rem;color:var(--text-mid);margin-bottom:10px;display:flex;align-items:center;gap:5px; }
.tour-card-meta { display:flex;gap:10px;flex-wrap:wrap;padding-top:12px;border-top:1px solid var(--border);margin-top:auto; }
.tour-card-meta span { display:flex;align-items:center;gap:4px;font-size:.78rem;color:var(--text-mid);font-weight:500; }
.tour-card-meta span i { color:var(--green-light);font-size:.75rem; }

/* ---- Footer payment icon aliases ---- */
.payment-icons { display:flex;align-items:center;gap:8px;flex-wrap:wrap; }
.payment-icon  { background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.10);border-radius:4px;padding:3px 8px;font-size:.82rem;color:rgba(255,255,255,.55);font-weight:700;display:inline-flex;align-items:center;gap:4px; }

/* ---- Instagram / subscribe aliases ---- */
.instagram-section { background:var(--white);padding:80px 0; }
.subscribe-subtext { font-size:.92rem;color:rgba(13,33,30,.72); }
.subscribe-form { display:flex;align-items:center;gap:0;background:rgba(255,255,255,.2);backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.4);border-radius:var(--r-full);padding:6px 6px 6px 22px;max-width:460px;width:100%; }
.subscribe-input { flex:1;background:transparent;border:none;outline:none;color:var(--dark);font-size:.92rem;font-family:var(--font-body);font-weight:500;min-width:0; }
.subscribe-input::placeholder { color:rgba(13,33,30,.5); }
.subscribe-btn-icon { width:42px;height:42px;border-radius:50%;background:var(--dark);color:var(--white);border:none;display:flex;align-items:center;justify-content:center;cursor:pointer;flex-shrink:0;transition:all var(--t-base);font-size:.95rem; }
.subscribe-btn-icon:hover { background:var(--green-dark);transform:scale(1.08); }

/* ---- Wave dividers ---- */
.wave-divider { display:block;width:100%;overflow:hidden;line-height:0;margin:0; }
.wave-divider svg { display:block;width:100%;height:60px; }

/* ---- Contact / inner-page utilities ---- */
.card-white-bordered { background:var(--white);border:1px solid var(--border);box-shadow:var(--sh-sm); }
.map-wrapper-300 { border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--sh-md); }
.map-iframe-full { width:100%;display:block;border:0; }
.map-iframe-300 { height:300px; }
.booking-sidebar { } /* handled by responsive override */

/* ---- About / team / values utilities ---- */
.section-title { font-family:var(--font-heading);font-size:clamp(1.8rem,3vw,2.6rem);font-weight:700;color:var(--text-dark);line-height:1.2; }
.story-img { width:100%;border-radius:var(--r-xl);object-fit:cover; }
.card-bordered { border:1px solid var(--border);box-shadow:var(--sh-sm); }
.value-icon { width:60px;height:60px;border-radius:var(--r-lg);background:rgba(26,74,68,.08);display:flex;align-items:center;justify-content:center;font-size:1.5rem;color:var(--green-mid);margin:0 auto 18px;transition:all var(--t-base); }
.team-member-img { width:90px;height:90px;border-radius:50%;object-fit:cover;border:3px solid rgba(26,74,68,.12);margin:0 auto 14px;display:block; }
.tour-not-found-min-h { min-height:60vh;display:flex;flex-direction:column;align-items:center;justify-content:center; }
.not-included-box { background:rgba(220,38,38,.04);border:1px solid rgba(220,38,38,.15);border-radius:var(--r-lg); }
.btn-whatsapp { background:#25D366;color:var(--white);padding:13px 24px;border-radius:var(--r-full);font-size:.95rem;font-weight:700;transition:all var(--t-base);box-shadow:0 4px 16px rgba(37,211,102,.35); }
.btn-whatsapp:hover { background:#1da851;color:var(--white);transform:translateY(-2px);box-shadow:0 8px 24px rgba(37,211,102,.5); }
.countdown-digit-badge { font-family:var(--font-heading);font-size:1.8rem;font-weight:800;color:var(--white);line-height:1;background:var(--green-mid);padding:12px 16px;border-radius:var(--r-md);display:inline-block;min-width:50px;text-align:center;box-shadow:0 4px 12px rgba(26,74,68,.25); }
.itinerary-time-badge { font-size:.72rem;font-weight:700;padding:4px 10px; }
.itinerary-empty-box { text-align:center;padding:40px 20px;color:var(--text-mid);background:var(--off-white);border-radius:var(--r-lg); }

/* ---- Responsive fixes for compat classes ---- */
@media (max-width:991px) {
  .recommend-images { height:300px; }
  .recommend-img-main { width:200px;height:240px; }
  .recommend-img-secondary { width:155px;height:185px; }
  .hero-float-card { display:none; }
  .hero-image-card img { height:340px; }
}
@media (max-width:767px) {
  .hero-search-bar { flex-direction:column;gap:8px;border-radius:var(--r-xl);padding:14px;max-width:100%; }
  .search-divider { display:none; }
  .search-field-wrap { width:100%;padding:4px 0; }
  .search-btn { width:100%;border-radius:var(--r-lg);justify-content:center; }
  .cta-banner-strip { flex-direction:column;text-align:center; }
  .book-image-wrap img { height:320px; }
  .subscribe-form { flex-direction:column;border-radius:var(--r-xl);padding:14px;gap:10px;max-width:100%; }
  .subscribe-input { width:100%; }
  .subscribe-btn-icon { width:100%;border-radius:var(--r-lg);height:44px; }
  .why-call-box { padding:30px 20px; }
  .testimonial-watermark { display:none; }
}

/* ===== OVERRIDES (shimmer removed) ===== */

/* ============================================
   DESI TRAVELLERS UK v2 — Overrides
   Page-specific & component tweaks
   ============================================ */

a { text-decoration: none !important; color: var(--green-mid); }
body.menu-open { overflow: hidden; }
.page-main { min-height: 100vh; }

/* ---- Badge shimmer ---- */
.tour-card-badge {
  position: relative;
  overflow: hidden;
  display: inline-block;
}



/* ---- Section header underline ---- */
.sec-title { position: relative; }

/* ---- Tour detail page ---- */
.tour-detail-hero-bg {
  position: relative;
  min-height: 420px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
}
.tour-sidebar-sticky { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.price-card-dt { background: var(--white); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--border); }
.price-card-header-dt { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%); color: var(--white); padding: 16px 20px; font-weight: 700; font-size: .95rem; }
.price-amount-display { display: block; font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; color: var(--green-mid); line-height: 1; margin: 8px 0; }
.organiser-card-dt { background: var(--white); border-radius: var(--r-xl); padding: 24px; box-shadow: var(--sh-md); border: 1px solid var(--border); text-align: center; }
.organiser-logo { width: 60px; height: 60px; object-fit: cover;}
.btn-whatsapp { background: #25D366; color: var(--white); border-radius: var(--r-full); padding: 11px 24px; font-weight: 700; transition: all var(--t-base); border: none; }
.btn-whatsapp:hover { background: #1fa350; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }

/* Countdown styling */
#tourCountdown { background: linear-gradient(135deg, rgba(26,74,68,.08) 0%, rgba(30,107,100,.05) 100%); border: 1.5px solid rgba(26,74,68,.15); padding: 20px !important; margin-bottom: 20px !important; }
#tourCountdown .text-muted { color: var(--text-dark) !important; letter-spacing: 1px; }
#tourCountdown .d-flex { gap: 8px !important; }
#tourCountdown .text-center { flex: 1; }
#tourCountdown small { display: block; margin-top: 8px; font-weight: 600; color: var(--text-mid); }

/* FAQ Accordion styling */
.faq-accordion .accordion-button { color: var(--text-dark); }
.faq-accordion .accordion-button:not(.collapsed) { background: var(--green-mid); color: var(--white); box-shadow: none; }

.tour-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,28,26,.88) 0%, rgba(10,28,26,.40) 60%, transparent 100%); }
.tour-hero-bottom { position: relative; z-index: 1; padding: 40px 0; }
.tour-back-link { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 600; transition: color .2s ease; }
.tour-back-link:hover { color: var(--amber); }
.tour-hero-badge { display: inline-block; padding: 5px 14px; border-radius: 100px; background: var(--amber); color: var(--dark); font-size: .75rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 12px; }
.tour-detail-title { font-family: var(--font-heading); font-size: clamp(1.8rem,3.5vw,3rem); font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: -.3px; }
.tour-hero-meta { display: flex; flex-wrap: wrap; gap: 20px; }
.tour-hero-meta span { display: flex; align-items: center; gap: 7px; font-size: .9rem; color: rgba(255,255,255,.82); font-weight: 500; }

/* Gallery */
.gallery-carousel-container { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); }
.gallery-carousel-img { height: 420px; object-fit: cover; cursor: zoom-in; border-radius: var(--r-xl); }
.gallery-thumb-custom { height: 70px; width: 110px; object-fit: cover; border-radius: var(--r-md); cursor: pointer; border: 2px solid transparent; transition: border-color .2s ease; flex-shrink: 0; }
.gallery-thumb-custom:hover { border-color: var(--green-mid); }

/* Lightbox */
.lightbox-overlay-fixed { position: fixed; inset: 0; background: rgba(0,0,0,.94); display: flex; align-items: center; justify-content: center; z-index: 10000; }
.lightbox-image { max-width: 92vw; max-height: 85vh; object-fit: contain; border-radius: var(--r-md); }
.lightbox-close-btn { z-index: 1; }
.lightbox-btn-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: var(--white); border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; transition: all .2s ease; }
.lightbox-btn-prev { left: 24px; }
.lightbox-btn-next { right: 24px; }
.lightbox-btn-arrow:hover { background: var(--amber); border-color: var(--amber); color: var(--dark); }
.lightbox-caption { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.65); font-size: .85rem; background: rgba(0,0,0,.5); padding: 6px 18px; border-radius: 100px; backdrop-filter: blur(8px); white-space: nowrap; }

/* Section headings in tour detail */
.section-h2 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.included-box { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r-lg); }

/* ---- Booking form ---- */
.booking-error { display: block; font-size: .78rem; color: #dc2626; margin-top: 3px; }
.btn-submitting { position: relative; pointer-events: none; opacity: .82; }
.btn-submitting .btn-submit-text { visibility: hidden; }
.btn-submitting::after { content:""; position:absolute; width:16px; height:16px; top:50%; left:50%; margin:-8px 0 0 -8px; border:2px solid rgba(255,255,255,.4); border-top-color:var(--white); border-radius:50%; animation:spin .7s linear infinite; }
@keyframes spin { to{transform:rotate(360deg);} }

/* ---- Toast ---- */
@media (max-width:480px) {
  .dt-toast-container { bottom: 78px; right: 10px; left: 10px; }
  .dt-toast { max-width: 100%; }
}

/* ---- Scroll reveal util ---- */
.reveal, .reveal-left, .reveal-right { opacity: 0; }
.reveal { transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-left  { transform: translateX(-28px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-right { transform: translateX(28px);  transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.revealed, .reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: none; }

/* ---- Footer border ---- */
.footer { border-top: 3px solid var(--amber); }

/* ---- Pulse animations ---- */
.scroll-top.visible { animation: pulseSoft 2.5s infinite; }
@keyframes pulseSoft { 0%,100%{box-shadow:0 4px 18px rgba(26,74,68,.38);} 50%{box-shadow:0 4px 30px rgba(26,74,68,.60);} }
.whatsapp-float { animation: waPulse 2.5s ease-in-out infinite; }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.38);} 50%{box-shadow:0 4px 36px rgba(37,211,102,.65);} }

/* ---- Page transition ---- */
.page-main { animation: pageEnter .4s ease both; }
@keyframes pageEnter { from{opacity:0;transform:translateY(14px);} to{opacity:1;transform:translateY(0);} }

/* ---- Responsive tweaks ---- */
@media (max-width:991px) {
  .page-hero { padding: 130px 0 70px; }
  .booking-sidebar, [style*="position:sticky"] { position: static !important; }
  .step-indicator { font-size: .73rem; padding: 7px 11px; gap: 5px; }
  .tour-hero-meta { gap: 12px; }
  .section-h2 { font-size: 1.2rem; }
}
@media (max-width:767px) {
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-carousel-img { height: 240px !important; }
  .gallery-thumb-custom { height: 56px; width: 88px; }

  /* Card improvements for mobile */
  .tour-card { margin: 0; }
  #tourGrid { --bs-gutter-x: 1rem; }

  /* Footer improvements */
  .footer-social { gap: 12px; }
  .footer-social a { font-size: 1.3rem; }
  .footer-contact-item { margin-bottom: 10px; }

  /* Buttons sizing */
  .btn { padding: 10px 16px; font-size: .9rem; }

  /* Typography scaling */
  .sec-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .included-box { padding: 16px; margin-bottom: 12px; }

  /* Forms */
  .form-control, .form-select { font-size: 16px; padding: 10px 12px; }
  .coupon-control { grid-template-columns: 1fr; gap: 8px; }
  .coupon-control .form-control,
  .coupon-control .btn { height: 50px; width: 100%; }
}
@media (max-width:575px) {
  .page-hero h1 { font-size: 1.7rem; }
  .tour-detail-title { font-size: 1.5rem; }

  /* Extra small screen adjustments */
  .sec-pad { padding: 50px 0; }
  .sec-pad-sm { padding: 40px 0; }

  /* Keep top nav stable on very small screens */
  .navbar-dt .container { height: 64px; gap: 10px; }
  .brand-text { font-size: .86rem; line-height: 1.1; white-space: nowrap; max-width: 170px; overflow: hidden; text-overflow: ellipsis; }
  .brand-logo { width: 34px; height: 34px; }
  .navbar-toggler { padding: 4px 8px; }
  #navMenu { top: 64px; max-height: calc(100vh - 64px); }

  /* Hero section */
  .hero-title { font-size: 1.6rem; }
  .hero-subtitle { font-size: .85rem; }

  /* Card images */
  .tour-card img { height: 200px; }

  /* Spacing utilities */
  .gap-lg-1 { gap: 0.2rem !important; }

  /* WhatsApp button */
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.3rem; }

  /* Scroll to top */
  .scroll-top { width: 44px; height: 44px; font-size: 1rem; }

  /* Price display */
  .price-amount-display { font-size: 2rem; }
}
