.navbar {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .25s ease, padding .25s ease;
}

.navbar.scrolled {
    box-shadow: 0 10px 30px rgba(17, 24, 39, .08);
    padding-top: .35rem;
    padding-bottom: .35rem;
}

.navbar-brand {
    font-weight: 900;
    color: var(--ink);
    letter-spacing: 0;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--gold));
    border-radius: 8px;
    margin-right: .55rem;
    box-shadow: 0 12px 25px rgba(229, 9, 20, .25);
}

.nav-link {
    color: #344054;
    font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand);
}

.btn-brand {
    position: relative;
    overflow: hidden;
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    font-weight: 800;
    border-radius: 8px;
    box-shadow: 0 12px 25px rgba(229, 9, 20, .18);
}

.btn-brand::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -40%;
    width: 34%;
    height: 220%;
    background: rgba(255, 255, 255, .38);
    transform: rotate(25deg);
    transition: left .55s ease;
}

.btn-brand:hover::after {
    left: 120%;
}

.btn-brand:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-dark {
    border-radius: 8px;
    font-weight: 800;
}

.hero-slider {
    margin-top: 72px;
    background: #0b0f1a;
}

.carousel-item {
    height: 680px;
    min-height: 680px;
    position: relative;
    color: #fff;
    background-position: center;
    background-size: 105%;
    overflow: hidden;
}

.carousel-item.active {
    animation: cinematicZoom 8s ease both;
}

.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 8, 15, .92), rgba(5, 8, 15, .55), rgba(5, 8, 15, .2)),
        linear-gradient(0deg, rgba(5, 8, 15, .4), transparent 48%);
}

.carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
    opacity: .38;
}

.slide-one {
    background-image: url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?auto=format&fit=crop&w=1800&q=85");
}

.slide-two {
    background-image: url("https://images.unsplash.com/photo-1522869635100-9f4c5e86aa37?auto=format&fit=crop&w=1800&q=85");
}

.slide-three {
    background-image: url("https://images.unsplash.com/photo-1593784991095-a205069470b6?auto=format&fit=crop&w=1800&q=85");
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 680px;
    min-height: 680px;
    display: flex;
    align-items: center;
    padding-block: 5rem;
}

.hero-copy-block {
    animation: heroTextIn .85s ease both;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
}

.hero-title {
    max-width: 780px;
    margin-top: 1.25rem;
    font-size: clamp(2.55rem, 6vw, 5.8rem);
    line-height: .95;
    font-weight: 950;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 650px;
    margin-top: 1.35rem;
    color: rgba(255, 255, 255, .82);
    font-size: 1.12rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 2rem;
}

.stat-pill {
    min-width: 142px;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(14px);
    animation: floatSoft 5s ease-in-out infinite;
}

.stat-pill:nth-child(2) {
    animation-delay: .35s;
}

.stat-pill:nth-child(3) {
    animation-delay: .7s;
}

.stat-pill strong {
    display: block;
    font-size: 1.55rem;
    line-height: 1;
}

.stat-pill span {
    color: rgba(255, 255, 255, .78);
    font-size: .9rem;
    font-weight: 700;
}

.trust-band {
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(17, 24, 39, .05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1.1rem 0;
    color: #344054;
    font-weight: 800;
}

.trust-item i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    color: var(--brand);
    background: rgba(229, 9, 20, .08);
    transition: transform .25s ease, background .25s ease;
}

.trust-item:hover i {
    background: rgba(229, 9, 20, .14);
    transform: translateY(-3px) rotate(-6deg);
}

.content-marquee {
    overflow: hidden;
    background: #0b0f1a;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeMove 28s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: .85rem 0;
    white-space: nowrap;
}

.marquee-group span {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: rgba(255, 255, 255, .78);
    font-weight: 850;
    padding-right: 1.4rem;
}

.marquee-group i {
    color: var(--gold);
}

.hero-visual {
    position: absolute;
    right: max(5vw, 52px);
    top: 50%;
    z-index: 2;
    width: min(360px, 28vw);
    transform: translateY(-50%);
    display: grid;
    gap: 1rem;
    pointer-events: none;
}

.stream-widget {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
    padding: 1rem;
    animation: floatSoft 6s ease-in-out infinite;
}

.stream-widget:nth-child(2) {
    width: 78%;
    justify-self: end;
    animation-delay: .65s;
}

.stream-thumb {
    height: 132px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(229, 9, 20, .65), rgba(247, 183, 51, .6)),
        url("https://images.unsplash.com/photo-1616530940355-351fabd9524b?auto=format&fit=crop&w=700&q=80") center/cover;
    position: relative;
    overflow: hidden;
}

.stream-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .35), transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 3.4s ease-in-out infinite;
}

.stream-row {
    height: 9px;
    border-radius: 999px;
    margin-top: .8rem;
    background: rgba(255, 255, 255, .22);
    overflow: hidden;
}

.stream-row span {
    display: block;
    width: 64%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand), var(--gold));
    animation: progressFlow 3.2s ease-in-out infinite alternate;
}

.stream-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: .9rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 800;
    font-size: .86rem;
}

.section-pad {
    padding: 92px 0;
}

.section-label {
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .8rem;
    font-weight: 900;
}

.section-title {
    font-weight: 950;
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: 0;
    margin-bottom: 1rem;
}

.section-copy {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.05rem;
}

