        :root {
            --hot-pink: #ff2d95;
            --sunset: #ff8a00;
            --purple: #25104f;
            --teal: #00e0c6;
            --dark: #07030f;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: var(--dark);
            color: #fff;
        }

        .navbar {
            background: rgba(7, 3, 15, .92) !important;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,.1);
        }

        .navbar-brand {
            font-weight: 900;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .nav-link {
            font-weight: 700;
            text-transform: uppercase;
            font-size: .85rem;
            letter-spacing: .8px;
        }

.hero {
    min-height: 100vh;
    background-image:
        linear-gradient(135deg, rgba(255,45,149,.55), rgba(255,138,0,.25), rgba(37,16,79,.55)),
        url("../images/IMG_1175.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}
.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(0,224,198,.45),
            transparent 30%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(255,45,149,.45),
            transparent 35%
        );

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}
/*
        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at top right, rgba(0,224,198,.45), transparent 34%),
                radial-gradient(circle at bottom left, rgba(255,45,149,.35), transparent 32%);
        }

*/


        .hero-eyebrow {
            color: var(--teal);
            font-weight: 900;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6.5rem);
            font-weight: 900;
            line-height: .9;
            text-transform: uppercase;
        }

        .hero h1 span {
            background: linear-gradient(90deg, #fff, var(--teal), #fff);
            -webkit-background-clip: text;
            color: transparent;
        }

        .hero p {
            font-size: 1.35rem;
            max-width: 700px;
        }

        .glow-btn {
            background: linear-gradient(90deg, var(--hot-pink), var(--sunset));
            color: #fff;
            border: 0;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 0 35px rgba(255,45,149,.55);
            border-radius: 0;
        }

        .glow-btn:hover {
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-outline-light {
            border-radius: 0;
            font-weight: 800;
            text-transform: uppercase;
        }

        .promo-strip {
            background: linear-gradient(90deg, var(--hot-pink), var(--sunset), var(--teal));
            color: #07030f;
        }

        .section-pop {
            background: linear-gradient(135deg, var(--purple), var(--dark));
        }

        .section-title {
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-kicker {
            color: var(--teal);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: .85rem;
        }

        .service-card {
            position: relative;
            overflow: hidden;
            min-height: 260px;
            background: linear-gradient(135deg, rgba(255,45,149,.16), rgba(0,224,198,.08));
            border: 1px solid rgba(255,255,255,.15);
            color: #fff;
            backdrop-filter: blur(10px);
            transition: all .25s ease;
            border-radius: 22px;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(255,45,149,.25), 0 0 25px rgba(0,224,198,.15);
        }

        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--hot-pink), var(--sunset), var(--teal));
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-card h5 {
            color: var(--teal);
            text-transform: uppercase;
            font-weight: 900;
        }

        .glass-card {
            background: rgba(255,255,255,.1);
            border: 1px solid rgba(255,255,255,.18);
            backdrop-filter: blur(12px);
            color: #fff;
            border-radius: 22px;
            transition: all .25s ease;
        }

        .glass-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 35px rgba(0,224,198,.18);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--hot-pink), var(--sunset), var(--teal));
            -webkit-background-clip: text;
            color: transparent;
        }

        .pricing-card {
            background: #fff;
            color: #111;
            border: 0;
            border-radius: 24px;
            overflow: hidden;
            transition: all .25s ease;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, var(--hot-pink), var(--sunset));
            color: #fff;
            transform: scale(1.04);
            box-shadow: 0 0 45px rgba(255,45,149,.45);
        }

        .badge-miami {
            display: inline-block;
            background: linear-gradient(90deg, var(--hot-pink), var(--sunset));
            color: #fff;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 999px;
            padding: .45rem 1rem;
            font-size: .75rem;
        }

        .pricing-card.featured .badge-miami {
            background: #fff;
            color: var(--hot-pink);
        }

        .gallery-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 22px;
            transition: all .3s ease;
            border: 1px solid rgba(255,255,255,.15);
        }

        .gallery-img:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 40px rgba(255,45,149,.25);
        }

        .story-box {
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.15);
            border-radius: 28px;
            backdrop-filter: blur(12px);
        }

        .hours-box {
            background: linear-gradient(135deg, rgba(255,45,149,.18), rgba(0,224,198,.1));
            border: 1px solid rgba(255,255,255,.15);
            border-radius: 28px;
        }

        footer {
            background: #020005;
            border-top: 1px solid rgba(255,255,255,.1);
        }
        .service-photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    height: 420px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.25);

    transition: .3s ease;
}

.service-photo-card:hover {
    transform: translateY(-8px);
}

.service-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: .4s ease;
}

.service-photo-card:hover img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 1.5rem;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.15),
            rgba(0,0,0,.85)
        );
}

.service-overlay h4 {
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.service-overlay p {
    margin: 0;
    color: rgba(255,255,255,.9);
}