/* ==========================================================================
   Thiloththama Tours & Holidays — stylesheet
   Hand-written CSS. No framework, no build step.
   ========================================================================== */

/* --------------------------------------------------------------- Tokens */
:root {
  --blue: #0066cc;
  --blue-dark: #0053a6;
  --navy: #003366;
  --navy-deep: #012043;
  --gold: #ffd700;
  --gold-dark: #d4af00;
  --sky: #87ceeb;
  --sand: #f7f5ec;
  --coral: #ff6b6b;

  --ink: #14213d;
  --body: #46536b;
  --muted: #6b7896;
  --line: #e3e8f0;
  --white: #ffffff;
  --off: #f6f8fb;

  --font-head: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Caveat", "Segoe Script", cursive;

  --shadow-sm: 0 1px 2px rgba(16, 32, 64, .06), 0 2px 6px rgba(16, 32, 64, .05);
  --shadow: 0 4px 12px rgba(16, 32, 64, .07), 0 12px 32px rgba(16, 32, 64, .07);
  --shadow-lg: 0 8px 24px rgba(16, 32, 64, .1), 0 24px 60px rgba(16, 32, 64, .12);

  --radius: 14px;
  --radius-lg: 22px;
  --wrap: 1200px;
  --nav-h: 76px;
}

/* --------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 800;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.65rem); }
h2 { font-size: clamp(1.75rem, 3.9vw, 2.7rem); }
h3 { font-size: clamp(1.12rem, 2vw, 1.4rem); font-weight: 700; }
p  { margin: 0 0 1.1em; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- Layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(60px, 8vw, 104px) 0; }
.section--tint { background: var(--off); }
.section--sand { background: var(--sand); }

.eyebrow {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--blue);
  display: block;
  margin-bottom: .15em;
  line-height: 1;
}
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-bottom: 0; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: .97rem;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  text-align: center; line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--gold); color: var(--navy); box-shadow: 0 6px 18px rgba(212, 175, 0, .34); }
.btn--primary:hover { background: #ffdf33; box-shadow: 0 10px 26px rgba(212, 175, 0, .42); }

.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(0, 102, 204, .3); }
.btn--blue:hover { background: var(--blue-dark); }

.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--ghost:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }

.btn--outline { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }

.btn--wa { background: #25d366; color: #06331a; box-shadow: 0 6px 18px rgba(37, 211, 102, .32); }
.btn--wa:hover { background: #1fbb5a; color: #04240f; }

.btn--block { width: 100%; }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }

/* --------------------------------------------------------------- Header */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0);
  transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.header::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(1, 24, 51, .62), rgba(1, 24, 51, 0));
  transition: opacity .3s ease;
}
.header.is-stuck { background: rgba(255, 255, 255, .96); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); }
.header.is-stuck::after { opacity: 0; }

.header__inner { display: flex; align-items: center; gap: 26px; width: 100%; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 46px; width: auto; border-radius: 7px; }

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a {
  font-family: var(--font-head); font-weight: 600; font-size: .93rem;
  color: #fff; position: relative; padding: 6px 0;
  text-shadow: 0 1px 6px rgba(0, 20, 45, .4);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .22s ease;
}
.nav a:hover::after { width: 100%; }
.header.is-stuck .nav a { color: var(--navy); text-shadow: none; }

.header__cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header__tel {
  font-family: var(--font-head); font-weight: 700; font-size: .93rem; color: #fff;
  display: inline-flex; align-items: center; gap: 7px; text-shadow: 0 1px 6px rgba(0, 20, 45, .4);
}
.header.is-stuck .header__tel { color: var(--navy); text-shadow: none; }
.header__cta .btn { padding: 11px 22px; font-size: .9rem; }

.burger {
  display: none; background: none; border: 0; padding: 8px; margin-left: auto;
  color: #fff; line-height: 0;
}
.header.is-stuck .burger { color: var(--navy); }

.mobile-nav {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: #fff; box-shadow: var(--shadow-lg);
  padding: 18px 22px 26px; display: none; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--line);
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head); font-weight: 600; color: var(--navy);
  padding: 13px 4px; border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 16px; }

/* --------------------------------------------------------------- Hero */
.hero { position: relative; padding: calc(var(--nav-h) + 56px) 0 72px; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(1, 26, 56, .93) 0%, rgba(1, 32, 67, .82) 42%, rgba(0, 51, 102, .5) 72%, rgba(0, 51, 102, .34) 100%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }

