/* ==========================================================================
   Tier 1 Sample — Yoga Retreat in Rishikesh
   Modern, minimal, Bootstrap-based, mobile-first, performance conscious.
   ========================================================================== */

:root{
  --ts-primary: #1d5450;
  --ts-primary-dark: #123a37;
  --ts-primary-light: #e7f0ef;
  --ts-accent: #c69a3a;
  --ts-coral: #f16a57;
  --ts-coral-dark: #d6503e;
  --ts-coral-light: #fdece9;
  --ts-bg: #faf8f4;
  --ts-bg-alt: #f3efe5;
  --ts-text: #23302e;
  --ts-text-muted: #647270;
  --ts-border: #e7e1d3;
  --ts-radius: 16px;
  --ts-radius-sm: 10px;
  --ts-shadow: 0 10px 30px rgba(18,58,55,.08);
  --ts-shadow-sm: 0 4px 14px rgba(18,58,55,.06);
  --ts-container: 1180px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body.ts-body{
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ts-text);
  background: var(--ts-bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.ts-body h1, .ts-body h2, .ts-body h3, .ts-body h4, .ts-body h5{
  font-family: "Poppins", "Inter", sans-serif;
  color: var(--ts-primary-dark);
  font-weight: 600;
  line-height: 1.25;
}

.ts-body a{ color: var(--ts-primary); text-decoration: none; }
.ts-body a:hover{ color: var(--ts-accent); }

.ts-body img{ max-width: 100%; height: auto; display: block; }

.ts-container{ max-width: var(--ts-container); margin: 0 auto; padding: 0 18px; }

/* skip link */
.ts-skip-link{
  position: absolute; left: -999px; top: 0; background: var(--ts-primary); color: #fff;
  padding: 10px 16px; z-index: 2000; border-radius: 0 0 8px 0;
}
.ts-skip-link:focus{ left: 0; color: #fff; }

section[id]{ scroll-margin-top: 118px; }

/* ---------- Buttons ---------- */
.ts-btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 50px; font-weight: 600; font-size: 15px;
  border: 2px solid transparent; transition: all .2s ease; white-space: nowrap;
}
.ts-btn-primary{ background: var(--ts-primary); color: #fff; border-color: var(--ts-primary); }
.ts-btn-primary:hover{ background: var(--ts-primary-dark); border-color: var(--ts-primary-dark); color:#fff; }
.ts-btn-outline{ background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.ts-btn-outline:hover{ background: rgba(255,255,255,.15); color: #fff; border-color: #fff; }
.ts-btn-ghost{ background: #fff; color: var(--ts-primary); border-color: var(--ts-border); }
.ts-btn-ghost:hover{ background: var(--ts-primary-light); color: var(--ts-primary-dark); }
.ts-btn-coral{ background: var(--ts-coral); color: #fff; border-color: var(--ts-coral); }
.ts-btn-coral:hover{ background: var(--ts-coral-dark); border-color: var(--ts-coral-dark); color:#fff; }
.ts-btn-sm{ padding: 9px 18px; font-size: 13px; }
.ts-btn-block{ width: 100%; }

/* ---------- Top utility bar ---------- */
.ts-topbar{
  background: var(--ts-primary-dark); color: #dfeceb; font-size: 13px; padding: 7px 0;
}
.ts-topbar .ts-container{ display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.ts-topbar a{ color: #dfeceb; }
.ts-topbar a:hover{ color: #fff; }
.ts-topbar .ts-topbar-links{ display: flex; gap: 18px; flex-wrap: wrap; }
.ts-topbar .ts-topbar-links span i{ margin-right: 6px; }
.ts-topbar .ts-social a{ margin-left: 12px; font-size: 14px; }

/* ---------- Navbar ---------- */
.ts-navbar{
  background: #fff; padding: 12px 0; border-bottom: 1px solid var(--ts-border);
  position: sticky; top: 0; z-index: 1030; transition: box-shadow .2s ease, padding .2s ease;
}
.ts-navbar.ts-scrolled{ box-shadow: 0 4px 18px rgba(0,0,0,.07); padding: 8px 0; }
.ts-navbar .navbar-brand img{ height: 44px; width: auto; }
.ts-navbar .nav-link{
  color: var(--ts-text); font-weight: 600; font-size: 15px; padding: 10px 14px !important;
}
.ts-navbar .nav-link:hover, .ts-navbar .nav-link.active{ color: var(--ts-primary); }
.ts-navbar .dropdown-menu{
  border: 1px solid var(--ts-border); border-radius: 12px; box-shadow: var(--ts-shadow-sm);
  padding: 8px; margin-top: 4px;
}
.ts-navbar .dropdown-item{
  border-radius: 8px; padding: 9px 14px; font-size: 14.5px; font-weight: 500; color: var(--ts-text);
}
.ts-navbar .dropdown-item:hover, .ts-navbar .dropdown-item:focus{
  background: var(--ts-primary-light); color: var(--ts-primary-dark);
}
.ts-nav-cta{ margin-left: 6px; }
@media (min-width: 992px){
  .ts-navbar .nav-item.dropdown:hover .dropdown-menu{ display: block; }
}
@media (max-width: 991.98px){
  .ts-navbar .navbar-collapse{ padding-top: 12px; }
  .ts-nav-cta{ margin: 10px 0 0; display:block; }
}

/* ---------- Hero ---------- */
.ts-hero{
  position: relative;
  min-height: min(88vh, 640px);
  display: flex; align-items: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(11,36,34,.72) 0%, rgba(11,36,34,.55) 45%, rgba(11,36,34,.82) 100%), url('../images/webp/100h.webp') center / cover no-repeat;
}
.ts-hero-inner{ padding: 90px 0 56px; width: 100%; }
.ts-hero-eyebrow{
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.35); padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 18px;
}
.ts-hero-eyebrow i{ color: var(--ts-coral); }
.ts-hero h1{
  color: #fff; font-size: clamp(28px, 4.6vw, 48px); font-weight: 700; margin-bottom: 16px; max-width: 820px;
}
.ts-hero p.ts-hero-sub{
  font-size: clamp(15px, 1.6vw, 19px); color: #eef4f3; max-width: 640px; margin-bottom: 26px; font-weight: 400;
}
.ts-hero-ctas{ display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.ts-hero-badges{ display: flex; flex-wrap: wrap; gap: 14px 26px; font-size: 14px; }
.ts-hero-badges .ts-badge-item{ display: flex; align-items: center; gap: 8px; font-weight: 600; }
.ts-hero-badges i{ color: var(--ts-accent); }
@media (max-width: 575.98px){
  .ts-hero{ min-height: min(92vh, 560px); }
  .ts-hero-inner{ padding: 64px 0 40px; }
  .ts-hero-ctas .ts-btn{ width: 100%; }
}
@media (orientation: landscape) and (max-height: 480px){
  .ts-hero{ min-height: auto; padding-top: 20px; }
  .ts-hero-inner{ padding: 70px 0 30px; }
}

/* ---------- Trust strip ---------- */
.ts-trust{ background: #fff; border-bottom: 1px solid var(--ts-border); padding: 22px 0; }
.ts-trust-item{ text-align: center; padding: 6px 8px; }
.ts-trust-item .ts-trust-num{ font-family:"Poppins",sans-serif; font-weight: 700; font-size: 20px; color: var(--ts-primary-dark); }
.ts-trust-item .ts-trust-num .fa-star{ color: var(--ts-accent); font-size: 16px; }
.ts-trust-item .ts-trust-label{ font-size: 12.5px; color: var(--ts-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .02em; }
.ts-trust-sep{ border-left: 1px solid var(--ts-border); }

/* ---------- Jump nav ---------- */
.ts-jumpnav{
  position: sticky; top: 69px; z-index: 1020; background: var(--ts-bg-alt);
  border-bottom: 1px solid var(--ts-border);
}
.ts-jumpnav-scroll{
  display: flex; gap: 6px; overflow-x: auto; padding: 10px 18px; scrollbar-width: none;
  max-width: var(--ts-container); margin: 0 auto;
}
.ts-jumpnav-scroll::-webkit-scrollbar{ display: none; }
.ts-jumpnav-scroll a{
  flex: 0 0 auto; font-size: 13.5px; font-weight: 600; color: var(--ts-text);
  padding: 8px 16px; border-radius: 50px; background: #fff; border: 1px solid var(--ts-border);
}
.ts-jumpnav-scroll a:hover{ background: var(--ts-primary); color: #fff; border-color: var(--ts-primary); }

/* ---------- Section framing ---------- */
.ts-section{ padding: 64px 0; }
.ts-section-alt{ background: var(--ts-bg-alt); }
.ts-head{ max-width: 720px; margin: 0 auto 40px; text-align: center; }
.ts-eyebrow{
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ts-primary); margin-bottom: 10px;
}
.ts-head h2{ font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 12px; }
.ts-head p{ color: var(--ts-text-muted); font-size: 16px; margin: 0; }
.ts-head-left{ text-align: left; margin: 0 0 34px; }
@media (max-width: 767.98px){ .ts-section{ padding: 46px 0; } }

/* ---------- Intro / overview ---------- */
.ts-intro p{ color: var(--ts-text-muted); margin-bottom: 16px; }
.ts-intro-media img{ border-radius: var(--ts-radius); box-shadow: var(--ts-shadow); }
.ts-intro-stat-card{
  background: #fff; border: 1px solid var(--ts-border); border-radius: var(--ts-radius-sm);
  padding: 16px 18px; box-shadow: var(--ts-shadow-sm); position: absolute; bottom: -22px; left: -22px; max-width: 210px;
}
.ts-intro-media{ position: relative; }
.ts-intro-stat-card .num{ font-family:"Poppins",sans-serif; font-weight: 700; font-size: 22px; color: var(--ts-coral); }
.ts-intro-stat-card .lbl{ font-size: 12.5px; color: var(--ts-text-muted); }
@media (max-width: 767.98px){
  .ts-intro-stat-card{ position: static; margin-top: 14px; max-width: none; display:flex; align-items:center; gap:10px; }
}

/* ---------- Feature / benefit cards ---------- */
.ts-feature-card{
  background: #fff; border: 1px solid var(--ts-border); border-radius: var(--ts-radius);
  padding: 28px 24px; height: 100%; transition: transform .2s ease, box-shadow .2s ease;
}
.ts-feature-card:hover{ transform: translateY(-4px); box-shadow: var(--ts-shadow); }
.ts-feature-icon{
  width: 52px; height: 52px; border-radius: 14px; background: var(--ts-primary-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.ts-feature-icon img{ width: 28px; height: 28px; object-fit: contain; }
.ts-feature-card h3{ font-size: 18px; margin-bottom: 8px; }
.ts-feature-card p{ font-size: 14.5px; color: var(--ts-text-muted); margin: 0; }

/* ---------- Highlights checklist ---------- */
.ts-checklist{ display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 20px; margin: 0; padding: 0; list-style: none; }
.ts-checklist li{ display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; }
.ts-checklist i{ color: var(--ts-coral); background: var(--ts-coral-light); width: 24px; height: 24px; border-radius: 50%; display:flex; align-items:center; justify-content:center; font-size: 11px; flex: 0 0 auto; }
@media (max-width: 575.98px){ .ts-checklist{ grid-template-columns: 1fr; } }

/* ---------- Team / host cards ---------- */
.ts-team-card{ text-align: center; }
.ts-team-photo{
  width: 150px; height: 150px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px;
  box-shadow: var(--ts-shadow-sm); border: 4px solid #fff; outline: 1px solid var(--ts-border);
}
.ts-team-photo img{ width: 100%; height: 100%; object-fit: cover; }
.ts-team-card h3{ font-size: 17px; margin-bottom: 2px; }
.ts-team-role{ color: var(--ts-accent); font-weight: 600; font-size: 13px; margin-bottom: 8px; }
.ts-team-card p.ts-team-desc{ font-size: 14px; color: var(--ts-text-muted); }

/* ---------- Schedule timeline ---------- */
.ts-timeline{ list-style: none; margin: 0; padding: 0; position: relative; }
.ts-timeline::before{ content:''; position: absolute; left: 66px; top: 6px; bottom: 6px; width: 2px; background: var(--ts-border); }
.ts-timeline li{ display: flex; gap: 22px; padding: 12px 0; position: relative; }
.ts-timeline .ts-time{
  flex: 0 0 92px; font-weight: 700; font-size: 13.5px; color: var(--ts-primary); position: relative; text-align: right; padding-right: 22px;
}
.ts-timeline .ts-time::after{
  content:''; position: absolute; right: -5px; top: 5px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--ts-primary); border: 3px solid var(--ts-bg-alt);
}
.ts-timeline .ts-task{ font-size: 14.5px; padding-top: 1px; }
@media (max-width: 575.98px){
  .ts-timeline::before{ left: 50px; }
  .ts-timeline .ts-time{ flex-basis: 76px; font-size: 12px; padding-right: 16px; }
}

/* ---------- Quick enquiry form ---------- */
.ts-form-card{
  background: #fff; border: 1px solid var(--ts-border); border-radius: var(--ts-radius);
  padding: 30px; box-shadow: var(--ts-shadow);
}
.ts-form-card h3{ font-size: 19px; margin-bottom: 4px; }
.ts-form-card .ts-form-sub{ color: var(--ts-text-muted); font-size: 13.5px; margin-bottom: 20px; }
.ts-form-card .form-control{
  border-radius: 10px; border: 1px solid var(--ts-border); padding: 12px 14px; font-size: 14.5px;
}
.ts-form-card .form-control:focus{ border-color: var(--ts-primary); box-shadow: 0 0 0 .18rem rgba(29,84,80,.15); }
.ts-form-card label{ font-size: 13.5px; font-weight: 600; margin-bottom: 4px; }
#ts-form-msg{ font-size: 13.5px; margin-top: 10px; }

/* ---------- Activity grid ---------- */
.ts-activity-card{
  border-radius: var(--ts-radius); overflow: hidden; position: relative; height: 210px;
  box-shadow: var(--ts-shadow-sm);
}
.ts-activity-card img{ width: 100%; height: 100%; object-fit: cover; }
.ts-activity-card .ts-activity-label{
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(10,32,30,.85) 100%);
  color: #fff; font-weight: 600; font-size: 14px;
}

/* ---------- Pricing ---------- */
.ts-price-card{
  background: #fff; border: 1px solid var(--ts-border); border-radius: var(--ts-radius);
  padding: 30px 26px; text-align: center; height: 100%; position: relative; transition: transform .2s ease, box-shadow .2s ease;
}
.ts-price-card:hover{ transform: translateY(-4px); box-shadow: var(--ts-shadow); }
.ts-price-card.ts-popular{ border-color: var(--ts-coral); box-shadow: var(--ts-shadow); }
.ts-price-badge{
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--ts-coral); color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 5px 16px; border-radius: 50px; text-transform: uppercase; letter-spacing: .04em;
}
.ts-price-card .ts-duration{ font-weight: 700; font-size: 17px; margin-bottom: 18px; }
.ts-price-row{ display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-top: 1px dashed var(--ts-border); }
.ts-price-row:first-of-type{ border-top: none; }
.ts-price-room{ font-size: 13.5px; color: var(--ts-text-muted); font-weight: 600; text-align: left; }
.ts-price-amt{ text-align: right; }
.ts-price-amt del{ color: #b4a892; font-size: 12.5px; margin-right: 6px; }
.ts-price-amt .cur{ font-weight: 700; color: var(--ts-primary-dark); font-size: 18px; }
.ts-price-card .ts-btn{ margin-top: 20px; }
.ts-price-note{ font-size: 13px; color: var(--ts-text-muted); }

/* ---------- Accommodation gallery ---------- */
.ts-gallery-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ts-gallery-grid img{ border-radius: var(--ts-radius-sm); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
@media (max-width: 767.98px){ .ts-gallery-grid{ grid-template-columns: repeat(2, 1fr); } }

/* ---------- Testimonials ---------- */
.ts-testimonial-card{
  background: #fff; border: 1px solid var(--ts-border); border-radius: var(--ts-radius);
  padding: 26px; height: 100%; box-shadow: var(--ts-shadow-sm);
}
.ts-testimonial-stars{ color: var(--ts-accent); font-size: 13px; margin-bottom: 12px; }
.ts-testimonial-card p{ font-size: 14.5px; color: var(--ts-text); margin-bottom: 18px; }
.ts-testimonial-person{ display: flex; align-items: center; gap: 12px; }
.ts-testimonial-person img{ width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.ts-testimonial-person h4{ font-size: 14.5px; margin: 0; }
.ts-testimonial-person span{ font-size: 12.5px; color: var(--ts-text-muted); }

/* ---------- FAQ ---------- */
.ts-accordion .accordion-item{ border: 1px solid var(--ts-border); border-radius: var(--ts-radius-sm) !important; margin-bottom: 12px; overflow: hidden; }
.ts-accordion .accordion-button{ font-weight: 600; font-size: 15px; padding: 16px 20px; color: var(--ts-text); }
.ts-accordion .accordion-button:not(.collapsed){ background: var(--ts-primary-light); color: var(--ts-primary-dark); box-shadow: none; }
.ts-accordion .accordion-button:focus{ box-shadow: none; border-color: var(--ts-border); }
.ts-accordion .accordion-body{ font-size: 14.5px; color: var(--ts-text-muted); padding: 4px 20px 18px; }

/* ---------- Reach ---------- */
.ts-reach-card{ background: #fff; border: 1px solid var(--ts-border); border-radius: var(--ts-radius); padding: 22px; height: 100%; }
.ts-reach-num{
  width: 34px; height: 34px; border-radius: 50%; background: var(--ts-primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; margin-bottom: 12px;
}
.ts-reach-card h3{ font-size: 16px; margin-bottom: 6px; }
.ts-reach-card p{ font-size: 14px; color: var(--ts-text-muted); margin: 0; }
.ts-fare-table{ width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--ts-radius-sm); overflow: hidden; }
.ts-fare-table th, .ts-fare-table td{ padding: 14px 18px; border-bottom: 1px solid var(--ts-border); font-size: 14.5px; text-align: left; }
.ts-fare-table tr:last-child th, .ts-fare-table tr:last-child td{ border-bottom: none; }

/* ---------- Final CTA banner ---------- */
.ts-cta-banner{
  background: linear-gradient(120deg, var(--ts-primary-dark), var(--ts-primary));
  color: #fff; border-radius: var(--ts-radius); padding: 46px 30px; text-align: center;
}
.ts-cta-banner h2{ color: #fff; margin-bottom: 10px; font-size: clamp(22px,3vw,30px); }
.ts-cta-banner p{ color: #dfeceb; margin-bottom: 24px; }

/* ---------- Footer ---------- */
.ts-footer{ background: var(--ts-primary-dark); color: #cfe1de; padding: 56px 0 0; font-size: 14.5px; }
.ts-footer h6{ color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 16px; }
.ts-footer a{ color: #cfe1de; }
.ts-footer a:hover{ color: #fff; }
.ts-footer ul{ list-style: none; padding: 0; margin: 0; }
.ts-footer ul li{ margin-bottom: 10px; }
.ts-footer .ts-foot-logo{ height: 42px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.ts-footer .ts-foot-social a{
  display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  border-radius: 50%; background: rgba(255,255,255,.08); margin-right: 8px; font-size: 14px;
}
.ts-footer .ts-foot-social a:hover{ background: var(--ts-coral); color: #fff; }
.ts-footer-bottom{ border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding: 18px 0 90px; font-size: 13px; text-align: center; color: #aac4c0; }
@media (min-width: 576px){ .ts-footer-bottom{ padding-bottom: 18px; } }

/* ---------- Sticky mobile CTA ---------- */
.ts-mobile-cta{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040; background: #fff;
  border-top: 1px solid var(--ts-border); box-shadow: 0 -6px 18px rgba(0,0,0,.08);
  display: flex; padding: 10px 12px; gap: 10px;
}
.ts-mobile-cta a{
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 13.5px; padding: 12px 8px; border-radius: 10px;
}
.ts-mobile-cta .ts-call{ background: var(--ts-primary-light); color: var(--ts-primary-dark); }
.ts-mobile-cta .ts-whatsapp{ background: #25D366; color: #fff; }
.ts-mobile-cta .ts-enquire{ background: var(--ts-coral); color: #fff; }
@media (min-width: 576px){ .ts-mobile-cta{ display: none; } }
body.ts-body{ padding-bottom: 0; }
@media (max-width: 575.98px){ body.ts-body{ padding-bottom: 66px; } }

/* ---------- Misc ---------- */
.ts-note{
  background: #fff7e6; border: 1px solid #f0dfa8; border-radius: var(--ts-radius-sm);
  padding: 14px 18px; font-size: 13.5px; color: #6b5a1f;
}
.ts-note strong{ color: #5a4a12; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .ts-feature-card, .ts-price-card{ transition: none; }
}
