.hero-section {
    background: radial-gradient(circle at 75% 20%, rgba(25, 135, 84, .24), transparent 32%), radial-gradient(circle at 15% 18%, rgba(117, 183, 152, .12), transparent 28%), linear-gradient(135deg, #080b0f 0%, #101317 55%, #06110b 100%);
}

.hero-left,
.hero-right {
    min-height: 100vh;
}

.hero-main-title {
    color: #fff;
    font-size: clamp(3.3rem, 7vw, 7rem);
    line-height: .9;
    letter-spacing: -0.055em;
}

    .hero-main-title span {
        color: #fff;
    }

.hero-lead {
    max-width: 560px;
}

.hero-product {
    width: 100%;
    display: grid;
    place-items: center;
}

.hero-product-glow {
    position: absolute;
    width: min(420px, 80vw);
    height: min(420px, 80vw);
    border-radius: 999px;
    background: rgba(25, 135, 84, .26);
    filter: blur(75px);
}

.hero-bombola-big {
    position: relative;
    z-index: 2;
    width: min(360px, 70vw);
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 36px 45px rgba(0,0,0,.58));
    animation: bombolaFloat 4.8s ease-in-out infinite;
}

.mini-stat {
    min-height: 84px;
    border: 1px solid rgba(117, 183, 152, .18);
    border-radius: 1rem;
    padding: .9rem;
    background: rgba(255, 255, 255, .035);
}

    .mini-stat strong {
        display: block;
        color: #ffffff;
        font-size: 1.05rem;
    }

    .mini-stat span {
        color: var(--app-muted);
        font-size: .85rem;
    }

@keyframes bombolaFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

@media (max-width: 991.98px) {
    .hero-left,
    .hero-right {
        min-height: auto;
    }

    .hero-right {
        padding-top: 28px;
    }

    .hero-product {
        min-height: 260px;
    }

    .hero-bombola-big {
        max-height: 500px;
    }

    .hero-main-title {
        font-size: clamp(3.3rem, 15vw, 5rem);
    }
}

.booking-products-box {
    background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018)), radial-gradient(circle at top right, rgba(25,135,84,.16), transparent 38%);
    border: 1px solid rgba(117, 183, 152, .22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.booking-product-row {
    padding: 14px;
    border-radius: 22px;
    background: rgba(2, 6, 23, .28);
    border: 1px solid rgba(255,255,255,.075);
}

    .booking-product-row .form-label {
        margin-bottom: 6px;
    }

    .booking-product-row .btn-remove-bombola {
        min-height: 42px;
    }
