/*
Theme Name: Red Journeys
Theme URI: https://redjourneys.com
Author: Red Journeys
Author URI: https://redjourneys.com
Description: Custom theme for Red Journeys — a husband-and-wife run travel studio in Ahmedabad offering domestic & international holidays, corporate travel, and flight bookings. Built from the original static site design.
Version: 1.0
Requires PHP: 7.4
Text Domain: redjourneys
*/

/* ============================================================
   RED JOURNEYS — shared stylesheet
   Palette: signature red (logo), ink charcoal (logo), warm paper,
   sunset gold + monsoon teal as supporting accents.
   Type: Fraunces (display) + Work Sans (body/UI)
   Signature motif: dashed "flight path" — echoes the logo's plane trail
   ============================================================ */

:root{
  --red: #E2362B;
  --red-deep: #B82920;
  --ink: #262223;
  --ink-soft: #4A4547;
  --paper: #FFFCF8;
  --paper-warm: #FBF1E4;
  --sand: #F3E4CB;
  --gold: #E8A63C;
  --teal: #1E7F80;
  --line: rgba(38,34,35,0.14);
  --white: #ffffff;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Work Sans", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --radius: 6px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;}
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:600;
  margin:0 0 0.4em 0;
  color:var(--ink);
  letter-spacing:-0.01em;
}
p{margin:0 0 1em 0; max-width:62ch;}
.wrap{max-width:var(--wrap); margin:0 auto; padding:0 32px;}

:focus-visible{
  outline:2.5px solid var(--teal);
  outline-offset:3px;
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:15.5px;
  padding:13px 26px;
  border-radius:100px;
  text-decoration:none;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color .18s ease;
}
.btn-primary{background:var(--red); color:var(--white);}
.btn-primary:hover{background:var(--red-deep); transform:translateY(-2px);}
.btn-outline{background:transparent; border-color:var(--ink); color:var(--ink);}
.btn-outline:hover{background:var(--ink); color:var(--paper); transform:translateY(-2px);}
.btn-light{background:var(--paper); color:var(--ink); border-color:var(--white);}
.btn-light:hover{background:var(--white); transform:translateY(-2px);}

/* ---------------- Header / Nav ---------------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,252,248,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 32px;
  max-width:var(--wrap); margin:0 auto;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.brand img{height:46px; width:auto;}
.brand-text{display:flex; flex-direction:column; line-height:1.15;}
.brand-word{
  font-family:"Baloo 2", var(--font-body);
  font-weight:700;
  font-size:22px;
  color:var(--ink);
}
.brand-word span{color:var(--red);}
.brand-tagline{
  font-family:var(--font-body); font-weight:600; font-size:11px;
  letter-spacing:0.02em; color:var(--ink-soft); margin-top:1px;
}

.nav-links{
  display:flex; align-items:center; gap:26px;
  list-style:none; margin:0; padding:0;
}
.nav-links a{
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  color:var(--ink-soft);
  position:relative;
  padding:6px 2px;
}
.nav-links a.active,
.nav-links a:hover{color:var(--ink);}
.nav-links a.active::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-2px;
  height:2px; background:var(--red);
  border-radius:2px;
}
.nav-cta{display:flex; align-items:center; gap:18px;}
.nav-phone{
  font-weight:600; font-size:14.5px; text-decoration:none;
  color:var(--ink); display:none;
}
.nav-toggle{
  display:none; background:none; border:none; cursor:pointer;
  padding:6px; flex-direction:column; gap:5px;
}
.nav-toggle span{width:24px; height:2px; background:var(--ink); border-radius:2px;}
.nav-cta-mobile{display:none;}

@media (min-width: 1301px){ .nav-phone{display:inline-flex;} }

@media (max-width: 1300px){
  .nav{padding:12px 20px;}
  .brand{gap:8px;}
  .brand img{height:36px;}
  .brand-word{font-size:17px;}
  .nav-cta{gap:10px;}
  .nav-cta .btn-primary{display:none;}
  .nav-links{
    position:fixed; top:61px; left:0; right:0; height:calc(100vh - 61px);
    background:var(--paper); overflow-y:auto;
    flex-direction:column; align-items:flex-start; gap:0;
    padding:10px 32px 30px; border-top:1px solid var(--line);
    transform:translateY(-8px); opacity:0; pointer-events:none;
    transition:opacity .2s ease, transform .2s ease;
  }
  .nav-links.open{ opacity:1; pointer-events:auto; transform:translateY(0); }
  .nav-links li{width:100%; border-bottom:1px solid var(--line);}
  .nav-links a{display:block; padding:16px 2px;}
  .nav-toggle{display:flex;}
  .nav-cta-mobile{display:block; border-bottom:none !important; padding-top:16px;}
  .nav-cta-mobile a{display:flex; justify-content:center; padding:14px 26px;}
}

/* ---------------- Flight-path signature motif ---------------- */
.flight-divider{
  width:100%; height:70px;
  display:block;
}
.flight-divider path{
  fill:none; stroke:var(--ink); stroke-opacity:0.28;
  stroke-width:2; stroke-dasharray:1 10; stroke-linecap:round;
}
.flight-divider .plane{
  fill:var(--red);
}
.flight-draw path{
  stroke-dasharray:1400;
  stroke-dashoffset:1400;
  animation:draw 1.8s ease forwards 0.3s;
}
@keyframes draw{ to{ stroke-dashoffset:0; } }
@media (prefers-reduced-motion: reduce){
  .flight-draw path{ animation:none; stroke-dashoffset:0; }
}

