/* ============================================================
   INFINITY EXCURSIONS — design system
   Palette: deep Atlantic blues + turquoise + seafoam + sunset
   ============================================================ */

:root {
    --deep:      #03045e;
    --navy:      #0a2463;
    --abyss:     #020430;
    --ocean:     #0077b6;
    --turquoise: #00b4d8;
    --seafoam:   #90e0ef;
    --foam:      #caf0f8;
    --sand:      #f8f3e6;
    --sunset:    #ff9e00;
    --sunset-2:  #ff6d00;
    --ink:       #0b1220;

    --grad-ocean:  linear-gradient(135deg, var(--ocean), var(--turquoise));
    --grad-sunset: linear-gradient(135deg, var(--sunset), var(--sunset-2));
    --grad-deep:   linear-gradient(180deg, rgba(2,4,48,.55), rgba(3,4,94,.92));

    --radius: 18px;
    --shadow-lg: 0 24px 60px rgba(2, 4, 48, .45);
    --shadow-md: 0 12px 32px rgba(2, 4, 48, .28);
    --ease: cubic-bezier(.22, .61, .36, 1);
}

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--foam);
    background:
        radial-gradient(1200px 600px at 85% -10%, rgba(0,180,216,.16), transparent 60%),
        radial-gradient(900px 500px at -10% 30%, rgba(0,119,182,.14), transparent 60%),
        linear-gradient(180deg, var(--abyss) 0%, var(--deep) 55%, #041a4d 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-font {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: #fff;
}

::selection { background: var(--turquoise); color: var(--deep); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--abyss); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--ocean), var(--turquoise));
    border-radius: 8px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--turquoise), var(--seafoam) 60%, var(--sunset));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-sunset { color: var(--sunset) !important; }
.text-seafoam { color: var(--seafoam) !important; }

/* ============ Buttons ============ */
.btn { border-radius: 999px; font-weight: 600; letter-spacing: .2px; }

.btn-sunset {
    background: var(--grad-sunset);
    color: #fff;
    border: none;
    padding: .7rem 1.6rem;
    box-shadow: 0 10px 26px rgba(255, 158, 0, .35);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-sunset:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(255, 158, 0, .5);
}

.btn-glass {
    background: rgba(255,255,255,.08);
    color: var(--foam);
    border: 1px solid rgba(144,224,239,.35);
    backdrop-filter: blur(8px);
    padding: .7rem 1.6rem;
    transition: all .25s var(--ease);
}
.btn-glass:hover {
    background: rgba(0,180,216,.18);
    color: #fff;
    border-color: var(--turquoise);
    transform: translateY(-3px);
}

.btn-nav { padding: .5rem 1.25rem; font-size: .92rem; }

/* ============ Navbar ============ */
.inf-navbar {
    padding: .9rem 0;
    transition: all .35s var(--ease);
    background: transparent;
}
.inf-navbar.scrolled {
    background: rgba(2, 4, 48, .82);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(0,0,0,.35);
    border-bottom: 1px solid rgba(0,180,216,.25);
    padding: .5rem 0;
}
.inf-brand {
    display: flex; align-items: center; gap: .6rem;
    font-family: 'Sora', sans-serif; font-weight: 800;
    font-size: 1.25rem; color: #fff !important;
}
.inf-brand img { height: 40px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.inf-brand em { font-style: normal; color: var(--turquoise); }
.brand-stack { display: flex; flex-direction: column; line-height: 1.1; }
.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: .62rem; font-weight: 500;
    letter-spacing: .08em;
    color: var(--seafoam);
    opacity: .85;
}
.inf-navbar .nav-link {
    color: var(--foam) !important;
    font-weight: 500;
    margin: 0 .35rem;
    padding: .5rem 1rem !important;
    border-radius: 999px;
    position: relative;
    transition: all .25s var(--ease);
}
.inf-navbar .nav-link:hover,
.inf-navbar .nav-link.active {
    color: #fff !important;
    background: rgba(0, 180, 216, .14);
}
.inf-toggler {
    border: 1px solid rgba(144,224,239,.4);
    color: var(--seafoam);
    font-size: 1.2rem;
    border-radius: 10px;
    padding: .4rem .7rem;
}
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(2,4,48,.96);
        border: 1px solid rgba(0,180,216,.25);
        border-radius: var(--radius);
        margin-top: .8rem;
        padding: 1rem;
        backdrop-filter: blur(16px);
    }
}

