:root {
    --navy: #0b1f3a;
    --navy-deep: #061526;
    --navy-mid: #12305a;
    --gold: #f5a623;
    --gold-deep: #e8910f;
    --accent-orange: #ff8a00;
    --text: #0b1f3a;
    --muted: #5b6b7c;
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-muted: #f4f7fb;
    --border: rgba(11, 31, 58, .08);
    --shadow: 0 10px 30px rgba(11, 31, 58, .08);
    --brand: #003a8c;
    --brand-mid: #005ed6;
    --brand-light: #00b4ff;
    --accent: #ffc107;
}

html[data-bs-theme="dark"] {
    --navy: #d7e3f4;
    --navy-deep: #050b14;
    --navy-mid: #15263d;
    --text: #e8eef7;
    --muted: #9aabbd;
    --bg: #0a1320;
    --surface: #121c2c;
    --surface-muted: #182436;
    --border: rgba(232, 238, 247, .1);
    --shadow: 0 12px 36px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }

/* Header */
.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 40;
    color: #fff;
    background: transparent;
}
body:not(.is-home) .site-header {
    position: sticky;
    top: 0;
    background: linear-gradient(90deg, var(--navy-deep), var(--navy), var(--navy-mid));
    box-shadow: 0 2px 16px rgba(6, 21, 38, .25);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 1rem;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fff;
}
.brand img { border-radius: 10px; background: #fff; }
.nav-toggle {
    display: none;
    background: rgba(255,255,255,.12);
    border: 0;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 1.15rem;
    cursor: pointer;
}
.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .15rem 1.1rem;
}
.site-nav > a {
    color: rgba(255,255,255,.88);
    font-size: .9rem;
    font-weight: 500;
    padding: .35rem 0;
    position: relative;
}
.site-nav > a:hover,
.site-nav > a.is-active { color: #fff; }
.site-nav > a.is-active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.btn-coming,
.btn-nav-primary {
    display: inline-flex !important;
    align-items: center;
    gap: .35rem;
    background: linear-gradient(90deg, var(--gold), var(--accent-orange)) !important;
    color: var(--navy-deep) !important;
    padding: .55rem 1rem !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    font-size: .82rem !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    border: 0 !important;
}
.btn-nav-outline {
    display: inline-flex !important;
    align-items: center;
    gap: .35rem;
    background: transparent !important;
    color: #fff !important;
    padding: .5rem .95rem !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    font-size: .82rem !important;
    border: 1px solid rgba(255,255,255,.45) !important;
}
.btn-nav-outline:hover {
    background: rgba(255,255,255,.12) !important;
    color: #fff !important;
}
body:not(.is-home) .btn-coming,
body:not(.is-home) .btn-nav-primary {
    background: linear-gradient(90deg, var(--gold), var(--accent-orange)) !important;
}
.nav-playstore {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    padding: 0 !important;
}
.nav-playstore:hover {
    background: rgba(255,255,255,.22);
    transform: translateY(-1px);
}
.nav-playstore::after { display: none !important; }
.site-nav > a.nav-playstore.is-active::after,
.site-nav > a.btn-nav-primary.is-active::after,
.site-nav > a.btn-nav-outline.is-active::after { display: none; }
.language-switcher.lang-dropdown {
    position: relative;
    display: inline-block;
}
.lang-dropdown > summary {
    list-style: none;
    cursor: pointer;
}
.lang-dropdown > summary::-webkit-details-marker { display: none; }
.lang-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    padding: .4rem .7rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    line-height: 1;
}
.lang-dropdown[open] .lang-dropdown-toggle,
.lang-dropdown-toggle:hover {
    background: var(--gold, #f5a623);
    border-color: var(--gold, #f5a623);
    color: var(--navy-deep, #061526);
}
.lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.12);
}
.lang-caret { font-size: .7rem; opacity: .85; }
.lang-dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + .4rem);
    min-width: 190px;
    background: #fff;
    color: #0b1f3a;
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(6,21,38,.28);
    padding: .35rem;
    z-index: 60;
}
.lang-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: .55rem;
    border: 0;
    background: transparent;
    padding: .55rem .65rem;
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    font-size: .86rem;
    font-weight: 500;
    color: #0b1f3a;
    text-align: left;
}
.lang-option:hover,
.lang-option.is-active {
    background: rgba(245,166,35,.16);
}
.lang-option.is-active { font-weight: 700; }
.lang-option .lang-code {
    min-width: 1.6rem;
    font-weight: 700;
}
.lang-option .lang-name {
    color: #5b6b7c;
    font-size: .8rem;
    font-weight: 500;
}
body:not(.is-home) .lang-dropdown-toggle {
    background: rgba(255,255,255,.1);
}
/* Admin / light navbar */
.layout-navbar .lang-dropdown-toggle {
    background: #fff;
    border-color: #d9dee3;
    color: #566a7f;
}
.layout-navbar .lang-dropdown[open] .lang-dropdown-toggle,
.layout-navbar .lang-dropdown-toggle:hover {
    background: #696cff;
    border-color: #696cff;
    color: #fff;
}

