/* =========================================================
   KODAI SHYAM TRAVELS — STYLE SHEET
   Palette: Deep Pine / Misty Teal / Cloud Mist / Sunset Amber
   Type: Fraunces (display) + Manrope (body) + Space Mono (utility)
========================================================= */

:root{
  --pine:        #16302A;
  --pine-soft:   #1F3F37;
  --teal:        #3E6E63;
  --teal-light:  #6E9C8F;
  --sage:        #AFC8B8;
  --mist:        #F3F1E7;
  --mist-dim:    #E9E5D6;
  --amber:       #E2883E;
  --amber-dark:  #C56B28;
  --ink:         #22261F;
  --ink-soft:    #4B5148;
  --white:       #FFFFFF;

  --font-display: 'Fraunces', serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 50px -25px rgba(22,48,42,0.35);
  --shadow-card: 0 12px 30px -18px rgba(22,48,42,0.28);
  --ease: cubic-bezier(.22,.9,.28,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--mist);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
input, textarea, select{ font-family: inherit; }

.container{
  width: min(1180px, 92%);
  margin-inline: auto;
}

.eyebrow{
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--amber-dark);
  margin: 0 0 0.9rem;
  display:flex;
  align-items:center;
  gap:0.6rem;
}
.eyebrow::before{
  content:'';
  width:22px; height:2px;
  background: var(--amber);
  display:inline-block;
}

.section-title{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin: 0 0 1rem;
  color: var(--pine);
}
.section-lead{
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.6;
}
.section-head{ margin-bottom: 3rem; max-width: 760px; }
.section-head.light .section-title,
.section-head.light .section-lead{ color: var(--mist); }
.section-head.light .eyebrow{ color: var(--amber); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:0.55rem;
  padding: 0.9rem 1.6rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
  will-change: transform;
}
.btn-primary{ background: var(--amber); color: var(--pine); }
.btn-primary:hover{ background: var(--amber-dark); color: var(--white); transform: translateY(-3px); }
.btn-ghost{ background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.5); backdrop-filter: blur(6px); }
.btn-ghost:hover{ background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.btn-outline{ background: transparent; color: var(--pine); border-color: var(--pine); }
.btn-outline:hover{ background: var(--pine); color: var(--mist); transform: translateY(-3px); }
.btn-block{ width:100%; justify-content:center; }

/* =========================================================
   SCROLL PROGRESS BAR
========================================================= */
.scroll-progress{
  position: fixed; top:0; left:0; height:3px; width:0%;
  background: linear-gradient(90deg, var(--amber), var(--sage));
  z-index: 9998;
  transition: width .1s ease-out;
}

/* =========================================================
   DESTINATION MARQUEE
========================================================= */
.marquee-strip{
  background: var(--pine);
  overflow: hidden;
  padding: 1rem 0;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.marquee-track{
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  animation: marqueeScroll 32s linear infinite;
  will-change: transform;
}
.marquee-strip:hover .marquee-track{ animation-play-state: paused; }
.marquee-track span{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--sage);
  letter-spacing: 0.01em;
}
.marquee-track span.dot{
  font-style: normal;
  color: var(--amber);
  font-family: var(--font-body);
}
@keyframes marqueeScroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* =========================================================
   SPLIT TITLE REVEAL (word spans injected by JS)
========================================================= */
.split-title .word{
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.split-title .word span{
  display: inline-block;
  will-change: transform;
}

/* =========================================================
   LIGHTBOX
========================================================= */
.lightbox{
  position: fixed; inset:0; z-index: 9000;
  background: rgba(15,30,26,0.94);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  opacity:0; visibility:hidden;
  transition: opacity .35s ease, visibility .35s ease;
  padding: 2rem;
}
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox img{
  max-width: min(900px, 90vw); max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transform: scale(0.92);
  opacity:0;
}
.lightbox.is-open img{ animation: lightboxIn .45s var(--ease) forwards; }
@keyframes lightboxIn{ to{ transform: scale(1); opacity:1; } }
.lightbox-caption{ color: var(--sage); font-family: var(--font-mono); font-size:0.85rem; margin-top:1.2rem; letter-spacing:0.04em; }
.lightbox-close{
  position:absolute; top:1.8rem; right:2rem;
  background:none; border:none; color: var(--mist);
  font-size:2.2rem; line-height:1; cursor:pointer;
  transition: transform .3s ease, color .3s ease;
}
.lightbox-close:hover{ transform: rotate(90deg); color: var(--amber); }
.gallery-item{ cursor: pointer; }

/* =========================================================
   PRELOADER
========================================================= */
#preloader{
  position: fixed; inset:0; z-index: 9999;
  background: var(--pine);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.is-hidden{ opacity:0; visibility:hidden; pointer-events:none; }
.preloader-mark{ text-align:center; color: var(--mist); }
.preloader-peaks{ width:70px; height:42px; fill: var(--amber); margin-bottom:0.8rem; animation: floaty 1.8s ease-in-out infinite; }
.preloader-mark span{ font-family: var(--font-mono); letter-spacing:0.14em; font-size:0.7rem; padding:0 1rem; display:inline-block; }
@keyframes floaty{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-8px);} }