.hero h1 { color: #fff; margin-bottom: .38em; }
.hero__lead { font-size: 1.14rem; color: rgba(255, 255, 255, .9); max-width: 40ch; }

.award-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 215, 0, .15); border: 1px solid rgba(255, 215, 0, .5);
  color: var(--gold); font-family: var(--font-head); font-weight: 700;
  font-size: .8rem; letter-spacing: .02em;
  padding: 8px 17px; border-radius: 999px; margin-bottom: 22px;
}
.award-pill svg { flex-shrink: 0; }

.hero__perks { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero__perks li {
  display: flex; align-items: center; gap: 8px;
  font-size: .93rem; font-weight: 600; color: rgba(255, 255, 255, .92);
}
.hero__perks svg { color: var(--gold); flex-shrink: 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; }

/* --------------------------------------------------- Quick quote card */
.quote-card {
  background: #fff; border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-lg); color: var(--body);
}
.quote-card .eyebrow { font-size: 1.35rem; margin-bottom: 0; }
.quote-card h2 { font-size: 1.6rem; margin-bottom: .28em; }
.quote-card__note { font-size: .9rem; color: var(--muted); margin-bottom: 20px; }
.quote-card__fine { font-size: .78rem; color: var(--muted); text-align: center; margin: 12px 0 0; line-height: 1.5; }

/* --------------------------------------------------------------- Forms */
.field { margin-bottom: 15px; }
.field label,
.fieldset__legend {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: .8rem; letter-spacing: .03em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: var(--font-body); font-size: 1rem;
  color: var(--ink); background: #fff;
  border: 1.5px solid var(--line); border-radius: 11px;
  transition: border-color .16s ease, box-shadow .16s ease;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='none' stroke='%2346536b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 102, 204, .14);
}
.field input:user-invalid, .field select:user-invalid { border-color: var(--coral); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.fieldset { border: 0; padding: 0; margin: 0 0 8px; }
.form-step {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-head); font-weight: 800; color: var(--navy);
  font-size: 1.05rem; margin: 30px 0 16px;
}
.form-step:first-child { margin-top: 0; }
.form-step span {
  width: 30px; height: 30px; border-radius: 50%; background: var(--blue); color: #fff;
  display: grid; place-items: center; font-size: .88rem; flex-shrink: 0;
}

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: block; padding: 9px 17px; border-radius: 999px;
  border: 1.5px solid var(--line); background: #fff;
  font-size: .89rem; font-weight: 600; color: var(--body);
  transition: all .16s ease; cursor: pointer;
}
.chip input:checked + span { background: var(--blue); border-color: var(--blue); color: #fff; }
.chip input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 2px; }

.consent { display: flex; gap: 11px; align-items: flex-start; margin: 20px 0 18px; }
.consent input { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; accent-color: var(--blue); }
.consent label { font-size: .88rem; color: var(--muted); line-height: 1.55; }

