.book-btn:hover {
    padding-right: 10px !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 0px) !important;
}

/* Header Styles */
.navbar {
    padding: 1rem 2rem;
    background: white;
}

.navbar-brand img {
    width: 99px;
    height: 99px;
    border-radius: 50%;
}

.nav-link {
    font-weight: 600;
    font-size: 20px;
    color: #000;
    margin: 0 15px;
}

.nav-link.active {
    color: white;
    background: #e579ad;
    border-radius: 10px;
    padding: 10px 30px;
}

.btn-signin {
    border: 1px solid #d9d9d9;
    border-radius: 20px !important;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 18px;
    background: white;
    color: #000;
}

/* Featured In Section */
.featured-section {
    background: #e4d3c8;
    padding: 50px 0;
    margin: 80px 0;
}

.featured-title {
    text-align: center;
    font-weight: 600;
    font-size: 25px;
    letter-spacing: 4.5px;
    margin-bottom: 40px;
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 88px;
    flex-wrap: wrap;
}

.featured-logos img {
    height: 35px;
    width: auto;
}


.cta-content h2 {
    font-weight: 600;
    font-size: 40px;
    letter-spacing: -0.8px;
    margin-bottom: 20px;
}

.cta-content h3 {
    font-weight: 600;
    font-size: 45px;
    letter-spacing: -0.9px;
    margin-bottom: 30px;
}

.membership-content h2 {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        height: 500px;
    }

    .hero-content {
        left: 20px;
        top: 300px;
    }

    .hero-content h1 {
        font-size: 30px;
    }
}


/* ══════════════════════════════════════
       STICKY HEADER — THE FIX
       site-header wraps navbar OUTSIDE container
       so it spans full viewport width
    ══════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 6px rgba(0, 0, 0, .06);
    transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 28px rgba(0, 0, 0, .10);
    border-bottom-color: transparent;
}

/* navbar itself is just a flex row — no position needed */
.spa-navbar {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

/* ── Logo ── */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(229, 121, 173, .4);
    flex-shrink: 0;
}

.nav-logo-text {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    letter-spacing: -.4px;
    line-height: 1.15;
}

.nav-logo-text span {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
}

/* ── Actions ── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* More dropdown */
.nav-more-wrap {
    position: relative;
}

.nav-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: border-color .2s;
}

.nav-more-btn:hover {
    border-color: #bbb;
}

.nav-more-btn i {
    font-size: 13px;
    transition: transform .25s;
}

.nav-more-btn.open i {
    transform: rotate(180deg);
}

.nav-more-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 230px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    padding: 8px 0;
    display: none;
    z-index: 1000;
    animation: dropIn .18s ease;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

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

.nav-more-dropdown.show {
    display: block;
}

.dd-section-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #aaa;
    padding: 10px 18px 4px;
}

.nav-more-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    border-radius: 8px;
    margin: 1px 6px;
    transition: background .15s, color .15s;
}

.nav-more-dropdown a i {
    font-size: 15px;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.nav-more-dropdown a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.dd-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 6px 14px;
}

/* Book Now button */
.nav-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 9px 20px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .2s;
    box-shadow: 0 2px 10px rgba(229, 121, 173, .35);
}

.nav-book-btn:hover {
    background: var(--primary-dark);
}

/* btn-icon animation */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, .25);
    border-radius: 50%;
    font-size: 11px;
    overflow: hidden;
    position: relative;
}

.chevron-icon {
    position: absolute;
    transition: all .25s;
}

.arrow-icon {
    position: absolute;
    opacity: 0;
    transform: translateX(-8px);
    transition: all .25s;
}

.nav-book-btn:hover .chevron-icon {
    opacity: 0;
    transform: translateX(8px);
}

.nav-book-btn:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Sign in */
.btn-signin {
    border: 1.5px solid var(--border) !important;
    border-radius: 999px !important;
    padding: 6px 18px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    background: white;
    color: #000;
    font-family: 'Inter', sans-serif;
    transition: border-color .2s;
}

.btn-signin:hover {
    border-color: #999 !important;
}