/* =========================================================
   HEADER
========================================================= */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  padding: 1.3rem 0;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}
.site-header.is-scrolled{
  background: rgba(22,48,42,0.92);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.6);
}
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; }

.brand{ display:flex; align-items:center; gap:0.6rem; color: var(--mist); }
.brand-mark{ color: var(--amber); display:inline-flex; }
.brand-text{ font-family: var(--font-display); font-size:1.25rem; font-weight:600; letter-spacing: -0.01em; }
.brand-text em{ font-style: normal; color: var(--amber); font-weight:500; }

.main-nav{ display:flex; align-items:center; gap:1.5rem; }
.nav-link{
  color: rgba(243,241,231,0.85);
  font-size:0.92rem; font-weight:600;
  position:relative; padding-bottom:4px;
}
.nav-link::after{
  content:''; position:absolute; left:0; bottom:0; height:2px; width:0;
  background: var(--amber); transition: width .3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after{ width:100%; }
.nav-link.active{ color: var(--white); }

.nav-actions{ display:flex; align-items:center; gap:1.2rem; }
.nav-phone{
  display:flex; align-items:center; gap:0.5rem;
  color: var(--mist); font-weight:700; font-size:0.9rem;
  border:1.5px solid rgba(243,241,231,0.35); padding:0.5rem 1rem; border-radius:100px;
  transition: border-color .3s ease, background .3s ease;
}
.nav-phone:hover{ border-color: var(--amber); background: rgba(226,136,62,0.12); }

.hamburger{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px; }
.hamburger span{ width:24px; height:2px; background: var(--mist); border-radius:2px; transition: transform .3s ease, opacity .3s ease; }

/* =========================================================
   HERO
========================================================= */
.hero{
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color: var(--mist);
}
.hero-slides{ position:absolute; inset:0; }
.hero-slide{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  opacity:0;
  transform: scale(1.12);
  transition: opacity 1.6s ease;
}
.hero-slide.is-active{ opacity:1; }
.hero-scrim{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(15,30,26,0.75) 0%, rgba(15,30,26,0.45) 45%, rgba(15,30,26,0.85) 100%);
  z-index:1;
}
.hero-content{ position:relative; z-index:2; padding-top: 3rem; }
.hero-eyebrow{ color: var(--sage); }
.hero-eyebrow::before{ background: var(--sage); }
.hero-title{
  font-family: var(--font-display);
  font-weight:600;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.08;
  margin: 0 0 1.4rem;
  max-width: 900px;
}
.hero-title .line{ display:block; overflow:hidden; }
.hero-title em{ font-style: italic; color: var(--amber); font-weight:500; }
.hero-sub{ max-width:520px; font-size:1.08rem; color: rgba(243,241,231,0.88); margin-bottom:2.2rem; line-height:1.6; }
.hero-cta{ display:flex; gap:1rem; flex-wrap:wrap; }

.hero-controls{
  position:absolute; bottom: 2.4rem; left:0; right:0; z-index:2;
  display:flex; align-items:center; justify-content:space-between;
}
.hero-dots{ display:flex; gap:0.6rem; }
.dot{
  width:10px; height:10px; border-radius:50%;
  background: rgba(243,241,231,0.35); border:none;
  transition: background .3s ease, transform .3s ease;
}
.dot.is-active{ background: var(--amber); transform: scale(1.3); }