.form-status {
  display: none; margin-top: 16px; padding: 16px 18px;
  border-radius: 12px; font-size: .93rem; line-height: 1.6;
}
.form-status.is-visible { display: block; }
.form-status.is-ok { background: #eefaf1; border: 1px solid #a9e2ba; color: #14663a; }
.form-status.is-err { background: #fff2f2; border: 1px solid #f4bcbc; color: #94261f; }
.form-status .btn { margin-top: 12px; }
.form-status strong { font-family: var(--font-head); display: block; margin-bottom: 4px; }

/* --------------------------------------------------------------- Trust bar */
.trust { background: var(--navy); color: #fff; padding: 34px 0; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust__item { display: flex; gap: 14px; align-items: flex-start; }
.trust__item svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.trust__item strong { display: block; font-family: var(--font-head); font-size: 1rem; color: #fff; }
.trust__item span { font-size: .86rem; color: rgba(255, 255, 255, .72); line-height: 1.5; }

/* --------------------------------------------------------------- Harsha */
.harsha__grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 58px; align-items: center; }
.harsha__media { position: relative; }
.harsha__media img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; object-fit: cover;
}
.harsha__badge {
  position: absolute; right: -14px; bottom: 26px;
  background: #fff; border-radius: 15px; padding: 15px 19px;
  box-shadow: var(--shadow-lg); display: flex; gap: 12px; align-items: center;
  max-width: 240px;
}
.harsha__badge svg { color: var(--gold); flex-shrink: 0; }
.harsha__badge strong { display: block; font-family: var(--font-head); font-size: .93rem; color: var(--navy); }
.harsha__badge span { font-size: .78rem; color: var(--muted); }

.traits { list-style: none; padding: 0; margin: 30px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.traits li { display: flex; gap: 13px; align-items: flex-start; }
.traits svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.traits strong { display: block; font-family: var(--font-head); font-size: .97rem; color: var(--ink); }
.traits span { font-size: .87rem; color: var(--muted); line-height: 1.5; }
.harsha__actions { display: flex; flex-wrap: wrap; gap: 13px; }

/* --------------------------------------------------------------- Tour cards */
.tour {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tour:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.tour__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tour:hover .tour__media img { transform: scale(1.07); }
.tour__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-head); font-weight: 800; font-size: .72rem;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px;
}
.tour__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.tour__body h3 { margin-bottom: .45em; }
.tour__body p { font-size: .94rem; color: var(--muted); flex: 1; }
.tour__link {
  font-family: var(--font-head); font-weight: 700; font-size: .92rem;
  color: var(--blue); display: inline-flex; align-items: center; gap: 7px; margin-top: 6px;
}
.tour__link svg { transition: transform .2s ease; }
.tour__link:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------- Destinations */
.dest {
  position: relative; display: block; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow);
  color: #fff;
}
.dest img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.dest:hover img { transform: scale(1.08); }
.dest::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 20, 45, 0) 32%, rgba(0, 20, 45, .55) 62%, rgba(0, 18, 40, .92) 100%);
}
.dest__body { position: absolute; inset: auto 0 0 0; padding: 26px 24px; z-index: 1; }
.dest__kicker {
  font-family: var(--font-head); font-weight: 700; font-size: .74rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 7px;
}
.dest__body h3 { color: #fff; font-size: 1.32rem; margin-bottom: .3em; }
.dest__body p { font-size: .9rem; color: rgba(255, 255, 255, .82); margin-bottom: .7em; }
.dest__more {
  font-family: var(--font-head); font-weight: 700; font-size: .87rem; color: #fff;
  display: inline-flex; align-items: center; gap: 7px;
}
.dest__more svg { transition: transform .2s ease; }
.dest:hover .dest__more svg { transform: translateX(4px); }

.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 26px; margin-bottom: 44px; }
.head-row .section-head { margin-bottom: 0; }

