/* ---------------------------------------------------------------------------
   Pondicherry Getaway — /PondicherryTrip
   Palette is lifted off the campaign poster (teal / coral / cream / gold) so the
   ad creative and the landing page read as one piece. Deliberately a single
   warm light theme — this is a poster, not an app surface.
   --------------------------------------------------------------------------- */

:root {
	--teal-900: #0B3A44;
	--teal-800: #0E4A55;
	--teal-700: #12525F;
	--teal-500: #1C7181;
	--teal-100: #D6E7EA;

	--coral: #D9432F;
	--coral-600: #C13927;
	--coral-100: #FBE3DE;

	--gold: #F2B441;
	--gold-100: #FDF0D2;

	--cream: #FCF5E9;
	--sand: #F3E7D2;
	--paper: #FFFFFF;

	--ink: #14262B;
	--muted: #5C7076;
	--line: #E6DCC8;

	--green: #1F8F5F;

	--r-sm: 10px;
	--r-md: 16px;
	--r-lg: 24px;
	--r-full: 999px;

	--shadow-sm: 0 1px 2px rgba(11, 58, 68, .06), 0 4px 12px rgba(11, 58, 68, .06);
	--shadow-md: 0 2px 6px rgba(11, 58, 68, .07), 0 18px 40px rgba(11, 58, 68, .10);
	--shadow-lg: 0 30px 70px rgba(11, 58, 68, .22);

	--maxw: 1120px;
	--bar-h: 62px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.62;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-700); }

h1, h2, h3 { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-weight: 700; line-height: 1.14; margin: 0; letter-spacing: -.01em; }
h1 { font-size: clamp(2.35rem, 6vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.12rem; font-family: 'Poppins', sans-serif; font-weight: 600; letter-spacing: 0; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 68px 0; }
.section--tight { padding: 48px 0; }

.eyebrow {
	font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
	color: var(--coral); margin: 0 0 12px;
}
.section-head { max-width: 620px; margin-bottom: 34px; }
.section-head p { color: var(--muted); margin-top: 10px; }

.sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- buttons ------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	font: inherit; font-weight: 600; text-decoration: none; cursor: pointer;
	border: 1px solid transparent; border-radius: var(--r-full);
	padding: 13px 26px; transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 8px 22px rgba(217, 67, 47, .3); }