/* ---------------- Hero ---------------- */
.hero{
  position:relative;
  padding:70px 0 40px;
  overflow:hidden;
}
.hero .wrap{
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:50px; align-items:center;
}
.eyebrow-badge{
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; font-weight:600; color:var(--red-deep);
  background:var(--paper-warm); border:1px solid var(--sand);
  padding:7px 16px 7px 12px; border-radius:100px; margin-bottom:22px;
}
.eyebrow-badge svg{width:16px; height:16px;}
.hero h1{
  font-size:clamp(38px, 5vw, 60px);
  line-height:1.06;
  max-width:14ch;
}
.hero-sub{
  font-size:19px; color:var(--ink-soft); max-width:46ch; margin-top:18px;
}
.hero-actions{display:flex; gap:16px; margin-top:32px; flex-wrap:wrap;}
.hero-stats{
  display:flex; gap:34px; margin-top:46px; flex-wrap:wrap;
}
.hero-stat b{
  font-family:var(--font-display); font-size:30px; display:block; color:var(--ink);
}
.hero-stat span{font-size:14px; color:var(--ink-soft);}

.hero-art{position:relative;}
.postcard{
  display:block;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:10px;
  padding:14px 14px 20px;
  box-shadow: 8px 10px 0 var(--sand);
  transform:rotate(2.5deg);
  text-decoration:none; color:inherit;
  transition:transform .2s ease, box-shadow .2s ease;
}
.postcard:hover{
  transform:rotate(2.5deg) translateY(-4px);
  box-shadow: 10px 14px 0 var(--sand);
}
.postcard img{border-radius:5px;}
.postcard-img-wrap{position:relative; overflow:hidden; border-radius:5px;}
.postcard-img-wrap img{border-radius:5px; display:block;}
.postcard-ribbon{
  position:absolute; top:16px; left:-34px; width:150px; text-align:center;
  transform:rotate(-45deg); background:var(--red); color:var(--white);
  font-size:11px; font-weight:700; letter-spacing:0.02em; padding:5px 0;
  text-transform:uppercase; box-shadow:0 2px 6px rgba(0,0,0,0.15);
}
.postcard-cap{
  display:flex; justify-content:space-between; align-items:baseline;
  padding-top:14px;
}
.postcard-cap-main{
  font-family:var(--font-display); font-weight:700; font-size:19px; color:var(--red-deep);
}
.postcard-cap-sub{
  font-family:var(--font-display); font-style:italic; font-size:13px; color:var(--ink-soft);
}
.stamp{
  position:absolute; top:-18px; right:18px;
  width:86px; height:86px; transform:rotate(8deg);
}