.alert-flash {
    background: #dcfce7;
    color: #166534;
    padding: .85rem 1rem;
    text-align: center;
    position: relative;
    z-index: 50;
}

/* Shared page bits for non-home */
.page-hero {
    background: linear-gradient(120deg, rgba(6,21,38,.9), rgba(11,31,58,.82)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600') center/cover;
    color: #fff;
    padding: 5.5rem 0 3.5rem;
}
body.is-home .page-hero { display: none; }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: .75rem; }
.section { padding: 3.5rem 0; }
.section-title { font-size: 1.75rem; color: var(--navy); margin-bottom: 1.5rem; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.card { background: var(--surface); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: transform .2s; border: 1px solid var(--border); }
.card:hover { transform: translateY(-3px); }
.card img { width: 100%; height: 180px; object-fit: cover; }
.card-body { padding: 1rem 1.1rem 1.25rem; }
.card-body small { color: var(--muted); }
.card-body h3 { font-size: 1.05rem; margin: .35rem 0; color: var(--text); }
.badge-medical { display: inline-block; background: #fee2e2; color: #991b1b; font-size: .75rem; padding: .15rem .5rem; border-radius: 999px; margin-bottom: .35rem; }
.btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--brand-mid), var(--brand-light));
    color: #fff;
    padding: .7rem 1.15rem;
    border-radius: 999px;
    font-weight: 600;
    border: 0;
    cursor: pointer;
}
.btn-accent { background: linear-gradient(90deg, var(--gold), var(--accent-orange)); color: var(--navy-deep); }
.breadcrumb { color: var(--muted); font-size: .875rem; margin-bottom: 1rem; }
.breadcrumb a { color: var(--brand); }

