@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@400;500;700&display=swap');

:root {
    --green-dark: #137054;
    --green-mid: #53bc90;
    --green-light: #2db47a;
    --gold: #d4af37;
    --ink: #47617d;
    --ink-soft: #2d3f52;
    --muted: #809ac1;
    --border: rgba(10, 74, 56, 0.12);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --card-bg: rgba(220, 230, 210, 0.55);
    --surface: rgba(255, 255, 255, 0.6);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    /* Ayurveda Section Mapping Extension */
    --white: linear-gradient(180deg, #ede8df 0%, #e4ddd0 100%);
    --ivory: rgba(255, 255, 255, 0.45);
    --sand-deep: rgba(10, 74, 56, 0.1);
    --terra: #137054;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── Global overflow guard ───────────────────────────────── */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.925rem;
    background:
        radial-gradient(circle at top left, rgba(26,188,156,0.07), transparent 45%),
        radial-gradient(circle at top right, rgba(212,162,76,0.07), transparent 45%),
        linear-gradient(180deg, #ede8df 0%, #e4ddd0 100%);
    color: var(--ink);
}

a { color: inherit; text-decoration: none; }

img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

iframe, video, canvas, svg {
    max-width: 100%;
}

/* ── Header ──────────────────────────────────────────────── */
.detail-header,
.detail-hero,
.detail-content,
.detail-footer {
    max-width: 1040px;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.package-back-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: var(--green-mid);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(21,107,80,0.18);
    transition: transform 0.2s, box-shadow 0.2s;
}
.package-back-button:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(21,107,80,0.24); }

/* ── Hero ────────────────────────────────────────────────── */
.detail-hero {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    align-items: center;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
}

.hero-copy .eyebrow {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0 0 0.6rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    font-weight: 500;
    color: var(--ink-soft);
}
.hero-copy h1 em { color: var(--green-mid); font-style: italic; }

.hero-copy p {
    margin: 0 0 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.9rem;
    max-width: 52ch;
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: flex-start;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    color: var(--ink);
    width: auto;
    flex-shrink: 0;
}

.hero-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(29,35,32,0.14);
    aspect-ratio: 4/3;
    background: #ddd;
    transition: 0.4s;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.hero-media:hover img { transform: scale(1.06); }

/* ── Sections ────────────────────────────────────────────── */
.detail-content { display: grid; gap: 1.5rem; padding-bottom: 3.5rem; }
.section-block { margin-top: 0; }

.section-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--green-dark);
}
.section-heading::after {
    content: '';
    height: 1px;
    flex: 1;
    background: var(--border);
}

.section-intro {
    margin: -0.3rem 0 0.9rem;
    color: var(--ink-soft);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 70ch;
}

/* ── Day cards ───────────────────────────────────────────── */
.stack { display: grid; gap: 0.6rem; }

.day-card {
    display: grid;
    grid-template-columns: 60px 1fr 140px;
    gap: 1.25rem;
    align-items: center;
    background: var(--card-bg);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-md);
    padding: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.day-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}

.day-badge {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-radius: 50%;
    background: var(--green-dark);
    box-shadow: 0 4px 12px rgba(19,112,84,0.28);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
}
.day-badge .bubble-day {
    font-size: 0.52rem;
    letter-spacing: 0.06em;
    line-height: 1.3;
    text-transform: uppercase;
    opacity: 0.85;
}
.day-badge .bubble-num { font-size: 0.95rem; line-height: 1.1; }

/* CRITICAL: min-width: 0 forces text to wrap inside grid column */
.day-content {
    padding: 0;
    min-width: 0;
}

.day-meta {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 0.2rem;
}
.day-title {
    margin: 0 0 0.3rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink-soft);
    line-height: 1.15;
    word-break: break-word;
    overflow-wrap: break-word;
}
.day-card p {
    margin: 0;
    font-size: 0.83rem;
    color: var(--ink);
    line-height: 1.6;
    max-width: 60ch;
    word-break: break-word;
    overflow-wrap: break-word;
}