/* ---------------- Section scaffolding ---------------- */
.section{padding:86px 0;}
.section-alt{background:var(--paper-warm);}
.section-ink{background:var(--ink); color:var(--paper);}
.section-ink h2, .section-ink h3{color:var(--paper);}
.section-ink p{color:#D8D2CE;}

.section-head{
  display:grid; grid-template-columns:1fr auto; align-items:end; gap:30px;
  margin-bottom:48px;
}
.section-head h2{font-size:clamp(28px,3.4vw,40px); max-width:15ch;}
.section-head p{color:var(--ink-soft); margin:0;}
.kicker{
  font-family:var(--font-display); font-style:italic; color:var(--red);
  font-size:17px; display:block; margin-bottom:8px;
}

/* ---------------- Destination / postcard cards ---------------- */
.card-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:28px;
}
.dest-card{
  background:var(--white); border:1px solid var(--line); border-radius:8px;
  overflow:hidden; transition:transform .25s ease, box-shadow .25s ease;
}
.dest-card:hover{ transform:translateY(-6px); box-shadow:0 16px 30px rgba(38,34,35,0.10); }
.dest-card .art{ height:170px; position:relative; overflow:hidden; }
.dest-card .art img{ width:100%; height:100%; object-fit:cover; }
.dest-card .badge{
  position:absolute; top:14px; left:14px;
  background:var(--white); border:1.5px dashed var(--red);
  color:var(--red-deep); font-weight:700; font-size:12.5px;
  padding:4px 12px; border-radius:100px;
}
.dest-card .flag-badge{
  position:absolute; bottom:12px; right:12px;
  width:34px; height:23px; border-radius:4px; overflow:hidden;
  box-shadow:0 2px 6px rgba(0,0,0,0.35); border:1.5px solid rgba(255,255,255,0.85);
  display:flex;
}
.dest-card .flag-badge img{width:100%; height:100%; object-fit:cover; display:block;}
.dest-card .flag-badge.split img{width:50%;}
.dest-card .body{padding:20px 22px 24px;}
.dest-card h3{font-size:21px; margin-bottom:6px;}
.dest-card .meta{color:var(--ink-soft); font-size:14.5px; margin-bottom:12px;}
.dest-card .price{
  display:flex; justify-content:space-between; align-items:center;
  border-top:1px dashed var(--line); padding-top:14px; margin-top:6px;
}
.dest-card .price b, .dest-card .price a{font-family:var(--font-display); font-size:19px; color:var(--ink); text-decoration:none; cursor:pointer;}
.dest-card .price a:hover{color:var(--red-deep);}
.dest-card .price span{font-size:13px; color:var(--ink-soft);}

/* Expandable "sample itinerary" section on each package card */
.itinerary-toggle{
  display:flex; align-items:center; justify-content:space-between; width:100%;
  margin-top:16px; padding-top:14px; border-top:1px dashed var(--line);
  background:none; border-left:none; border-right:none; border-bottom:none;
  cursor:pointer; font-family:var(--font-body); font-weight:600; font-size:13.5px;
  color:var(--red-deep);
}
.itinerary-toggle svg{width:16px; height:16px; transition:transform .2s ease; flex:none;}
.itinerary-toggle[aria-expanded="true"] svg{transform:rotate(180deg);}

.itinerary-panel{
  display:none; margin-top:12px; padding-top:2px;
}
.itinerary-panel.open{display:block;}
.itin-note{font-size:12.5px; color:var(--ink-soft); font-style:italic; margin-bottom:10px;}
.itinerary-panel ol{list-style:none; margin:0; padding:0;}
.itinerary-panel li{
  display:grid; grid-template-columns:auto 1fr; gap:12px;
  padding:8px 0; border-top:1px solid var(--line);
}
.itinerary-panel li:first-child{border-top:none;}
.itin-day{font-size:12px; font-weight:700; color:var(--ink); white-space:nowrap;}
.itin-desc{font-size:13px; color:var(--ink-soft); line-height:1.5;}

