/* =========================================================
   OUTBOUND TRAVELS — Sales-First Design System
   ========================================================= */

:root {
  /* Palette */
  --green: #1F8A4C;
  --green-deep: #0F5A30;
  --green-soft: #E8F2EC;
  --sand: #F8F4EC;
  --sand-deep: #EFE8D8;
  --white: #FFFFFF;
  --charcoal: #1F2A1D;
  --charcoal-soft: #4A5547;
  --grey: #8A8F87;
  --grey-line: #E6E3DA;
  --coral: #E1655A;
  --coral-soft: #FCEAE7;
  --gold: #C8932B;
  --gold-soft: #FBF1DC;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(31, 42, 29, 0.06);
  --shadow: 0 8px 24px rgba(31, 42, 29, 0.08);
  --shadow-lg: 0 18px 48px rgba(31, 42, 29, 0.16);
  --shadow-xl: 0 32px 80px rgba(31, 42, 29, 0.22);

  /* Radii */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Type */
  --f-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --f-sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --max: 1240px;
  --pad-section-d: 96px;
  --pad-section-m: 56px;
  --header-h: 100px;
  --nav-float-top: 18px;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding-top: var(--header-h);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 16px; color: var(--charcoal); }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 600; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   TYPOGRAPHY HELPERS
   ========================================================= */
.serif { font-family: var(--f-serif); font-weight: 600; letter-spacing: -0.01em; }
.display-1 { font-family: var(--f-serif); font-weight: 600; font-size: clamp(40px, 6vw, 72px); line-height: 1.05; letter-spacing: -0.02em; }
.display-2 { font-family: var(--f-serif); font-weight: 600; font-size: clamp(32px, 4.4vw, 52px); line-height: 1.1; letter-spacing: -0.015em; }
.h2 { font-family: var(--f-serif); font-weight: 600; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; }
.h3 { font-family: var(--f-serif); font-weight: 600; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.25; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; font-weight: 600; color: var(--green); }
.muted { color: var(--charcoal-soft); }
.num { font-variant-numeric: tabular-nums; font-weight: 600; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--green-deep); color: var(--white); }
.btn-primary:hover { background: var(--green); box-shadow: 0 10px 22px rgba(15,90,48,0.28); }
.btn-secondary { background: var(--green); color: var(--white); }
.btn-secondary:hover { background: var(--green-deep); }
.btn-ghost { background: var(--white); color: var(--green-deep); border-color: var(--green); }
.btn-ghost:hover { background: var(--green-soft); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-white { background: var(--white); color: var(--green-deep); }
.btn-white:hover { background: var(--sand); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 13px; }
.btn-lg { height: 56px; padding: 0 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* =========================================================
   CHIPS / PILLS / BADGES
   ========================================================= */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--grey-line);
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: all .15s ease;
}
.chip:hover { border-color: var(--green); color: var(--green-deep); }
.chip.is-active { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
.chip-trust {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--grey-line);
  color: var(--charcoal);
  cursor: default;
  backdrop-filter: blur(8px);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge-coral { background: var(--coral); color: var(--white); }
.badge-gold { background: var(--gold); color: var(--white); }
.badge-green { background: var(--green); color: var(--white); }
.badge-soft { background: var(--green-soft); color: var(--green-deep); }

/* =========================================================
   HEADER — FLOATING PILL NAV (green-touch)
   ========================================================= */
.site-header {
  position: fixed;
  top: var(--nav-float-top);
  left: 0;
  right: 0;
  z-index: 80;
  padding: 0 16px;
  background: transparent;
  pointer-events: none;
  transition: top .25s ease;
}
.site-header > .container {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-radius: 999px;
  border: 1px solid rgba(31, 138, 76, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 10px 28px -10px rgba(15, 90, 48, 0.18),
    0 4px 12px -4px rgba(31, 42, 29, 0.08);
  padding: 0 14px 0 22px;
  max-width: calc(var(--max) + 24px);
  position: relative;
  /* overflow must stay visible so the mega-menu dropdowns can extend below the pill */
  overflow: visible;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
/* subtle green sheen along the top edge */
.site-header > .container::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(31, 138, 76, 0.35) 22%,
    rgba(200, 147, 43, 0.35) 52%,
    rgba(31, 138, 76, 0.35) 78%,
    transparent 100%);
  pointer-events: none;
  border-radius: inherit;
}
/* soft green glow behind on scroll */
.site-header.is-scrolled { top: 14px; }
.site-header.is-scrolled > .container {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(31, 138, 76, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 14px 34px -12px rgba(15, 90, 48, 0.28),
    0 6px 16px -6px rgba(31, 42, 29, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.logo {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  position: relative;
  padding-right: 4px;
}
.logo span { color: var(--green); }

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 4px;
  background: rgba(248, 244, 236, 0.6);
  border-radius: 999px;
}
.nav a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.nav a:hover {
  color: var(--green-deep);
  background: rgba(31, 138, 76, 0.08);
}
.nav a.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: 0 6px 14px -4px rgba(15, 90, 48, 0.45);
}

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 13.5px; color: var(--charcoal);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}
.header-phone:hover { background: rgba(31, 138, 76, 0.08); color: var(--green-deep); }
.header-phone svg { color: var(--green); }

.header-insta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--charcoal-soft);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 138, 76, 0.08);
  border: 1px solid rgba(31, 138, 76, 0.15);
}
.header-insta strong { color: var(--green-deep); font-weight: 700; }
.header-insta svg { color: var(--green); }

/* Account / Agent pill chips in header-cta */
.header-account, .header-agent {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 13px; color: var(--charcoal);
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  border: 1px solid rgba(31, 138, 76, 0.20);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.header-account:hover, .header-agent:hover {
  background: rgba(31, 138, 76, 0.16);
  border-color: rgba(31, 138, 76, 0.36);
  color: var(--green-deep);
  transform: translateY(-1px);
}
.header-account svg, .header-agent svg { color: var(--green-deep); }
.header-account .lbl-short { display: none; }

/* Compact account icon-only at narrower widths */
@media (max-width: 1180px) {
  .header-account .lbl-long { display: none; }
  .header-account .lbl-short { display: inline; }
}
@media (max-width: 1024px) {
  .header-agent { display: none; }
}

/* Mobile drawer · portals block */
.drawer-portals {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--grey-line);
  display: flex; flex-direction: column; gap: 8px;
}
.drawer-portal {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--green-soft);
  border: 1px solid rgba(31, 138, 76, 0.18);
  font-size: 14px; font-weight: 600; color: var(--green-deep);
}
.drawer-portal .ic {
  width: 28px; height: 28px; border-radius: 8px;
  display: inline-grid; place-items: center;
  background: var(--green-deep); color: #fff; font-size: 12px; font-weight: 700;
}
.drawer-portal small {
  margin-left: auto; font-size: 11px; color: var(--charcoal-soft);
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em;
}
.drawer-portal.is-agent .ic { background: linear-gradient(135deg, var(--green) 0%, var(--gold) 100%); }
.drawer-portal.is-staff { background: var(--sand); border-color: var(--grey-line); color: var(--charcoal); }
.drawer-portal.is-staff .ic { background: var(--charcoal); }

/* Footer · Staff / Operations row */
.footer-staff {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center;
}
.footer-staff .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  margin-right: 6px;
}
.footer-staff a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.footer-staff a:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-1px);
}
.footer-staff a .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.footer-staff a.is-cms .dot { background: #8B5CF6; }
.footer-staff a.is-wa  .dot { background: #06B6D4; }
.footer-staff a.is-ref .dot { background: var(--gold); }
.footer-staff a.is-agent .dot { background: var(--green); }
.footer-staff a.is-client .dot { background: var(--coral); }
.footer-staff a.is-erp .dot { background: #fff; }

.menu-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(31, 138, 76, 0.08);
  border: 1px solid rgba(31, 138, 76, 0.2);
  color: var(--green-deep);
}

/* =========================================================
   HERO (home)
   ========================================================= */
.hero {
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  padding: calc(var(--header-h) + 40px) 24px 180px;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,90,48,0.32) 0%, rgba(31,42,29,0) 30%, rgba(31,42,29,0.6) 80%, rgba(31,42,29,0.92) 100%),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2880&q=85') center/cover no-repeat;
  z-index: 0;
  animation: heroKenBurns 24s ease-in-out infinite alternate;
  transform-origin: center 30%;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 100%);
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.12); }
}