.scroll-cue{
  display:flex; align-items:center; gap:0.6rem;
  background:none; border:none; color: rgba(243,241,231,0.8);
  font-family: var(--font-mono); font-size:0.7rem; letter-spacing:0.18em; text-transform:uppercase;
}
.scroll-cue .wheel{ animation: scrollWheel 1.6s ease-in-out infinite; }
@keyframes scrollWheel{ 0%{ transform: translateY(0); opacity:1;} 60%{ transform: translateY(6px); opacity:0.3;} 100%{ transform: translateY(0); opacity:1;} }

/* Drifting mist clouds — ambient hero animation */
.mist-layer{ position:absolute; inset:0; z-index:1; overflow:hidden; pointer-events:none; }
.mist{
  position:absolute;
  border-radius:50%;
  filter: blur(40px);
  background: radial-gradient(circle, rgba(243,241,231,0.55), rgba(243,241,231,0) 70%);
  opacity:0.5;
}
.mist-a{ width:520px; height:220px; top:12%; left:-15%; animation: driftRight 34s linear infinite; }
.mist-b{ width:420px; height:180px; top:55%; left:-25%; animation: driftRight 46s linear infinite; animation-delay:-10s; opacity:0.35; }
.mist-c{ width:600px; height:240px; top:78%; left:-20%; animation: driftRight 58s linear infinite; animation-delay:-22s; opacity:0.3; }
@keyframes driftRight{
  from{ transform: translateX(0); }
  to{ transform: translateX(160vw); }
}
@media (prefers-reduced-motion: reduce){
  .mist{ animation: none; }
}