/* ============ Hero ============ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    animation: heroDrift 24s ease-in-out infinite alternate;
}
@keyframes heroDrift {
    from { transform: scale(1.08) translateY(0); }
    to   { transform: scale(1.16) translateY(-2.5%); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(80% 60% at 50% 110%, rgba(0,180,216,.25), transparent),
        var(--grad-deep);
}
.hero-content { position: relative; z-index: 2; padding: 8rem 0 10rem; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(144,224,239,.35);
    backdrop-filter: blur(8px);
    color: var(--seafoam);
    padding: .45rem 1.1rem;
    border-radius: 999px;
    font-size: .85rem; font-weight: 600;
    letter-spacing: .16em; text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 800;
    line-height: 1.05;
    margin: 1.4rem 0 1.2rem;
    text-wrap: balance;
}
.hero p.lead {
    color: var(--foam);
    max-width: 560px;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.hero-stats {
    display: flex; gap: clamp(1.2rem, 4vw, 3rem);
    margin-top: 3.2rem; flex-wrap: wrap;
}
.hero-stat .num {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
}
.hero-stat .num span { color: var(--turquoise); }
.hero-stat .label { color: var(--seafoam); font-size: .85rem; letter-spacing: .04em; }

/* Photo hero (mockup style) */
.hero-overlay-left {
    background:
        linear-gradient(90deg, rgba(2,4,48,.72) 0%, rgba(3,4,94,.42) 38%, rgba(3,4,94,.05) 65%, transparent 100%),
        linear-gradient(180deg, rgba(2,4,48,.45) 0%, transparent 25%, transparent 70%, rgba(2,4,48,.65) 100%);
}
.hero-photo .hero-content { padding: 9rem 0 11rem; }
.hero-copy { max-width: 560px; }
.hero-headline {
    display: flex; flex-direction: column;
    font-weight: 800;
    line-height: .98;
    text-transform: uppercase;
    margin: 0 0 1.4rem;
}
.hero-headline .line-1 {
    font-size: clamp(3rem, 7.5vw, 5.4rem);
    letter-spacing: .01em;
    text-shadow: 0 4px 24px rgba(2,4,48,.55);
}
.hero-headline .line-2 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    letter-spacing: .02em;
    text-shadow: 0 4px 24px rgba(2,4,48,.55);
}
.hero-headline .line-script {
    position: relative;
    display: inline-block;
    align-self: flex-start;
    font-family: 'Kaushan Script', cursive;
    font-weight: 400;
    text-transform: none;
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    color: var(--turquoise);
    padding: .1em .15em .25em 0;
    text-shadow: 0 4px 20px rgba(0,180,216,.35);
}
.brush-underline {
    position: absolute; left: 0; right: 0; bottom: 0;
    width: 100%; height: .22em;
    color: var(--turquoise);
    opacity: .9;
}
.hero-sub {
    color: #fff;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    max-width: 430px;
    text-shadow: 0 2px 12px rgba(2,4,48,.6);
    margin-bottom: 1.8rem;
}
.hero-features { display: flex; gap: 2.2rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.hero-feature {
    display: flex; align-items: center; gap: .9rem;
    text-decoration: none;
}
.hf-icon {
    width: 56px; height: 56px; flex: 0 0 56px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.85);
    background: rgba(2,4,48,.25);
    backdrop-filter: blur(4px);
    color: #fff; font-size: 1.3rem;
    transition: all .3s var(--ease);
}
.hero-feature:hover .hf-icon {
    background: var(--turquoise);
    border-color: var(--turquoise);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,180,216,.45);
}
.hf-text { display: flex; flex-direction: column; }
.hf-text strong {
    color: #fff; font-family: 'Sora', sans-serif;
    font-size: 1rem; text-transform: uppercase; letter-spacing: .04em;
    text-shadow: 0 2px 10px rgba(2,4,48,.6);
}
.hf-text small { color: var(--foam); font-size: .84rem; text-shadow: 0 2px 8px rgba(2,4,48,.6); }
.btn-hero-cta {
    background: var(--grad-ocean);
    color: #fff;
    border: none;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 1rem;
    padding: 1rem 2.4rem;
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(0,180,216,.45);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-hero-cta:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(0,180,216,.6);
}
@media (max-width: 767.98px) {
    .hero-photo .hero-bg { background-position: 68% center; }
    .hero-features { gap: 1.2rem; }
}