.btn--primary:hover { background: var(--coral-600); }
.btn--ghost { background: transparent; color: var(--teal-800); border-color: rgba(14, 74, 85, .28); }
.btn--ghost:hover { background: rgba(14, 74, 85, .06); }
.btn--onteal { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.34); }
.btn--onteal:hover { background: rgba(255,255,255,.2); }
.btn--wa { background: #25D366; color: #08331B; box-shadow: 0 8px 22px rgba(37, 211, 102, .28); }
.btn--wa:hover { background: #1FBA5A; }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }

/* --- sticky top bar ------------------------------------------------------ */
.topbar {
	position: sticky; top: 0; z-index: 60;
	background: rgba(252, 245, 233, .88);
	backdrop-filter: saturate(160%) blur(12px);
	-webkit-backdrop-filter: saturate(160%) blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.topbar.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 20px rgba(11, 58, 68, .06); }
.topbar__in { min-height: var(--bar-h); display: flex; align-items: center; gap: 16px; }
.topbar__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 700; }
.topbar__brand img { width: 30px; height: 30px; border-radius: 8px; }
.topbar__brand span { font-size: .95rem; letter-spacing: -.01em; }
.topbar__meta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.topbar__dates { font-size: .84rem; color: var(--muted); font-weight: 500; }
.topbar__price { font-size: .84rem; color: var(--ink); font-weight: 600; white-space: nowrap; }
.topbar__price b { color: var(--coral); }
.topbar .btn { padding: 9px 20px; font-size: .88rem; }
@media (max-width: 860px) { .topbar__dates, .topbar__price { display: none; } }

/* --- hero ---------------------------------------------------------------- */
.hero {
	position: relative; overflow: hidden;
	background:
		radial-gradient(120% 90% at 12% 0%, #17636F 0%, rgba(23, 99, 111, 0) 58%),
		radial-gradient(90% 80% at 100% 100%, #0A323B 0%, rgba(10, 50, 59, 0) 60%),
		var(--teal-800);
	color: #fff;
	padding: 56px 0 68px;
}
.hero::after {
	content: ''; position: absolute; inset: auto 0 -1px 0; height: 64px;
	background: linear-gradient(to bottom, rgba(252,245,233,0), var(--cream));
	pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 52px; align-items: center; }
.hero__eyebrow { color: var(--gold); }
.hero h1 { color: #fff; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__lede { color: #C9DFE3; font-size: 1.06rem; margin: 16px 0 24px; max-width: 46ch; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 28px; padding: 0; }
.chip {
	display: inline-flex; align-items: center; gap: 7px;
	background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
	color: #EAF4F5; border-radius: var(--r-full); padding: 7px 14px; font-size: .82rem; font-weight: 500;
}
.chip--hot { background: var(--gold); border-color: var(--gold); color: #43310B; font-weight: 700; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__note { margin-top: 18px; font-size: .8rem; color: #9FC0C6; }

.hero__poster { position: relative; }
.hero__poster img {
	width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
	transform: rotate(1.6deg); border: 6px solid rgba(255,255,255,.9);
}

@media (max-width: 900px) {
	.hero { padding: 36px 0 56px; }
	.hero__grid { grid-template-columns: 1fr; gap: 34px; }
	.hero__poster { order: -1; max-width: 380px; margin: 0 auto; }
	.hero__poster img { transform: none; border-width: 5px; }
}

/* --- snapshot ------------------------------------------------------------ */
.snapshot { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
/* Rules live on the cells, not as gaps over a coloured container: with 9 tiles in
   an auto-fit grid there is almost always a trailing empty track, and a gap-drawn
   grid paints that track as a solid block. The overflow:hidden clips the last
   column's and last row's shadows into the container border. */
.snapshot__cell { padding: 18px 20px; box-shadow: 1px 0 0 var(--line), 0 1px 0 var(--line); }
.snapshot__k { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.snapshot__v { font-weight: 600; margin-top: 5px; font-size: .96rem; }

/* --- itinerary timeline -------------------------------------------------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
	content: ''; position: absolute; left: 17px; top: 14px; bottom: 14px; width: 2px;
	background: linear-gradient(to bottom, var(--teal-500), var(--coral) 26%, var(--coral));
	border-radius: 2px;
}
.tl { position: relative; padding: 0 0 30px 56px; }
.tl:last-child { padding-bottom: 0; }
.tl__dot {
	position: absolute; left: 6px; top: 4px; width: 24px; height: 24px; border-radius: 50%;
	background: var(--paper); border: 3px solid var(--coral);
	display: grid; place-items: center; font-size: .66rem; font-weight: 700; color: var(--coral);
}
.tl--travel .tl__dot { border-color: var(--teal-500); color: var(--teal-500); }
.tl__day { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--coral); }
.tl--travel .tl__day { color: var(--teal-500); }
.tl__title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin: 2px 0 4px; }
.tl__date { font-size: .84rem; color: var(--muted); margin-bottom: 12px; }
.tl__body { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.tl__body p { font-size: .93rem; }
.stops { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; margin: 14px 0 0; padding: 0; }
.stops li { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-full); padding: 5px 12px; font-size: .8rem; font-weight: 500; color: var(--teal-800); }
@media (max-width: 560px) { .tl { padding-left: 44px; } .timeline::before { left: 13px; } .tl__dot { left: 2px; } }

/* --- hotel + host -------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1.25fr .75fr; gap: 26px; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; box-shadow: var(--shadow-sm); }
.card--teal { background: var(--teal-800); color: #fff; border-color: var(--teal-800); }
.card--teal .kv__k { color: #9FC0C6; }
.card--teal .kv__v { color: #fff; }

.stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; }
.kv { display: grid; grid-template-columns: auto 1fr; gap: 10px 20px; margin: 16px 0 0; }
.kv__k { font-size: .8rem; color: var(--muted); white-space: nowrap; }
.kv__v { font-size: .9rem; font-weight: 500; }

.perks { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.perks li { background: var(--gold-100); border: 1px solid #EBD9A9; color: #6B4E09; border-radius: var(--r-sm); padding: 8px 13px; font-size: .82rem; font-weight: 600; }

.host { display: flex; gap: 18px; align-items: flex-start; }
.host__avatar {
	flex: 0 0 58px; width: 58px; height: 58px; border-radius: 50%;
	background: var(--coral); color: #fff; display: grid; place-items: center;
	font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
}
.host__name { font-weight: 700; }
.host__role { font-size: .8rem; color: var(--muted); margin-bottom: 8px; }
.host p { font-size: .92rem; }

/* --- inclusions ---------------------------------------------------------- */
.ie { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 780px) { .ie { grid-template-columns: 1fr; } }
.ie h3 { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.ticklist { list-style: none; margin: 0; padding: 0; }
.ticklist li { position: relative; padding: 0 0 11px 28px; font-size: .93rem; }
.ticklist li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.ticklist--in li::before { content: '✓'; color: var(--green); }
.ticklist--ex li::before { content: '✕'; color: #A9B7BB; }
.ticklist--ex li { color: var(--muted); }

/* --- booking ------------------------------------------------------------- */
.book { background: var(--teal-900); color: #fff; }
.book h2 { color: #fff; }
.book .eyebrow { color: var(--gold); }
.book__lede { color: #A9C7CD; }
.book__grid { display: grid; grid-template-columns: 1fr 420px; gap: 34px; align-items: start; }
@media (max-width: 940px) { .book__grid { grid-template-columns: 1fr; } }

.panel { background: var(--paper); color: var(--ink); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-md); }
.panel__title { font-weight: 700; font-size: 1.06rem; margin-bottom: 4px; }
.panel__sub { font-size: .84rem; color: var(--muted); margin-bottom: 20px; }

.field { margin-bottom: 15px; }
.field > label, .legend { display: block; font-size: .8rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="number"] {
	width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
	background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-sm);
	padding: 12px 14px; transition: border-color .15s ease, background .15s ease;
}
.field input:focus { background: #fff; border-color: var(--teal-500); outline: none; box-shadow: 0 0 0 3px rgba(28,113,129,.16); }
.field input[aria-invalid="true"] { border-color: var(--coral); background: #FFF7F5; }
.field__err { display: none; color: var(--coral-600); font-size: .78rem; margin-top: 5px; font-weight: 500; }
.field.has-err .field__err { display: block; }
/* Phone gets the whole row and age drops underneath. The +91 prefix eats ~70px of
   the field, so at half width a 10-digit number is visibly truncated — on mobile
   AND in the fixed 420px desktop panel, where a column is only 178px. Age is
   capped so a two-digit field doesn't stretch the full panel on its own line. */
.field__row { display: grid; grid-template-columns: 1fr; }
#f-age input { max-width: 130px; }
.phone { display: grid; grid-template-columns: 62px 1fr; gap: 8px; }
.phone__dial { display: grid; place-items: center; background: var(--sand); border: 1px solid var(--line); border-radius: var(--r-sm); font-size: .9rem; font-weight: 600; color: var(--muted); }

fieldset { border: 0; margin: 0 0 15px; padding: 0; }

/* seats stepper */
.stepper { display: flex; align-items: center; gap: 6px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-full); padding: 5px; width: fit-content; }
.stepper button {
	width: 38px; height: 38px; border-radius: 50%; border: 0; background: var(--paper);
	color: var(--teal-800); font-size: 1.3rem; line-height: 1; cursor: pointer; font-weight: 600;
	box-shadow: var(--shadow-sm); transition: background .15s ease;
}
.stepper button:hover:not(:disabled) { background: var(--teal-100); }
.stepper button:disabled { opacity: .35; cursor: not-allowed; }
.stepper__val { min-width: 54px; text-align: center; font-weight: 700; font-size: 1.05rem; }
.stepper__hint { font-size: .78rem; color: var(--muted); margin-top: 7px; }

/* bus toggle */
.addon { display: flex; gap: 13px; align-items: flex-start; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); padding: 15px 16px; cursor: pointer; transition: border-color .15s ease, background .15s ease; }
.addon:hover { border-color: var(--teal-500); }
.addon input { margin: 3px 0 0; width: 18px; height: 18px; accent-color: var(--coral); flex: 0 0 auto; cursor: pointer; }
.addon__t { font-weight: 600; font-size: .93rem; }
.addon__d { font-size: .81rem; color: var(--muted); }
.addon__p { margin-left: auto; font-weight: 700; color: var(--coral); white-space: nowrap; font-size: .93rem; }
.addon:has(input:checked) { border-color: var(--coral); background: var(--coral-100); }
/* Below ~430px the price competes with the label for width and the title breaks
   across three lines. Let it drop to its own line, aligned under the text. */
@media (max-width: 430px) {
	.addon { flex-wrap: wrap; }
	/* Only the price may wrap. Without a basis the text block wraps too and the
	   checkbox is left stranded on a line of its own. */
	.addon > span:not(.addon__p) { flex: 1 1 0; min-width: 0; }
	.addon__p { flex: 1 0 100%; margin: 6px 0 0 31px; }
}

/* co-travellers */
.cotrav { margin-bottom: 15px; }
.cotrav[hidden] { display: none; }
.cotrav__row { display: grid; grid-template-columns: 1fr 84px; gap: 8px; margin-bottom: 8px; }
.cotrav__row input { width: 100%; font: inherit; font-size: .9rem; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 10px 12px; }
.cotrav__row input:focus { background: #fff; border-color: var(--teal-500); outline: none; }

/* price summary */
.summary { background: var(--cream); border: 1px dashed var(--line); border-radius: var(--r-md); padding: 16px 18px; margin: 4px 0 18px; }
.summary__line { display: flex; justify-content: space-between; gap: 12px; font-size: .88rem; padding: 4px 0; color: var(--muted); }
/* `display:flex` on a class beats the UA sheet's [hidden]{display:none}, so the
   bus row has to opt out explicitly or it shows with the add-on unchecked. */
.summary__line[hidden] { display: none; }
.summary__line b { color: var(--ink); font-weight: 600; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; border-top: 1px solid var(--line); margin-top: 10px; padding-top: 12px; }
.summary__total span { font-weight: 600; }
.summary__total strong { font-size: 1.6rem; font-family: 'Playfair Display', serif; color: var(--teal-800); }
.summary__gst { font-size: .74rem; color: var(--muted); text-align: right; margin-top: 2px; }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
.consent input { margin: 2px 0 0; width: 17px; height: 17px; accent-color: var(--coral); flex: 0 0 auto; }

.trustrow { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: .76rem; color: var(--muted); }
.formerr { display: none; background: var(--coral-100); border: 1px solid #F0C4BB; color: #8E2C1D; border-radius: var(--r-sm); padding: 11px 14px; font-size: .85rem; margin-bottom: 14px; }
.formerr.is-on { display: block; }

/* what happens next, beside the form */
.nextsteps { list-style: none; margin: 22px 0 0; padding: 0; counter-reset: n; }
.nextsteps li { position: relative; padding: 0 0 18px 44px; color: #C9DFE3; font-size: .93rem; }
.nextsteps li::before {
	counter-increment: n; content: counter(n);
	position: absolute; left: 0; top: -1px; width: 30px; height: 30px; border-radius: 50%;
	background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
	display: grid; place-items: center; font-size: .82rem; font-weight: 700; color: var(--gold);
}
.nextsteps b { color: #fff; display: block; font-weight: 600; }

/* success */
.done { text-align: center; }
.done__tick { width: 64px; height: 64px; border-radius: 50%; background: #E4F5EC; color: var(--green); display: grid; place-items: center; margin: 0 auto 16px; font-size: 2rem; }
.done h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 8px; }
.done__ref { display: inline-block; background: var(--cream); border: 1px dashed var(--line); border-radius: var(--r-sm); padding: 9px 16px; margin: 14px 0; font-weight: 700; letter-spacing: .04em; }
.done__meta { font-size: .84rem; color: var(--muted); }

/* --- terms + faq --------------------------------------------------------- */
.terms { font-size: .86rem; color: var(--muted); }
.terms li { margin-bottom: 8px; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
	list-style: none; cursor: pointer; padding: 18px 40px 18px 0; position: relative;
	font-weight: 600; font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
	font-size: 1.5rem; font-weight: 400; color: var(--coral); line-height: 1;
}
.faq details[open] summary::after { content: '−'; }
.faq__a { padding: 0 40px 20px 0; color: var(--muted); font-size: .93rem; }

/* --- footer -------------------------------------------------------------- */
.footer { background: var(--teal-900); color: #A9C7CD; padding: 44px 0 96px; font-size: .85rem; }
.footer__top { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand { display: flex; align-items: center; gap: 11px; color: #fff; font-weight: 700; }
.footer__brand img { width: 34px; height: 34px; border-radius: 9px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer a { color: #D6E7EA; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__bottom { padding-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .78rem; }

/* --- floating actions ---------------------------------------------------- */
.fab {
	position: fixed; right: 18px; bottom: 18px; z-index: 70;
	width: 54px; height: 54px; border-radius: 50%; background: #25D366;
	display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.42);
	border: 0; cursor: pointer;
}
.fab svg { width: 28px; height: 28px; fill: #fff; }

/* mobile pay bar */
.paybar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 65;
	background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
	border-top: 1px solid var(--line); padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
	display: none; align-items: center; gap: 14px;
	box-shadow: 0 -6px 24px rgba(11,58,68,.10);
}
.paybar__p { font-size: .72rem; color: var(--muted); line-height: 1.2; }
.paybar__p b { display: block; font-size: 1.1rem; color: var(--ink); font-family: 'Playfair Display', serif; }
.paybar .btn { margin-left: auto; padding: 12px 22px; }
@media (max-width: 940px) {
	.paybar { display: flex; }
	.fab { bottom: 84px; }
	.footer { padding-bottom: 110px; }
}