.hero-hills{ position:absolute; bottom:-2px; left:0; width:100%; height:auto; z-index:1; }
.hill{ fill: var(--mist); }
.hill-back{ fill: #4B6E5F; opacity:0.55; }
.hill-mid{ fill: #2C4C40; opacity:0.75; }
.hill-front{ fill: var(--mist); }

/* =========================================================
   ABOUT
========================================================= */
.about{ padding: 7rem 0; background: var(--mist); }
.about-grid{ display:grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items:center; }
.about-image-frame{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  position:relative;
  aspect-ratio: 4/5;
}
.about-image-frame img{ width:100%; height:100%; object-fit:cover; }
.about-media{ position:relative; }
.about-badge{
  position:absolute; bottom:-1.6rem; right:-1.4rem;
  background: var(--pine); color: var(--mist);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  box-shadow: var(--shadow-card);
  min-width: 130px;
}
.about-badge strong{ font-family: var(--font-display); font-size:2.1rem; color: var(--amber); line-height:1; }
.about-badge span{ font-size:0.72rem; margin-top:0.4rem; letter-spacing:0.03em; color: var(--sage); }

.about-copy p{ color: var(--ink-soft); line-height:1.75; font-size:1.02rem; }
.about-stats{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:1.2rem;
  margin: 2.2rem 0 2.4rem;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(22,48,42,0.12);
  border-bottom: 1px solid rgba(22,48,42,0.12);
}
.stat{ display:flex; flex-direction:column; }
.stat strong{ font-family: var(--font-display); font-size:1.9rem; color: var(--pine); }
.stat span{ font-size:0.78rem; color: var(--ink-soft); margin-top:0.2rem; }

/* =========================================================
   SERVICES
========================================================= */
.services{ padding: 7rem 0; background: var(--white); }
.service-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; perspective: 1200px; }
.service-card{
  background: var(--mist);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  transition: box-shadow .45s var(--ease), background .45s ease;
  border: 1px solid rgba(22,48,42,0.06);
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover{
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.service-icon{ transform: translateZ(30px); }
.service-card h3, .service-card p, .card-link{ transform: translateZ(20px); }
.service-icon{
  width:56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  background: var(--pine); color: var(--amber);
  border-radius: 12px;
  margin-bottom:1.4rem;
}
.service-icon svg{ width:28px; height:28px; }
.service-card h3{ font-family: var(--font-display); font-size:1.22rem; color: var(--pine); margin: 0 0 0.6rem; font-weight:600; }
.service-card p{ color: var(--ink-soft); font-size:0.95rem; line-height:1.6; margin:0 0 1.2rem; }
.card-link{ font-weight:700; font-size:0.88rem; color: var(--amber-dark); display:inline-flex; align-items:center; gap:0.3rem; }
.card-link span{ transition: transform .3s ease; }
.service-card:hover .card-link span{ transform: translateX(5px); }

/* =========================================================
   ROUTE DIVIDER (animated dashed line)
========================================================= */
.route-divider{ background: var(--white); line-height:0; }
.route-divider svg{ width:100%; height:60px; display:block; }
.route-divider path{
  fill:none;
  stroke: var(--sage);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
}

.teaser-more{ text-align:center; margin-top: 2.6rem; }

/* =========================================================
   HOME CTA BANNER
========================================================= */
.home-cta{ padding: 5rem 0; background: var(--pine); }
.home-cta-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap: 1.6rem; flex-wrap:wrap;
}
.home-cta-inner p{ color: var(--sage); margin: 0.4rem 0 0; }
.home-cta-actions{ display:flex; gap:0.9rem; flex-wrap:wrap; }

/* =========================================================
   WHY CHOOSE US
========================================================= */
.why{ padding: 7rem 0; background: var(--mist-dim); }
.why-grid{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items:center; }
.why-copy p{ color: var(--ink-soft); line-height:1.7; margin-bottom:2rem; }
.why-list{ display:flex; flex-direction:column; gap:1.6rem; }
.why-list li{ display:flex; gap:1.2rem; align-items:flex-start; }
.why-num{
  font-family: var(--font-mono); font-weight:700; color: var(--amber-dark);
  font-size:0.95rem; padding-top:0.15rem; flex-shrink:0; width:28px;
}
.why-list h4{ font-family: var(--font-display); font-size:1.08rem; color: var(--pine); margin:0 0 0.3rem; font-weight:600; }
.why-list p{ margin:0; font-size:0.93rem; color: var(--ink-soft); line-height:1.55; }

.why-media{ position:relative; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4/5; }
.why-media img{ width:100%; height:100%; object-fit:cover; }
.why-media-tag{
  position:absolute; left:1.2rem; bottom:1.2rem;
  background: rgba(22,48,42,0.85); color: var(--mist);
  font-family: var(--font-mono); font-size:0.72rem; letter-spacing:0.06em;
  padding:0.55rem 0.9rem; border-radius:100px;
  backdrop-filter: blur(6px);
}

/* =========================================================
   GALLERY
========================================================= */
.gallery{ padding: 7rem 0; background: var(--white); }
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 1rem;
  perspective: 1200px;
}
.gallery-item{
  position:relative; margin:0; overflow:hidden; border-radius: var(--radius-sm);
  grid-row: span 1;
  will-change: transform;
}
.gallery-item.g-tall{ grid-row: span 2; }
.gallery-item img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .8s var(--ease);
}
.gallery-item:hover img{ transform: scale(1.12); }
.gallery-item::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(22,48,42,0) 45%, rgba(22,48,42,0.75) 100%);
  opacity:0; transition: opacity .4s ease;
}
.gallery-item:hover::after{ opacity:1; }
.gallery-item figcaption{
  position:absolute; left:1rem; bottom:0.9rem; z-index:2;
  color: var(--mist); font-weight:700; font-size:0.9rem;
  opacity:0; transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
}
.gallery-item:hover figcaption{ opacity:1; transform: translateY(0); }

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials{ padding: 7rem 0; background: var(--pine); position:relative; overflow:hidden; }
.testimonials::before{
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 15% 20%, rgba(226,136,62,0.12), transparent 45%);
}
.testi-track-wrap{ position:relative; }
.testi-track{
  display:flex;
  gap: 1.5rem;
  overflow-x:hidden;
  scroll-snap-type: x mandatory;
}
.testi-card{
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: rgba(243,241,231,0.06);
  border: 1px solid rgba(243,241,231,0.14);
  border-radius: var(--radius);
  padding: 2.6rem;
  max-width: 720px;
  margin-inline:auto;
}
.testi-quote{
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--mist);
  line-height:1.55;
  font-weight:400;
  font-style: italic;
  margin: 0 0 1.6rem;
}
.testi-person{ display:flex; flex-direction:column; }
.testi-person strong{ color: var(--amber); font-size:0.95rem; }
.testi-person span{ color: var(--sage); font-size:0.82rem; margin-top:0.15rem; }
.testi-dots{ display:flex; justify-content:center; gap:0.6rem; margin-top:2.2rem; }
.testi-dots .dot{ background: rgba(243,241,231,0.3); }
.testi-dots .dot.is-active{ background: var(--amber); }