/* Stats strip below hero */
.stats-strip {
    padding: 2.6rem 0 .5rem;
}
.stats-strip .hero-stats { margin-top: 0; }

.hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 90px; }
.hero-wave path { fill: var(--abyss); opacity: .9; }

.scroll-hint {
    position: absolute; bottom: 110px; left: 50%; transform: translateX(-50%);
    z-index: 4; color: var(--seafoam); font-size: 1.4rem;
    animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
    0%, 100% { transform: translate(-50%, 0); opacity: .9; }
    50% { transform: translate(-50%, 12px); opacity: .4; }
}

/* ============ Sections ============ */
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section-eyebrow {
    color: var(--turquoise);
    font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    font-size: .8rem; margin-bottom: .8rem; display: block;
}
.section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; text-wrap: balance; }
.section-sub { color: var(--seafoam); max-width: 640px; }

/* ============ Excursion cards ============ */
.exc-card {
    background: linear-gradient(165deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
    border: 1px solid rgba(144,224,239,.16);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    display: flex; flex-direction: column;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
    backdrop-filter: blur(6px);
}
.exc-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,180,216,.5);
}
.exc-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.exc-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s var(--ease);
}
.exc-card:hover .exc-media img { transform: scale(1.09); }
.exc-media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(2,4,48,.72));
}
.exc-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--grad-sunset);
    color: #fff; font-size: .74rem; font-weight: 700;
    padding: .34rem .8rem; border-radius: 999px;
    letter-spacing: .05em; text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(255,109,0,.45);
}
.exc-price {
    position: absolute; bottom: 12px; right: 14px; z-index: 2;
    background: rgba(2,4,48,.72);
    border: 1px solid rgba(144,224,239,.35);
    backdrop-filter: blur(8px);
    color: #fff; font-family: 'Sora', sans-serif; font-weight: 700;
    padding: .35rem .9rem; border-radius: 999px; font-size: .95rem;
}
.exc-price small { color: var(--seafoam); font-weight: 500; font-size: .72rem; }
.exc-body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.exc-meta {
    display: flex; gap: 1rem; flex-wrap: wrap;
    color: var(--seafoam); font-size: .82rem; margin-bottom: .6rem;
}
.exc-meta i { color: var(--turquoise); margin-right: .35rem; }
.exc-body h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.exc-body h3 a { color: #fff; text-decoration: none; transition: color .2s; }
.exc-body h3 a:hover { color: var(--turquoise); }
.exc-desc { color: rgba(202,240,248,.82); font-size: .92rem; flex: 1; }
.exc-foot {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 1.1rem;
}
.exc-rating { color: var(--sunset); font-size: .85rem; }
.exc-rating .count { color: var(--seafoam); margin-left: .3rem; }
.exc-link {
    color: var(--turquoise); font-weight: 600; font-size: .9rem;
    text-decoration: none; display: inline-flex; align-items: center; gap: .4rem;
    transition: gap .25s var(--ease);
}
.exc-link:hover { color: var(--seafoam); gap: .7rem; }

/* ============ Category pills ============ */
.cat-pills { display: flex; flex-wrap: wrap; gap: .7rem; }
.cat-pill {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .55rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(144,224,239,.3);
    background: rgba(255,255,255,.05);
    color: var(--foam); font-weight: 500; font-size: .9rem;
    text-decoration: none;
    transition: all .25s var(--ease);
    backdrop-filter: blur(6px);
}
.cat-pill i { color: var(--turquoise); }
.cat-pill:hover { border-color: var(--turquoise); color: #fff; transform: translateY(-2px); }
.cat-pill.active {
    background: var(--grad-ocean);
    border-color: transparent; color: #fff;
    box-shadow: 0 8px 22px rgba(0,180,216,.4);
}
.cat-pill.active i { color: #fff; }

/* ============ Feature tiles ============ */
.feature-tile {
    text-align: center;
    padding: 2.2rem 1.6rem;
    border-radius: var(--radius);
    background: linear-gradient(165deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
    border: 1px solid rgba(144,224,239,.14);
    height: 100%;
    transition: transform .35s var(--ease), border-color .35s;
}
.feature-tile:hover { transform: translateY(-8px); border-color: rgba(0,180,216,.45); }
.feature-icon {
    width: 68px; height: 68px;
    margin: 0 auto 1.2rem;
    display: grid; place-items: center;
    border-radius: 20px;
    background: var(--grad-ocean);
    color: #fff; font-size: 1.6rem;
    box-shadow: 0 12px 28px rgba(0,180,216,.4);
}
.feature-tile h4 { font-size: 1.1rem; margin-bottom: .6rem; }
.feature-tile p { color: rgba(202,240,248,.8); font-size: .9rem; margin: 0; }

/* ============ Parallax band ============ */
.parallax-band {
    position: relative;
    min-height: 420px;
    display: flex; align-items: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
@media (max-width: 991.98px) { .parallax-band { background-attachment: scroll; } }
.parallax-band .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(2,4,48,.88), rgba(3,4,94,.55));
}
.parallax-band blockquote {
    position: relative; z-index: 2;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 600; color: #fff;
    max-width: 720px; text-wrap: balance;
}
.parallax-band cite {
    display: block; margin-top: 1rem;
    font-family: 'Inter', sans-serif; font-style: normal;
    font-size: .95rem; color: var(--seafoam);
}

/* ============ Reviews ============ */
.review-card {
    background: linear-gradient(165deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border: 1px solid rgba(144,224,239,.16);
    border-radius: var(--radius);
    padding: 1.6rem;
    height: 100%;
    position: relative;
    transition: transform .35s var(--ease), border-color .35s;
}
.review-card:hover { transform: translateY(-6px); border-color: rgba(0,180,216,.4); }
.review-card .quote-mark {
    position: absolute; top: 1rem; right: 1.4rem;
    font-size: 3rem; color: rgba(0,180,216,.25);
    font-family: Georgia, serif; line-height: 1;
}
.review-stars { color: var(--sunset); margin-bottom: .8rem; font-size: .9rem; }
.review-text { color: rgba(202,240,248,.9); font-size: .95rem; }
.review-author { margin-top: 1rem; display: flex; align-items: center; gap: .8rem; }
.review-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--grad-ocean);
    font-weight: 700; color: #fff; font-family: 'Sora', sans-serif;
}
.review-author .name { color: #fff; font-weight: 600; font-size: .92rem; }
.review-author .meta { color: var(--seafoam); font-size: .78rem; }

/* ============ CTA band ============ */
.cta-band {
    padding: clamp(4rem, 9vw, 7rem) 0;
    background:
        radial-gradient(60% 120% at 50% 130%, rgba(255,158,0,.18), transparent 60%),
        radial-gradient(70% 100% at 50% -30%, rgba(0,180,216,.2), transparent 60%);
    text-align: center;
}
.cta-band h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 1rem; }
.cta-band p { color: var(--seafoam); margin-bottom: 2rem; }

/* ============ Footer ============ */
.inf-footer {
    position: relative;
    background: var(--abyss);
    padding: 0 0 1.5rem;
    margin-top: 0;
}
.footer-wave { line-height: 0; transform: translateY(-1px); }
.footer-wave svg { width: 100%; height: 70px; display: block; }
.footer-wave path { fill: var(--abyss); }
.inf-footer .container { padding-top: 1.5rem; }
.footer-brand { font-size: 1.15rem; margin-bottom: 1rem; display: inline-flex; text-decoration: none; }
.footer-text { color: rgba(202,240,248,.7); font-size: .92rem; max-width: 340px; }
.social-row { display: flex; gap: .7rem; margin-top: 1.2rem; }
.social-row a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(144,224,239,.25);
    color: var(--seafoam); font-size: .95rem;
    transition: all .25s var(--ease);
}
.social-row a:hover {
    background: var(--grad-ocean); color: #fff;
    border-color: transparent; transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,180,216,.4);
}
.footer-title {
    color: #fff; font-family: 'Sora', sans-serif;
    font-size: .95rem; margin-bottom: 1.1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a {
    color: rgba(202,240,248,.72); text-decoration: none;
    display: inline-block; padding: .28rem 0;
    font-size: .92rem;
    transition: color .2s, transform .25s var(--ease);
}
.footer-links a:hover { color: var(--turquoise); transform: translateX(5px); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex; gap: .8rem; margin-bottom: .9rem;
    color: rgba(202,240,248,.72); font-size: .9rem;
}
.footer-contact i { color: var(--turquoise); margin-top: .25rem; }
.footer-contact a { color: rgba(202,240,248,.72); text-decoration: none; }
.footer-contact a:hover { color: var(--turquoise); }
.footer-bottom {
    border-top: 1px solid rgba(144,224,239,.14);
    margin-top: 2.5rem; padding-top: 1.4rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    color: rgba(202,240,248,.55); font-size: .85rem;
}
.payment-icons i { font-size: 1.5rem; margin-left: .6rem; color: rgba(202,240,248,.6); }

/* ============ WhatsApp FAB ============ */
.whatsapp-fab {
    position: fixed; right: 22px; bottom: 22px; z-index: 1000;
    width: 58px; height: 58px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff; font-size: 1.7rem;
    box-shadow: 0 12px 30px rgba(18,140,126,.5);
    transition: transform .25s var(--ease);
    animation: fabPulse 2.6s ease-in-out infinite;
}
.whatsapp-fab:hover { color: #fff; transform: scale(1.1) rotate(8deg); }
@keyframes fabPulse {
    0%, 100% { box-shadow: 0 12px 30px rgba(18,140,126,.5), 0 0 0 0 rgba(37,211,102,.45); }
    50% { box-shadow: 0 12px 30px rgba(18,140,126,.5), 0 0 0 16px rgba(37,211,102,0); }
}

/* ============ Toasts ============ */
.inf-messages {
    position: fixed; top: 90px; right: 20px; z-index: 2000;
    display: flex; flex-direction: column; gap: .6rem;
}
.inf-toast {
    background: linear-gradient(135deg, var(--turquoise), var(--seafoam));
    color: var(--deep); font-weight: 600;
    padding: .9rem 1.4rem; border-radius: 14px;
    box-shadow: var(--shadow-md);
    max-width: 340px;
    animation: toastIn .5s var(--ease);
}
@keyframes toastIn { from { transform: translateX(120%); } to { transform: translateX(0); } }

/* ============ Detail page ============ */
.detail-hero {
    position: relative;
    min-height: 62vh;
    display: flex; align-items: flex-end;
    background-size: cover; background-position: center;
}
.detail-hero .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(2,4,48,.45) 0%, rgba(2,4,48,.2) 40%, var(--abyss) 100%);
}
.detail-hero .container { position: relative; z-index: 2; padding-bottom: 3rem; padding-top: 9rem; }
.detail-hero h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); max-width: 760px; text-wrap: balance; }
.chip-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.info-chip {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(144,224,239,.3);
    backdrop-filter: blur(8px);
    padding: .45rem 1rem; border-radius: 999px;
    color: var(--foam); font-size: .86rem; font-weight: 500;
}
.info-chip i { color: var(--turquoise); }

