/* ==========================================================
   Sheratons Group Tours & Travels
   Theme: Deep ocean teal + sunset coral + warm sand
   ========================================================== */

:root {
    --ink: #0B2A36;
    --ocean-900: #0B3B4A;
    --ocean: #0E7C86;
    --ocean-100: #E3F3F3;
    --coral: #FF6B4A;
    --coral-600: #EA5533;
    --sun: #FFB547;
    --sand: #FBF5EC;
    --sand-200: #F3EADB;
    --white: #fff;
    --text: #1C2B33;
    --muted: #5A6B73;
    --line: #E8E1D5;

    --font-head: 'Outfit', system-ui, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

    --radius: 18px;
    --radius-sm: 12px;
    --shadow-sm: 0 2px 8px rgba(11, 42, 54, .06);
    --shadow: 0 12px 32px -12px rgba(11, 42, 54, .18);
    --shadow-lg: 0 30px 60px -20px rgba(11, 42, 54, .35);
    --container: 1200px;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--ocean); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }
.mt-lg { margin-top: 48px; }
.center > .btn { margin: 6px; }
.muted { color: var(--muted); }
.hl { color: var(--coral); }
.hl-teal { color: var(--ocean); }
.icon { width: 1.15em; height: 1.15em; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5em;
    padding: .8em 1.5em; border-radius: 999px; border: 2px solid transparent;
    font: 600 .95rem/1 var(--font-body); cursor: pointer; white-space: nowrap;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn .icon { transition: transform .2s var(--ease); }
.btn:hover .icon:last-child { transform: translateX(3px); }
.btn--primary { background: var(--coral); color: var(--white); box-shadow: 0 10px 24px -10px rgba(255, 107, 74, .8); }
.btn--primary:hover { background: var(--coral-600); }
.btn--outline { border-color: var(--ocean); color: var(--ocean); }
.btn--outline:hover { background: var(--ocean); color: var(--white); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { box-shadow: var(--shadow); }
.btn--ghost-light { border-color: rgba(255, 255, 255, .6); color: var(--white); backdrop-filter: blur(6px); background: rgba(255, 255, 255, .08); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .18); }
.btn--wa { background: #25D366; color: var(--white); box-shadow: 0 10px 24px -10px rgba(37, 211, 102, .8); }
.btn--wa:hover { background: #1DA851; }
.btn--teal { background: var(--ocean); color: var(--white); box-shadow: 0 10px 24px -10px rgba(14, 124, 134, .8); }
.btn--teal:hover { background: var(--ocean-900); }
.btn--sm { padding: .6em 1.1em; font-size: .85rem; }
.btn--lg { padding: 1em 1.8em; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: rgba(255, 255, 255, .8); font-size: .82rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; gap: 16px; }
.topbar a, .topbar span { color: inherit; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--sun); }
.topbar__wa { color: #4ADE80 !important; font-weight: 600; }
.topbar__left, .topbar__right { display: flex; gap: 22px; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s; }
.header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.logo { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.logo__img { display: block; height: 60px; width: auto; }
.logo__img--footer { height: 96px; padding: 12px 16px; border-radius: 14px; background: var(--white); box-sizing: content-box; }
.logo__mark svg { width: 46px; height: 46px; display: block; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__text strong { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; letter-spacing: -.01em; }
.logo__text small { font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ocean); }
.logo--light { color: var(--white); }
.logo--light .logo__text small { color: var(--sun); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link { position: relative; padding: 8px 14px; color: var(--text); font-weight: 500; font-size: .95rem; border-radius: 999px; transition: color .2s, background .2s; }
.nav__link:hover { color: var(--ocean); background: var(--ocean-100); }
.nav__link.is-active { color: var(--ocean); font-weight: 700; }
.nav__link.is-active::after { content: ''; position: absolute; left: 50%; bottom: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); transform: translateX(-50%); }
.nav__cta { margin-left: 12px; }

.quick-links { display: none; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); cursor: pointer; }
.nav-toggle .icon { width: 28px; height: 28px; }
.nav-toggle .icon-close { display: none; }

/* ---------- Hero ---------- */
.hero {
    position: relative; color: var(--white);
    background: linear-gradient(100deg, rgba(11, 42, 54, .92) 0%, rgba(11, 59, 74, .7) 45%, rgba(11, 59, 74, .15) 100%), var(--bg) center/cover no-repeat;
    padding: 110px 0 140px;
}
.hero::after { content: ''; position: absolute; inset: auto 0 -1px; height: 80px; background: linear-gradient(to top, var(--white), transparent); pointer-events: none; }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr .9fr; gap: 56px; align-items: center; }
.hero h1 { color: var(--white); margin-bottom: .4em; }
.hero h1 .hl { color: var(--sun); display: block; }
.hero p { font-size: 1.12rem; max-width: 560px; color: rgba(255, 255, 255, .88); }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; margin-bottom: 22px; border-radius: 999px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .25); font-size: .85rem; font-weight: 600; backdrop-filter: blur(6px); }
.hero__badge .icon { color: var(--sun); }
.hero__badge b { color: var(--sun); font-weight: 700; }