/* =========================================================
   CONTACT
========================================================= */
.contact{ padding: 7rem 0; background: var(--mist); }
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items:start; }
.contact-info p{ color: var(--ink-soft); line-height:1.7; }
.contact-list{ display:flex; flex-direction:column; gap:1.4rem; margin: 2rem 0; }
.contact-list li{ display:flex; gap:1rem; align-items:flex-start; }
.c-icon{
  width:42px; height:42px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background: var(--white); color: var(--teal);
  border-radius:10px; box-shadow: 0 8px 18px -12px rgba(22,48,42,0.3);
}
.c-icon svg{ width:20px; height:20px; }
.contact-list strong{ display:block; color: var(--pine); font-size:0.95rem; margin-bottom:0.2rem; }
.contact-list p{ margin:0; font-size:0.93rem; color: var(--ink-soft); }
.contact-list a:hover{ color: var(--amber-dark); }

.contact-map{ border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-card); }
.contact-map iframe{ width:100%; height:260px; border:0; display:block; filter: grayscale(15%); }

.enquiry-form{
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow-soft);
}
.enquiry-form h3{ font-family: var(--font-display); color: var(--pine); font-size:1.4rem; margin:0 0 1.6rem; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:1.1rem; }
.field{ margin-bottom:1.1rem; }
.field label{ display:block; font-size:0.8rem; font-weight:700; color: var(--pine); margin-bottom:0.4rem; }
.field input, .field select, .field textarea{
  width:100%; padding:0.8rem 1rem;
  border:1.5px solid rgba(22,48,42,0.15);
  border-radius: var(--radius-sm);
  background: var(--mist);
  font-size:0.92rem; color: var(--ink);
  transition: border-color .3s ease, background .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--amber); background: var(--white);
}
.field textarea{ resize: vertical; }
.form-note{ text-align:center; font-size:0.78rem; color: var(--ink-soft); margin: 1rem 0 0; }

/* =========================================================
   FOOTER
========================================================= */
.site-footer{ background: var(--pine); color: rgba(243,241,231,0.85); padding: 5rem 0 0; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr; gap:2.5rem; padding-bottom:3.5rem; border-bottom:1px solid rgba(243,241,231,0.12); }
.footer-brand p{ font-size:0.9rem; line-height:1.6; margin: 1rem 0 1.4rem; max-width:280px; color: rgba(243,241,231,0.7); }
.footer-social{ display:flex; gap:0.7rem; }
.footer-social a{
  width:38px; height:38px; display:flex; align-items:center; justify-content:center;
  background: rgba(243,241,231,0.08); border-radius:50%;
  transition: background .3s ease, transform .3s ease;
}
.footer-social a:hover{ background: var(--amber); color: var(--pine); transform: translateY(-3px); }

.footer-col h4{ font-family: var(--font-display); color: var(--mist); font-size:1.02rem; margin: 0 0 1.2rem; font-weight:600; }
.footer-col a, .footer-col p{ display:block; font-size:0.9rem; color: rgba(243,241,231,0.7); margin-bottom:0.7rem; line-height:1.5; }
.footer-col a:hover{ color: var(--amber); }

.footer-bottom{ display:flex; justify-content:space-between; padding: 1.6rem 0; font-size:0.82rem; color: rgba(243,241,231,0.55); flex-wrap:wrap; gap:0.6rem; }