.day-image {
    width: 140px;
    height: 95px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    justify-self: end;
    flex-shrink: 0;
}
.day-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ── Tour map ────────────────────────────────────────────── */
.tour-map-card {
    background: rgba(200,230,240,0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    box-shadow: 0 8px 24px rgba(10,74,56,0.07);
    max-width: 680px;
    margin: 0 auto;
}
.tour-map-embed {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 7;
    min-height: 300px;
    max-height: 380px;
    border: 1px solid var(--border);
    background: #fff;
}
.tour-map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.route-marker {
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem; font-weight: 700;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.9);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.route-marker-1  { background: #0a4a38; }
.route-marker-2  { background: #156b50; }
.route-marker-3  { background: #1d7b5d; }
.route-marker-4  { background: #2b8f6d; }
.route-marker-5  { background: #0f5e45; }
.route-marker-6  { background: #137054; }
.route-marker-7  { background: #1a6b5a; }
.route-marker-8  { background: #0c4f3e; }
.route-marker-9  { background: #1e7c5e; }
.route-marker-10 { background: #0f5e45; }
.route-marker-11 { background: #1a6b5a; }
.route-marker-12 { background: #0c4f3e; }
.route-marker-13 { background: #1e7c5e; }
.route-marker-14 { background: #0f5e45; }

.leaflet-container { font-family: var(--font-body); }
.leaflet-control-container .leaflet-routing-container { display: none !important; }

/* ── Includes / Excludes ─────────────────────────────────── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.panel {
    background: rgba(240,248,225,0.75);
    border: 1px solid rgba(10,74,56,0.1);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.2rem;
    box-shadow: 0 6px 16px rgba(10,74,56,0.04);
}
.panel h2 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.1;
    color: var(--green-dark);
}
.list {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    gap: 0.45rem;
}
.list li {
    position: relative;
    padding-left: 1rem;
    color: var(--ink-soft);
    font-size: 0.85rem;
    line-height: 1.5;
}
.list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--green-mid);
    font-weight: 700;
}

/* ── CTA ─────────────────────────────────────────────────── */
.cta-panel {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    box-shadow: 0 14px 36px rgba(10,74,56,0.18);
}
.cta-panel h2 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: #fff;
}
.cta-panel p { color: rgba(255,255,255,0.82); font-size: 0.9rem; margin: 0; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1rem; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: #fff; color: var(--green-dark); }
.button.primary:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.button.secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.button.secondary:hover { background: rgba(255,255,255,0.1); }

/* ── Footer ──────────────────────────────────────────────── */
.detail-footer {
    padding-bottom: 1.5rem;
    padding-top: 0.5rem;
    color: var(--muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--border);
}

/* ── Recommendations ─────────────────────────────────────── */
.package-recommendations { margin-top: 0.25rem; }
.recommendations-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.recommendations-see-all {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green-mid);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}
.recommendation-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(248,252,223,0.88);
    box-shadow: 0 6px 16px rgba(10,74,56,0.05);
    transition: transform 0.22s, box-shadow 0.22s;
}
.recommendation-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(10,74,56,0.1); }
.recommendation-media { aspect-ratio: 16/10; overflow: hidden; background: #e9efe9; }
.recommendation-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.recommendation-card:hover .recommendation-media img { transform: scale(1.04); }
.recommendation-body { padding: 0.75rem; }
.recommendation-days {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.5rem;
    border-radius: 999px;
    background: rgba(10,74,56,0.08);
    color: var(--green-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}
.recommendation-body h3 {
    margin: 0 0 0.3rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.1;
    color: #0f172a;
}
.recommendation-body p {
    margin: 0;
    color: #475569;
    font-size: 0.8rem;
    line-height: 1.55;
}

/* ── WhatsApp FAB ────────────────────────────────────────── */
.whatsapp-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 62px;
    height: 62px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
}
.whatsapp-fab:hover { transform: translateY(-4px) scale(1.08); }
.whatsapp-fab i { line-height: 1; }

/* ── Booking modal ───────────────────────────────────────── */
.bookNowBtn:focus,
.bookNowBtn:active {
    outline: none !important;
    box-shadow: none !important;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: rgba(19, 112, 84, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 250000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: hidden;
}
.modal-overlay.show { display: flex; }

.modal-content {
    width: 100%;
    max-width: 900px;
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 18px;
    box-shadow: 0 26px 60px rgba(16, 24, 40, 0.15);
    animation: fadeInFormCard 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fadeInFormCard {
    from { opacity: 0; transform: translateY(-20px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-content .booking-page {
    width: 100%;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(248,246,242,0.98) 100%);
    border-radius: 18px;
}
.modal-content .booking-page h1 {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
    color: var(--green-dark);
}
.modal-content .booking-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    background: transparent;
}
.modal-content .form-full  { grid-column: 1 / -1; }
.modal-content .form-half  { grid-column: span 1; }
.modal-content .trip-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 22px;
    grid-column: 1 / -1;
}
.modal-content .form-field { display: flex; flex-direction: column; }

.modal-content label,
.modal-content .booking-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 0.72rem;
    color: var(--ink-soft);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font: inherit;
    background: #ffffff;
    color: var(--ink-soft);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.95);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    outline: none;
    box-sizing: border-box;
}
.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 6px rgba(83,188,144,0.12);
}

.modal-content .form-actions button[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-light) 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 11px 14px;
    min-height: 44px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.modal-content .form-actions button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(19,112,84,0.2);
    filter: brightness(1.05);
}

.modal-content .phone-group {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.modal-content .phone-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-right: none;
    border-radius: 12px 0 0 12px;
    font-weight: 700;
    color: var(--ink-soft);
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    box-sizing: border-box;
}
.modal-content .phone-group input { border-radius: 0 12px 12px 0; margin-bottom: 0; }

.modal-content::-webkit-scrollbar { width: 8px; }
.modal-content::-webkit-scrollbar-track { background: rgba(0,0,0,0.02); border-radius: 0 18px 18px 0; }
.modal-content::-webkit-scrollbar-thumb { background: rgba(19,112,84,0.25); border-radius: 10px; }

.modal-content .booking-success { display: none; }

/* ── Ayurveda packages ───────────────────────────────────── */
.ayurveda-packages-section {
    padding: 6rem 0;
    background: transparent;
}

.ayurveda-intro-text {
    max-width: 70ch;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.75;
}

.morning-blessing {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: rgba(19, 112, 84, 0.06);
    border: 1px dashed var(--green-dark);
    color: var(--green-dark);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.package-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.pkg-tab-btn {
    padding: 0.85rem 1.6rem;
    background: var(--surface);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.25s ease;
}
.pkg-tab-btn:hover {
    border-color: var(--green-dark);
    color: var(--ink-soft);
    transform: translateY(-2px);
}
.pkg-tab-btn.active {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(19, 112, 84, 0.16);
}

.pkg-duration-group { display: none; width: 100%; }
.pkg-duration-group.active {
    display: block;
    animation: fadeUpAyur 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes fadeUpAyur {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

.pkg-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.ayur-card {
    background: var(--card-bg);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    min-width: 0;
}
.ayur-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(10,74,56,0.08);
    border-color: var(--green-dark);
}

.ayur-card.highlighted {
    border: 2px solid var(--green-dark);
    box-shadow: 0 12px 35px rgba(19,112,84,0.08);
}
.ayur-card.highlighted::after {
    content: 'RECOMMENDED CLEANSE';
    position: absolute;
    top: -12px; right: 24px;
    background: var(--green-dark);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.ayur-card-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.25rem;
}
.ayur-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: rgba(19,112,84,0.08);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.6rem;
}
.ayur-badge.gold {
    color: #b5901b;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.15);
}
.ayur-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--ink-soft);
    font-weight: 600;
    margin: 0;
}

.ayur-treatments-list {
    margin: 0 0 2rem 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex-grow: 1;
}
.ayur-treatments-list li {
    font-size: 0.88rem;
    color: var(--ink);
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.45;
}
.ayur-treatments-list li i {
    color: var(--green-mid);
    font-size: 0.9rem;
    margin-top: 1px;
    flex-shrink: 0;
}
.ayur-treatments-list .duration {
    font-size: 0.75rem;
    color: var(--ink-soft);
    background: rgba(255,255,255,0.6);
    padding: 0.05rem 0.4rem;
    border-radius: var(--radius-sm);
    margin-left: auto;
    font-weight: 500;
    border: 1px solid var(--border);
}
.ayur-treatments-list .counter {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-dark);
    background: rgba(19,112,84,0.05);
    border: 1px solid rgba(19,112,84,0.2);
    padding: 0.05rem 0.45rem;
    border-radius: 50px;
    margin-left: auto;
    white-space: nowrap;
}

.btn-book-package {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-light) 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-book-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(19,112,84,0.2);
}

.specialized-packages-box {
    margin-top: 5rem;
    background: var(--surface);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(10,74,56,0.04);
}
.specialized-packages-box h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--green-dark);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.specialized-packages-box p {
    font-size: 0.92rem;
    color: var(--ink);
    margin: 0 0 1.75rem 0;
}

.spec-tags-cloud {
    display: flex;
    justify-content: center;
    gap: 0.65rem 0.85rem;
    flex-wrap: wrap;
}
.spec-tags-cloud span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ink-soft);
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.spec-tags-cloud span i { color: var(--green-mid); font-size: 0.85rem; }
.spec-tags-cloud span:hover {
    border-color: var(--green-dark);
    color: var(--green-dark);
    transform: translateY(-1px);
}

/* Dark mode fallback */
:root[data-theme="dark"] {
    --white: linear-gradient(180deg, #111a22 0%, #0c141a 100%);
    --ivory: rgba(15, 23, 42, 0.45);
    --sand-deep: rgba(255, 255, 255, 0.05);
    --ink: #e2e8f0;
    --ink-soft: #cbd5e1;
    --muted: #64748b;
    --border: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(15, 23, 42, 0.4);
    --surface: rgba(15, 23, 42, 0.55);
}

html[data-theme="dark"] .ayur-card {
    box-shadow: 0 12px 35px rgba(0,0,0,0.24) !important;
    background: rgba(15,23,42,0.4) !important;
    border-color: rgba(255,255,255,0.08) !important;
}

html[data-theme="dark"] .panel {
    background: rgba(15, 23, 42, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

html[data-theme="dark"] .tour-map-card {
    background: rgba(15, 23, 42, 0.3) !important;
}

html[data-theme="dark"] .recommendation-card {
    background: rgba(15, 23, 42, 0.45) !important;
}

html[data-theme="dark"] .recommendation-card h3 {
    color: #f1f5f9 !important;
}

html[data-theme="dark"] .recommendation-card p {
    color: #94a3b8 !important;
}

html[data-theme="dark"] .modal-content .booking-page {
    background: linear-gradient(180deg, rgba(21, 32, 43, 0.96) 0%, rgba(15, 23, 42, 0.98) 100%) !important;
}

html[data-theme="dark"] .modal-content input,
html[data-theme="dark"] .modal-content select,
html[data-theme="dark"] .modal-content textarea {
    background: #1e293b !important;
    color: #f1f5f9 !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

html[data-theme="dark"] .pill {
    background: rgba(15, 23, 42, 0.6) !important;
}


/* ============================================================
   RESPONSIVE — single, clean, non-conflicting breakpoints
   ============================================================ */

/* ── ≤1100px — ayurveda grid drops to 2 col ─────────────── */
@media (max-width: 1100px) {
    .pkg-cards-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

/* ── ≤900px — day card thumbnail shrinks, reco grid 2-col ── */
@media (max-width: 900px) {
    .day-card {
        grid-template-columns: 52px 1fr 100px;
        gap: 0.85rem;
    }
    .day-image {
        width: 100px;
        height: 70px;
        display: block;
    }
    .recommendations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ── ≤768px — hero stacks, modal fixes, padding tightens ─── */
@media (max-width: 768px) {
    .detail-header,
    .detail-hero,
    .detail-content,
    .detail-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .detail-header { gap: 1rem; }

    /* Hero: stack image below copy */
    .detail-hero {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        text-align: left;
    }
    .hero-media {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }

    /* Section heading: no decorative line on mobile */
    .section-heading {
        font-size: clamp(1.35rem, 7vw, 1.75rem);
        align-items: flex-start;
    }
    .section-heading::after { display: none; }

    /* Touch targets */
    .package-back-button,
    .bookNowBtn,
    .btn-book-package,
    .pkg-tab-btn,
    .nav-cta {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* WhatsApp FAB */
    .whatsapp-fab {
        width: 56px;
        height: 56px;
        font-size: 28px;
        right: 20px;
        bottom: 20px;
    }

    /* Ayurveda */
    .ayurveda-packages-section { padding: 4rem 0; }
    .pkg-cards-wrapper { grid-template-columns: 1fr; gap: 1.5rem; }
    .package-tabs { gap: 0.5rem; }
    .pkg-tab-btn { padding: 0.7rem 1.2rem; font-size: 0.82rem; }
    .specialized-packages-box { padding: 1.75rem 1.25rem; margin-top: 3.5rem; }
    .ayur-card { padding: 1.6rem 1.2rem; }

    /* Booking modal */
    .modal-overlay {
        align-items: flex-start;
        padding: 0.75rem;
        overflow-y: auto;
    }
    .modal-content {
        max-height: none;
        border-radius: 14px;
    }
    .modal-content .booking-page { padding: 1rem; }
    .modal-content .booking-form,
    .modal-content .trip-row {
        grid-template-columns: 1fr !important;
    }
    .modal-content .form-half,
    .modal-content .form-full {
        grid-column: 1 / -1 !important;
    }
    .modal-content input,
    .modal-content select,
    .modal-content textarea {
        font-size: 16px; /* prevents iOS zoom */
    }
    .modal-content .phone-code {
        min-width: 64px;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }
}

/* ── ≤640px — includes/excludes stack ───────────────────── */
@media (max-width: 640px) {
    .split { grid-template-columns: 1fr; }
}

/* ── ≤600px — day card: hide thumbnail, 2-col layout ─────── */
@media (max-width: 600px) {
    .day-card {
        display: flex;
        gap: 0.75rem;
        padding: 0.85rem;
        align-items: flex-start;
    }
    .day-image {
        display: block;
        width: 70px;
        height: 52px;
        flex-shrink: 0;
    }
    .day-badge {
        width: 44px;
        height: 44px;
        margin-top: 2px;
    }
    .day-title { font-size: 1rem; }
    .day-card p { font-size: 0.82rem; }
}

/* ── ≤480px — reco grid 1-col, CTA stacks ───────────────── */
@media (max-width: 480px) {
    .recommendations-grid { grid-template-columns: 1fr; }

    .hero-copy h1 { font-size: clamp(1.9rem, 11vw, 2.7rem); }

    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-row > * {
        width: 100%;
        justify-content: center;
    }

    .modal-content .booking-page h1 { font-size: 1.25rem; }
    .specialized-packages-box { padding: 1.5rem 1rem; }
}

@media screen and (max-width: 768px) {

    .day-card {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .day-image {
        display: block;
        width: 80px;
        height: 60px;
        flex-shrink: 0;
    }

    .day-content {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 768px) {

    .detail-header,
    .detail-hero,
    .detail-content,
    .detail-footer {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .tour-map-embed {
        aspect-ratio: auto;
        min-height: auto;
        height: 280px;
    }

    .recommendations-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        margin-bottom: 1.25rem;
    }

}