/* Floating photo polaroids in hero */
.hero-polaroids {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-polaroids .pl {
  position: absolute;
  width: 168px;
  height: 200px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px -8px rgba(0,0,0,0.45), 0 0 0 6px rgba(255,255,255,0.85);
  opacity: 0;
  transform: translateY(20px) rotate(-4deg);
  animation: plFloat 6s ease-in-out infinite alternate, plIn 1s .4s forwards;
}
.hero-polaroids .pl:nth-child(1) { top: 14%; left: 4%;  animation-delay: 0s, .3s; }
.hero-polaroids .pl:nth-child(2) { top: 22%; right: 5%; transform: translateY(20px) rotate(5deg); animation-delay: 1.2s, .55s; }
.hero-polaroids .pl:nth-child(3) { bottom: 18%; left: 3%; transform: translateY(20px) rotate(3deg);  animation-delay: 2.4s, .8s; }
.hero-polaroids .pl:nth-child(4) { bottom: 22%; right: 4%; transform: translateY(20px) rotate(-3deg); animation-delay: 3.6s, 1.05s; }
.hero-polaroids .pl .cap {
  position: absolute;
  left: 12px; bottom: 12px;
  font-family: var(--f-sans); font-size: 11.5px; font-weight: 600;
  color: var(--white); letter-spacing: 0.02em;
  background: rgba(15,90,48,0.85);
  padding: 4px 9px; border-radius: 999px;
}
@keyframes plFloat {
  0%   { transform: translateY(0) rotate(var(--r, -4deg)); }
  100% { transform: translateY(-12px) rotate(var(--r, -4deg)); }
}
@keyframes plIn {
  to { opacity: 1; }
}
.hero-polaroids .pl:nth-child(1) { --r: -4deg; }
.hero-polaroids .pl:nth-child(2) { --r: 5deg; }
.hero-polaroids .pl:nth-child(3) { --r: 3deg; }
.hero-polaroids .pl:nth-child(4) { --r: -3deg; }

@media (max-width: 1180px) { .hero-polaroids .pl { width: 132px; height: 160px; } }
@media (max-width: 980px)  { .hero-polaroids { display: none; } }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1080px; }
.hero h1 { text-shadow: 0 4px 28px rgba(0,0,0,0.35); }
.hero-rotator {
  display: inline-block;
  color: var(--gold);
  position: relative;
  min-width: 4.5ch;
  text-align: left;
}
.hero-rotator::before { content: "["; opacity: 0.6; padding-right: 4px; }
.hero-rotator::after  { content: "]"; opacity: 0.6; padding-left: 4px; }
.hero-sub { margin: 18px auto 0; max-width: 640px; font-size: 17px; opacity: 0.92; }

/* Hero widget */
.hero-widget {
  margin: 40px auto 0;
  max-width: 980px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 14px 18px 18px;
  color: var(--charcoal);
  text-align: left;
}
.hw-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--grey-line); padding: 4px 0 10px; flex-wrap: wrap; }
.hw-tab {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal-soft);
  cursor: pointer;
  transition: all .15s ease;
}
.hw-tab.is-active { background: var(--green-deep); color: var(--white); }
.hw-tab:not(.is-active):hover { background: var(--sand); color: var(--charcoal); }
.hw-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr 0.9fr 1.2fr;
  gap: 12px;
  padding: 16px 0 8px;
}
.hw-field { display: flex; flex-direction: column; gap: 4px; }
.hw-field label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--charcoal-soft); }
.hw-field .control {
  height: 46px;
  border: 1px solid var(--grey-line);
  border-radius: 10px;
  padding: 0 12px;
  background: var(--white);
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.hw-field .control:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,138,76,0.15); }
.hw-chips-row { display: flex; gap: 6px; padding-top: 4px; flex-wrap: wrap; }
.hw-chip {
  padding: 6px 12px; border-radius: var(--r-pill); border: 1px solid var(--grey-line);
  font-size: 12.5px; font-weight: 500; cursor: pointer; background: var(--white);
}
.hw-chip.is-active { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
.hw-stepper { display: inline-flex; align-items: center; gap: 8px; }
.hw-stepper button { width: 28px; height: 28px; border-radius: 999px; border: 1px solid var(--grey-line); background: var(--white); font-weight: 700; color: var(--green-deep); }
.hw-actions {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 10px; border-top: 1px dashed var(--grey-line);
}
.hw-wa-link { font-size: 13px; font-weight: 600; color: var(--green-deep); display: inline-flex; align-items: center; gap: 6px; }

/* Trust pills row under widget */
.trust-pills {
  margin: 22px auto 0;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.18); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 13px; color: var(--white); font-weight: 500;
}
.trust-pill strong { font-weight: 700; }

/* Stats strip pinned bottom of hero */
/* Hero stats — floating bento card between hero and lead-capture */
.hero-stats-wrap {
  position: relative;
  z-index: 5;
  max-width: 1240px;
  margin: -64px auto 0;
  padding: 0 24px;
}
.hero-stats {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 22px;
  box-shadow: 0 24px 50px -18px rgba(15, 90, 48, 0.22), 0 8px 22px -8px rgba(31, 42, 29, 0.10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 8px;
  gap: 4px;
  overflow: hidden;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 16px;
  text-align: left;
  transition: background .25s ease;
}
.hero-stat:hover { background: var(--sand); }
.hero-stat-ico {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-deep);
}
.hero-stat:nth-child(2) .hero-stat-ico { background: var(--coral-soft); color: var(--coral); }
.hero-stat:nth-child(3) .hero-stat-ico { background: var(--gold-soft); color: var(--gold); }
.hero-stat:nth-child(4) .hero-stat-ico { background: #FFF6E5; color: #C8932B; }

.hero-stat .num-lg {
  font-family: var(--f-serif);
  font-size: 30px;
  color: var(--green-deep);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero-stat .num-lg small {
  font-family: var(--f-sans);
  font-size: 14px;
  color: var(--charcoal-soft);
  font-weight: 500;
  margin-left: 2px;
  letter-spacing: 0;
}
.hero-stat .label {
  font-size: 11.5px;
  color: var(--charcoal-soft);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.hero-stat + .hero-stat { border-left: 1px solid var(--grey-line); }
.hero-stat:hover + .hero-stat,
.hero-stat:hover { border-left-color: transparent; }

/* =========================================================
   SECTIONS
   ========================================================= */
section { padding: var(--pad-section-d) 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.section-head .right-link { font-weight: 600; color: var(--green-deep); font-size: 14px; }
.section-sub { color: var(--charcoal-soft); margin-top: 8px; max-width: 580px; }

.bg-sand { background: var(--sand); }
.bg-cream { background: #FBF7EE; }
.bg-deep-green { background: var(--green-deep); color: var(--white); }
.bg-coral-soft { background: var(--coral-soft); }

/* Lead-capture banner */
.lead-capture {
  background: var(--sand);
  padding: var(--pad-section-d) 0;
}
.lead-capture-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center;
}
.lead-left h2 { margin-bottom: 16px; }
.lead-left p { color: var(--charcoal-soft); font-size: 17px; max-width: 440px; }
.lead-left .lead-mini {
  display: flex; align-items: center; gap: 14px; margin-top: 26px;
}
.avatar-stack { display: flex; }
.avatar-stack img, .avatar-stack .av {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--sand);
  background-size: cover; background-position: center; margin-left: -8px;
}
.avatar-stack .av:first-child { margin-left: 0; }
.online-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #38c172; margin-right: 6px; box-shadow: 0 0 0 3px rgba(56,193,114,0.18); }

.lead-form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--charcoal); }
.field .control,
.field input, .field select, .field textarea {
  height: 46px; border: 1px solid var(--grey-line); border-radius: 10px;
  padding: 0 12px; background: var(--white); font-size: 14px; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { height: 80px; padding: 10px 12px; resize: vertical; line-height: 1.4; }
.field .control:focus,
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,138,76,0.15);
}
.phone-field { display: flex; gap: 8px; }
.phone-field select { flex: 0 0 90px; }
.phone-field input { flex: 1; }
.form-note { font-size: 12.5px; color: var(--charcoal-soft); margin-top: 10px; text-align: center; }