.pan-india { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 6px 0 24px; padding: 16px; border-radius: var(--radius); background: linear-gradient(120deg, var(--ocean-100), #FFEDE8); }
.pan-india__item { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: var(--ocean); color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.pan-india__item--med { background: var(--coral); }
.pan-india__amp { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--ink); }
.pan-india__tag { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 999px; background: var(--ink); color: var(--sun); font-size: .85rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.footer__pan { display: block; margin-bottom: 6px; color: var(--sun); font-family: var(--font-head); font-size: 1.02rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.trip-finder { background: var(--white); color: var(--text); padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: grid; gap: 16px; }
.trip-finder h3 { font-size: 1.4rem; margin: 0; }
.trip-finder label { display: grid; gap: 6px; font-size: .8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.trip-finder__row { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 12px; }
.trip-finder__row > *, .form-grid > * { min-width: 0; }
.hero .trip-finder__note { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 0; font-size: .82rem; color: var(--muted); }

input, select, textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
    font: 500 .95rem var(--font-body); color: var(--text); background: var(--white);
    transition: border-color .2s, box-shadow .2s; text-transform: none; letter-spacing: 0;
}
input:not([type="hidden"]):not([type="checkbox"]), select { min-height: 48px; }

/* Date/month fields: same size as other inputs (iOS Safari gives them its own width/height) */
input[type="date"], input[type="month"] {
    -webkit-appearance: none; appearance: none;
    display: block; min-width: 0; height: 48px; line-height: 1.2; text-align: left;
}
input::-webkit-date-and-time-value { text-align: left; min-height: 1.2em; }
/* iOS shows no picker icon, so add one */
@supports (-webkit-touch-callout: none) {
    input[type="date"], input[type="month"] {
        padding-right: 38px;
        background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A6B73' stroke-width='1.8' stroke-linecap='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E") no-repeat right 12px center / 18px;
    }
}
/* 16px stops iOS from zooming into the page when a field is tapped */
@media (max-width: 768px) {
    input, select, textarea { font-size: 16px; }
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ocean); box-shadow: 0 0 0 4px rgba(14, 124, 134, .12); }
textarea { resize: vertical; }

.tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 5px; border-radius: 999px; background: var(--sand); }
.tab { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 0; border: 0; border-radius: 999px; background: none; font: 700 .92rem var(--font-body); color: var(--muted); cursor: pointer; transition: background .2s, color .2s; }
.tab.is-active { background: var(--coral); color: var(--white); box-shadow: 0 6px 14px -6px rgba(255, 107, 74, .8); }
.tab--med.is-active { background: var(--ocean); box-shadow: 0 6px 14px -6px rgba(14, 124, 134, .8); }
.tab-panel { display: grid; gap: 16px; }
.tab-panel[hidden] { display: none; }

/* ---------- Highlights ---------- */
.highlights { position: relative; z-index: 2; margin-top: -60px; }
.highlights__grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 8px; }
.hl-item { display: flex; align-items: center; gap: 14px; padding: 20px; }
.hl-item + .hl-item { border-left: 1px solid var(--line); }
.hl-item__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--ocean-100); color: var(--ocean); flex-shrink: 0; }
.hl-item__icon .icon { width: 24px; height: 24px; }
.hl-item strong { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--ink); }
.hl-item small { color: var(--muted); font-size: .85rem; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section--sand { background: var(--sand); }
.section--ink { background: var(--ink); color: rgba(255, 255, 255, .8); }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--ink .section-head p { color: rgba(255, 255, 255, .7); }
.eyebrow { display: inline-block; margin-bottom: 12px; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--coral); }
.eyebrow--light { color: var(--sun); }

