/* ============================================
   TOK COMMUNITY — CORE STYLESHEET
   Shared across all pages for consistency
   ============================================ */

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

:root {
  --green: #0B3D2E;
  --green-mid: #145C44;
  --green-light: #1E8A5E;
  --gold: #F5A623;
  --gold-light: #FFD07A;
  --cream: #F8F5F0;
  --charcoal: #1A1A2E;
  --red: #E63946;
  --white: #FFFFFF;
  --text-muted: #6B7B8D;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 15px rgba(11,61,46,0.08);
  --shadow-md: 0 12px 40px rgba(11,61,46,0.12);
  --shadow-lg: 0 20px 60px rgba(11,61,46,0.16);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }
.centered { text-align: center; }
.centered .section-sub { margin: 0 auto; }

/* ── SKIP LINK (Accessibility) ── */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--green); padding: 0.6rem 1.2rem;
  font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  display: inline-block; color: var(--green-light);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--green); line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em { font-style: normal; color: var(--gold); }
.section-sub { color: var(--text-muted); font-size: 1rem; line-height: 1.75; max-width: 560px; }
h1, h2, h3, h4 { font-family: var(--font-display); }

/* ============================================
   NAVIGATION (shared header)
   ============================================ */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(11,61,46,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,166,35,0.2);
  transition: padding 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo .logo-badge {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e8960e);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.1rem; color: var(--green);
  box-shadow: 0 0 18px rgba(245,166,35,0.5); flex-shrink: 0;
}
.nav-logo .logo-text { color: var(--white); }
.nav-logo .logo-text span { display: block; }
.nav-logo .logo-text .name { font-weight: 700; font-size: 1rem; letter-spacing: 0.05em; color: var(--gold); }
.nav-logo .logo-text .tagline { font-size: 0.65rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; transition: color 0.2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links .has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 140%; left: 0; min-width: 220px;
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow-lg);
  list-style: none; padding: 0.6rem; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all 0.2s; border: 1px solid rgba(11,61,46,0.06);
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { color: var(--charcoal); padding: 0.6rem 0.8rem; border-radius: 8px; display: block; font-size: 0.85rem; }
.dropdown-menu li a:hover { background: var(--cream); color: var(--green); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), #e8960e);
  color: var(--green); font-weight: 700; font-size: 0.85rem;
  padding: 0.55rem 1.4rem; border-radius: 50px; text-decoration: none;
  letter-spacing: 0.04em; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(245,166,35,0.35); white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(245,166,35,0.5); }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 0.5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw);
  background: var(--green); z-index: 99; padding: 6rem 2rem 2rem; transform: translateX(100%);
  transition: transform 0.3s; flex-direction: column; gap: 1.5rem; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: var(--white); text-decoration: none; font-size: 1rem; font-weight: 500; }
.mobile-menu .nav-cta { align-self: flex-start; }
.menu-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 98;
}
.menu-overlay.open { display: block; }

/* ── BREADCRUMBS ── */
.breadcrumbs {
  padding: 6.5rem 0 1rem; font-size: 0.82rem; color: var(--text-muted);
}
.breadcrumbs a { color: var(--green-mid); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { margin: 0 0.4rem; color: rgba(11,61,46,0.3); }

/* On dark hero backgrounds, breadcrumbs need light text for legibility.
   This overrides any inline opacity styles left on individual pages. */
.page-hero .breadcrumbs, .hero .breadcrumbs {
  color: rgba(255,255,255,0.65) !important;
}
.page-hero .breadcrumbs a, .hero .breadcrumbs a {
  color: rgba(255,255,255,0.85) !important;
}
.page-hero .breadcrumbs a:hover, .hero .breadcrumbs a:hover {
  color: var(--gold) !important;
}
.page-hero .breadcrumbs .sep, .hero .breadcrumbs .sep {
  color: rgba(255,255,255,0.35) !important;
}

/* ============================================
   PAGE HERO (inner pages — shorter than homepage)
   ============================================ */
.page-hero {
  background: linear-gradient(160deg, #061e17 0%, #0B3D2E 50%, #0f5233 100%);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 4rem 0 4.5rem;
  position: relative; overflow: hidden; color: var(--white);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.38'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold); padding: 0.5rem 1.3rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.1; margin-bottom: 1rem; max-width: 760px;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p { font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,0.75); max-width: 600px; line-height: 1.7; font-weight: 300; }
.page-hero p strong { color: var(--gold-light); font-weight: 600; }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #e8960e);
  color: var(--green); font-weight: 700; font-size: 1rem;
  padding: 0.9rem 2.2rem; border-radius: 50px; text-decoration: none;
  box-shadow: 0 6px 28px rgba(245,166,35,0.45);
  transition: transform 0.2s, box-shadow 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(245,166,35,0.6); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.3); color: var(--white);
  font-weight: 600; font-size: 1rem;
  padding: 0.9rem 2.2rem; border-radius: 50px; text-decoration: none;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,166,35,0.08); }