/* =========================================================
   PACKAGE CARD (sales-first)
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.pkg-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pkg-cover {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
}
.pkg-cover .save-badge {
  position: absolute; top: 12px; left: 12px;
}
.pkg-cover .heart {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.94);
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); transition: color .15s ease, transform .15s ease;
}
.pkg-cover .heart:hover { color: var(--coral); transform: scale(1.06); }
.pkg-cover .urgency {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(31,42,29,0.78); color: var(--white);
  font-size: 12px; font-weight: 600; padding: 6px 10px; border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
}
.pkg-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pkg-title { font-family: var(--f-serif); font-size: 22px; font-weight: 600; line-height: 1.2; color: var(--charcoal); }
.pkg-meta { font-size: 13px; color: var(--charcoal-soft); }
.pkg-incl { display: flex; gap: 14px; font-size: 12.5px; color: var(--charcoal-soft); border-top: 1px solid var(--grey-line); border-bottom: 1px solid var(--grey-line); padding: 10px 0; }
.pkg-incl span { display: inline-flex; align-items: center; gap: 4px; }
.pkg-price .strike { color: var(--grey); text-decoration: line-through; font-size: 13px; }
.pkg-price .now { color: var(--green-deep); font-family: var(--f-sans); font-weight: 700; font-size: 24px; }
.pkg-price .per { font-size: 13px; color: var(--charcoal-soft); font-weight: 500; }
.pkg-price .tax { font-size: 12px; color: var(--charcoal-soft); margin-top: 2px; }
.pkg-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pkg-cta .btn { height: 42px; font-size: 14px; padding: 0 12px; }
.pkg-foot { font-size: 12px; color: var(--charcoal-soft); display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.pkg-foot .star { color: var(--gold); }
.pkg-foot .urg { color: var(--coral); font-weight: 600; }

/* =========================================================
   MOOD TILES
   ========================================================= */
.mood-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.mood-tile {
  position: relative; aspect-ratio: 1/1.05;
  border-radius: var(--r);
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 18px; color: var(--white);
  background-size: cover; background-position: center;
  transition: transform .25s ease;
}
.mood-tile:hover { transform: translateY(-4px); }
.mood-tile::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.75) 100%);
}
.mood-tile .inner { position: relative; z-index: 1; }
.mood-tile h3 { font-family: var(--f-serif); font-size: 22px; font-weight: 600; }
.mood-tile .link { font-size: 12.5px; opacity: 0.9; margin-top: 4px; }

/* =========================================================
   DESTINATIONS BLOCK
   ========================================================= */
.dest-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center;
}
.dest-map {
  background: var(--sand-deep);
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(31,138,76,0.16) 0%, transparent 50%),
    radial-gradient(circle at 70% 65%, rgba(200,147,43,0.18) 0%, transparent 55%);
  position: relative;
  overflow: hidden;
}
.dest-map img { width: 80%; opacity: 0.86; mix-blend-mode: multiply; }
.dest-map .dot {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: var(--green-deep);
  box-shadow: 0 0 0 4px rgba(31,138,76,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(31,138,76,0.2); }
  50% { box-shadow: 0 0 0 10px rgba(31,138,76,0.05); }
}
.dest-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dest-row {
  display: grid; grid-template-columns: 32px 1fr auto; align-items: center;
  gap: 12px;
  padding: 14px; border: 1px solid var(--grey-line); border-radius: var(--r);
  background: var(--white);
  transition: border-color .15s ease, transform .2s ease;
}
.dest-row:hover { border-color: var(--green); transform: translateX(2px); }
.dest-row .flag { font-size: 22px; }
.dest-row .name { font-weight: 600; }
.dest-row .meta { font-size: 12px; color: var(--charcoal-soft); }
.dest-row .from { font-size: 13px; color: var(--green-deep); font-weight: 600; }

/* =========================================================
   WHY US (trust columns)
   ========================================================= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.why-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--green-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-deep); margin-bottom: 18px;
}
.why-card h3 { font-family: var(--f-serif); font-size: 24px; margin-bottom: 8px; }
.why-card p { color: var(--charcoal-soft); }

/* =========================================================
   MASONRY GALLERY
   ========================================================= */
.mason {
  column-count: 4; column-gap: 14px;
}
.mason-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--r); overflow: hidden;
  cursor: pointer;
}
.mason-item img { width: 100%; display: block; transition: transform .35s ease; }
.mason-item:hover img { transform: scale(1.04); }
.mason-item .tag {
  position: absolute; bottom: 12px; left: 12px; color: var(--white);
  font-size: 13px; font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.mason-cta {
  margin-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; background: var(--green-soft); border-radius: var(--r);
  gap: 24px; flex-wrap: wrap;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.google-agg {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: var(--r-pill);
  background: var(--white); border: 1px solid var(--grey-line);
}
.google-logo {
  font-weight: 700; font-size: 14px; letter-spacing: -0.02em;
}
.google-logo .b { color: #4285F4; } .google-logo .r { color: #EA4335; } .google-logo .y { color: #FBBC05; } .google-logo .g { color: #34A853; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.testi-card {
  background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--r);
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
}
.testi-head-row { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; background-size: cover; background-position: center;
}
.testi-name { font-weight: 700; font-size: 14.5px; }
.testi-loc { font-size: 12.5px; color: var(--charcoal-soft); }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.testi-text { font-size: 14.5px; color: var(--charcoal); line-height: 1.6; }
.testi-date { font-size: 12px; color: var(--charcoal-soft); }

/* =========================================================
   PRESS STRIP
   ========================================================= */
.press-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 36px; padding: 32px 0;
  filter: grayscale(1); opacity: 0.7;
}
.press-strip .logo-item {
  font-family: var(--f-serif); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; color: var(--charcoal);
}

/* =========================================================
   OFFERS STRIP
   ========================================================= */
.offers-strip { background: linear-gradient(135deg, var(--coral) 0%, #d8584d 100%); color: var(--white); }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r);
  padding: 26px;
  backdrop-filter: blur(8px);
}
.offer-card h3 { font-family: var(--f-serif); font-size: 26px; margin-bottom: 8px; }
.offer-card p { font-size: 14px; opacity: 0.92; margin-bottom: 18px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.faq-item {
  border-bottom: 1px solid var(--grey-line);
  padding: 18px 0;
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  list-style: none; cursor: pointer;
  font-weight: 600; font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; color: var(--green-deep); font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer { padding-top: 12px; color: var(--charcoal-soft); font-size: 14.5px; line-height: 1.6; }

/* =========================================================
   FINAL CONVERSION BANNER
   ========================================================= */
.final-cta {
  background:
    linear-gradient(135deg, var(--green-deep) 0%, #0a4824 100%);
  color: var(--white);
  text-align: center;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.final-cta::before, .final-cta::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,147,43,0.16) 0%, transparent 70%);
}
.final-cta::before { left: -80px; top: -80px; }
.final-cta::after { right: -80px; bottom: -120px; }
.final-cta .inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.final-cta h2 { font-family: var(--f-serif); font-size: clamp(36px, 5vw, 56px); line-height: 1.1; color: #F8F4EC; margin-bottom: 28px; }
.final-cta .buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.85); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; padding: 5px 0; font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--white); }
.footer-logo { font-family: var(--f-serif); color: var(--white); font-size: 32px; font-weight: 700; margin-bottom: 14px; }
.footer-logo span { color: var(--green); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 18px; line-height: 1.6; }
.trust-icons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.trust-icons span {
  padding: 6px 10px; border-radius: 6px;
  background: rgba(255,255,255,0.06); font-size: 11.5px; font-weight: 600; letter-spacing: 0.05em;
}
.pay-row { display: flex; gap: 10px; flex-wrap: wrap; }
.pay-row span {
  padding: 6px 12px; background: rgba(255,255,255,0.08); border-radius: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
}
.newsletter { display: flex; gap: 8px; margin-top: 12px; }
.newsletter input {
  flex: 1; height: 42px; border-radius: var(--r-pill); padding: 0 16px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: var(--white); outline: none;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter button {
  height: 42px; padding: 0 18px; border-radius: var(--r-pill);
  background: var(--green); color: var(--white); font-weight: 600; font-size: 13px;
}
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.55);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
}
.footer-social a:hover { background: var(--green); }