.checklist { list-style: none; padding: 0; margin: 20px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.checklist li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.checklist .icon { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--ocean-100); color: var(--ocean); stroke-width: 3; }

/* ---------- Package cards ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pkg { display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease); scroll-margin-top: 110px; }
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg.is-hidden { display: none; }
.pkg__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.pkg__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pkg:hover .pkg__media img { transform: scale(1.06); }
.pkg__tag { position: absolute; top: 14px; left: 14px; padding: 5px 12px; border-radius: 999px; background: rgba(255, 255, 255, .95); color: var(--ink); font-size: .75rem; font-weight: 700; }
.pkg__days { position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; background: rgba(11, 42, 54, .82); color: var(--white); font-size: .75rem; font-weight: 600; backdrop-filter: blur(4px); }
.pkg__actions { display: flex; align-items: center; gap: 8px; }
.pkg__wa { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #E7F9EE; color: #1DA851; transition: background .2s, color .2s; }
.pkg__wa:hover { background: #25D366; color: var(--white); }
.pkg__body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; }
.pkg__body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.pkg__places { display: flex; gap: 6px; color: var(--muted); font-size: .88rem; margin-bottom: 14px; }
.pkg__places .icon { color: var(--coral); margin-top: 4px; }
.pkg__inc { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-wrap: wrap; gap: 6px; }
.pkg__inc li { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 999px; background: var(--sand); font-size: .78rem; font-weight: 500; }
.pkg__inc .icon { width: 13px; height: 13px; color: var(--ocean); stroke-width: 3; }
.pkg__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.price { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--ocean); line-height: 1.1; }
.price small { display: block; font-family: var(--font-body); font-size: .72rem; font-weight: 500; color: var(--muted); }
.price--ask { font-size: 1.05rem; color: var(--ink); }

.section--med { background: linear-gradient(180deg, #EAF6F6, var(--white)); }
.pkg__tag--med { display: inline-flex; align-items: center; gap: 5px; background: var(--ocean); color: var(--white); }
.pkg__tag--med .icon { width: 13px; height: 13px; }
.pkg--med .pkg__places .icon { color: var(--ocean); }
.pkg--med .price--ask { color: var(--ocean); }
.pkg--med .pkg__inc li { background: var(--ocean-100); }

.med-perks { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin-top: 40px; padding: 22px 24px; border-radius: var(--radius); background: var(--ocean-900); }
.med-perks__title { width: 100%; text-align: center; color: var(--sun); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.med-perk { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: rgba(255, 255, 255, .1); color: var(--white); font-weight: 600; font-size: .9rem; }
.med-perk .icon { color: var(--sun); }
.med-perks__note { width: 100%; text-align: center; color: rgba(255, 255, 255, .6); font-size: .78rem; }

.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.chip { padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--white); font: 600 .9rem var(--font-body); color: var(--text); cursor: pointer; transition: all .2s; }
.chip:hover { border-color: var(--ocean); color: var(--ocean); }
.chip.is-active { background: var(--ocean); border-color: var(--ocean); color: var(--white); }

.type-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.type { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 26px 16px; border-radius: var(--radius); background: var(--white); color: var(--text); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.type:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.type__icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 6px; border-radius: 50%; background: var(--ocean-100); color: var(--ocean); transition: background .3s, color .3s; }
.type:hover .type__icon { background: var(--coral); color: var(--white); }
.type__icon .icon { width: 24px; height: 24px; }
.type strong { font-family: var(--font-head); font-size: 1rem; color: var(--ink); line-height: 1.25; }
.type small { color: var(--muted); font-size: .82rem; line-height: 1.4; }

.type--bordered { box-shadow: none; border: 1px solid var(--line); }
.type--bordered:hover { border-color: transparent; }

.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pillar { position: relative; display: flex; flex-direction: column; min-height: 400px; padding: 40px; border-radius: 28px; overflow: hidden; color: rgba(255, 255, 255, .9); background: linear-gradient(160deg, rgba(11, 59, 74, .92), rgba(14, 124, 134, .78)), var(--bg) center/cover; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.pillar--med { background: linear-gradient(160deg, rgba(120, 38, 20, .9), rgba(255, 107, 74, .8)), var(--bg) center/cover; }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar__icon { display: grid; place-items: center; width: 60px; height: 60px; margin-bottom: 20px; border-radius: 18px; background: rgba(255, 255, 255, .16); color: var(--white); }
.pillar__icon .icon { width: 30px; height: 30px; }
.pillar h3 { color: var(--white); font-size: 2rem; }
.pillar ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.pillar li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.pillar li .icon { color: var(--sun); stroke-width: 3; }
.pillar__cta { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--white); }

.dest-groups { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; }
.dest-group { padding: 30px; border-radius: var(--radius); border: 1px solid var(--line); }
.dest-group:first-child { grid-row: span 2; }
.dest-group h3 { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 16px; margin-bottom: 8px; border-bottom: 2px solid var(--coral); font-size: 1.3rem; }
.dest-group h3 span { font-family: var(--font-body); font-size: .78rem; font-weight: 600; color: var(--muted); }
.dest-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; }
.dest-group:first-child .dest-list { grid-template-columns: 1fr 1fr; column-gap: 28px; }
.dest-list li { display: flex; flex-direction: column; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.dest-list strong { color: var(--ink); font-weight: 700; }
.dest-list small { color: var(--muted); font-size: .85rem; }

.note-box { display: flex; gap: 16px; align-items: flex-start; margin-top: 56px; padding: 24px 28px; border-radius: var(--radius); background: var(--ocean-100); }
.note-box > .icon { width: 28px; height: 28px; color: var(--ocean); margin-top: 2px; }
.note-box p { margin: 0; }
.note-box a { font-weight: 700; text-decoration: underline; }

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 9 / 10; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.split__body p { color: var(--muted); }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.svc { position: relative; padding: 30px 26px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc__icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 18px; border-radius: 16px; background: linear-gradient(135deg, var(--ocean), var(--ocean-900)); color: var(--white); transition: background .3s; }
.svc:hover .svc__icon { background: linear-gradient(135deg, var(--coral), var(--sun)); }
.svc__icon .icon { width: 26px; height: 26px; }
.svc p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { position: relative; padding: 34px 30px; border-radius: var(--radius); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); }
.step__num { display: block; font-family: var(--font-head); font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 18px; background: linear-gradient(135deg, var(--coral), var(--sun)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step p { margin: 0; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery__item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item figcaption { position: absolute; inset: auto 0 0; padding: 30px 16px 14px; color: var(--white); font-weight: 600; font-size: .9rem; background: linear-gradient(transparent, rgba(11, 42, 54, .85)); opacity: 0; transform: translateY(8px); transition: all .3s var(--ease); }
.gallery__item:hover figcaption { opacity: 1; transform: none; }

/* ---------- Page hero ---------- */
.page-hero { padding: 120px 0 100px; color: var(--white); text-align: center; background: linear-gradient(rgba(11, 42, 54, .72), rgba(11, 42, 54, .82)), var(--bg) center/cover no-repeat; }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.page-hero p { max-width: 620px; margin: 0 auto; font-size: 1.1rem; color: rgba(255, 255, 255, .85); }