/* FAQ accordion */
.faq-list{display:flex; flex-direction:column;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-item:first-child{border-top:1px solid var(--line);}
.faq-toggle{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:22px 4px; background:none; border:none; cursor:pointer; text-align:left;
  font-family:var(--font-display); font-weight:600; font-size:17px; color:var(--ink);
}
.faq-toggle svg{width:20px; height:20px; flex:none; color:var(--red-deep); transition:transform .2s ease;}
.faq-toggle[aria-expanded="true"] svg{transform:rotate(180deg);}
.faq-panel{display:none; padding:0 4px 24px;}
.faq-panel.open{display:block;}
.faq-panel p{color:var(--ink-soft); font-size:15px; line-height:1.65; max-width:65ch;}
.faq-panel a{color:var(--red-deep); font-weight:600;}

/* Meet the team */
.team-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.team-card{
  background:var(--white); border:1px solid var(--line); border-radius:10px;
  padding:30px 26px; text-align:center;
}
.team-avatar{
  width:64px; height:64px; border-radius:50%; margin:0 auto 18px;
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-family:var(--font-display); font-weight:700; font-size:24px;
}
.team-card h3{font-size:19px; margin-bottom:2px;}
.team-role{font-size:13px; font-weight:600; color:var(--red-deep); margin-bottom:12px;}
.team-card p{font-size:14px; color:var(--ink-soft); line-height:1.55;}

/* Recommended stays / properties */
.spotlight-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.spotlight-card{
  position:relative; background:var(--white); border:1px solid var(--line);
  border-radius:10px; overflow:hidden; padding-top:8px;
}
.spotlight-ribbon{
  position:absolute; top:22px; left:-38px; width:170px; text-align:center;
  transform:rotate(-45deg); background:var(--red); color:var(--white);
  font-size:11px; font-weight:700; letter-spacing:0.02em; padding:5px 0;
  text-transform:uppercase; box-shadow:0 2px 6px rgba(0,0,0,0.15);
}
.spotlight-body{padding:78px 26px 28px;}
.spotlight-location{font-size:12.5px; font-weight:600; color:var(--red-deep); text-transform:uppercase; letter-spacing:0.03em;}
.spotlight-body h3{font-size:20px; margin:6px 0 10px;}
.spotlight-body p{font-size:14px; color:var(--ink-soft); line-height:1.55; margin-bottom:20px;}

/* Image variant — used once a property has a real/illustrated photo */
.spotlight-card.with-image{padding-top:0;}
.spotlight-card.with-image .spotlight-img{height:170px; overflow:hidden;}
.spotlight-card.with-image .spotlight-img img{width:100%; height:100%; object-fit:cover; display:block;}
.spotlight-card.with-image .spotlight-body{padding-top:22px;}
.view-property-btn{display:inline-flex; align-items:center; gap:6px;}
.view-property-btn svg{width:14px; height:14px;}

/* City guide cards on the Destinations page (dest-card reused, but as a
   clickable <a> for live guides, and a plain <div> for "coming soon") */
a.dest-card.city-card{display:block; text-decoration:none; color:inherit;}
.city-card--soon{opacity:0.72; cursor:default;}
.city-card--soon:hover{transform:none; box-shadow:none;}
.city-card--soon .price{color:var(--ink-soft); font-style:italic;}

/* Destination guide page: Places to visit */
.place-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.place-card{
  background:var(--white); border:1px solid var(--line); border-radius:10px;
  padding:24px 24px 26px;
}
.age-tag{
  display:inline-block; background:rgba(30,127,128,0.09); color:var(--teal);
  font-size:12px; font-weight:700; padding:4px 12px; border-radius:100px;
  margin-bottom:14px;
}
.place-card h3{font-size:19px; margin-bottom:8px;}
.place-card p{font-size:14px; color:var(--ink-soft); line-height:1.55;}

/* Destination guide page: Resorts by star category */
.stay-category{margin-bottom:34px;}
.stay-category:last-child{margin-bottom:0;}
.stay-category-label{
  display:flex; align-items:center; gap:10px;
  font-family:var(--font-display); font-weight:700; font-size:17px; color:var(--ink);
  margin-bottom:16px;
}
.stay-category-label .stars{color:var(--gold); font-size:16px; letter-spacing:1px;}
.stay-row{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.stay-card{
  background:var(--white); border:1px solid var(--line); border-radius:10px;
  padding:22px 24px;
}
.stay-card h3{font-size:17px; margin-bottom:8px;}
.stay-card p{font-size:13.5px; color:var(--ink-soft); line-height:1.55;}

/* Destination guide page: Restaurants / cafes / pubs */
.venue-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.venue-card{
  background:var(--paper-warm); border:1px solid var(--line); border-radius:10px;
  padding:24px;
}
.venue-type{
  display:inline-block; background:rgba(232,166,60,0.16); color:#8A5F14;
  font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:0.03em;
  padding:4px 12px; border-radius:100px; margin-bottom:14px;
}
.venue-card h3{font-size:17px; margin-bottom:8px;}
.venue-card p{font-size:13.5px; color:var(--ink-soft); line-height:1.55;}

/* ---------------- Steps (real sequence -> numbered) ---------------- */
.steps{
  display:grid; grid-template-columns:repeat(3,1fr); gap:0;
  counter-reset:step;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.step{
  padding:34px 30px; border-right:1px solid var(--line); position:relative;
}
.step:last-child{border-right:none;}
.step::before{
  counter-increment:step; content:counter(step);
  font-family:var(--font-display); font-size:15px; font-weight:700;
  color:var(--white); background:var(--red);
  width:32px; height:32px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.step h3{font-size:19px;}
.step p{font-size:15px; color:var(--ink-soft); margin-bottom:0;}

/* ---------------- Founder / About story block ---------------- */
.founder-block{
  display:grid; grid-template-columns:0.85fr 1.15fr; gap:60px; align-items:center;
}
.founder-photo{
  border-radius:10px; overflow:hidden; border:1px solid var(--line);
  box-shadow:10px 12px 0 var(--paper-warm);
}
.founder-photo--portrait{ aspect-ratio:4/5; }
.founder-photo--portrait img{ width:100%; height:100%; object-fit:cover; object-position:center 30%; }
.founder-quote{
  font-family:var(--font-display); font-size:23px; line-height:1.5;
  color:var(--ink); margin-bottom:20px;
}
.founder-sign{font-weight:700; font-size:15px;}
.founder-role{color:var(--ink-soft); font-size:14px;}

/* ---------------- Value / Icon rows ---------------- */
.value-grid{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:26px;
}
.value-card{
  padding:26px 22px; border:1px solid var(--line); border-radius:8px; background:var(--white);
}
.value-card svg{width:30px; height:30px; margin-bottom:16px; color:var(--red);}
.value-card h3{font-size:17.5px; margin-bottom:6px;}
.value-card p{font-size:14.5px; color:var(--ink-soft); margin:0;}

/* ---------------- Boarding-pass styled block (corporate) ---------------- */
.boarding-pass{
  display:grid; grid-template-columns:1fr 1px 1fr;
  background:var(--white); border:1px solid var(--line); border-radius:10px;
  overflow:hidden;
}
.bp-stub{ position:relative; }
.bp-divider{
  background-image:repeating-linear-gradient(to bottom, var(--line) 0 8px, transparent 8px 16px);
  width:1px;
}
.bp-notch{
  position:absolute; width:22px; height:22px; background:var(--paper);
  border:1px solid var(--line); border-radius:50%;
  top:50%; transform:translateY(-50%);
}
.bp-notch.left{ right:-11px; }
.bp-notch.right{ left:-11px; }
.bp-pad{padding:38px 40px;}
.bp-label{
  font-size:12.5px; text-transform:uppercase; letter-spacing:0.06em;
  color:var(--ink-soft); margin-bottom:4px; font-weight:600;
}
.bp-value{font-family:var(--font-display); font-size:21px; margin-bottom:20px;}
.bp-row{display:flex; justify-content:space-between; gap:20px; margin-bottom:20px;}

/* ---------------- Testimonials ---------------- */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.testi{
  background:var(--white); border:1px solid var(--line); border-radius:8px;
  padding:28px 26px;
}
.testi p{font-size:16px; color:var(--ink); font-style:italic; font-family:var(--font-display);}
.testi-name{font-weight:700; font-size:14.5px; margin-top:14px;}
.testi-loc{color:var(--ink-soft); font-size:13.5px;}

.review-cta{
  margin-top:40px; padding-top:36px; border-top:1px dashed var(--line);
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:14px;
}
.review-cta svg{ width:28px; height:28px; color:var(--gold); }
.review-cta-badge{ height:64px; width:auto; }
.review-cta p{ margin:0; font-weight:600; color:var(--ink-soft); }
.review-cta-link{ font-size:14.5px; font-weight:600; color:var(--red-deep); text-decoration:none; }
.review-cta-link:hover{ text-decoration:underline; }

/* ---------------- CTA band ---------------- */
.cta-band{
  background:var(--red);
  color:var(--white);
  border-radius:14px;
  padding:56px 60px;
  display:grid; grid-template-columns:1.3fr auto; align-items:center; gap:30px;
}
.cta-band h2{color:var(--white); font-size:clamp(24px,3vw,34px); max-width:16ch;}
.cta-band p{color:rgba(255,255,255,0.85); margin:0;}

/* ---------------- Forms ---------------- */
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
.field{display:flex; flex-direction:column; gap:6px; margin-bottom:18px;}
.field.full{grid-column:1 / -1;}
.field label{font-size:13.5px; font-weight:600; color:var(--ink-soft);}
.field input, .field select, .field textarea{
  font-family:var(--font-body); font-size:15.5px;
  padding:13px 14px; border:1.5px solid var(--line); border-radius:6px;
  background:var(--white); color:var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color:var(--red); outline:none;
}
.field textarea{resize:vertical; min-height:110px;}

.form-actions{display:flex; flex-direction:column; align-items:flex-start; gap:14px;}
.btn-whatsapp{display:inline-flex; align-items:center; gap:10px;}
.btn-whatsapp svg{width:19px; height:19px; flex:none;}
.link-btn{
  background:none; border:none; padding:0; cursor:pointer;
  font-family:var(--font-body); font-size:14.5px; font-weight:600;
  color:var(--red-deep); text-decoration:none;
}
.link-btn:hover{text-decoration:underline;}

/* ---------------- Footer ---------------- */
.site-footer{ background:var(--ink); color:#CFC9C5; padding:64px 0 26px; }
.footer-grid{
  display:grid; grid-template-columns:1.4fr 0.8fr 0.8fr 1fr; gap:40px;
  padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.12);
}
.footer-brand{display:flex; align-items:center; gap:10px; margin-bottom:14px;}
.footer-brand img{height:38px;}
.footer-brand-text{display:flex; flex-direction:column; line-height:1.2;}
.footer-brand-name{font-family:"Baloo 2", var(--font-body); font-weight:700; font-size:19px; color:var(--white);}
.footer-red{color:var(--red);}
.footer-brand-tagline{font-family:var(--font-body); font-weight:600; font-size:11.5px; color:#B8B2AE; margin-top:1px;}
.site-footer h4{color:var(--white); font-size:14.5px; margin-bottom:16px;}
.site-footer ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px;}
.site-footer a{text-decoration:none; color:#CFC9C5; font-size:14.5px;}
.site-footer a:hover{color:var(--white);}
.footer-bottom{
  display:flex; justify-content:space-between; padding-top:24px; font-size:13px; color:#8F8885;
  flex-wrap:wrap; gap:10px;
}

/* luggage-tag shaped mini badge in footer */
.tag-badge{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,0.06); border:1px dashed rgba(255,255,255,0.25);
  padding:8px 14px; border-radius:6px; font-size:13px; color:#CFC9C5; margin-top:10px;
}
.social-row{ display:flex; gap:18px; margin-top:18px; }
.social-row a{
  display:inline-flex; align-items:center; gap:7px;
  color:#CFC9C5; text-decoration:none; font-size:13.5px; font-weight:600;
  transition:color .18s ease;
}
.social-row a:hover{ color:var(--white); }
.social-row img{ width:18px; height:18px; flex:none; object-fit:contain; }

/* ---------------- Page hero banner (interior pages) ---------------- */
.page-banner{ padding:56px 0 46px; }
.page-banner .kicker{margin-bottom:10px;}
.page-banner h1{ font-size:clamp(32px,4.4vw,48px); max-width:18ch; }
.page-banner p{ color:var(--ink-soft); font-size:17.5px; max-width:56ch; margin-top:14px; }
.breadcrumb{ font-size:13.5px; color:var(--ink-soft); margin-bottom:18px; }
.breadcrumb a{ color:var(--ink-soft); text-decoration:none; }
.breadcrumb a:hover{ color:var(--red-deep); }

/* ---------------- Tabs (packages page) ---------------- */
.tab-bar{
  display:inline-flex; background:var(--white); border:1px solid var(--line);
  border-radius:100px; padding:5px; gap:4px; margin-bottom:40px;
}
.tab-btn{
  border:none; background:none; padding:11px 24px; border-radius:100px;
  font-family:var(--font-body); font-weight:600; font-size:14.5px; color:var(--ink-soft);
  cursor:pointer; transition:background .2s ease, color .2s ease;
}
.tab-btn.active{ background:var(--red); color:var(--white); }
.tab-panel{ display:none; }
.tab-panel.active{ display:block; }

/* ---------------- Utility ---------------- */
.text-center{text-align:center;}
.mt-0{margin-top:0;}
.two-col{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;}
.list-check{list-style:none; margin:0; padding:0;}
.list-check li{
  display:flex; gap:12px; margin-bottom:14px; font-size:15.5px; color:var(--ink-soft);
}
.list-check svg{ flex:none; width:20px; height:20px; color:var(--teal); margin-top:2px;}

/* ---------------- Responsive ---------------- */
@media (max-width: 980px){
  .hero .wrap{grid-template-columns:1fr;}
  .hero-art{order:-1;}
  .card-grid{grid-template-columns:repeat(2,1fr);}
  .value-grid{grid-template-columns:repeat(2,1fr);}
  .team-grid{grid-template-columns:repeat(2,1fr);}
  .spotlight-grid{grid-template-columns:repeat(2,1fr);}
  .place-grid{grid-template-columns:repeat(2,1fr);}
  .stay-row{grid-template-columns:repeat(2,1fr);}
  .venue-grid{grid-template-columns:repeat(2,1fr);}
  .steps{grid-template-columns:1fr;}
  .step{border-right:none; border-bottom:1px solid var(--line);}
  .footer-grid{grid-template-columns:1fr 1fr; gap:32px;}
  .founder-block{grid-template-columns:1fr;}
  .two-col{grid-template-columns:1fr;}
  .boarding-pass{grid-template-columns:1fr;}
  .bp-divider{display:none;}
  .cta-band{grid-template-columns:1fr; text-align:left;}
}
@media (max-width: 620px){
  .card-grid{grid-template-columns:1fr;}
  .value-grid{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:1fr;}
  .spotlight-grid{grid-template-columns:1fr;}
  .place-grid{grid-template-columns:1fr;}
  .stay-row{grid-template-columns:1fr;}
  .venue-grid{grid-template-columns:1fr;}
  .testi-grid{grid-template-columns:1fr;}
  .section-head{grid-template-columns:1fr;}
  .form-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .section{padding:60px 0;}
  .cta-band{padding:40px 28px;}
}

/* Floating "Chat with us" WhatsApp button — present on every page */
.whatsapp-float{
  position:fixed; right:22px; bottom:22px; z-index:40;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 16px rgba(0,0,0,0.28);
  transition:transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover{ transform:scale(1.07); box-shadow:0 6px 20px rgba(0,0,0,0.32); }
.whatsapp-float svg{ width:30px; height:30px; fill:#fff; }
.whatsapp-float::before{
  content:""; position:absolute; inset:0; border-radius:50%;
  background:#25D366; opacity:0.55;
  animation:wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse{
  0%{ transform:scale(1); opacity:0.55; }
  100%{ transform:scale(1.7); opacity:0; }
}
@media (prefers-reduced-motion: reduce){
  .whatsapp-float::before{ animation:none; display:none; }
}
@media (max-width: 620px){
  .whatsapp-float{ width:52px; height:52px; right:16px; bottom:16px; }
  .whatsapp-float svg{ width:26px; height:26px; }
}