/* =========================================================
   FLOATING PLANNER RAIL (desktop ≥1024)
   ========================================================= */
.planner-rail {
  position: fixed;
  right: 22px;
  bottom: 110px;
  z-index: 70;
  width: 280px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 18px;
  border: 1px solid var(--grey-line);
}
.planner-rail .head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.planner-rail .photo { width: 48px; height: 48px; border-radius: 50%; background-size: cover; background-position: center; flex: 0 0 48px; position: relative; }
.planner-rail .photo::after {
  content: ""; position: absolute; right: -2px; bottom: -2px; width: 14px; height: 14px;
  border-radius: 50%; background: #38c172; border: 2px solid var(--white);
}
.planner-rail .name { font-weight: 700; font-size: 14px; line-height: 1.1; }
.planner-rail .role { font-size: 12px; color: var(--charcoal-soft); }
.planner-rail .msg { font-size: 13px; color: var(--charcoal); line-height: 1.45; margin-bottom: 14px; }
.planner-rail .actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* Mobile sticky bottom bar */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none;
  background: var(--white);
  border-top: 1px solid var(--grey-line);
  padding: 10px 12px env(safe-area-inset-bottom, 10px);
  gap: 8px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.06);
}
.mobile-cta .btn { flex: 1; height: 48px; }
.mobile-cta .wa { background: #25D366; color: var(--white); }
.mobile-cta .wa:hover { background: #1ebe59; }

/* Booking ticker */
.booking-ticker {
  position: fixed; left: 22px; bottom: 22px; z-index: 70;
  background: var(--white); border: 1px solid var(--grey-line);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  max-width: 320px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .45s ease, opacity .45s ease;
}
.booking-ticker.is-visible { transform: translateY(0); opacity: 1; }
.booking-ticker .ticker-icon {
  width: 36px; height: 36px; border-radius: 50%; background: var(--green-soft);
  display: flex; align-items: center; justify-content: center; color: var(--green-deep); flex: 0 0 36px;
}
.booking-ticker .text { font-size: 12.5px; line-height: 1.35; }
.booking-ticker .text strong { display: block; font-size: 13px; font-weight: 700; }
.booking-ticker .text .ago { color: var(--charcoal-soft); }
.booking-ticker .close { color: var(--charcoal-soft); cursor: pointer; padding: 4px; }

/* =========================================================
   PAGES LIST (Packages page)
   ========================================================= */
.page-banner {
  background: var(--sand);
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--grey-line);
}
.page-banner h1 { font-family: var(--f-serif); font-size: clamp(34px, 4vw, 46px); }
.page-banner .sub { color: var(--charcoal-soft); margin-top: 6px; }

.list-layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 32px;
  padding: 32px 0 80px;
}
.filter-rail {
  align-self: start;
  position: sticky; top: calc(var(--header-h) + 16px);
  background: var(--white); border: 1px solid var(--grey-line);
  border-radius: var(--r); padding: 22px;
  max-height: calc(100vh - var(--header-h) - 32px);
  overflow-y: auto;
}
.filter-rail h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--charcoal); margin-bottom: 12px; }
.filter-block + .filter-block { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--grey-line); }
.filter-block .check { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 14px; cursor: pointer; }
.filter-block input[type="checkbox"] { accent-color: var(--green-deep); width: 16px; height: 16px; }
.filter-block input[type="radio"] { accent-color: var(--green-deep); }
.filter-block .chips-row { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-block .chips-row .chip { height: 30px; font-size: 12px; padding: 0 10px; }
.range-row {
  display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--charcoal-soft); margin-bottom: 8px;
}
.range-input { width: 100%; accent-color: var(--green-deep); }
.filter-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 22px; }

.list-top {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.list-top .count { font-weight: 600; }
.list-top .right { display: flex; align-items: center; gap: 12px; }
.list-top select { height: 38px; border-radius: var(--r-pill); border: 1px solid var(--grey-line); padding: 0 14px; background: var(--white); }
.view-toggle { display: inline-flex; border: 1px solid var(--grey-line); border-radius: var(--r-pill); overflow: hidden; }
.view-toggle button { padding: 7px 14px; font-size: 13px; background: var(--white); }
.view-toggle button.is-active { background: var(--green-deep); color: var(--white); }

.list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.load-more { display: flex; justify-content: center; margin-top: 40px; }
.compare-fab {
  position: fixed; right: 22px; bottom: 200px; z-index: 65;
  background: var(--charcoal); color: var(--white);
  padding: 12px 18px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; box-shadow: var(--shadow);
}

/* =========================================================
   PACKAGE DETAIL
   ========================================================= */
.pd-gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px;
  height: 480px; margin-top: 24px; border-radius: var(--r); overflow: hidden;
}
.pd-gallery .img {
  background-size: cover; background-position: center;
  position: relative;
}
.pd-gallery .img:first-child { grid-row: span 2; }
.pd-gallery .img.last { position: relative; }
.pd-gallery .img.last .view-all {
  position: absolute; inset: 0; background: rgba(31,42,29,0.55);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 600; font-size: 14px; cursor: pointer;
  backdrop-filter: blur(2px);
}

.pd-layout {
  display: grid; grid-template-columns: 1.85fr 1fr; gap: 40px;
  padding: 40px 0 80px;
}
.pd-tabs {
  position: sticky; top: var(--header-h); background: var(--white); z-index: 30;
  display: flex; gap: 4px; padding: 14px 0; margin-bottom: 16px;
  border-bottom: 1px solid var(--grey-line);
  overflow-x: auto;
}
.pd-tabs a {
  padding: 8px 14px; border-radius: var(--r-pill); font-size: 14px; font-weight: 600;
  color: var(--charcoal-soft); white-space: nowrap;
}
.pd-tabs a.is-active, .pd-tabs a:hover { background: var(--green-soft); color: var(--green-deep); }

.pd-block { padding: 28px 0; border-bottom: 1px solid var(--grey-line); }
.pd-block h2 { font-family: var(--f-serif); font-size: 28px; margin-bottom: 16px; }

.highlights { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin: 18px 0; }
.highlight {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 8px; background: var(--sand); border-radius: var(--r); text-align: center;
  font-size: 13px;
}
.highlight .icon { width: 36px; height: 36px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; color: var(--green-deep); }
.vibe-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.itinerary-day {
  position: relative; padding: 22px 0 22px 36px;
  border-left: 2px solid var(--green-soft);
  margin-left: 8px;
}
.itinerary-day .day-num {
  position: absolute; left: -19px; top: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-deep); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.itinerary-day h3 { font-family: var(--f-serif); font-size: 22px; }
.itinerary-day .day-meta { font-size: 12.5px; color: var(--charcoal-soft); margin: 6px 0 12px; display: flex; gap: 16px; flex-wrap: wrap; }
.itinerary-day .day-meta span { display: inline-flex; align-items: center; gap: 4px; }
.blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.blocks .block { background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--r-sm); padding: 12px; }
.blocks .block h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-deep); margin-bottom: 6px; }
.blocks .block p { font-size: 13px; color: var(--charcoal); }

.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.incl-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 14.5px; }
.incl-list .tick { color: var(--green); font-weight: 700; }
.excl-list .cross { color: var(--coral); font-weight: 700; }

.hotel-card {
  display: grid; grid-template-columns: 140px 1fr auto; gap: 16px; align-items: center;
  padding: 14px; border: 1px solid var(--grey-line); border-radius: var(--r);
}
.hotel-card + .hotel-card { margin-top: 12px; }
.hotel-card .img { aspect-ratio: 1/1; background-size: cover; background-position: center; border-radius: var(--r-sm); }
.hotel-card h4 { font-family: var(--f-serif); font-size: 20px; }
.hotel-card .stars { margin: 4px 0; }

