:root {
    --ink: #12101b;
    --muted: #756f83;
    --gold: #f3c969;
    --rose: #e34878;
    --violet: #4934a6;
    --panel: rgba(255, 255, 255, 0.88);
    --border: rgba(255, 255, 255, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #131021;
}

.site-shell {
    overflow: hidden;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(115deg, rgba(13, 10, 29, 0.92), rgba(41, 16, 44, 0.76), rgba(7, 7, 14, 0.72)),
        url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    width: 44vw;
    height: 44vw;
    pointer-events: none;
    opacity: 0.34;
    filter: blur(22px);
}

.hero-section::before {
    left: -18vw;
    top: -12vw;
    background: radial-gradient(circle, rgba(227, 72, 120, 0.75), transparent 65%);
}

.hero-section::after {
    right: -16vw;
    bottom: -18vw;
    background: radial-gradient(circle, rgba(243, 201, 105, 0.7), transparent 64%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 82%);
}

.hero-copy {
    color: #fff;
    max-width: 680px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.eyebrow.dark {
    color: var(--rose);
    margin-bottom: 8px;
}

.hero-copy h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(3rem, 8vw, 6.8rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: 0;
}

.hero-copy .lead {
    margin: 24px 0 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-points span {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    padding: 11px 16px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.glass-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(22px);
}

.booking-card {
    margin: 72px 0;
    padding: clamp(22px, 4vw, 36px);
}

.card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
}

.card-heading h2 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 850;
}

.whatsapp-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 96px;
    height: 38px;
    border-radius: 999px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    background: linear-gradient(135deg, #18b661, #0b7d45);
    box-shadow: 0 12px 28px rgba(16, 153, 83, 0.25);
}

.form-label {
    color: #211b2d;
    font-size: 0.92rem;
    font-weight: 750;
}

.form-control,
.form-select {
    min-height: 50px;
    border: 1px solid rgba(22, 16, 36, 0.12);
    border-radius: 8px;
    color: var(--ink);
    background-color: rgba(255, 255, 255, 0.82);
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(227, 72, 120, 0.72);
    box-shadow: 0 0 0 0.22rem rgba(227, 72, 120, 0.16);
}

textarea.form-control {
    min-height: 148px;
    resize: vertical;
}

.form-helper {
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.84rem;
    text-align: right;
}

.btn-premium {
    min-height: 54px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-weight: 850;
    background: linear-gradient(135deg, var(--rose), var(--violet));
    box-shadow: 0 18px 36px rgba(73, 52, 166, 0.24);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn-premium:hover,
.btn-premium:focus {
    color: #fff;
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 22px 42px rgba(73, 52, 166, 0.32);
}

.anti-spam-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: riseIn 760ms ease forwards;
}

.booking-card.reveal {
    animation-delay: 160ms;
}

.success-modal {
    border: 0;
    border-radius: 8px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #17b26a, #0c7a43);
}

.success-modal h3 {
    font-weight: 850;
}

.success-modal p {
    color: var(--muted);
}

@keyframes riseIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        background-position: 58% center;
    }

    .hero-copy {
        padding-top: 92px;
    }

    .booking-card {
        margin: 12px 0 52px;
    }
}

@media (max-width: 575.98px) {
    body {
        background: #16101f;
    }

    .container {
        padding-inline: 14px;
        max-width: 100%;
    }

    .row.min-vh-100 {
        min-height: 0 !important;
    }

    .hero-section {
        background:
            linear-gradient(180deg, rgba(9, 7, 18, 0.88), rgba(34, 13, 38, 0.88) 46%, rgba(12, 10, 19, 0.98)),
            url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=1000&q=82") 55% top/auto 36rem no-repeat;
    }

    .hero-section::before,
    .hero-section::after {
        width: 80vw;
        height: 80vw;
        opacity: 0.22;
    }

    .hero-overlay {
        background-size: 46px 46px;
    }

    .hero-copy {
        padding-top: 42px;
        text-align: left;
        text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
    }

    .eyebrow {
        margin-bottom: 12px;
        font-size: 0.72rem;
    }

    .eyebrow::before {
        width: 24px;
    }

    .hero-copy h1 {
        max-width: 12ch;
        font-size: clamp(2.15rem, 11vw, 2.8rem);
        line-height: 1;
        overflow-wrap: break-word;
    }

    .hero-copy .lead {
        margin-top: 12px;
        max-width: 22rem;
        font-size: 1rem;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.92);
    }

    .hero-points {
        display: grid;
        grid-template-columns: 1fr;
        gap: 7px;
        margin-top: 16px;
    }

    .hero-points span {
        display: flex;
        align-items: center;
        min-height: 38px;
        width: 100%;
        padding: 8px 12px;
        font-size: 0.86rem;
    }

    .glass-card {
        border-radius: 8px;
        box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
    }

    .booking-card {
        margin: 8px 0 28px;
        padding: 18px 14px;
    }

    .card-heading {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 18px;
    }

    .card-heading h2 {
        font-size: 1.38rem;
    }

    .whatsapp-badge {
        min-width: 100%;
        height: 42px;
        border-radius: 8px;
    }

    .form-label {
        margin-bottom: 6px;
        font-size: 0.88rem;
    }

    .form-control,
    .form-select {
        min-height: 48px;
        font-size: 16px;
    }

    textarea.form-control {
        min-height: 132px;
    }

    .form-helper {
        font-size: 0.8rem;
    }

    .btn-premium {
        min-height: 52px;
        font-size: 1rem;
    }

    .alert {
        padding: 12px;
        font-size: 0.9rem;
    }

    .success-modal .modal-body {
        padding: 34px 22px !important;
    }
}

@media (max-width: 374.98px) {
    .container {
        padding-inline: 10px;
    }

    .booking-card {
        padding: 16px 12px;
    }

    .hero-copy h1 {
        font-size: 2.28rem;
    }
}