.content-panel {
    background: linear-gradient(165deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
    border: 1px solid rgba(144,224,239,.14);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 3vw, 2.4rem);
}
.content-panel h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.content-panel p { color: rgba(202,240,248,.88); }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
    display: flex; gap: .8rem; padding: .45rem 0;
    color: rgba(202,240,248,.9);
}
.check-list li i { color: var(--turquoise); margin-top: .3rem; }
.check-list.sunset li i { color: var(--sunset); }

.booking-card {
    position: sticky; top: 100px;
    background: linear-gradient(165deg, rgba(0,119,182,.28), rgba(2,4,48,.6));
    border: 1px solid rgba(0,180,216,.4);
    border-radius: var(--radius);
    padding: 1.8rem;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}
.booking-card .price-line { display: flex; align-items: baseline; gap: .5rem; }
.booking-card .price {
    font-family: 'Sora', sans-serif; font-size: 2.4rem; font-weight: 800; color: #fff;
}
.booking-card .per { color: var(--seafoam); font-size: .9rem; }
.booking-card .child-price { color: var(--seafoam); font-size: .88rem; margin-bottom: 1.2rem; }
.booking-card hr { border-color: rgba(144,224,239,.25); }
.booking-card .line { display: flex; justify-content: space-between; color: var(--foam); font-size: .9rem; padding: .3rem 0; }
.booking-card .line i { color: var(--turquoise); width: 22px; }