/* Sticky price card */
.price-card {
  position: sticky; top: calc(var(--header-h) + 16px);
  align-self: start;
  background: var(--white); border: 1px solid var(--grey-line);
  border-radius: var(--r-lg); box-shadow: var(--shadow);
  padding: 24px;
}
.price-card .strike { color: var(--grey); text-decoration: line-through; font-size: 14px; }
.price-card .now { font-size: 34px; font-weight: 700; color: var(--green-deep); }
.price-card .total { font-size: 13px; color: var(--charcoal-soft); margin-top: 4px; }
.price-card .save { margin-top: 10px; }
.price-card .emi { font-size: 13px; color: var(--charcoal-soft); margin: 14px 0; padding: 10px; background: var(--gold-soft); border-radius: var(--r-sm); }
.price-card .label-tight { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin: 18px 0 8px; color: var(--charcoal); }
.stepper-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 8px; align-items: center; }
.stepper-cell { display: flex; flex-direction: column; gap: 4px; }
.stepper-cell .v { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.stepper-cell .v button { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--grey-line); }
.stepper-cell .lbl { font-size: 11px; color: var(--charcoal-soft); }
.room-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.room-pill { padding: 7px 12px; border: 1px solid var(--grey-line); border-radius: var(--r-pill); font-size: 13px; cursor: pointer; }
.room-pill.is-active { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
.price-actions { display: grid; gap: 10px; margin-top: 16px; }
.price-trust { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--grey-line); display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.price-trust span { display: flex; align-items: center; gap: 8px; }
.price-trust .tick { color: var(--green); font-weight: 700; }

/* =========================================================
   DESTINATION HUB
   ========================================================= */
.dest-hero {
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  min-height: 60vh; color: var(--white);
  display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 40px) 24px 60px;
  overflow: hidden;
}
.dest-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.dest-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.7) 100%); }
.dest-hero-inner { position: relative; z-index: 1; max-width: var(--max); width: 100%; margin: 0 auto; }
.dest-hero h1 { font-family: var(--f-serif); font-size: clamp(48px, 6vw, 80px); margin-bottom: 8px; }
.dest-hero .tagline { font-size: 18px; opacity: 0.9; max-width: 540px; margin-bottom: 18px; }
.dest-hero .head-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.fact-bar {
  background: var(--white); border-bottom: 1px solid var(--grey-line);
  padding: 16px 0;
}
.fact-bar .row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.fact-bar .col { font-size: 13px; }
.fact-bar .lbl { color: var(--charcoal-soft); text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; margin-bottom: 4px; font-weight: 600; }
.fact-bar .val { font-weight: 600; }

.things-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.thing-tile {
  position: relative; aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end; padding: 18px; color: var(--white);
}
.thing-tile::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.7) 100%); }
.thing-tile h3 { font-family: var(--f-serif); font-size: 22px; position: relative; z-index: 1; }

/* =========================================================
   ENQUIRY (multi-step)
   ========================================================= */
.enq-hero { background: var(--sand); padding: 64px 0; }
.enq-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.enq-trust li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 0; font-size: 15px;
}
.enq-trust li .tick { color: var(--green); font-weight: 700; }
.planner-photo {
  display: flex; align-items: center; gap: 14px; padding: 18px;
  background: var(--white); border-radius: var(--r); margin-top: 24px;
  border: 1px solid var(--grey-line);
}
.planner-photo .ph { width: 56px; height: 56px; border-radius: 50%; background-size: cover; background-position: center; }
.planner-photo .name { font-weight: 700; }
.planner-photo .role { font-size: 13px; color: var(--charcoal-soft); }

.enq-form { background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow); }
.steps { display: flex; align-items: center; gap: 4px; margin-bottom: 28px; }
.step-dot {
  flex: 1; height: 6px; background: var(--grey-line); border-radius: 999px;
}
.step-dot.is-active { background: var(--green-deep); }
.step-dot.is-done { background: var(--green); }
.step-h { font-family: var(--f-serif); font-size: 24px; margin-bottom: 4px; }
.step-sub { color: var(--charcoal-soft); margin-bottom: 22px; }
.step-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; }
.step { display: none; }
.step.is-active { display: block; }
.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.theme-chip {
  border: 1px solid var(--grey-line); padding: 12px; border-radius: var(--r); text-align: center;
  cursor: pointer; font-size: 13px; font-weight: 600; transition: all .15s ease;
}
.theme-chip.is-active { background: var(--green-soft); border-color: var(--green); color: var(--green-deep); }

/* =========================================================
   AGENT PAGE
   ========================================================= */
.agent-hero {
  margin-top: calc(var(--header-h) * -1);
  background:
    linear-gradient(135deg, rgba(15,90,48,0.85), rgba(15,90,48,0.6)),
    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: var(--white);
  padding: calc(var(--header-h) + 60px) 0 96px;
  text-align: center;
}
.steps-num { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card {
  background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--r);
  padding: 26px; position: relative;
}
.step-card .num { font-family: var(--f-serif); font-size: 48px; color: var(--green-soft); position: absolute; top: 8px; right: 16px; line-height: 1; }
.step-card h3 { font-family: var(--f-serif); font-size: 22px; margin-bottom: 6px; position: relative; }
.step-card p { font-size: 14px; color: var(--charcoal-soft); position: relative; }

.commission-table {
  width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.commission-table th, .commission-table td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--grey-line); }
.commission-table th { background: var(--sand); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--charcoal); }
.commission-table tr:last-child td { border-bottom: 0; }

.calc-card { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--grey-line); padding: 32px; }
.calc-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; }
.calc-output {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: var(--white); border-radius: var(--r); padding: 28px; text-align: center;
}
.calc-output .label { font-size: 13px; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.08em; }
.calc-output .v { font-family: var(--f-serif); font-size: 48px; margin: 6px 0; line-height: 1; }

.dash-preview {
  background: var(--charcoal); border-radius: var(--r); padding: 24px; color: var(--white);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; box-shadow: var(--shadow-lg);
}
.dash-preview .dash-card { background: rgba(255,255,255,0.06); border-radius: var(--r-sm); padding: 18px; }
.dash-preview .dash-card .lbl { font-size: 11px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.08em; }
.dash-preview .dash-card .v { font-family: var(--f-serif); font-size: 28px; color: var(--gold); margin-top: 4px; }

/* =========================================================
   BLOG
   ========================================================= */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; padding: 40px 0 80px; }
.blog-feat {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px;
  margin-bottom: 40px; background: var(--white); border-radius: var(--r);
  overflow: hidden; border: 1px solid var(--grey-line);
}
.blog-feat .img { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.blog-feat .body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.blog-feat .body h2 { font-family: var(--f-serif); font-size: 30px; margin: 10px 0 12px; line-height: 1.15; }
.blog-feat .excerpt { color: var(--charcoal-soft); margin-bottom: 16px; }
.blog-tag { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: var(--r-pill); background: var(--green-soft); color: var(--green-deep); font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.blog-card {
  background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--r);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card .img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.blog-card .body { padding: 20px; }
.blog-card h3 { font-family: var(--f-serif); font-size: 22px; margin: 10px 0 8px; line-height: 1.2; }
.blog-card .excerpt { color: var(--charcoal-soft); font-size: 14px; margin-bottom: 14px; }
.blog-card .meta { font-size: 12.5px; color: var(--charcoal-soft); display: flex; justify-content: space-between; }
.blog-card .inline-cta { display: inline-block; margin-top: 10px; font-weight: 600; color: var(--green-deep); font-size: 14px; }

.blog-rail .card { background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--r); padding: 22px; }
.blog-rail .card + .card { margin-top: 22px; }
.blog-rail h4 { font-family: var(--f-serif); font-size: 22px; margin-bottom: 12px; }
.blog-rail ol { counter-reset: r; }
.blog-rail ol li {
  counter-increment: r; display: flex; gap: 12px; align-items: flex-start; padding: 10px 0;
  border-bottom: 1px solid var(--grey-line);
}
.blog-rail ol li:last-child { border-bottom: 0; }
.blog-rail ol li::before {
  content: counter(r);
  font-family: var(--f-serif); font-size: 24px; color: var(--green);
  width: 28px; flex: 0 0 28px; line-height: 1;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-block { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--grey-line); }
.contact-block:last-child { border-bottom: 0; }
.contact-block .icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--green-soft);
  display: flex; align-items: center; justify-content: center; color: var(--green-deep);
  flex: 0 0 44px;
}
.contact-block h4 { font-size: 14px; margin-bottom: 4px; }
.contact-block a, .contact-block p { color: var(--charcoal-soft); font-size: 14px; }
.map-card { aspect-ratio: 16/9; background: var(--sand-deep); border-radius: var(--r); position: relative; overflow: hidden; margin-top: 16px; }
.map-card::after {
  content: "Outbound HQ · Chennai"; position: absolute; bottom: 12px; left: 12px;
  background: var(--white); padding: 8px 14px; border-radius: var(--r-pill); font-size: 13px; font-weight: 600; box-shadow: var(--shadow-sm);
}
.contact-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.contact-trust .card { background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--r); padding: 22px; text-align: center; }
.contact-trust .card .icon-big { font-size: 28px; margin-bottom: 8px; }
.contact-trust .card h4 { font-family: var(--f-serif); font-size: 22px; margin-bottom: 4px; }

