/* ============================================================
   FALANA TOURS & TRAVELS — Design Tokens
   Palette: temple-night navy / Rath Yatra red / Nilachakra gold
            conch-shell ivory / Bay of Bengal teal / carved-stone brown
   ============================================================ */

:root{
  --navy:        #0B1F3A;
  --navy-deep:   #071527;
  --red:         #8B1E1E;
  --red-bright:  #A8281F;
  --gold:        #C9A04E;
  --gold-light:  #E3C788;
  --ivory:       #F5EFE0;
  --teal:        #1B4D4D;
  --stone:       #2E2017;

  --font-display: 'Cinzel', serif;
  --font-body: 'Work Sans', sans-serif;

  --radius: 2px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  font-family: var(--font-body);
  color: var(--stone);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }

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

/* ============================================================
   PRELOADER WHEEL
   ============================================================ */
.wheel-loader{
  position:fixed; inset:0; z-index:9999;
  background: var(--navy-deep);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.wheel-loader.is-hidden{ opacity:0; visibility:hidden; pointer-events:none; }
.loader-svg{ width:64px; height:64px; animation: spin-wheel 1.4s linear infinite; }
.loader-rim{ fill:none; stroke: var(--gold); stroke-width:3; }
.loader-spokes line{ stroke: var(--gold); stroke-width:2; }
.loader-hub{ fill: var(--gold); }
@keyframes spin-wheel{ to{ transform: rotate(360deg); } }

/* ============================================================
   TOP STRIP
   ============================================================ */
.top-strip{
  background: var(--navy-deep);
  color: var(--gold-light);
  font-size: .78rem;
  letter-spacing: .04em;
}
.top-strip-inner{
  max-width: 1240px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding: 7px 24px;
}
.top-strip-item a{ color: var(--ivory); }
.top-strip-year{ display:none; }
@media (min-width: 760px){ .top-strip-year{ display:inline; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: sticky; top:0; z-index:500;
  background: rgba(11,31,58,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201,160,78,0.25);
}
.header-inner{
  max-width:1240px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 24px;
  gap: 20px;
}
.brand{ display:flex; align-items:center; gap:12px; color: var(--ivory); }
.brand-mark{ width:38px; height:38px; color: var(--gold); flex-shrink:0; }
.brand-mark svg{ width:100%; height:100%; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-name{ font-family: var(--font-display); font-size:1.05rem; font-weight:600; letter-spacing:.01em; }
.brand-name em{ font-style:normal; color: var(--gold-light); }
.brand-sub{ font-size:.62rem; letter-spacing:.18em; color: var(--gold); margin-top:2px; }

.main-nav{ display:none; gap: 28px; }
.main-nav a{
  color: var(--ivory); font-size:.88rem; letter-spacing:.03em;
  position:relative; padding: 4px 0;
}
.main-nav a::after{
  content:''; position:absolute; left:0; right:100%; bottom:0; height:1px;
  background: var(--gold); transition: right .3s var(--ease);
}
.main-nav a:hover::after{ right:0; }

@media (min-width: 980px){ .main-nav{ display:flex; } }

.nav-cta{
  display:none;
  background: var(--red);
  color: var(--ivory);
  font-size:.82rem; letter-spacing:.04em;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  transition: background .25s var(--ease);
}
.nav-cta:hover{ background: var(--red-bright); }
@media (min-width:980px){ .nav-cta{ display:inline-block; } }

.nav-toggle{
  display:flex; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:6px;
}
.nav-toggle span{ width:24px; height:2px; background: var(--gold); display:block; }
@media (min-width:980px){ .nav-toggle{ display:none; } }

.main-nav.is-open{
  display:flex; position:absolute; top:100%; left:0; right:0;
  flex-direction:column; background: var(--navy-deep);
  padding: 18px 24px; gap:16px;
  border-bottom: 1px solid rgba(201,160,78,0.25);
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  min-height: 100vh;
  display:flex; align-items:center;
  overflow:hidden;
  background: var(--navy-deep);
}
.hero-slides{ position:absolute; inset:0; }
.hero-slide{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  background-color: var(--navy-deep);
  opacity:0;
  transition: opacity 1.4s var(--ease);
}
.hero-slide.is-active{ opacity:1; }
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(7,21,39,.78) 0%, rgba(7,21,39,.45) 38%, rgba(7,21,39,.85) 100%);
}

.hero-content{
  position:relative; z-index:2;
  max-width: 1240px; margin: 0 auto;
  padding: 0 24px;
  width:100%;
  color: var(--ivory);
}
.hero-eyebrow{
  font-family: var(--font-display);
  font-size:.78rem; letter-spacing:.28em; text-transform:uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  opacity:0; animation: rise .8s var(--ease) .2s forwards;
}
.hero-title{
  font-family: var(--font-display);
  font-weight:600;
  font-size: clamp(2.1rem, 5.4vw, 4.4rem);
  line-height: 1.12;
  max-width: 820px;
  opacity:0; animation: rise .9s var(--ease) .4s forwards;
}
.hero-title span{ color: var(--gold-light); font-style:normal; }
.hero-desc{
  margin-top:22px; max-width:540px;
  font-size:1.02rem; color: rgba(245,239,224,0.85);
  opacity:0; animation: rise .9s var(--ease) .6s forwards;
}
.hero-actions{
  margin-top:34px; display:flex; gap:16px; flex-wrap:wrap;
  opacity:0; animation: rise .9s var(--ease) .8s forwards;
}
@keyframes rise{ from{ opacity:0; transform: translateY(18px); } to{ opacity:1; transform:translateY(0); } }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  font-family: var(--font-body); font-size:.92rem; letter-spacing:.02em;
  padding: 14px 30px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: all .3s var(--ease);
}
.btn-primary{ background: var(--red); color: var(--ivory); border-color: var(--gold); }
.btn-primary:hover{ background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.btn-ghost{ background: transparent; color: var(--ivory); border-color: rgba(245,239,224,0.5); }
.btn-ghost:hover{ border-color: var(--gold-light); color: var(--gold-light); }
.btn-line{ background:transparent; color: var(--navy); border-color: var(--navy); padding:10px 20px; font-size:.85rem; }
.btn-line:hover{ background: var(--navy); color: var(--ivory); }

/* Rath wheel slide nav, signature element */
.hero-wheel-nav{
  position:absolute; right: 32px; bottom: 38px; z-index:3;
  width: 88px; height:88px;
}
@media (min-width:760px){ .hero-wheel-nav{ width:108px; height:108px; right:48px; bottom:48px; } }
.hero-wheel-svg{ width:100%; height:100%; transform: rotate(-90deg); }
.wheel-track{ fill:none; stroke: rgba(245,239,224,.25); stroke-width:2.5; }
.wheel-progress{
  fill:none; stroke: var(--gold); stroke-width:2.5;
  stroke-dasharray: 314; stroke-dashoffset: 314;
  transition: stroke-dashoffset 5.6s linear;
}
.wheel-spokes-deco line{ stroke: rgba(245,239,224,.35); stroke-width:1; }
.wheel-center{
  position:absolute; inset:0; display:flex; flex-direction:column;
  align-items:center; justify-content:center; color: var(--ivory);
  font-family: var(--font-display);
}
.wheel-center #wheelIndex{ font-size:1.1rem; letter-spacing:.05em; }
.wheel-center small{ font-size:.6rem; color: var(--gold-light); letter-spacing:.1em; }

.hero-scroll-cue{
  position:absolute; left:32px; bottom:38px; z-index:3;
  display:none; flex-direction:column; align-items:center; gap:10px;
  color: var(--ivory); font-size:.72rem; letter-spacing:.18em;
}
@media (min-width:760px){ .hero-scroll-cue{ display:flex; } }
.scroll-line{ width:1px; height:46px; background: rgba(245,239,224,.3); position:relative; overflow:hidden; }
.scroll-dot{ position:absolute; left:-1.5px; top:0; width:4px; height:4px; border-radius:50%; background: var(--gold); animation: scroll-move 2.2s ease-in-out infinite; }
@keyframes scroll-move{ 0%{ top:0; opacity:0; } 20%{ opacity:1; } 80%{ opacity:1; } 100%{ top:100%; opacity:0; } }

/* ============================================================
   TRANSPARENT BOOKING FORM (glass, overlapping)
   ============================================================ */
.booking-band{
  position:relative;
  margin-top: -86px;
  z-index: 10;
  padding: 0 24px;
  display:flex; justify-content:center;
}
@media (min-width:760px){ .booking-band{ margin-top:-96px; } }

.booking-card{
  width:100%; max-width: 1040px;
  background: rgba(245,239,224,0.14);
  border: 1px solid rgba(245,239,224,0.35);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  box-shadow: 0 24px 60px -20px rgba(7,21,39,0.55);
}
.booking-card-head{ margin-bottom:18px; text-align:center; color: var(--navy-deep); }
.booking-eyebrow{
  display:block; font-family: var(--font-display); font-size:.68rem;
  letter-spacing:.24em; text-transform:uppercase; color: var(--red);
  margin-bottom:6px;
}
.booking-card-head h2{
  font-family: var(--font-display); font-size:1.5rem; font-weight:600;
  color: var(--navy-deep);
}

.booking-form{
  display:grid; grid-template-columns: repeat(2, 1fr); gap:16px;
}
@media (min-width:760px){ .booking-form{ grid-template-columns: repeat(5, 1fr); align-items:end; } }

.field{ display:flex; flex-direction:column; gap:6px; }
.field-wide{ grid-column: 1 / -1; }
@media (min-width:760px){ .field-wide{ grid-column:auto; } }

.field label{
  font-size:.7rem; letter-spacing:.06em; text-transform:uppercase;
  color: var(--navy-deep); opacity:.8;
}
.field input, .field select{
  font-family: var(--font-body);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(11,31,58,0.25);
  border-radius: var(--radius);
  padding: 11px 12px;
  font-size: .9rem;
  color: var(--navy-deep);
  outline:none;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input::placeholder{ color: rgba(11,31,58,0.5); }
.field input:focus, .field select:focus{
  border-color: var(--red); background: rgba(255,255,255,0.78);
}
.booking-submit{ grid-column: 1 / -1; }
@media (min-width:760px){ .booking-submit{ grid-column:auto; height: 100%; } }

.booking-note{
  text-align:center; margin-top:18px; font-size:.85rem; color: var(--navy-deep);
}
.booking-note a{ color: var(--red); font-weight:600; }

/* ============================================================
   SECTION HEADS (shared)
   ============================================================ */
.section-eyebrow{
  display:block; font-family: var(--font-display); font-size:.7rem;
  letter-spacing:.26em; text-transform:uppercase; color: var(--red);
  margin-bottom:10px;
}
.section-title{
  font-family: var(--font-display); font-weight:600;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  color: var(--navy-deep);
  line-height:1.22;
}
.section-head.center{ text-align:center; max-width:680px; margin:0 auto 50px; }
.section-head.light .section-title{ color: var(--ivory); }
.section-head.light .section-eyebrow{ color: var(--gold-light); }

/* ============================================================
   INTRO / ABOUT
   ============================================================ */
.intro{ padding: 130px 24px 80px; }
.intro-inner{
  max-width:1240px; margin:0 auto;
  display:grid; gap:50px;
}
@media (min-width:920px){ .intro-inner{ grid-template-columns: 1.1fr .9fr; align-items:center; } }

.intro-text p{ margin-top:20px; color: rgba(46,32,23,0.82); max-width:560px; }
.intro-stats{ display:flex; gap:36px; margin-top:36px; flex-wrap:wrap; }
.stat strong{ display:block; font-family: var(--font-display); font-size:1.6rem; color: var(--red); }
.stat span{ font-size:.78rem; letter-spacing:.03em; color: rgba(46,32,23,0.7); }

.intro-visual{ position:relative; height: 420px; }
.intro-frame{
  position:absolute; overflow:hidden; border-radius: var(--radius);
  box-shadow: 0 30px 60px -24px rgba(11,31,58,0.4);
  background-color: var(--teal);
}
.intro-frame img{ width:100%; height:100%; object-fit:cover; }
.intro-frame:not(.intro-frame-small){ top:0; left:0; width:78%; height:84%; }
.intro-frame-small{ right:0; bottom:0; width:50%; height:50%; border:6px solid var(--ivory); }

/* ============================================================
   ROUTE DIVIDER
   ============================================================ */
.route-divider{ background: var(--ivory); padding: 0 0 10px; }
.route-svg{ width:100%; height:60px; display:block; }
.route-path{ fill:none; stroke: var(--gold); stroke-width:1.5; stroke-dasharray: 2 8; }
.route-dot{ fill: var(--red); }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages{ padding: 30px 24px 100px; max-width:1240px; margin:0 auto; }
.packages-sub{ margin-top:14px; font-size:.92rem; color: rgba(46,32,23,0.72); }

.filter-section{ margin-bottom:32px; }
.filter-section-title{
  font-family: var(--font-display); font-size:.8rem; letter-spacing:.08em;
  text-transform:uppercase; color: var(--navy-deep);
  margin-bottom:12px; opacity:.75;
}

.package-filters, .price-filters{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-start;
  margin-bottom: 0;
}
.filter-btn, .price-filter{
  font-family: var(--font-body); font-size:.82rem; letter-spacing:.02em;
  background: transparent; border: 1px solid rgba(11,31,58,0.22);
  color: var(--navy-deep); padding: 9px 20px;
  cursor:pointer; border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.filter-btn:hover, .price-filter:hover{ border-color: var(--red); color: var(--red); }
.filter-btn.is-active, .price-filter.is-active{ background: var(--navy-deep); border-color: var(--navy-deep); color: var(--ivory); }

.package-grid{
  display:grid; gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width:760px){ .package-grid{ grid-template-columns: repeat(3, 1fr); } }

.package-card{
  background:#fff; border:1px solid rgba(11,31,58,0.08);
  overflow:hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), opacity .3s var(--ease);
}
.package-card.is-hidden{ display:none; }
.package-card:hover{ transform: translateY(-6px); box-shadow: 0 30px 50px -28px rgba(11,31,58,0.35); }
.package-img{
  height: 220px; background-size:cover; background-position:center; position:relative;
  background-color: var(--navy);
}
.package-tag{
  position:absolute; top:14px; left:14px;
  background: var(--red); color: var(--ivory);
  font-size:.66rem; letter-spacing:.08em; text-transform:uppercase;
  padding: 6px 12px;
}
.package-tag-alt{ background: var(--teal); }
.package-tag-alt2{ background: var(--gold); color: var(--navy-deep); }
.package-tag-alt3{ background: var(--navy); }
.package-duration{
  position:absolute; top:14px; right:14px;
  background: rgba(7,21,39,0.78); color: var(--gold-light);
  font-size:.66rem; letter-spacing:.06em;
  padding: 6px 11px;
}
.package-body{ padding: 22px 22px 24px; }
.package-body h3{
  font-family: var(--font-display); font-size:1.18rem; color: var(--navy-deep); margin-bottom:10px;
}
.package-body p{ font-size:.88rem; color: rgba(46,32,23,0.75); min-height:54px; }
.package-icons{
  display:flex; gap:14px; margin:12px 0 14px;
  padding-bottom:12px; border-bottom:1px solid rgba(11,31,58,0.08);
}
.icon-item{
  font-size:.85rem; color: var(--teal); font-weight:500;
  display:flex; align-items:center; gap:4px;
}
.package-includes{ margin-top:14px; display:flex; flex-direction:column; gap:7px; }
.package-includes li{
  font-size:.8rem; color: rgba(46,32,23,0.78);
  padding-left:18px; position:relative;
}
.package-includes li::before{
  content:''; position:absolute; left:0; top:7px;
  width:7px; height:7px; border-radius:50%;
  background: var(--gold);
}
.package-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:20px; }
.package-price{ font-family: var(--font-display); color: var(--red); font-size:1.15rem; }
.package-price small{ font-family: var(--font-body); font-size:.7rem; color: rgba(46,32,23,0.6); }

.package-custom-note{
  text-align:center; margin-top:46px; font-size:.9rem; color: rgba(46,32,23,0.72);
}
.package-custom-note a{ color: var(--red); font-weight:600; }

/* ============================================================
   FEATURES
   ============================================================ */
.features{ background: var(--teal); padding: 70px 24px; }
.features-inner{
  max-width:1240px; margin:0 auto;
  display:grid; gap:36px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width:760px){ .features-inner{ grid-template-columns: repeat(4, 1fr); } }
.feature{ color: var(--ivory); text-align:left; }
.feature-glyph{ font-size:1.8rem; display:block; margin-bottom:14px; }
.feature h4{ font-family: var(--font-display); font-size:1.02rem; margin-bottom:8px; }
.feature p{ font-size:.85rem; color: rgba(245,239,224,0.78); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials{ background: var(--navy); padding: 90px 0 100px; overflow:hidden; }
.testimonials .section-head{ padding: 0 24px; }

.testi-track-wrap{ position:relative; max-width:1240px; margin:0 auto; padding: 0 24px; }
.testi-track{
  display:flex; gap:24px;
  overflow-x:auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width:none;
}
.testi-track::-webkit-scrollbar{ display:none; }

.testi-card{
  scroll-snap-align:start;
  flex: 0 0 100%;
  background: rgba(245,239,224,0.06);
  border:1px solid rgba(201,160,78,0.25);
  padding: 32px 28px;
  border-radius: var(--radius);
}
@media (min-width:700px){ .testi-card{ flex: 0 0 calc(50% - 12px); } }
@media (min-width:1080px){ .testi-card{ flex: 0 0 calc(33.333% - 16px); } }

.testi-quote-mark{
  font-family: var(--font-display); font-size:3rem; color: var(--gold);
  line-height:1; margin-bottom:6px;
}
.testi-text{ color: rgba(245,239,224,0.88); font-size:.94rem; min-height:110px; }
.testi-person{ display:flex; align-items:center; gap:14px; margin-top:24px; }
.testi-person img{ width:44px; height:44px; border-radius:50%; object-fit:cover; border:2px solid var(--gold); }
.testi-person strong{ display:block; color: var(--ivory); font-size:.9rem; }
.testi-person span{ font-size:.76rem; color: var(--gold-light); }

.testi-controls{ display:flex; gap:12px; justify-content:center; margin-top:30px; }
.testi-controls button{
  width:42px; height:42px; border-radius:50%;
  border:1px solid var(--gold); background:transparent; color: var(--gold-light);
  cursor:pointer; font-size:1rem; transition: background .25s var(--ease), color .25s var(--ease);
}
.testi-controls button:hover{ background: var(--gold); color: var(--navy-deep); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact{ padding: 100px 24px; max-width:1240px; margin:0 auto; }
.contact-inner{ display:grid; gap:50px; }
@media (min-width:920px){ .contact-inner{ grid-template-columns: 1fr 1fr; align-items:start; } }

.contact-info p{ margin-top:16px; color: rgba(46,32,23,0.78); max-width:460px; }
.contact-list{ margin-top:32px; display:flex; flex-direction:column; gap:22px; }
.contact-list li{ display:flex; gap:16px; align-items:flex-start; }
.contact-icon{ font-size:1.2rem; }
.contact-list strong{ color: var(--navy-deep); font-size:.9rem; }
.contact-list a{ color: var(--red); }
.contact-list div{ font-size:.9rem; color: rgba(46,32,23,0.78); }

.contact-map{ height: 380px; border:1px solid rgba(11,31,58,0.12); overflow:hidden; }
.contact-map iframe{ width:100%; height:100%; border:0; filter: saturate(0.85); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background: var(--navy-deep); color: var(--ivory); position:relative; }
.footer-skyline{ width:100%; line-height:0; }
.skyline-svg{ width:100%; height:60px; display:block; }
@media (min-width:760px){ .skyline-svg{ height:90px; } }
.skyline-path{ fill: var(--navy); }

.footer-main{
  max-width:1240px; margin:0 auto;
  padding: 50px 24px 40px;
  display:grid; gap:36px;
  grid-template-columns: 1fr;
}
@media (min-width:760px){ .footer-main{ grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer-brand-name{ font-family: var(--font-display); font-size:1.2rem; color: var(--gold-light); }
.footer-brand p{ margin-top:14px; font-size:.86rem; color: rgba(245,239,224,0.65); max-width:300px; }
.footer-social{ display:flex; gap:12px; margin-top:18px; }
.footer-social a{
  width:34px; height:34px; border:1px solid rgba(201,160,78,0.4);
  display:flex; align-items:center; justify-content:center;
  font-size:.74rem; color: var(--gold-light); border-radius:50%;
}

.footer-col h5{
  font-family: var(--font-display); font-size:.84rem; letter-spacing:.06em;
  text-transform:uppercase; color: var(--gold); margin-bottom:18px;
}
.footer-col a, .footer-col p{
  display:block; font-size:.86rem; color: rgba(245,239,224,0.7);
  margin-bottom:11px;
}
.footer-col a:hover{ color: var(--gold-light); }

.footer-bottom{
  border-top: 1px solid rgba(245,239,224,0.12);
  max-width:1240px; margin:0 auto;
  padding: 20px 24px 30px;
  display:flex; flex-direction:column; gap:8px;
  font-size:.78rem; color: rgba(245,239,224,0.55);
}
@media (min-width:760px){ .footer-bottom{ flex-direction:row; justify-content:space-between; } }
.footer-bottom a{ color: var(--gold-light); }

/* ============================================================
   FOCUS VISIBILITY
   ============================================================ */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