/* =========================================================
   WHATSAPP FLOAT
========================================================= */
.whatsapp-float{
  position: fixed; right: 1.6rem; bottom: 1.6rem; z-index: 400;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.4);
  animation: pulseWA 2.6s ease-in-out infinite;
}
@keyframes pulseWA{
  0%,100%{ box-shadow: 0 12px 30px -10px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  50%{ box-shadow: 0 12px 30px -10px rgba(0,0,0,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* =========================================================
   SCROLL REVEAL BASE STATES (animated via GSAP)
========================================================= */
.reveal-up, .reveal-left, .reveal-right{ will-change: transform, opacity; }

/* =========================================================
   PAGE BANNER (interior pages, e.g. Tariff)
========================================================= */
.page-banner{
  position: relative;
  padding: 9.5rem 0 4.5rem;
  background: linear-gradient(180deg, rgba(15,30,26,0.82), rgba(15,30,26,0.88)),
              url('https://images.unsplash.com/photo-1692792284356-f80113facd09?auto=format&fit=crop&w=1600&q=70') center/cover;
  color: var(--mist);
  overflow:hidden;
}
.page-banner .eyebrow{ color: var(--sage); }
.page-banner .eyebrow::before{ background: var(--sage); }
.page-banner h1{
  font-family: var(--font-display);
  font-weight:600;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin: 0 0 0.8rem;
  line-height:1.12;
}
.page-banner p{ color: rgba(243,241,231,0.85); max-width: 620px; font-size:1.02rem; line-height:1.6; }
.breadcrumb{ display:flex; flex-wrap:nowrap; align-items:center; gap:0.5rem; font-family: var(--font-mono); font-size:0.78rem; color: var(--sage); margin-bottom:1rem; letter-spacing:0.04em; white-space:nowrap; overflow-x:auto; -ms-overflow-style:none; scrollbar-width:none; }
.breadcrumb::-webkit-scrollbar{ display:none; }
.breadcrumb span, .breadcrumb a{ white-space:nowrap; }
.breadcrumb a{ color: var(--sage); }
.breadcrumb a:hover{ color: var(--amber); }
.page-banner svg.hero-hills{ position:absolute; bottom:-2px; left:0; width:100%; z-index:1; opacity:0.9; }

/* =========================================================
   TARIFF PAGE
========================================================= */
.tariff{ padding: 6rem 0; background: var(--mist); }
.tariff-intro{ max-width: 760px; margin-bottom: 3rem; }
.tariff-intro p{ color: var(--ink-soft); line-height:1.7; }

.tariff-group{ margin-bottom: 4.5rem; }
.tariff-group-title{
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--pine);
  font-weight:600;
  margin: 0 0 1.3rem;
  display:flex;
  align-items:center;
  gap:0.7rem;
}
.tariff-group-title::before{
  content:'';
  width:26px; height:2px;
  background: var(--amber);
  display:inline-block;
}

.tariff-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:0.6rem;
  margin-bottom: 1.8rem;
}
.tariff-tab{
  background: var(--white);
  border: 1.5px solid rgba(22,48,42,0.14);
  color: var(--ink-soft);
  font-weight:700;
  font-size:0.82rem;
  padding: 0.65rem 1.15rem;
  border-radius: 100px;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
  white-space:nowrap;
}
.tariff-tab:hover{ border-color: var(--amber); color: var(--pine); transform: translateY(-2px); }
.tariff-tab.is-active{ background: var(--pine); border-color: var(--pine); color: var(--mist); }

.tariff-panel{ display:none; }
.tariff-panel.is-active{ display:block; animation: tariffFade .5s ease; }
@keyframes tariffFade{ from{ opacity:0; transform: translateY(10px);} to{ opacity:1; transform:translateY(0);} }

.tariff-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.tariff-card h3{
  font-family: var(--font-display);
  color: var(--pine);
  font-size:1.25rem;
  margin: 0 0 0.4rem;
  font-weight:600;
}
.tariff-meta{
  display:flex; flex-wrap:wrap; gap: 1.4rem;
  font-family: var(--font-mono); font-size:0.78rem;
  color: var(--teal); margin-bottom:1.4rem;
}
.tariff-meta span strong{ color: var(--amber-dark); }

.tariff-table-wrap{ overflow-x:auto; margin-bottom: 1.2rem; -webkit-overflow-scrolling: touch; }
.tariff-table{
  width:100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size:0.88rem;
}
.tariff-table th, .tariff-table td{
  padding: 0.75rem 1rem;
  text-align:left;
  white-space:nowrap;
  border-bottom: 1px solid rgba(22,48,42,0.08);
}
.tariff-table th{
  font-family: var(--font-mono);
  font-size:0.7rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color: var(--mist);
  background: var(--pine);
}
.tariff-table th:first-child{ border-top-left-radius:8px; }
.tariff-table th:last-child{ border-top-right-radius:8px; }
.tariff-table tbody tr:hover{ background: var(--mist); }
.tariff-table td:not(:first-child){ font-weight:700; color: var(--pine); }
.tariff-table td:first-child{ color: var(--ink-soft); font-weight:600; }

.tariff-notes{ margin: 0 0 1.4rem; padding-left:1.2rem; }
.tariff-notes li{
  list-style: disc;
  color: var(--ink-soft);
  font-size:0.88rem;
  line-height:1.6;
  margin-bottom:0.3rem;
}

.tariff-itinerary{
  background: var(--mist);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.6rem;
}
.tariff-itinerary h4{
  font-family: var(--font-display);
  color: var(--pine);
  font-size:1rem;
  margin: 0 0 0.8rem;
  font-weight:600;
}
.tariff-itinerary ol{ margin:0; padding-left:1.2rem; columns: 2; column-gap: 2rem; }
.tariff-itinerary li{ color: var(--ink-soft); font-size:0.88rem; line-height:1.8; break-inside: avoid; }

.tariff-disclaimer{
  margin-top: 1rem;
  background: var(--mist-dim);
  border-left: 3px solid var(--amber);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size:0.88rem;
  color: var(--ink-soft);
  line-height:1.6;
}

.tariff-cta{
  margin-top: 3rem;
  background: var(--pine);
  border-radius: var(--radius);
  padding: 2.6rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:1.5rem;
}
.tariff-cta h3{ font-family: var(--font-display); color: var(--mist); font-size:1.35rem; margin:0 0 0.4rem; font-weight:600; }
.tariff-cta p{ color: var(--sage); margin:0; font-size:0.92rem; }
.tariff-cta-actions{ display:flex; gap:0.9rem; flex-wrap:wrap; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1180px){
  .main-nav{ gap: 1.1rem; }
  .nav-link{ font-size: 0.86rem; }
}

@media (max-width: 1024px){
  .about-grid, .why-grid, .contact-grid{ grid-template-columns:1fr; gap:2.8rem; }
  .why-media{ order:-1; }
  .service-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery-grid{ grid-template-columns: repeat(3,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .page-banner{ padding: 8.5rem 0 4rem; }
}

@media (max-width: 980px){
  .main-nav{
    position:fixed; top:0; right:0; height:100vh; width: min(320px, 82%);
    background: var(--pine); flex-direction:column; align-items:flex-start;
    padding: 6.5rem 2rem 2rem; gap:1.6rem;
    transform: translateX(100%); transition: transform .45s var(--ease);
    z-index: 400;
    overflow-y: auto;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .main-nav .nav-link{ font-size: 1rem; }
  .nav-phone{ display:none; }
  .hamburger{ display:flex; padding: 10px; }
  .hamburger.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .hamburger.is-active span:nth-child(2){ opacity:0; }
  .hamburger.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  .about-stats{ grid-template-columns: repeat(2,1fr); }
  .service-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); grid-auto-rows:160px; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .about-badge{ right: 1rem; }
  .tariff-itinerary ol{ columns: 1; }
  .tariff-cta, .home-cta-inner{ flex-direction:column; align-items:flex-start; text-align:left; }
  .tariff-tabs{ gap:0.5rem; }
  .brand-text{ font-size: 1.1rem; }
}

@media (max-width: 640px){
  .page-banner{ padding: 7rem 0 2.8rem; }
  .page-banner h1{ font-size: clamp(1.5rem, 7vw, 2.1rem); line-height:1.16; }
  .page-banner p{ font-size:0.92rem; }
  .breadcrumb{ font-size:0.68rem; margin-bottom:0.8rem; }
  .eyebrow{ font-size:0.68rem; }
  .tariff-meta{ gap: 0.8rem; }
  .tariff-table th, .tariff-table td{ padding: 0.6rem 0.75rem; font-size:0.82rem; }
  .service-card, .tariff-card, .enquiry-form{ padding: 1.5rem 1.3rem; }
  .home-cta, .services, .about, .why, .gallery, .contact, .tariff, .testimonials{ padding-top: 4rem; padding-bottom: 4rem; }
}

@media (max-width: 520px){
  .marquee-track span{ font-size:0.88rem; }
  .marquee-track{ gap:0.6rem; }
  .hero-content{ padding-top: 4.5rem; }
  .hero-cta{ flex-direction:column; align-items:flex-start; }
  .hero-controls{ flex-direction:column; align-items:flex-start; gap:1rem; bottom:1.6rem; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; grid-auto-rows:140px; }
  .about-badge{ position:static; margin-top:1.2rem; align-self:flex-start; flex-direction:row; gap:0.8rem; }
  .whatsapp-float{ width:52px; height:52px; right:1rem; bottom:1rem; }
}