/* =========================================================
   DESIGN SYSTEM
   ========================================================= */
.ds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.swatch { border-radius: var(--r); overflow: hidden; border: 1px solid var(--grey-line); }
.swatch .color { height: 110px; }
.swatch .info { padding: 12px 14px; background: var(--white); font-size: 12.5px; }
.swatch .info b { display: block; font-size: 14px; }
.ds-block + .ds-block { margin-top: 40px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .list-grid { grid-template-columns: repeat(2, 1fr); }
  .mood-row { grid-template-columns: repeat(3, 1fr); }
  .mason { column-count: 3; }
  .pd-layout { grid-template-columns: 1fr; }
  .price-card { position: static; }
  .blog-layout { grid-template-columns: 1fr; }
  .list-layout { grid-template-columns: 1fr; }
  .filter-rail { position: static; max-height: none; }
  .hw-grid { grid-template-columns: 1fr 1fr; }
  .planner-rail { display: none; }
  .nav { gap: 0; padding: 3px; }
  .nav a { padding: 7px 10px; font-size: 13px; }
  .header-phone, .header-insta { display: none; }
}
@media (max-width: 768px) {
  :root { --pad-section-d: var(--pad-section-m); --header-h: 88px; }
  .nav { display: none; }
  .header-cta .header-phone, .header-cta .header-insta { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header > .container { padding: 0 8px 0 18px; }
  .header-inner { height: 56px; }
  .logo { font-size: 22px; }
  .lead-capture-grid { grid-template-columns: 1fr; gap: 32px; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-list { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-grid { grid-template-columns: 1fr; }
  .mason { column-count: 2; }
  .field-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); padding: 8px; }
  .hero-stat:nth-child(3) { border-left: 0; border-top: 1px solid var(--grey-line); }
  .hero-stat:nth-child(4) { border-top: 1px solid var(--grey-line); }
  .hero-stats-wrap { margin-top: -48px; padding: 0 16px; }
  .lead-capture { padding-top: calc(var(--pad-section-d) + 56px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pd-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; height: 360px; }
  .pd-gallery .img:first-child { grid-column: span 2; grid-row: span 1; }
  .highlights { grid-template-columns: repeat(2, 1fr); }
  .incl-grid { grid-template-columns: 1fr; }
  .steps-num { grid-template-columns: 1fr 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .fact-bar .row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .things-grid { grid-template-columns: 1fr 1fr; }
  .enq-grid { grid-template-columns: 1fr; }
  .blog-feat { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-trust { grid-template-columns: 1fr; }
  .hw-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .dash-preview { grid-template-columns: 1fr; }
  .booking-ticker { left: 12px; right: 12px; max-width: none; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
  .ds-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .list-grid { grid-template-columns: 1fr; }
  .mood-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: calc(var(--header-h) + 24px) 16px 100px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat { padding: 14px 16px; gap: 12px; }
  .hero-stat .num-lg { font-size: 24px; }
  .hero-stat-ico { width: 38px; height: 38px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   SANDHYA — LIVE CHAT ASSISTANT
   ========================================================= */
body.has-sandhya .planner-rail { display: none !important; }

.sandhya-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transform: translateY(0);
  transition: transform .25s ease;
}
.sandhya-launcher.is-hidden { display: none; }
.sandhya-launcher:hover { transform: translateY(-2px); }

.sandhya-launcher-photo {
  width: 60px; height: 60px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 3px solid var(--white);
  box-shadow:
    0 0 0 4px rgba(31, 138, 76, 0.18),
    0 14px 32px -6px rgba(15, 90, 48, 0.4);
  position: relative;
  flex: 0 0 60px;
}
.sandhya-launcher-photo::after {
  content: "";
  position: absolute; right: 2px; bottom: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #38c172;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 0 rgba(56,193,114,0.6);
  animation: sandhya-pulse 2s ease-in-out infinite;
}
@keyframes sandhya-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(56,193,114,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(56,193,114,0); }
}

.sandhya-preview {
  background: var(--white);
  padding: 12px 16px 14px;
  border-radius: 16px 16px 4px 16px;
  border: 1px solid rgba(31,138,76,0.18);
  box-shadow: 0 14px 32px -10px rgba(15,90,48,0.25);
  font-size: 13.5px;
  line-height: 1.4;
  max-width: 240px;
  color: var(--charcoal);
  position: relative;
  animation: sandhya-preview-in .45s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}
.sandhya-preview strong { color: var(--green-deep); }
.sandhya-preview .preview-close {
  position: absolute;
  top: -8px; right: -8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  border: 2px solid var(--white);
}
@keyframes sandhya-preview-in {
  from { opacity: 0; transform: translateY(8px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* CHAT WINDOW */
.sandhya-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 380px;
  height: 600px;
  max-height: calc(100vh - 44px);
  background: var(--white);
  border-radius: 22px;
  box-shadow:
    0 30px 80px -12px rgba(15, 90, 48, 0.35),
    0 8px 24px -8px rgba(31, 42, 29, 0.18);
  border: 1px solid rgba(31, 138, 76, 0.16);
  z-index: 91;
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  animation: sandhya-chat-in .3s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.sandhya-chat.is-open { display: flex; }
@keyframes sandhya-chat-in {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.sandhya-head {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  color: var(--white);
  padding: 18px 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.sandhya-head::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,147,43,0.5), transparent);
}
.sandhya-head-photo {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  border: 2px solid rgba(255,255,255,0.4);
  flex: 0 0 44px;
  position: relative;
}
.sandhya-head-photo::after {
  content: "";
  position: absolute; right: 0; bottom: 0;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #4ade80;
  border: 2px solid var(--green-deep);
}
.sandhya-head-info { flex: 1; min-width: 0; }
.sandhya-head-name {
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sandhya-head-verified {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  background: var(--gold);
  color: var(--green-deep);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}
.sandhya-head-role {
  font-size: 12px;
  opacity: 0.92;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sandhya-head-role .live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 2px rgba(74,222,128,0.25);
}
.sandhya-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background .15s ease;
  flex: 0 0 32px;
}
.sandhya-close:hover { background: rgba(255,255,255,0.28); }

/* MESSAGES */
.sandhya-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px 8px;
  background:
    linear-gradient(180deg, var(--sand) 0%, #FBF7EE 100%);
  scroll-behavior: smooth;
}
.sandhya-messages::-webkit-scrollbar { width: 6px; }
.sandhya-messages::-webkit-scrollbar-thumb {
  background: rgba(31, 138, 76, 0.2);
  border-radius: 999px;
}

.bubble-row {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  margin-bottom: 8px;
  animation: bubble-in .25s ease;
}
.bubble-row.is-user { justify-content: flex-end; }
.bubble-row + .bubble-row.is-bot.is-continuation { margin-top: -4px; }
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.bubble-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  flex: 0 0 26px;
}
.bubble-avatar.is-hidden { visibility: hidden; }

.bubble {
  max-width: 80%;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 16px;
  position: relative;
}
.bubble.is-bot {
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid rgba(31, 138, 76, 0.1);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 2px rgba(31, 42, 29, 0.04);
}
.bubble.is-user {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: var(--white);
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px -4px rgba(15, 90, 48, 0.3);
}
.bubble .link-card {
  display: block;
  margin-top: 10px;
  background: var(--sand);
  border-radius: 10px;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--charcoal);
  font-size: 13px;
  transition: background .15s ease;
}
.bubble .link-card:hover { background: var(--green-soft); }
.bubble .link-card strong { color: var(--green-deep); display: block; }

/* TYPING INDICATOR */
.bubble-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid rgba(31, 138, 76, 0.1);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}
.bubble-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.5;
  animation: typing-bounce 1.3s ease-in-out infinite;
}
.bubble-typing span:nth-child(2) { animation-delay: 0.15s; }
.bubble-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-4px); opacity: 1; }
}