/* ============ Forms ============ */
.form-control, .form-select {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(144,224,239,.3);
    color: #fff;
    border-radius: 12px;
    padding: .7rem 1rem;
}
.form-control:focus, .form-select:focus {
    background: rgba(255,255,255,.1);
    border-color: var(--turquoise);
    box-shadow: 0 0 0 .25rem rgba(0,180,216,.18);
    color: #fff;
}
.form-control::placeholder { color: rgba(202,240,248,.45); }
.form-label { color: var(--seafoam); font-weight: 500; font-size: .9rem; }
.invalid-feedback { display: block; color: #ffb3b3; }
input[type="date"].form-control { color-scheme: dark; }

/* ============ Page hero (inner pages) ============ */
.page-hero {
    padding: 9rem 0 4rem;
    position: relative;
    text-align: center;
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: var(--seafoam); max-width: 620px; margin: 1rem auto 0; }

/* ============ Reveal animations ============ */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all .8s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all .8s var(--ease); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right {
        opacity: 1 !important; transform: none !important; transition: none !important;
    }
    .hero-bg { animation: none; }
}

/* ============ About page ============ */
.owner-photo-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(144,224,239,.25);
}
.owner-photo-wrap img { width: 100%; display: block; }
.owner-photo-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(200deg, rgba(0,180,216,.18), transparent 50%);
}
.value-row { display: flex; gap: 1rem; margin-bottom: 1.4rem; }
.value-row .ico {
    flex: 0 0 52px; height: 52px;
    display: grid; place-items: center;
    border-radius: 16px;
    background: var(--grad-ocean);
    color: #fff; font-size: 1.2rem;
    box-shadow: 0 10px 22px rgba(0,180,216,.35);
}
.value-row h5 { font-size: 1.05rem; margin-bottom: .3rem; }
.value-row p { color: rgba(202,240,248,.8); font-size: .92rem; margin: 0; }

/* ============ Success page ============ */
.success-icon {
    width: 96px; height: 96px;
    margin: 0 auto 1.6rem;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--grad-ocean);
    color: #fff; font-size: 2.6rem;
    box-shadow: 0 16px 40px rgba(0,180,216,.5);
    animation: popIn .6s var(--ease);
}
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
.reference-chip {
    display: inline-block;
    font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.3rem;
    background: rgba(255,255,255,.08);
    border: 1px dashed rgba(144,224,239,.5);
    color: var(--seafoam);
    padding: .6rem 1.6rem; border-radius: 14px;
    letter-spacing: .1em;
}

/* ============ Misc ============ */
.divider-glow {
    height: 1px; border: none; margin: 0;
    background: linear-gradient(90deg, transparent, rgba(0,180,216,.5), transparent);
}
.img-rounded-glow {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(144,224,239,.2);
}