/* ===== Landing hero ===== */
.lp-hero {
    position: relative;
    min-height: 100vh;
    color: #fff;
    overflow: hidden;
    background-color: #061526;
    background-image:
        linear-gradient(120deg, rgba(6, 21, 38, .82) 0%, rgba(11, 31, 58, .55) 48%, rgba(6, 21, 38, .72) 100%),
        var(--lp-hero-bg, url('/images/landing/landing.png'));
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 7rem 0 4rem;
}
.lp-hero-visual { position: relative; min-height: 420px; }
.lp-collage { position: relative; height: 100%; min-height: 420px; }
.lp-collage img {
    position: absolute;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
    border: 3px solid rgba(255,255,255,.35);
}
.lp-collage .c1 { width: 72%; height: 260px; right: 0; top: 10%; z-index: 1; animation: app-float 5s ease-in-out infinite; }
.lp-collage .c2 { width: 48%; height: 150px; left: 0; bottom: 18%; z-index: 2; animation: app-float 4.2s ease-in-out infinite .4s; }
.lp-collage .c3 {
    width: 26%;
    height: 78px;
    right: 6%;
    bottom: 6%;
    z-index: 3;
    border-radius: 14px;
    object-fit: contain;
    background: rgba(255, 255, 255, .12);
    animation: app-float 4.8s ease-in-out infinite .8s;
}
.lp-collage .c4 {
    width: 24%;
    height: 72px;
    left: 10%;
    top: 4%;
    z-index: 2;
    opacity: .98;
    border-radius: 14px;
    object-fit: contain;
    background: rgba(255, 255, 255, .12);
    animation: app-float 5.4s ease-in-out infinite .2s;
}
@keyframes app-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.lp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 2rem;
    align-items: center;
    width: 100%;
}
.lp-kicker {
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: .9;
    margin-bottom: 1rem;
}
.lp-hero h1 {
    font-size: clamp(2rem, 4.6vw, 3.35rem);
    line-height: 1.15;
    font-weight: 800;
    max-width: 14ch;
    margin-bottom: 1rem;
}
.lp-hero h1 .gold { color: var(--gold); }
.lp-hero h1 .badge-20 {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-deep);
    padding: .15rem .55rem;
    border-radius: 10px;
    font-size: .72em;
    vertical-align: middle;
    margin-left: .15rem;
}
.lp-hero .lead {
    max-width: 36ch;
    opacity: .92;
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
}
.lp-highlights { list-style: none; display: grid; gap: .85rem; margin-bottom: 1.75rem; }
.lp-highlights li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: .75rem;
    align-items: start;
}
.lp-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(245,166,35,.15);
    border: 1px solid rgba(245,166,35,.45);
    display: grid;
    place-items: center;
    color: var(--gold);
    flex-shrink: 0;
    overflow: hidden;
}
.lp-icon svg { width: 20px; height: 20px; fill: currentColor; }
.lp-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 4px;
}
.lp-highlights strong { display: block; color: var(--gold); font-size: .95rem; }
.lp-highlights span { display: block; font-size: .86rem; opacity: .88; }
.lp-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: linear-gradient(90deg, var(--gold), var(--accent-orange));
    color: var(--navy-deep);
    font-weight: 700;
    padding: .9rem 1.35rem;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(245,166,35,.35);
    transition: transform .2s ease;
}
.lp-btn-primary:hover { transform: translateY(-2px); }
.lp-btn-video {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: #fff;
    font-weight: 600;
}
.lp-btn-video .play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.7);
    display: grid;
    place-items: center;
}
.lp-quotes {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}
.lp-quotes .italic {
    font-style: italic;
    font-size: .9rem;
    max-width: 34ch;
    opacity: .85;
}
.lp-quotes .script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    line-height: 1.2;
    text-align: right;
}

/* Services */
.lp-services { padding: 4.5rem 0 3rem; background: var(--bg); }
.lp-section-head { text-align: center; margin-bottom: 2.5rem; }
.lp-section-head .eyebrow {
    color: var(--gold-deep);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .04em;
}
.lp-section-head h2 {
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    color: var(--navy);
    max-width: 22ch;
    margin: .55rem auto .7rem;
    line-height: 1.25;
}
.lp-section-head .accent-line {
    width: 48px;
    height: 4px;
    background: var(--gold);
    border-radius: 4px;
    margin: 0 auto;
}
.lp-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
    max-width: 920px;
    margin: 0 auto;
}
.lp-service-card {
    background: var(--surface);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform .25s ease, box-shadow .25s ease;
}
.lp-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(11,31,58,.14);
}
.lp-service-media { position: relative; }
.lp-service-media > img { width: 100%; height: 200px; object-fit: cover; }
.lp-service-badge {
    position: absolute;
    left: 1rem;
    bottom: -22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    display: grid;
    place-items: center;
    box-shadow: 0 8px 18px rgba(11,31,58,.25);
    border: 3px solid var(--surface);
    overflow: hidden;
    z-index: 2;
}
.lp-service-badge svg { width: 22px; height: 22px; fill: currentColor; }
.lp-service-badge img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    border-radius: 0;
}
.lp-service-body { padding: 2rem 1.25rem 1.35rem; }
.lp-service-body h3 { font-size: 1.15rem; margin-bottom: .45rem; color: var(--navy); }
.lp-service-body p { color: var(--muted); font-size: .92rem; margin-bottom: .9rem; min-height: 3.4em; }
.lp-service-link {
    color: var(--brand-mid);
    font-weight: 600;
    font-size: .92rem;
}
.lp-service-link:hover { color: var(--gold-deep); }