/* QUICK REPLIES */
.sandhya-quickreplies {
  padding: 12px 14px 14px;
  background: var(--white);
  border-top: 1px solid var(--grey-line);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 180px;
  overflow-y: auto;
  animation: bubble-in .3s ease;
}
.sandhya-quickreplies.is-hidden { display: none; }
.qr-chip {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--green);
  background: var(--white);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
}
.qr-chip:hover {
  background: var(--green-soft);
  transform: translateY(-1px);
}
.qr-chip.is-secondary {
  border-color: var(--grey-line);
  color: var(--charcoal-soft);
  font-weight: 500;
}
.qr-chip.is-secondary:hover { background: var(--sand); }

/* INPUT ROW (phone / name capture) */
.sandhya-input-row {
  padding: 12px 14px 14px;
  background: var(--white);
  border-top: 1px solid var(--grey-line);
  display: none;
  flex-direction: column;
  gap: 8px;
  animation: bubble-in .3s ease;
}
.sandhya-input-row.is-active { display: flex; }
.sandhya-input-row .label-row {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal-soft);
}
.sandhya-input-wrap {
  display: flex;
  gap: 6px;
  align-items: stretch;
}
.sandhya-input-wrap .country {
  flex: 0 0 70px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--grey-line);
  padding: 0 10px;
  font-size: 14px;
  background: var(--sand);
  font-weight: 600;
}
.sandhya-input {
  flex: 1;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--grey-line);
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.sandhya-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31,138,76,0.15);
}
.sandhya-send {
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.sandhya-send:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -6px rgba(15,90,48,0.45); }
.sandhya-send:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.sandhya-input-helper {
  font-size: 11.5px;
  color: var(--charcoal-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sandhya-input-helper svg { color: var(--green); }

/* Summary chip */
.sandhya-summary {
  margin: 6px 0 14px;
  padding: 10px 12px;
  background: var(--green-soft);
  border: 1px dashed rgba(31, 138, 76, 0.4);
  border-radius: 12px;
  font-size: 12.5px;
  color: var(--green-deep);
  line-height: 1.5;
}
.sandhya-summary strong { font-weight: 700; }

@media (max-width: 768px) {
  .sandhya-chat {
    right: 12px;
    left: 12px;
    bottom: 84px;
    width: auto;
    height: calc(100vh - 120px);
    border-radius: 20px;
  }
  .sandhya-launcher {
    right: 14px;
    bottom: 84px;
    gap: 10px;
  }
  .sandhya-launcher-photo { width: 54px; height: 54px; flex: 0 0 54px; }
  .sandhya-preview { max-width: 200px; font-size: 12.5px; }
}

/* =========================================================
   MEGA NAV + MOBILE DRAWER (v2)
   ========================================================= */
.nav .nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: inherit;
  font-size: 13.5px; font-weight: 600;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: color .18s ease, background .18s ease;
  white-space: nowrap;
  border: 0; background: transparent;
}
.nav .nav-link:hover { color: var(--green-deep); background: rgba(31,138,76,0.08); }
.nav .nav-link.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: 0 6px 14px -4px rgba(15, 90, 48, 0.45);
}
.nav .caret { transition: transform .2s ease; opacity: .7; }
.nav-item.has-mega { position: static; }
.nav-item.has-mega:hover .nav-link,
.nav-item.has-mega:focus-within .nav-link,
.nav-item.has-mega.is-open .nav-link { color: var(--green-deep); background: rgba(31,138,76,0.08); }
.nav-item.has-mega:hover .caret,
.nav-item.has-mega:focus-within .caret,
.nav-item.has-mega.is-open .caret { transform: rotate(180deg); }

.nav-erp {
  background: var(--green-soft) !important;
  color: var(--green-deep) !important;
  border: 1px solid rgba(31,138,76,0.25);
}
.nav-erp:hover { background: rgba(31,138,76,0.16) !important; }
.nav-erp svg { color: var(--green-deep); }

/* Mega panel */
.mega-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: min(940px, calc(100vw - 40px));
  background: rgba(255,255,255,0.98);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(31, 138, 76, 0.16);
  border-radius: 22px;
  box-shadow: 0 30px 60px -20px rgba(15, 90, 48, 0.22), 0 8px 22px -8px rgba(31,42,29,0.08);
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 90;
}
.nav-item.has-mega:hover .mega-panel,
.nav-item.has-mega:focus-within .mega-panel,
.nav-item.has-mega.is-open .mega-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* When user navigated by click, lock hover-out from closing while .is-open */
.nav-item.has-mega.is-open .mega-panel { transition-delay: 0s; }
/* Suppress hover-open while another menu is click-open, by toggling .nav.is-locked */
.nav.is-locked .nav-item.has-mega:not(.is-open):hover .mega-panel {
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
}
.mega-dest { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 26px; }
.mega-pkgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; width: min(720px, calc(100vw - 40px)); }
.mega-themes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; width: min(680px, calc(100vw - 40px)); }

.mega-col p.mega-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.mega-col a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 14px;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.mega-col a:hover { background: var(--green-soft); color: var(--green-deep); transform: translateX(2px); }
.mega-col a span:first-child { font-size: 18px; line-height: 1; }
.mega-col a small { margin-left: auto; color: var(--grey); font-size: 11.5px; font-weight: 600; }

.mega-feature {
  position: relative;
  border-radius: 16px;
  min-height: 200px;
  background-size: cover; background-position: center;
  color: var(--white);
  padding: 18px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.mega-feature-eyebrow {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(8px);
  padding: 5px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
}
.mega-feature h4 { font-family: var(--f-serif); font-size: 22px; font-weight: 600; line-height: 1.15; margin-bottom: 4px; }
.mega-feature p { font-size: 13px; opacity: 0.92; }

.theme-tile {
  position: relative;
  display: flex; align-items: flex-end;
  padding: 16px;
  min-height: 110px;
  border-radius: 14px;
  background-size: cover; background-position: center;
  color: var(--white);
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}
.theme-tile:hover { transform: translateY(-3px); box-shadow: 0 14px 24px -10px rgba(0,0,0,0.4); }
.theme-tile span { font-size: 15px; }

/* Hide nav-link on touch — keep hover for now; tap closes */
@media (max-width: 1180px) {
  .mega-dest, .mega-pkgs, .mega-themes { width: min(780px, calc(100vw - 32px)); }
  .mega-dest { grid-template-columns: 1fr 1fr; }
  .mega-dest .mega-feature { grid-column: 1 / -1; min-height: 140px; }
}
@media (max-width: 1100px) {
  .nav .nav-link { padding: 7px 10px; font-size: 12.5px; }
  .nav-erp { padding: 6px 9px !important; }
}

/* MOBILE DRAWER */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(31, 42, 29, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, visibility .25s;
  z-index: 95;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; pointer-events: auto; }

.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 86vw);
  height: 100vh;
  background: var(--white);
  z-index: 96;
  padding: 22px 22px 100px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
  box-shadow: -20px 0 50px -10px rgba(15,90,48,0.18);
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px; padding-bottom: 16px;
  border-bottom: 1px solid var(--grey-line);
}
.drawer-head .logo { font-size: 22px; }
.drawer-close {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--sand);
  color: var(--charcoal);
  border: 0;
}
.drawer-close:hover { background: var(--green-soft); color: var(--green-deep); }
.drawer-group { border-bottom: 1px solid var(--grey-line); padding: 6px 0; }
.drawer-group summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 6px;
  font-weight: 600; font-size: 15.5px;
  cursor: pointer;
}
.drawer-group summary::-webkit-details-marker { display: none; }
.drawer-group summary::after {
  content: "+"; color: var(--green-deep); font-size: 20px; font-weight: 400; transition: transform .2s ease;
}
.drawer-group[open] summary::after { content: "−"; }
.drawer-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  padding: 6px 6px 16px;
}
.drawer-sub a {
  padding: 8px 6px;
  font-size: 14px;
  color: var(--charcoal-soft);
  border-radius: 8px;
}
.drawer-sub a:hover { color: var(--green-deep); background: var(--green-soft); }
.drawer-link {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 6px;
  font-weight: 600; font-size: 15.5px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--grey-line);
}
.drawer-link:hover { color: var(--green-deep); }
.drawer-erp {
  margin-top: 12px;
  background: var(--green-soft);
  border: 1px solid rgba(31,138,76,0.2);
  border-radius: 12px;
  padding: 14px;
  color: var(--green-deep);
}
.drawer-erp svg { color: var(--green-deep); }