.btn-green {
  background: var(--green); color: var(--white);
  font-weight: 700; font-size: 1rem; padding: 1rem 2.5rem; border-radius: 50px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.6rem;
  box-shadow: 0 8px 32px rgba(11,61,46,0.35); transition: transform 0.2s, box-shadow 0.2s; border: none; cursor: pointer;
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(11,61,46,0.45); }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================
   STATS STRIP
   ============================================ */
.stats { background: linear-gradient(135deg, var(--green), var(--green-mid)); padding: 3rem 0; }
.stats-grid { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.5rem; }
.stat-item { text-align: center; padding: 1.5rem 1rem; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; display: block; }
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 0.4rem; font-weight: 500; letter-spacing: 0.04em; }

/* ============================================
   CARDS — SERVICES / DESTINATIONS / GENERIC
   ============================================ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: var(--white); border-radius: 20px; padding: 2rem 1.8rem;
  border: 1px solid rgba(11,61,46,0.08); transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden; text-decoration: none; display: block; color: var(--charcoal);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-graphic { width: 100%; height: 140px; border-radius: 14px; margin-bottom: 1.2rem; overflow: hidden; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--green); margin-bottom: 0.6rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.service-tag { display: inline-block; margin-top: 1rem; font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 50px; letter-spacing: 0.06em; text-transform: uppercase; }
.tag-cab { background: rgba(11,61,46,0.08); color: var(--green); }
.tag-travel { background: rgba(245,166,35,0.15); color: #b07000; }
.tag-stay { background: rgba(30,138,94,0.12); color: var(--green-mid); }
.card-link-arrow { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; color: var(--green-mid); font-weight: 600; font-size: 0.85rem; }

/* ── DESTINATION CARDS (graphic backgrounds) ── */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-top: 3rem; }
.dest-card { border-radius: 18px; overflow: hidden; aspect-ratio: 3/4; position: relative; cursor: pointer; transition: transform 0.3s; text-decoration: none; display: block; }
.dest-card:hover { transform: scale(1.02); }
.dest-card.featured { grid-row: span 2; aspect-ratio: auto; min- }
.dest-bg { width: 100%; height: 100%; display: flex; align-items: flex-end; padding: 1.5rem; position: relative; }
.dest-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,20,14,0.92) 0%, rgba(6,20,14,0.35) 55%, rgba(6,20,14,0.1) 100%); }
.dest-name { position: relative; z-index: 1; color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.dest-sub { position: relative; z-index: 1; color: rgba(255,255,255,0.65); font-size: 0.78rem; font-weight: 500; margin-top: 0.2rem; }
.bg-munnar { background: linear-gradient(to top, rgba(6,20,14,0.82) 0%, rgba(6,20,14,0.15) 100%), url("/assets/images/destinations/munnar.jpg") center/cover no-repeat; }
.bg-alleppey { background: linear-gradient(to top, rgba(6,20,14,0.82) 0%, rgba(6,20,14,0.15) 100%), url("/assets/images/destinations/alleppey.jpg") center/cover no-repeat; }
.bg-wayanad { background: linear-gradient(to top, rgba(6,20,14,0.82) 0%, rgba(6,20,14,0.15) 100%), url("/assets/images/destinations/wayanad.jpg") center/cover no-repeat; }
.bg-thekkady { background: linear-gradient(to top, rgba(6,20,14,0.82) 0%, rgba(6,20,14,0.15) 100%), url("/assets/images/destinations/thekkady.jpg") center/cover no-repeat; }
.bg-varkala { background: linear-gradient(to top, rgba(6,20,14,0.82) 0%, rgba(6,20,14,0.15) 100%), url("/assets/images/destinations/varkala.jpg") center/cover no-repeat; }
.bg-kochi { background: linear-gradient(to top, rgba(6,20,14,0.82) 0%, rgba(6,20,14,0.15) 100%), url("/assets/images/destinations/kochi.jpg") center/cover no-repeat; }

/* ============================================
   FAQ ACCORDION (for SEO + FAQ schema)
   ============================================ */
.faq-section { background: var(--white); }
.faq-list { margin-top: 2.5rem; max-width: 760px; }
.faq-item { border-bottom: 1px solid rgba(11,61,46,0.1); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer; padding: 1.3rem 0; text-align: left;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--green);
}
.faq-icon { font-size: 1.3rem; color: var(--gold); transition: transform 0.25s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding-bottom: 1.3rem; color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: linear-gradient(135deg, var(--green), #0f5233); overflow: hidden; position: relative; }
.testimonials .section-title { color: var(--white); }
.testimonials .section-eyebrow { color: var(--gold-light); }
.testi-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem; }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testi-text { color: rgba(255,255,255,0.8); font-size: 0.92rem; line-height: 1.75; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.5rem; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: var(--white); flex-shrink: 0; }
.av1 { background: linear-gradient(135deg, var(--gold), #c47800); }
.av2 { background: linear-gradient(135deg, var(--red), #a01a24); }
.av3 { background: linear-gradient(135deg, var(--green-light), #0f6644); }
.testi-name { color: var(--white); font-weight: 600; font-size: 0.9rem; }
.testi-loc { color: rgba(255,255,255,0.45); font-size: 0.78rem; }

/* ============================================
   BOOKING CTA BAND
   ============================================ */
.booking { background: linear-gradient(135deg, var(--gold) 0%, #c47800 100%); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.booking::before {
  content: 'TOK'; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: 40vw; font-weight: 900; color: rgba(255,255,255,0.06);
  line-height: 1; pointer-events: none; user-select: none;
}
.booking h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--green); margin-bottom: 1rem; position: relative; }
.booking p { color: rgba(11,61,46,0.7); font-size: 1.1rem; max-width: 500px; margin: 0 auto 2rem; position: relative; }
.booking-sub { margin-top: 1.5rem; color: rgba(11,61,46,0.55); font-size: 0.85rem; position: relative; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.contact-row { display: flex; align-items: center; gap: 1rem; background: var(--white); border-radius: 14px; padding: 1.2rem; border: 1px solid rgba(11,61,46,0.07); }
.c-icon { font-size: 1.4rem; flex-shrink: 0; }
.c-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.c-val { font-size: 0.95rem; color: var(--green); font-weight: 600; }
.contact-form { background: var(--white); border-radius: 24px; padding: 2.5rem; border: 1px solid rgba(11,61,46,0.08); }
.contact-form h3 { font-size: 1.5rem; color: var(--green); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--green); letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid rgba(11,61,46,0.12); border-radius: 10px; padding: 0.8rem 1rem; font-size: 0.9rem;
  font-family: var(--font-body); color: var(--charcoal); background: var(--cream); outline: none; transition: border-color 0.2s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--green), var(--green-light)); color: var(--white);
  font-weight: 700; font-size: 1rem; padding: 1rem; border-radius: 12px; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s; font-family: var(--font-body); letter-spacing: 0.03em;
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(11,61,46,0.3); }
.form-success { display: none; background: rgba(30,138,94,0.1); border: 1px solid var(--green-light); color: var(--green); padding: 1rem; border-radius: 10px; font-size: 0.9rem; font-weight: 600; margin-top: 1rem; }

/* ============================================
   FOOTER
   ============================================ */
footer.site-footer { background: var(--charcoal); padding: 4rem 0 2rem; color: rgba(255,255,255,0.6); }
.footer-grid { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-text-foot { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--gold); }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-top: 1rem; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; text-decoration: none; color: rgba(255,255,255,0.6); transition: all 0.2s; }
.social-btn:hover { background: var(--gold); color: var(--green); border-color: var(--gold); }
.footer-col h4 { color: var(--white); font-weight: 700; margin-bottom: 1.2rem; font-size: 0.9rem; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 0 2rem; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; text-decoration: none; box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}
.wa-label {
  position: absolute; right: 68px; background: var(--charcoal); color: var(--white); font-size: 0.78rem; font-weight: 600;
  padding: 0.4rem 0.9rem; border-radius: 50px; white-space: nowrap; opacity: 0; transform: translateX(8px); transition: all 0.2s;
}
.wa-float:hover .wa-label { opacity: 1; transform: translateX(0); }

/* ============================================
   WHY / FEATURE GRID (generic reusable)
   ============================================ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }
.why-item { text-align: center; padding: 1rem; }
.why-num { font-family: var(--font-display); font-size: 4rem; font-weight: 900; color: rgba(11,61,46,0.07); line-height: 1; display: block; margin-bottom: -0.5rem; }
.why-icon {
  font-size: 1.7rem; display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(11,61,46,0.08), rgba(30,138,94,0.05));
  border: 1.5px solid rgba(11,61,46,0.1); border-radius: 16px;
}
.why-item h3 { font-size: 1.1rem; color: var(--green); margin-bottom: 0.5rem; }
.why-item p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ============================================
   PRICING / FLEET TABLE
   ============================================ */
.fleet-table { width: 100%; border-collapse: collapse; margin-top: 2rem; background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.fleet-table th { background: var(--green); color: var(--white); padding: 1rem; text-align: left; font-size: 0.85rem; letter-spacing: 0.03em; }
.fleet-table td { padding: 1rem; border-bottom: 1px solid rgba(11,61,46,0.06); font-size: 0.9rem; color: var(--charcoal); }
.fleet-table tr:last-child td { border-bottom: none; }
.fleet-table tr:hover td { background: rgba(11,61,46,0.02); }

/* ============================================
   BREADCRUMB JSON-LD compatible visual list
   ============================================ */
.related-links { background: var(--white); border-radius: 16px; padding: 1.5rem; margin-top: 2rem; border: 1px solid rgba(11,61,46,0.07); }
.related-links h4 { color: var(--green); font-size: 0.95rem; margin-bottom: 0.8rem; }
.related-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.related-links a { color: var(--green-mid); text-decoration: none; font-size: 0.88rem; }
.related-links a:hover { text-decoration: underline; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav.site-nav { padding: 1rem 1.2rem; }
  .nav-links, nav.site-nav .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .dest-card.featured { grid-row: span 1; aspect-ratio: 3/4; min- }
  .container { padding: 0 1.2rem; }
}
@media (max-width: 480px) {
  section { padding: 3.5rem 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr; }
}



/* On mobile: shift focus to top of image (the car + hills) and
   deepen the overlay slightly so white text always reads cleanly */
@media (max-width: 768px) {
  .hero-photo {
    background:
      linear-gradient(180deg, rgba(3,12,6,0.60) 0%, rgba(11,61,46,0.75) 55%, rgba(6,20,14,0.92) 100%),
      url(/assets/images/hero/hero-main.jpg) 30% top / cover no-repeat;
    padding: 5.5rem 1.2rem 3rem;
    min-height: 100svh;
    min-height: 100vh;
  }
}


/* On mobile: single column, "5 Minutes" card moves ABOVE the bullet list
   (reversed order visually — more impactful on small screens) */
@media (max-width: 1024px) {
  .five-min-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0;
  }
  /* Show the "5 Minutes" stat card first on mobile */
  .five-min-inner > div:last-child {
    order: -1;
  }
}

/* Shrink the huge "5" numeral on mobile so it fits without overflow */
@media (max-width: 768px) {
  .five-min-inner > div:last-child > div {
    padding: 2rem 1.8rem !important;
  }
  .five-min-inner span[style*="font-size:7rem"] {
    font-size: 5rem !important;
  }
}


/* ══════════════════════════════════════════
   FIVE-MIN SECTION — responsive two-column
   ══════════════════════════════════════════ */
.five-min-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .five-min-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .five-min-inner > div:last-child {
    order: -1;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 768px) {
  .five-min-inner > div:last-child > div {
    padding: 2rem 1.5rem !important;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ══════════════════════════════════════════
   PAGE-HERO PHOTO VARIANTS (inner pages)
   Photo set via inline style; ensure text
   always readable on mobile
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .page-hero {
    padding: 3.5rem 0 3rem;
    background-position: center top !important;
  }
  .page-hero h1 {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
  }
  .page-hero .container { padding: 0 1.2rem; }
}
/* ══════════════════════════════════════════
   FIVE-MIN SECTION background
   ══════════════════════════════════════════ */
section.five-min {
  background: linear-gradient(135deg, var(--charcoal) 0%, #0d2318 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
@media (max-width: 768px) {
  section.five-min { padding: 3.5rem 0; }
}

/* ══════════════════════════════════════════
   HERO PHOTO — desktop + mobile optimised
   ══════════════════════════════════════════ */
.hero-photo {
  background:
    linear-gradient(180deg,
      rgba(3,12,6,0.38) 0%,
      rgba(11,61,46,0.55) 55%,
      rgba(6,20,14,0.80) 100%),
    url(/assets/images/hero/hero-desktop.jpg) center 40% / cover no-repeat;
}

@media (max-width: 768px) {
  .hero-photo {
    background:
      linear-gradient(180deg,
        rgba(3,12,6,0.35) 0%,
        rgba(11,61,46,0.58) 50%,
        rgba(6,20,14,0.85) 100%),
      url(/assets/images/hero/hero-mobile.jpg) center 20% / cover no-repeat;
    min-height: 100svh;
    min-height: 100vh;
    padding: 5.5rem 1.2rem 3rem;
  }
  .hero-photo h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
}
/* ══ SERVICE CARD PHOTO IMAGES ══
   Ensure real photos in service-icon-graphic
   fill correctly at all screen sizes */
.service-icon-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.service-card .service-icon-graphic {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 14px;
  background: #0a2010;
}
@media (max-width: 768px) {
  .service-card .service-icon-graphic {
    height: 180px;
    border-radius: 10px;
  }
  .service-card .service-icon-graphic img {
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .service-card .service-icon-graphic {
    height: 160px;
  }
}

/* ══ DESTINATION CARDS — equal height all cards ══ */


@media (max-width: 768px) {
  .dest-card, .dest-card.featured { height: 220px !important; }
}
@media (max-width: 480px) {
  .dest-card, .dest-card.featured { height: 200px !important; }
}
/* New destination card backgrounds */
.bg-athirappilly  { background: url("/assets/images/destinations/athirappilly.jpg") center/cover no-repeat; }
.bg-kovalam       { background: url("/assets/images/destinations/kovalam.jpg") center/cover no-repeat; }
.bg-kumarakom     { background: url("/assets/images/destinations/kumarakom.jpg") center/cover no-repeat; }
.bg-trivandrum    { background: url("/assets/images/destinations/thiruvananthapuram.jpg") center/cover no-repeat; }
.bg-kanyakumari   { background: url("/assets/images/destinations/kanyakumari.jpg") center/cover no-repeat; }
/* ── LION LOGO in nav ──────────────────────────────────────────
   .logo-badge-img uses the real lion PNG inside the gold circle.
   To REVERT to text logo: remove class="logo-badge-img" from HTML
   and change <img> back to text "TOK" in all pages.
   ─────────────────────────────────────────────────────────────*/
.nav-logo .logo-badge-img {
  padding: 4px;
  background: linear-gradient(135deg, var(--gold), #e8960e);
  overflow: hidden;
}
.nav-logo .logo-badge-img img {
  width: 36px !important;
  height: 36px !important;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .nav-logo .logo-badge-img img {
    width: 32px !important;
    height: 32px !important;
  }
}
/* ── COLORFUL SOCIAL MEDIA ICONS ────────────────────────────── */
.social-fb { background: #1877F2 !important; border-color: #1877F2 !important; }
.social-fb:hover { background: #0d6edc !important; border-color: #0d6edc !important; color: #fff !important; }

.social-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important; border-color: #e6683c !important; }
.social-ig:hover { opacity: 0.88; color: #fff !important; }

.social-wa { background: #25D366 !important; border-color: #25D366 !important; }
.social-wa:hover { background: #1db954 !important; border-color: #1db954 !important; color: #fff !important; }

.social-yt { background: #FF0000 !important; border-color: #FF0000 !important; }
.social-yt:hover { background: #cc0000 !important; border-color: #cc0000 !important; color: #fff !important; }

/* Override text color for social btns with brand colors */
.social-fb svg, .social-ig svg, .social-wa svg, .social-yt svg {
  display: block;
  flex-shrink: 0;
}
/* ── TOK APP + TRIPADVISOR icons ── */
.social-tok-app {
  background: #111 !important;
  border-color: #ff5722 !important;
  padding: 4px !important;
  overflow: hidden;
}
.social-tok-app:hover {
  background: #1a1a1a !important;
  border-color: #ff7043 !important;
}
.social-tok-app img {
  border-radius: 6px;
}

.social-ta {
  background: #34E0A1 !important;
  border-color: #34E0A1 !important;
}
.social-ta:hover {
  background: #00b087 !important;
  border-color: #00b087 !important;
}

/* Ensure all social icons align properly with 6 icons */
.footer-social {
  flex-wrap: wrap;
  gap: 0.6rem !important;
}
/* TripAdvisor & TOK App icon */
.social-ta { background: #34E0A1 !important; border-color: #34E0A1 !important; }
.social-ta:hover { background: #00c98b !important; border-color: #00c98b !important; }

.social-app { background: #1a1a1a !important; border-color: #FF6B35 !important; padding: 0 !important; overflow: hidden; }
.social-app:hover { border-color: #FF6B35 !important; opacity: 0.85; }
.social-app img { border-radius: 50% !important; }

/* Ensure all social btns size consistently with 6 icons */
.footer-social { flex-wrap: wrap; gap: 0.6rem !important; }
@media (max-width: 768px) {
  .footer-social { gap: 0.5rem !important; }
  .social-btn { width: 34px !important; height: 34px !important; }
}


/* Ensure hero text is not obscured by the gallery */
.hero .container, .hero-photo > *:not(.hero-float-gallery):not(.route-dot) {
  position: relative;
  z-index: 3;
}
@media (min-width: 769px) {
  .hero-photo {
    padding-right: 420px !important;
  }
}
@media (max-width: 768px) {
  .hero-photo {
    padding-right: 1.2rem !important;
    flex-direction: column;
  }
}

/* ══════════════════════════════════════════════════════════════
   MUNNAR FEATURED PACKAGE — highlight block
   ══════════════════════════════════════════════════════════════ */
.munnar-featured-section {
  background: linear-gradient(135deg, #061e14 0%, #0B3D2E 50%, #0d4a35 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.munnar-featured-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.munnar-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 24px;
  padding: 2.8rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ── Photo section ── */
.mfc-photos { display: flex; flex-direction: column; gap: 10px; }
.mfc-photo-main {
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border: 2px solid rgba(245,166,35,0.3);
}
.mfc-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.mfc-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 8px;
}
.mfc-photo-grid img {
  border-radius: 10px;
  height: 72px;
  width: 100%;
  object-fit: cover;
  border: 1.5px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, border-color 0.2s;
  cursor: pointer;
}
.mfc-photo-grid img:hover {
  transform: scale(1.06);
  border-color: rgba(245,166,35,0.6);
}

/* ── Content section ── */
.mfc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.2rem;
}
.mfc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mfc-badge-hot {
  background: linear-gradient(135deg, #FF6B35, #FF3D00);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,107,53,0.4);
  animation: pulseBadge 2s ease infinite;
}
.mfc-badge-new { background: rgba(245,166,35,0.15); color: var(--gold); border: 1px solid rgba(245,166,35,0.4); }
.mfc-badge-intl { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.15); }

@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 4px 14px rgba(255,107,53,0.4); }
  50%       { box-shadow: 0 4px 24px rgba(255,107,53,0.7); }
}

.mfc-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.mfc-title span { color: var(--gold); display: block; }

.mfc-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

/* ── Highlights grid ── */
.mfc-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 1.6rem;
}
.mfc-hl {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 9px 10px;
}
.mfc-hl > span { font-size: 1.2rem; flex-shrink: 0; }
.mfc-hl strong { display: block; color: #fff; font-size: 0.78rem; font-weight: 700; }
.mfc-hl small { display: block; color: rgba(255,255,255,0.5); font-size: 0.7rem; }

/* ── Meta strip ── */
.mfc-meta {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(0,0,0,0.25);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}
.mfc-meta-item { text-align: center; flex: 1; min-width: 80px; }
.mfc-meta-val { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; color: var(--gold); }
.mfc-meta-lbl { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.mfc-meta-div { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ── CTA row ── */
.mfc-cta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.mfc-live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
}
.mfc-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: livePulse 1.5s ease infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.mfc-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #F5A623, #e8960e);
  color: var(--green);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 13px 24px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.mfc-book-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(245,166,35,0.6);
}

.mfc-learn-btn {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.mfc-learn-btn:hover { color: var(--gold); border-color: var(--gold); }

/* ── Table highlights ── */
.tr-munnar-hot { background: linear-gradient(90deg, rgba(255,107,53,0.08) 0%, rgba(245,166,35,0.04) 100%); }
.tr-munnar-hot td:first-child { border-left: 3px solid #FF6B35; }
.tr-munnar { background: rgba(245,166,35,0.04); }
.tr-munnar td:first-child { border-left: 3px solid rgba(245,166,35,0.4); }

.tr-badge {
  display: inline-block;
  background: #FF6B35;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tr-book-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.tr-book-btn:hover { background: #e8960e; }

/* ── MOBILE responsive ── */
@media (max-width: 1024px) {
  .munnar-featured-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .mfc-photo-grid { grid-template-columns: 1fr 1fr; }
  .mfc-photo-grid img:nth-child(3), .mfc-photo-grid img:nth-child(4) { display: none; }
  .mfc-highlights { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .munnar-featured-section { padding: 3rem 0; }
  .munnar-featured-card { padding: 1.5rem 1.2rem; border-radius: 16px; gap: 1.6rem; }
  .mfc-photo-main { height: 180px; }
  .mfc-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .mfc-highlights { grid-template-columns: 1fr 1fr; gap: 8px; }
  .mfc-hl { padding: 7px 8px; }
  .mfc-meta { gap: 0; padding: 10px 14px; }
  .mfc-meta-val { font-size: 1rem; }
  .mfc-cta-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .mfc-book-btn { width: 100%; justify-content: center; }
  .mfc-badges { gap: 6px; }
  .mfc-badge { font-size: 0.65rem; padding: 4px 10px; }
}
@media (max-width: 480px) {
  .mfc-highlights { grid-template-columns: 1fr; }
  .mfc-photo-grid { grid-template-columns: 1fr 1fr; }
  .mfc-meta { flex-wrap: wrap; gap: 8px; }
  .mfc-meta-item { min-width: 40%; }
  .mfc-meta-div { display: none; }
}

/* ══════════════════════════════════════════════════════════
   MUNNAR HERO SLIDER — replaces staggered cards
   ══════════════════════════════════════════════════════════ */

/* Remove old staggered layout */
.hero-float-gallery {
  position: absolute !important;
  right: 2% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 340px !important;
  flex-direction: column !important;
  gap: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  pointer-events: all !important;
  z-index: 4 !important;
}

.hfg-slider {
  position: relative;
  width: 340px;
  height: 230px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55), 0 0 0 2px rgba(245,166,35,0.25);
}

/* Track + slides */
.hfg-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.hfg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}
.hfg-slide.active {
  opacity: 1;
  pointer-events: all;
}
.hfg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hfg-slide-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 14px 10px;
  background: linear-gradient(to top, rgba(6,20,14,0.90) 0%, transparent 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.hfg-slide-label span { color: var(--gold); margin-right: 5px; }

/* Prev/Next arrows */
.hfg-prev, .hfg-next {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  background: rgba(0,0,0,0.40);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.4rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 5;
  line-height: 1;
  padding: 0;
}
.hfg-prev { left: 8px; }
.hfg-next { right: 8px; }
.hfg-prev:hover, .hfg-next:hover {
  background: rgba(245,166,35,0.55);
  border-color: var(--gold);
  transform: translateY(-60%) scale(1.08);
}

/* Dot indicators */
.hfg-dots {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 5px;
  z-index: 5;
}
.hfg-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.hfg-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Book CTA below slider */
.hfg-book-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  background: linear-gradient(135deg, #F5A623, #e8960e);
  color: #0B3D2E;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(245,166,35,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.hfg-book-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.6);
}

/* Desktop: push hero text left */
@media (min-width: 769px) {
  .hero-photo { padding-right: 380px !important; }
}

/* MOBILE: full-width slider strip */
@media (max-width: 768px) {
  .hero-float-gallery {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    margin: 1.2rem 0 -1rem !important;
  }
  .hfg-slider { width: 100% !important; height: 200px !important; border-radius: 14px !important; }
  .hfg-book-cta { font-size: 0.78rem; padding: 9px 16px; }
  .hero-photo { padding-right: 1.2rem !important; }
}

/* Slider JS */

/* ============ APP PROMO SECTION ============ */
.app-promo {
  background: linear-gradient(120deg, var(--green) 0%, var(--green-mid) 55%, #0E4A38 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.app-promo::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.app-promo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.app-promo-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 480px;
  margin-top: 0.75rem;
}
.app-feature-list {
  list-style: none;
  margin: 1.75rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.app-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255,255,255,0.92);
  font-size: 0.96rem;
  line-height: 1.4;
}
.app-feature-list strong { color: #fff; }
.app-feature-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 9px;
  font-size: 1rem;
}
.app-promo-buttons {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #000;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}
.play-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.play-badge small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  opacity: 0.85;
  font-weight: 500;
  font-family: var(--font-body);
}
.play-badge strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 700;
  font-family: var(--font-body);
  line-height: 1.2;
  margin-top: 1px;
}
.app-qr-block {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.app-qr-block img {
  border-radius: 10px;
  background: #fff;
  padding: 5px;
  box-shadow: var(--shadow-sm);
  display: block;
}
.app-qr-block span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.35;
}
.app-promo-visual { display: flex; justify-content: center; }
.app-icon-frame {
  width: 220px; height: 220px;
  border-radius: 46px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: appIconFloat 4s ease-in-out infinite;
}
.app-icon-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes appIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 900px) {
  .app-promo-grid { grid-template-columns: 1fr; text-align: center; }
  .app-promo-content p { margin-left: auto; margin-right: auto; }
  .app-feature-list { text-align: left; max-width: 420px; margin-left: auto; margin-right: auto; }
  .app-promo-buttons { justify-content: center; }
  .app-promo-visual { order: -1; }
  .app-icon-frame { width: 170px; height: 170px; border-radius: 36px; }
}
@media (max-width: 480px) {
  .app-promo { padding: 3.5rem 0; }
  .app-promo-buttons { gap: 1.1rem; }
  .app-qr-block img { width: 66px; height: 66px; }
  .app-qr-block span { font-size: 0.76rem; }
}