/* ---------- Medical page ---------- */
.why-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.why-list li { display: flex; align-items: center; gap: 14px; font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.why-list span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--ocean-100); color: var(--ocean); }
.partner-box { padding: 20px 24px; border-left: 4px solid var(--coral); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--sand); }
.partner-box small { text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--muted); font-size: .72rem; }
.partner-box p { margin: 4px 0 0; font-weight: 700; color: var(--ink); }

.free-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.free { position: relative; padding: 28px 22px; text-align: center; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.free__icon { display: inline-grid; place-items: center; width: 60px; height: 60px; margin-bottom: 14px; border-radius: 50%; background: var(--ocean-100); color: var(--ocean); }
.free__icon .icon { width: 28px; height: 28px; }
.free__badge { position: absolute; top: 14px; right: 14px; padding: 2px 10px; border-radius: 999px; background: var(--coral); color: var(--white); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.free h3 { font-size: 1.05rem; }
.free p { margin: 0; font-size: .88rem; color: var(--muted); }

.treat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.treat { display: flex; align-items: center; gap: 16px; padding: 18px 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color .2s, background .2s; }
.treat:hover { border-color: var(--coral); background: #FFF6F3; }
.treat > .icon { width: 28px; height: 28px; color: var(--coral); }
.treat h3 { margin: 0; font-size: 1.05rem; }
.treat p { margin: 0; font-size: .88rem; color: var(--muted); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: start; }
.contact__info { display: grid; gap: 14px; }
.info-card { display: flex; gap: 16px; padding: 20px 22px; border-radius: var(--radius); background: var(--sand); }
.info-card__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--ocean); color: var(--white); flex-shrink: 0; }
.info-card__icon--wa { background: #25D366; }
.info-card h3 { font-size: 1rem; margin-bottom: 4px; }
.info-card a { display: block; color: var(--text); font-weight: 500; }
.info-card a:hover { color: var(--coral); }
.info-card p { margin: 0; color: var(--muted); font-size: .93rem; }

.contact__form { padding: 40px; border-radius: 24px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); scroll-margin-top: 100px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0; }
.form-grid--2 { margin: 0; gap: 12px; }
.field { display: grid; gap: 6px; align-content: start; }
.field > span { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field--full { grid-column: 1 / -1; }
.field.has-err input, .field.has-err textarea { border-color: #D93F3F; }
.field__err { color: #D93F3F; font-size: .8rem; font-weight: 600; }
.alert { padding: 12px 16px; border-radius: var(--radius-sm); background: #FDECEC; color: #A02727; font-weight: 600; margin-top: 16px; }
.hp { position: absolute; left: -9999px; }
.success { text-align: center; padding: 30px 10px; }
.success__icon { display: inline-grid; place-items: center; width: 72px; height: 72px; margin-bottom: 18px; border-radius: 50%; background: var(--ocean-100); color: var(--ocean); }
.success__icon .icon { width: 36px; height: 36px; stroke-width: 3; }
.success__icon--wa { background: #E7F9EE; color: #1DA851; }
.success__icon--wa .icon { stroke-width: 2; }
.success .success__note { margin: 14px auto 0; font-size: .85rem; }
.success p { color: var(--muted); max-width: 420px; margin: 0 auto 24px; }

.map iframe { display: block; width: 100%; height: 420px; border: 0; filter: saturate(.85); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(110deg, var(--coral) 0%, #FF8A5B 55%, var(--sun) 130%); color: var(--white); padding: 56px 0; }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { color: var(--white); margin-bottom: .2em; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-band p { margin: 0; opacity: .92; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band .btn--light { color: var(--coral-600); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, .68); padding: 80px 0 0; font-size: .93rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.5fr; gap: 44px; }
.footer__brand .logo { margin-bottom: 20px; }
.footer__gst { font-size: .82rem; color: rgba(255, 255, 255, .5); }
.footer h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: rgba(255, 255, 255, .68); transition: color .2s; }
.footer a:hover { color: var(--sun); }
.footer__contact li { display: flex; gap: 12px; }
.footer__contact .icon { color: var(--coral); margin-top: 4px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 60px; padding: 24px 20px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .83rem; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: var(--white); box-shadow: 0 10px 28px -6px rgba(37, 211, 102, .6); transition: transform .2s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: pulse 2.2s infinite; z-index: -1; }
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

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

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1100px) {
    .nav__link { padding: 8px 10px; }
    .svc-grid { grid-template-columns: repeat(3, 1fr); }
    .free-grid { grid-template-columns: repeat(3, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
    .nav-toggle { display: block; }
    .header__inner { gap: 10px; }
    .quick-links { display: flex; flex: 1; justify-content: flex-end; gap: 6px; min-width: 0; }
    .quick-link { display: inline-flex; align-items: center; gap: 5px; padding: 7px 11px; border-radius: 999px; background: var(--ocean-100); color: var(--ocean); font-size: .78rem; font-weight: 700; line-height: 1.15; white-space: nowrap; }
    .quick-link .icon { width: 14px; height: 14px; }
    .quick-link:nth-child(2) { background: #FFEDE8; color: var(--coral-600); }
    .quick-link.is-active { background: var(--ocean); color: var(--white); }
    .quick-link:nth-child(2).is-active { background: var(--coral); color: var(--white); }
    /* backdrop-filter would trap the fixed drawer inside the header box */
    .header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--white); }
    .nav {
        height: 100vh; height: 100dvh; overflow-y: auto;
        position: fixed; inset: 0 0 0 auto; width: min(320px, 85vw); z-index: 70;
        flex-direction: column; align-items: stretch; gap: 4px; padding: 90px 24px 24px;
        background: var(--white); box-shadow: var(--shadow-lg);
        transform: translateX(100%); transition: transform .35s var(--ease);
    }
    .nav.is-open { transform: none; }
    .nav__link { padding: 14px 16px; font-size: 1.05rem; }
    .nav__link.is-active { background: var(--ocean-100); }
    .nav__link.is-active::after { display: none; }
    .nav__cta { margin: 16px 0 0; }
    .nav-toggle { position: relative; z-index: 80; }
    body.nav-open { overflow: hidden; }
    body.nav-open .wa-float { display: none; }
    body.nav-open .nav-toggle .icon-open { display: none; }
    body.nav-open .nav-toggle .icon-close { display: block; }
    body.nav-open::after { content: ''; position: fixed; inset: 0; z-index: 40; background: rgba(11, 42, 54, .5); }

    .hero { padding: 70px 0 120px; }
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .highlights__grid { grid-template-columns: 1fr 1fr; }
    .hl-item:nth-child(3) { border-left: 0; }
    .hl-item:nth-child(n+3) { border-top: 1px solid var(--line); }
    .pkg-grid { grid-template-columns: repeat(2, 1fr); }
    .type-grid { grid-template-columns: repeat(3, 1fr); }
    .dest-groups, .pillars { grid-template-columns: 1fr; }
    .pillar { min-height: 0; padding: 32px 26px; }
    .split { grid-template-columns: 1fr; gap: 48px; }
    .split__media img { aspect-ratio: 4 / 3; }
        .steps { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .contact { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .hide-sm { display: none !important; }
    .section { padding: 72px 0; }
    .header__inner { height: 68px; }
    .logo__mark svg { width: 40px; height: 40px; }
    .logo__img { height: 52px; }
    .quick-link { padding: 7px 9px; font-size: .74rem; }
    .nav-toggle { padding: 6px 0 6px 4px; }
    .logo__img--footer { height: 80px; }
    .logo__text strong { font-size: 1.1rem; }
    .highlights__grid { grid-template-columns: 1fr; }
    .hl-item + .hl-item { border-left: 0; border-top: 1px solid var(--line); }
    .checklist { grid-template-columns: 1fr; }
    .pkg-grid, .svc-grid, .svc-grid--3, .treat-grid { grid-template-columns: 1fr; }
    .free-grid, .type-grid { grid-template-columns: 1fr 1fr; }
    .dest-group { padding: 22px 20px; }
    .dest-group:first-child .dest-list { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .contact__form { padding: 28px 20px; }
    .footer__grid { grid-template-columns: 1fr; }
    .trip-finder { padding: 22px; }
}

/* Very small phones: keep both quick links on one line */
@media (max-width: 370px) {
    .quick-link .icon { display: none; }
    .quick-link { padding: 6px 8px; font-size: .7rem; }
}

/* ---------- Mobile bottom bar (Call / WhatsApp) ---------- */
.mobile-bar { display: none; }
@media (max-width: 768px) {
    .mobile-bar {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
        display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        background: var(--white);
        box-shadow: 0 -8px 24px rgba(11, 42, 54, .18);
    }
    .mobile-bar__item {
        display: flex; align-items: center; justify-content: center; gap: 8px;
        padding: 13px 0; border-radius: 14px;
        background: var(--ocean); color: var(--white);
        font-family: var(--font-head); font-size: 1.02rem; font-weight: 700;
        box-shadow: 0 6px 16px -6px rgba(14, 124, 134, .7);
    }
    .mobile-bar__item .icon { width: 22px; height: 22px; }
    .mobile-bar__item--wa { background: #25D366; box-shadow: 0 6px 16px -6px rgba(37, 211, 102, .8); }
    .mobile-bar__item:active { transform: scale(.97); }
    body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
    .wa-float { display: none; }
    body.nav-open .mobile-bar { display: none; }
}

.footer__web a, .info-card__web { word-break: break-all; }