/* The legacy auto-styled mobile nav from main.js — neutralize */
@media (max-width: 768px) {
  .nav.is-open { display: none !important; }
}

/* =========================================================
   WHY SPLIT (v2)
   ========================================================= */
.why-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-visual { position: relative; }
.why-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  background-size: cover; background-position: center;
  box-shadow: 0 30px 60px -20px rgba(15, 90, 48, 0.32), 0 8px 24px -8px rgba(31,42,29,0.12);
  overflow: visible;
}
.why-photo::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15,90,48,0) 50%, rgba(15,90,48,0.45) 100%);
  pointer-events: none;
}
.why-photo-badge {
  position: absolute;
  top: 20px; left: 20px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  padding: 10px 14px;
  border-radius: 16px;
  box-shadow: 0 12px 28px -8px rgba(15, 90, 48, 0.22);
  z-index: 2;
}
.why-photo-badge .g-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.why-photo-badge strong { display: block; font-size: 16px; color: var(--charcoal); font-weight: 700; }
.why-photo-badge small { color: var(--charcoal-soft); font-size: 11.5px; }

.why-photo-stat {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--green-deep);
  color: var(--white);
  padding: 22px 26px;
  border-radius: 22px;
  box-shadow: 0 22px 40px -14px rgba(15, 90, 48, 0.5);
  z-index: 2;
}
.why-photo-stat .num-lg { font-family: var(--f-serif); font-size: 40px; font-weight: 600; line-height: 1; letter-spacing: -0.02em; }
.why-photo-stat .label { font-size: 12.5px; opacity: 0.9; margin-top: 4px; letter-spacing: 0.04em; text-transform: uppercase; }

.why-content .h2 { margin-top: 12px; }
.why-lead { color: var(--charcoal-soft); margin-top: 16px; font-size: 16px; max-width: 480px; }
.why-list { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }
.why-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: var(--sand);
  transition: background .2s ease, transform .2s ease;
}
.why-row:hover { background: var(--green-soft); transform: translateY(-2px); }
.why-row .why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--white);
  color: var(--green-deep);
  display: grid; place-items: center;
  box-shadow: 0 4px 12px -4px rgba(31,42,29,0.1);
}
.why-row h3 {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--charcoal);
}
.why-row p { font-size: 14.5px; color: var(--charcoal-soft); line-height: 1.55; }

@media (max-width: 980px) {
  .why-split { grid-template-columns: 1fr; gap: 36px; }
  .why-photo { aspect-ratio: 16 / 11; }
  .why-photo-stat { bottom: -20px; right: 16px; }
}
@media (max-width: 480px) {
  .why-photo-stat .num-lg { font-size: 32px; }
}

/* =========================================================
   FAQ v2 — searchable, categorised, side helper
   ========================================================= */
.faq-v2 { background: linear-gradient(180deg, var(--white) 0%, var(--sand) 100%); }

.faq-toolbar {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 880px; margin: 0 auto 32px;
}
.faq-search {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 999px;
  padding: 4px 14px 4px 18px;
  box-shadow: var(--shadow-sm);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.faq-search:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 138, 76, 0.12);
}
.faq-search svg { color: var(--charcoal-soft); flex-shrink: 0; }
.faq-search input {
  flex: 1;
  border: 0; outline: 0; background: transparent;
  height: 52px;
  font-size: 15.5px; color: var(--charcoal);
}
.faq-search input::placeholder { color: var(--grey); }
.faq-search kbd {
  font-family: var(--f-sans);
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  background: var(--sand-deep);
  color: var(--charcoal-soft);
  padding: 4px 8px; border-radius: 6px;
  border: 1px solid var(--grey-line);
}

.faq-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
}
.faq-chip {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--grey-line);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all .15s ease;
}
.faq-chip:hover { border-color: var(--green); color: var(--green-deep); transform: translateY(-1px); }
.faq-chip.is-active {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--white);
  border-color: var(--green-deep);
  box-shadow: 0 6px 14px -4px rgba(15, 90, 48, 0.4);
}
.faq-chip span {
  font-size: 11.5px;
  background: rgba(31,138,76,0.12);
  color: var(--green-deep);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}
.faq-chip.is-active span {
  background: rgba(255,255,255,0.22);
  color: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item-v2 {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.faq-item-v2:hover { border-color: rgba(31, 138, 76, 0.3); box-shadow: var(--shadow-sm); }
.faq-item-v2[open] {
  border-color: var(--green);
  box-shadow: 0 12px 26px -10px rgba(15, 90, 48, 0.18);
}
.faq-item-v2 summary {
  display: grid;
  grid-template-columns: 56px 1fr 38px;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--charcoal);
}
.faq-item-v2 summary::-webkit-details-marker { display: none; }
.faq-num {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.faq-q { line-height: 1.4; }
.faq-toggle {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--sand);
  color: var(--green-deep);
  transition: transform .25s ease, background .2s ease;
}
.faq-item-v2:hover .faq-toggle { background: var(--green-soft); }
.faq-item-v2[open] .faq-toggle {
  background: var(--green-deep);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 22px 22px 92px;
  color: var(--charcoal-soft);
  font-size: 15px;
  line-height: 1.65;
  animation: faqReveal .35s ease;
}
.faq-a em { color: var(--green-deep); font-style: italic; font-weight: 500; }
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-helpful {
  margin-top: 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--grey);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.faq-helpful button {
  background: var(--sand);
  border: 1px solid var(--grey-line);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all .15s ease;
  text-transform: none;
  letter-spacing: 0;
}
.faq-helpful button:hover { border-color: var(--green); color: var(--green-deep); background: var(--green-soft); }

/* Empty state */
.faq-empty {
  grid-column: 1 / 2;
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 56px 24px;
  background: var(--white);
  border: 1px dashed var(--grey-line);
  border-radius: 22px;
}
.faq-empty-illus {
  width: 80px; height: 80px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.faq-empty h4 { font-family: var(--f-serif); font-size: 24px; margin-bottom: 6px; }
.faq-empty p { color: var(--charcoal-soft); margin-bottom: 18px; }

/* Helper sidebar */
.faq-helper {
  position: sticky;
  top: 120px;
  display: flex; flex-direction: column; gap: 16px;
}
.faq-helper-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.faq-helper-photo {
  position: relative;
  width: 80px; height: 80px;
  border-radius: 999px;
  background-size: cover; background-position: center;
  margin: 0 auto 14px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(31,138,76,0.18);
}
.faq-helper-photo .online-dot {
  position: absolute;
  bottom: 4px; right: 4px;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--green);
  border: 3px solid var(--white);
}
.faq-helper-name {
  font-family: var(--f-serif);
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.faq-helper-sub {
  color: var(--charcoal-soft);
  font-size: 14px;
  margin-top: 4px;
}
.faq-helper-tip {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--sand) 100%);
  text-align: left;
  border-color: rgba(200,147,43,0.25);
}
.faq-helper-tip .tip-icon { font-size: 22px; margin-bottom: 6px; }
.faq-helper-tip strong { display: block; font-family: var(--f-serif); font-size: 18px; color: var(--charcoal); margin-bottom: 6px; }
.faq-helper-tip p { font-size: 13.5px; color: var(--charcoal-soft); line-height: 1.5; }

@media (max-width: 980px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-helper { position: static; flex-direction: row; }
  .faq-helper-card { flex: 1; }
}
@media (max-width: 640px) {
  .faq-helper { flex-direction: column; }
  .faq-item-v2 summary { grid-template-columns: 40px 1fr 34px; padding: 16px; gap: 10px; }
  .faq-num { font-size: 18px; }
  .faq-q { font-size: 15px; }
  .faq-a { padding: 0 16px 18px 66px; font-size: 14px; }
  .faq-toolbar { gap: 12px; }
  .faq-chips { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .faq-chip { flex-shrink: 0; }
}