/* --------------------------------------------------------------- Why us */
.why { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.why__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.why__item:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--sky); }
.why__icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(140deg, var(--blue), var(--navy));
  display: grid; place-items: center; color: var(--gold); margin-bottom: 17px;
}
.why__item h3 { font-size: 1.06rem; margin-bottom: .4em; }
.why__item p { font-size: .89rem; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------- Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.step { position: relative; padding-top: 12px; }
.step__num {
  font-family: var(--font-head); font-weight: 800; font-size: 3.4rem;
  color: var(--sky); opacity: .55; line-height: 1; margin-bottom: 10px; display: block;
}
.step h3 { margin-bottom: .45em; }
.step p { font-size: .95rem; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------- Reviews */
.reviews__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: 8px 17px; border-radius: 999px; margin-bottom: 18px;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: var(--navy);
}
.reviews__badge svg { color: #00aa6c; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.review__stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.review blockquote { margin: 0 0 20px; font-size: .96rem; color: var(--body); line-height: 1.72; flex: 1; }
.review__who { display: flex; align-items: center; gap: 13px; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(140deg, var(--blue), var(--navy));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: .88rem;
}
.review__who strong { display: block; font-family: var(--font-head); font-size: .95rem; color: var(--ink); }
.review__who span { font-size: .82rem; color: var(--muted); }

.review--cta {
  background: linear-gradient(150deg, var(--navy), var(--blue));
  border: 0; color: #fff; justify-content: center;
}
.review--cta h3 { color: #fff; font-size: 1.28rem; }
.review--cta p { color: rgba(255, 255, 255, .85); font-size: .93rem; }

/* --------------------------------------------------------------- Booking */
.booking__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 52px; align-items: start; }
.booking__aside { position: sticky; top: calc(var(--nav-h) + 24px); }
.promise { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 20px; }
.promise li { display: flex; gap: 14px; align-items: flex-start; }
.promise svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.promise strong { display: block; font-family: var(--font-head); font-size: .98rem; color: var(--ink); }
.promise span { font-size: .87rem; color: var(--muted); }

.aside-cta {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.aside-cta p { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: 14px; }
.aside-cta .btn { margin-bottom: 9px; }

.booking__form {
  background: #fff; border-radius: var(--radius-lg); padding: 38px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}

/* --------------------------------------------------------------- FAQ */
.faq { max-width: 860px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 24px 0; font-family: var(--font-head); font-weight: 700;
  font-size: 1.06rem; color: var(--ink);
}
.faq__q:hover { color: var(--blue); }
.faq__icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--off); color: var(--blue); display: grid; place-items: center;
  transition: transform .28s ease, background-color .2s ease;
}
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.faq__a > div { overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a p { color: var(--muted); font-size: .97rem; padding-bottom: 24px; margin: 0; }

/* --------------------------------------------------------------- Final CTA */
.final-cta {
  position: relative; text-align: center; color: #fff;
  background: linear-gradient(150deg, var(--navy-deep), var(--blue));
  padding: clamp(64px, 8vw, 100px) 0;
}
.final-cta h2 { color: #fff; max-width: 17ch; margin-inline: auto; }
.final-cta p { color: rgba(255, 255, 255, .86); max-width: 56ch; margin: 0 auto 32px; }
.final-cta .eyebrow { color: var(--gold); }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }

/* --------------------------------------------------------------- Footer */
.footer { background: var(--navy-deep); color: rgba(255, 255, 255, .74); padding: 66px 0 0; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 42px; padding-bottom: 48px; }
.footer h4 {
  font-family: var(--font-head); font-size: .82rem; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; margin-bottom: 18px;
}
.footer img { height: 52px; width: auto; border-radius: 8px; margin-bottom: 18px; }
.footer p { font-size: .9rem; line-height: 1.7; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer a { color: rgba(255, 255, 255, .74); }
.footer a:hover { color: var(--gold); }
.footer li { display: flex; gap: 10px; align-items: flex-start; }
.footer li svg { flex-shrink: 0; margin-top: 4px; color: var(--sky); }

.socials { display: flex; gap: 11px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, .09); display: grid; place-items: center;
  color: #fff; transition: background-color .2s ease, transform .2s ease;
}
.socials a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

.ta-card { background: rgba(255, 255, 255, .06); border-radius: 12px; padding: 18px; }
.ta-card__score { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: #fff; line-height: 1; }
.ta-card__stars { color: var(--gold); display: flex; gap: 2px; margin: 7px 0; }
.ta-card p { font-size: .84rem; margin-bottom: 12px; }

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: .84rem; color: rgba(255, 255, 255, .55);
}

/* --------------------------------------------------------------- Sticky mobile bar */
.mobile-bar {
  position: fixed; inset: auto 0 0 0; z-index: 98; display: none;
  background: #fff; border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px; box-shadow: 0 -4px 20px rgba(16, 32, 64, .1);
}
.mobile-bar .btn { flex: 1; padding: 13px 12px; font-size: .9rem; }

/* --------------------------------------------------------------- Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------- Responsive */
@media (max-width: 1080px) {
  .why { grid-template-columns: repeat(3, 1fr); }
  .why__item:nth-child(4), .why__item:nth-child(5) { grid-column: span 1; }
  .harsha__grid { gap: 40px; }
  .booking__grid { gap: 36px; }
}

@media (max-width: 980px) {
  .nav, .header__tel { display: none; }
  .burger { display: block; }
  .header__cta { margin-left: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .harsha__grid { grid-template-columns: 1fr; }
  .harsha__media { max-width: 440px; }
  .harsha__badge { right: 10px; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .booking__grid { grid-template-columns: 1fr; }
  .booking__aside { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; padding-bottom: 72px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .review-grid { grid-template-columns: 1fr; }
  .traits { grid-template-columns: 1fr; gap: 16px; }
  .head-row { flex-direction: column; align-items: flex-start; }
  .booking__form { padding: 26px 20px; }
  .quote-card { padding: 24px 20px; }
  .mobile-bar { display: flex; }
  .header__cta .btn { display: none; }
  .hero { padding-top: calc(var(--nav-h) + 34px); }
  .harsha__badge { position: static; margin-top: 16px; max-width: none; }
}

@media (max-width: 460px) {
  .why { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .hero__actions .btn, .final-cta__actions .btn { width: 100%; }
}

/* --------------------------------------------------------------- Print */
@media print {
  .header, .mobile-bar, .mobile-nav, .hero__bg, form, .btn { display: none !important; }
  body { color: #000; }
}