/* Stats */
.lp-stats-wrap { padding: 0 0 3.5rem; margin-top: -.25rem; }
.lp-stats {
    background: linear-gradient(90deg, var(--navy-deep), var(--navy), var(--navy-mid));
    border-radius: 22px;
    padding: 1.5rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    color: #fff;
    box-shadow: 0 18px 40px rgba(6,21,38,.28);
}
.lp-stat {
    display: flex;
    align-items: center;
    gap: .75rem;
    justify-content: center;
    text-align: left;
}
.lp-stat .ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(245,166,35,.12);
    color: var(--gold);
    display: grid;
    place-items: center;
}
.lp-stat .ico svg { width: 22px; height: 22px; fill: currentColor; }
.lp-stat strong { display: block; color: var(--gold); font-size: 1.15rem; line-height: 1.2; }
.lp-stat span { display: block; font-size: .82rem; opacity: .9; }

/* Destinations carousel */
.lp-destinations { padding: 1rem 0 4rem; background: #f7f9fc; }
.lp-dest-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.lp-dest-head h2 {
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    color: var(--navy);
    max-width: 22ch;
    line-height: 1.3;
}
.lp-dest-nav { display: flex; gap: .5rem; }
.lp-dest-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    color: var(--navy);
    font-size: 1rem;
}
.lp-dest-nav button:hover { background: var(--navy); color: #fff; }
.lp-dest-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: .5rem;
    -webkit-overflow-scrolling: touch;
}
.lp-dest-track::-webkit-scrollbar { height: 6px; }
.lp-dest-track::-webkit-scrollbar-thumb { background: #c9d4e2; border-radius: 4px; }
.lp-dest-card {
    flex: 0 0 180px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 260px;
    box-shadow: 0 12px 28px rgba(11,31,58,.12);
}
.lp-dest-card img { width: 100%; height: 100%; object-fit: cover; }
.lp-dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(6,21,38,.85));
}
.lp-dest-card span {
    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: .9rem;
    z-index: 1;
    color: #fff;
    font-weight: 600;
    font-size: .92rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

/* Packages strip */
.lp-packages { padding: 3.5rem 0; background: var(--bg); }
.lp-packages .section-title { text-align: center; }
.lp-packages .card-grid { margin-top: 1.5rem; }

/* Newsletter */
.lp-newsletter {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(6,21,38,.88), rgba(11,31,58,.92)),
        url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1600') center/cover;
    color: #fff;
    padding: 3.5rem 0;
}
.lp-newsletter-inner {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 1.5rem;
    align-items: center;
}
.lp-newsletter h2 {
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    line-height: 1.3;
    max-width: 16ch;
}
.lp-newsletter-form {
    display: flex;
    gap: .65rem;
    background: var(--surface);
    border-radius: 999px;
    padding: .35rem;
    box-shadow: 0 14px 30px rgba(0,0,0,.2);
}
.lp-newsletter-form input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: .85rem 1.1rem;
    border-radius: 999px;
    font: inherit;
    color: var(--text);
    background: transparent;
    min-width: 0;
}
.lp-newsletter-form button {
    border: 0;
    cursor: pointer;
    background: linear-gradient(90deg, var(--gold), var(--accent-orange));
    color: var(--navy-deep);
    font-weight: 700;
    padding: .85rem 1.25rem;
    border-radius: 999px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.lp-newsletter-note {
    margin-top: .75rem;
    font-size: .85rem;
    opacity: .85;
}
.lp-newsletter-note a { color: var(--gold); font-weight: 600; text-decoration: underline; }

/* Footer */
.site-footer {
    background: var(--navy-deep);
    color: #cbd5e1;
    padding: 2.25rem 0 1.5rem;
    margin-top: 0;
    position: relative;
}
.footer-top {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 1.25rem;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { color: #fff; }
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem 1.25rem;
}
.footer-nav a { color: #cbd5e1; font-size: .9rem; }
.footer-nav a:hover { color: #fff; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: grid;
    place-items: center;
    font-size: .72rem;
    text-transform: uppercase;
    color: #fff;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.footer-vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: var(--gold);
    font-size: .78rem;
    letter-spacing: .12em;
    font-weight: 600;
    border-left: 2px solid var(--gold);
    padding-left: .65rem;
    white-space: nowrap;
}
.footer-contact {
    padding: 1.1rem 0;
    font-size: .88rem;
    line-height: 1.7;
}
.footer-contact a { color: #e2e8f0; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .85rem;
    opacity: .85;
    padding-top: .25rem;
}
.footer-bottom a { color: var(--gold); font-weight: 600; }

/* Shared public form / content helpers */
.lp-packages--muted { background: var(--surface-muted); }
.content-panel {
    background: var(--surface);
    color: var(--text);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.detail-divider {
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}
.detail-row { border-bottom: 1px solid var(--border); }
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.form-narrow { max-width: 760px; }
.form-heading { margin-bottom: 1rem; color: var(--brand); }
.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: .35rem;
    color: var(--text);
}
.form-input {
    width: 100%;
    padding: .65rem .75rem;
    border: 1px solid var(--input-border, #d1d5db);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font: inherit;
}
.form-input:focus {
    outline: 2px solid color-mix(in srgb, var(--brand-mid) 45%, transparent);
    border-color: var(--brand-mid);
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.form-grid--2 { grid-template-columns: 1fr 1fr; }
.form-grid--2 .span-2 { grid-column: span 2; }
.card-body--pad { padding: 1.5rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.card-alert {
    background: color-mix(in srgb, #fecaca 35%, var(--surface));
    border: 1px solid color-mix(in srgb, #fecaca 70%, var(--border));
}
.card-alert-title { color: #991b1b; }
.card-alert-text { color: #7f1d1d; }

:root { --input-border: #d1d5db; }

/* Public dark mode surfaces */
html[data-bs-theme="dark"] {
    color-scheme: dark;
    --input-border: rgba(232, 238, 247, .18);
}
html[data-bs-theme="dark"] body,
html[data-bs-theme="dark"] .site-main,
html[data-bs-theme="dark"] .section {
    background: var(--bg);
    color: var(--text);
}
html[data-bs-theme="dark"] .section-title,
html[data-bs-theme="dark"] .lp-section-head h2,
html[data-bs-theme="dark"] .lp-dest-head h2,
html[data-bs-theme="dark"] .lp-quotes .script,
html[data-bs-theme="dark"] .lp-service-body h3,
html[data-bs-theme="dark"] .card-body h2,
html[data-bs-theme="dark"] .card-body h3,
html[data-bs-theme="dark"] .form-heading {
    color: var(--text);
}
html[data-bs-theme="dark"] .lp-services,
html[data-bs-theme="dark"] .lp-packages,
html[data-bs-theme="dark"] .lp-news,
html[data-bs-theme="dark"] .lp-quotes,
html[data-bs-theme="dark"] .lp-destinations {
    background: var(--bg);
}
html[data-bs-theme="dark"] .lp-packages--muted {
    background: var(--surface-muted);
}
html[data-bs-theme="dark"] .lp-service-card,
html[data-bs-theme="dark"] .news-card,
html[data-bs-theme="dark"] .lp-package-card,
html[data-bs-theme="dark"] .card,
html[data-bs-theme="dark"] .content-panel {
    background: var(--surface);
    border-color: var(--border);
    box-shadow: var(--shadow);
    color: var(--text);
}
html[data-bs-theme="dark"] .lp-service-body p,
html[data-bs-theme="dark"] .news-card p,
html[data-bs-theme="dark"] .card-body p,
html[data-bs-theme="dark"] .breadcrumb {
    color: var(--muted);
}
html[data-bs-theme="dark"] .breadcrumb a { color: var(--brand-light); }
html[data-bs-theme="dark"] .lp-stats {
    background: linear-gradient(90deg, #050b14, #0f1d33, #17304f);
}
html[data-bs-theme="dark"] .lp-newsletter-form input::placeholder,
html[data-bs-theme="dark"] .form-input::placeholder {
    color: var(--muted);
}
html[data-bs-theme="dark"] .form-input {
    background: var(--surface-muted);
    color: var(--text);
    border-color: var(--input-border);
    color-scheme: dark;
}
html[data-bs-theme="dark"] .site-nav.is-open {
    background: rgba(5, 11, 20, .96);
}
html[data-bs-theme="dark"] .lang-dropdown-menu,
html[data-bs-theme="dark"] .theme-dropdown-menu {
    background: #1e2a3a;
    color: #e8eef7;
}
html[data-bs-theme="dark"] .lang-option,
html[data-bs-theme="dark"] .theme-option { color: #e8eef7; }
html[data-bs-theme="dark"] .lang-option:hover,
html[data-bs-theme="dark"] .lang-option.is-active,
html[data-bs-theme="dark"] .theme-option:hover,
html[data-bs-theme="dark"] .theme-option.is-active {
    background: rgba(245, 166, 35, .22);
}
html[data-bs-theme="dark"] .lang-option .lang-name,
html[data-bs-theme="dark"] .theme-hint { color: #9aabbd; }
html[data-bs-theme="dark"] .alert-flash {
    background: color-mix(in srgb, #166534 35%, var(--surface));
    color: #bbf7d0;
}
html[data-bs-theme="dark"] .badge-medical {
    background: color-mix(in srgb, #991b1b 40%, var(--surface));
    color: #fecaca;
}
html[data-bs-theme="dark"] .card-alert {
    background: color-mix(in srgb, #7f1d1d 28%, var(--surface));
    border-color: color-mix(in srgb, #fecaca 35%, var(--border));
}
html[data-bs-theme="dark"] .card-alert-title,
html[data-bs-theme="dark"] .card-alert-text { color: #fecaca; }
html[data-bs-theme="dark"] .lp-dest-nav button {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
}

@media (max-width: 980px) {
    .lp-hero-grid,
    .lp-newsletter-inner { grid-template-columns: 1fr; }
    .lp-service-grid { grid-template-columns: 1fr; max-width: 420px; }
    .lp-stats { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-nav { justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-vertical { display: none; }
    .lp-quotes .script { text-align: left; }
    .form-grid--2 { grid-template-columns: 1fr; }
    .form-grid--2 .span-2 { grid-column: auto; }
}
@media (max-width: 768px) {
    .nav-toggle { display: inline-grid; place-items: center; }
    .site-nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 1.25rem;
        right: 1.25rem;
        background: rgba(6,21,38,.96);
        border-radius: 16px;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: .35rem;
        box-shadow: 0 16px 40px rgba(0,0,0,.3);
    }
    .site-nav.is-open { display: flex; }
    .site-nav > a { padding: .55rem .35rem; }
    .lp-stats { grid-template-columns: 1fr; }
    .lp-newsletter-form { flex-direction: column; border-radius: 18px; }
    .lp-newsletter-form button { justify-content: center; }
    .lp-social-feed__grid { grid-template-columns: 1fr; }
}

/* Social feed */
.lp-social-feed {
    padding: 3.5rem 0 2.5rem;
    background: linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
}
.lp-social-feed__subtitle {
    margin: .35rem 0 0;
    color: var(--muted, #5b6b7c);
    max-width: 40rem;
}
.lp-social-feed__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.lp-social-feed__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e6edf5;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}
.lp-social-feed__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15, 40, 70, .1);
}
.lp-social-feed__media {
    position: relative;
    aspect-ratio: 1;
    background: #0b1c2e;
}
.lp-social-feed__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lp-social-feed__placeholder {
    display: grid;
    place-items: center;
    height: 100%;
    color: #fff;
    font-weight: 700;
    letter-spacing: .04em;
}
.lp-social-feed__badge {
    position: absolute;
    left: .75rem;
    bottom: .75rem;
    background: rgba(6, 21, 38, .82);
    color: #fff;
    font-size: .72rem;
    padding: .3rem .55rem;
    border-radius: 999px;
}
.lp-social-feed__card p {
    margin: 0;
    padding: .85rem 1rem 1rem;
    font-size: .92rem;
    line-height: 1.45;
    color: #243447;
}
.lp-social-feed__links {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    margin-top: 1.25rem;
}
.lp-social-feed__links a {
    color: var(--brand, #005ED6);
    font-weight: 600;
    text-decoration: none;
}
@media (max-width: 992px) {
    .lp-social-feed__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