.service-card,
.package-card,
.contact-box {
    position: relative;
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .06);
    height: 100%;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card::before,
.package-card::before,
.contact-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(229, 9, 20, .08), transparent 40%, rgba(18, 184, 134, .08));
    opacity: 0;
    transition: opacity .28s ease;
    pointer-events: none;
}

.service-card:hover,
.package-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 9, 20, .28);
    box-shadow: var(--shadow);
}

.service-card:hover::before,
.package-card:hover::before,
.contact-box:hover::before {
    opacity: 1;
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.45rem;
    background: linear-gradient(135deg, var(--brand), var(--gold));
    margin-bottom: 1.1rem;
    transition: transform .28s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-5deg);
}

.service-card h3,
.package-card h3 {
    font-size: 1.2rem;
    font-weight: 900;
}

.service-card p,
.package-card p {
    color: var(--muted);
    line-height: 1.7;
}

.content-strip {
    background:
        radial-gradient(circle at 12% 15%, rgba(229, 9, 20, .08), transparent 24%),
        radial-gradient(circle at 90% 40%, rgba(18, 184, 134, .1), transparent 22%),
        var(--soft);
    border-block: 1px solid var(--line);
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.poster {
    min-height: 220px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 30px rgba(17, 24, 39, .12);
    transition: transform .32s ease, box-shadow .32s ease;
}

.poster:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 28px 52px rgba(17, 24, 39, .2);
}

.poster::after {
    content: attr(data-title);
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 2rem .9rem .9rem;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(transparent, rgba(0, 0, 0, .75));
}

.poster::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, .22), transparent 62%);
    transform: translateX(-120%);
    transition: transform .55s ease;
}

.poster:hover::before {
    transform: translateX(120%);
}

.price {
    display: flex;
    align-items: end;
    gap: .25rem;
    margin: 1.25rem 0;
}

.price strong {
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 950;
}

.price span {
    color: var(--muted);
    font-weight: 800;
    padding-bottom: .25rem;
}

.package-card.featured {
    border-color: rgba(229, 9, 20, .42);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
}

.popular-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #111827;
    background: #fff3cd;
    border: 1px solid #ffe69c;
    border-radius: 999px;
    padding: .35rem .7rem;
    font-size: .78rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.feature-list {
    display: grid;
    gap: .8rem;
    padding: 0;
    margin: 0 0 1.5rem;
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    color: #344054;
    font-weight: 650;
}

.feature-list i {
    color: var(--teal);
    margin-top: .12rem;
}

.form-control,
.form-select {
    border-radius: 8px;
    padding: .85rem .95rem;
    border-color: #d0d5dd;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 .2rem rgba(229, 9, 20, .12);
}

.contact-panel {
    background:
        linear-gradient(rgba(10, 14, 24, .84), rgba(10, 14, 24, .84)),
        url("https://images.unsplash.com/photo-1601944179066-29786cb9d32a?auto=format&fit=crop&w=1500&q=85") center/cover;
    color: #fff;
    border-radius: 8px;
    min-height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-panel p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}

.contact-line {
    display: flex;
    gap: .8rem;
    align-items: center;
    margin-top: 1rem;
    font-weight: 800;
}

.custom-alert {
    position: fixed;
    top: 92px;
    right: 20px;
    width: min(360px, calc(100vw - 40px));
    z-index: 2000;
    transform: translateX(125%);
    transition: transform .35s ease;
}

.custom-alert.show {
    transform: translateX(0);
}

.alert-card {
    border-radius: 8px;
    background: #111827;
    color: #fff;
    box-shadow: 0 20px 55px rgba(17, 24, 39, .28);
    padding: 1rem;
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    border-left: 5px solid var(--teal);
}

.alert-card i {
    color: var(--teal);
    font-size: 1.35rem;
}

.site-footer {
    background: #0b0f1a;
    color: #fff;
    padding: 64px 0 24px;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.footer-title {
    font-weight: 900;
    margin-bottom: 1rem;
}

.social {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    margin-right: .35rem;
    transition: background .2s ease, transform .2s ease;
}

.social:hover {
    background: var(--brand);
    transform: translateY(-2px);
}

.reveal {
    opacity: 0;
    transform: translateY(32px) scale(.985);
    transition: opacity .7s ease, transform .7s ease;
    transition-delay: var(--delay, 0ms);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes cinematicZoom {
    from {
        background-size: 108%;
    }

    to {
        background-size: 116%;
    }
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSoft {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {

    0%,
    45% {
        transform: translateX(-110%);
    }

    100% {
        transform: translateX(110%);
    }
}

@keyframes progressFlow {
    from {
        width: 42%;
    }

    to {
        width: 86%;
    }
}

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {

    .hero-slider,
    .carousel-item,
    .hero-content {
        height: 620px;
        min-height: 620px;
    }

    .poster-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-card.featured {
        transform: none;
    }

    .hero-visual {
        display: none;
    }

    .carousel-item,
    .carousel-item.active {
        animation: none;
        background-size: cover;
    }
}

@media (max-width: 575px) {
    .hero-slider {
        margin-top: 66px;
    }

    .carousel-item,
    .hero-content {
        height: 690px;
        min-height: 690px;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stat-pill {
        min-width: 0;
    }

    .poster {
        min-height: 170px;
    }

    .section-pad {
        padding: 68px 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}