/* Global Styles */
:root {
    --primary-color: #39ff14;
    /* Neon Green */
    --secondary-color: #1a1a1a;
    /* Dark Gray */
    --bg-color: #0d0d0d;
    /* Almost Black */
    --text-color: #ffffff;
    --text-muted: #cccccc;
    --glass-surface: rgba(12, 18, 15, 0.62);
    --glass-border: rgba(255, 255, 255, 0.16);
    --glass-highlight: rgba(255, 255, 255, 0.2);
    --header-shell: rgba(244, 250, 245, 0.12);
    --header-stroke: rgba(255, 255, 255, 0.22);
    --header-shadow: rgba(3, 9, 6, 0.28);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0 0;
    background: transparent;
}

header::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 104px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    width: min(94%, 1320px);
    max-width: none;
    margin: 0 auto;
    padding: 10px 18px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05) 45%, rgba(57, 255, 20, 0.05) 100%),
        rgba(16, 22, 18, 0.34);
    backdrop-filter: blur(20px) saturate(165%);
    -webkit-backdrop-filter: blur(20px) saturate(165%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    position: relative;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
    letter-spacing: 0.12em;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.logo-badge {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    padding: 6px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 8px 18px rgba(6, 12, 8, 0.14);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.logo-text {
    white-space: nowrap;
    line-height: 1;
    color: rgba(220, 255, 214, 0.96);
    text-shadow: 0 0 16px rgba(57, 255, 20, 0.18);
}

nav {
    flex: 1;
    min-width: 0;
    margin-left: 4px;
    position: relative;
    z-index: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}

.nav-links li:last-child {
    margin-left: auto;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    color: rgba(255, 255, 255, 0.86);
    padding: 10px 15px;
    border-radius: 999px;
    border: 1px solid transparent;
    letter-spacing: 0.02em;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    inset: auto 14px 6px;
    height: 1px;
    width: auto;
    background: linear-gradient(90deg, rgba(57, 255, 20, 0), rgba(57, 255, 20, 0.95), rgba(57, 255, 20, 0));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn):focus-visible {
    color: #ffffff;
    background: rgba(57, 255, 20, 0.08);
    border-color: rgba(57, 255, 20, 0.36);
    box-shadow:
        0 0 18px rgba(57, 255, 20, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-shadow: 0 0 12px rgba(57, 255, 20, 0.28);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn):focus-visible::after {
    transform: scaleX(1);
}

.nav-links a[aria-current="page"] {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav-links a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-links .btn {
    min-width: 118px;
    padding: 10px 18px;
    margin-left: 16px;
    text-align: center;
    color: #081208;
    background: linear-gradient(135deg, rgba(198, 255, 186, 0.95), rgba(57, 255, 20, 0.92));
    border-color: rgba(214, 255, 205, 0.72);
    box-shadow:
        0 10px 24px rgba(57, 255, 20, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.nav-links .btn::after {
    display: none;
}

.nav-links .btn:hover {
    color: #051003;
    border-color: rgba(214, 255, 205, 0.9);
    background: linear-gradient(135deg, rgba(220, 255, 213, 0.98), rgba(70, 255, 36, 0.94));
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    font-size: 18px;
    cursor: pointer;
    color: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 8px 18px rgba(4, 10, 6, 0.12);
    position: relative;
    z-index: 1;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 126px;
    /* Offset for fixed header */
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Overlay darken */
    z-index: 2;
}

.hero-content {
    position: relative;
    max-width: 800px;
    padding: 20px;
    animation: fadeIn 1.5s ease;
    z-index: 3;
}

.hero-title {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--text-muted);
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding-top: 10px;
    }

    header::before {
        height: 88px;
    }

    header .nav-container {
        width: calc(100% - 20px);
        max-width: none;
    }

    .nav-container {
        justify-content: flex-start;
        gap: 10px;
        padding: 9px 10px;
        border-radius: 24px;
        overflow: visible;
    }

    nav {
        position: static;
        margin-left: 0;
        min-width: auto;
        flex: 0 0 auto;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        width: auto;
        height: auto;
        max-height: min(70svh, 420px);
        padding: 10px;
        border-radius: 20px;
        background:
            linear-gradient(160deg, rgba(255, 255, 255, 0.15), rgba(244, 255, 246, 0.05) 42%, rgba(59, 96, 68, 0.18) 100%),
            rgba(10, 14, 11, 0.76);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow:
            0 18px 34px rgba(0, 0, 0, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(22px) saturate(170%);
        -webkit-backdrop-filter: blur(22px) saturate(170%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 5;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        border-radius: 14px;
        font-size: 18px;
    }

    .hero-title {
        font-size: clamp(44px, 14vw, 60px);
        line-height: 0.96;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.45;
        max-width: 22ch;
        margin: 0 auto 26px;
        color: rgba(255, 255, 255, 0.8);
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 13px 14px;
        font-size: 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
    }

    .nav-links li:last-child {
        margin-left: 0;
    }

    .nav-links .btn {
        margin-left: 0;
        margin-top: 6px;
        text-align: center;
    }

    .logo {
        gap: 9px;
        font-size: 15px;
        letter-spacing: 0.08em;
        flex: 1;
        min-width: 0;
        max-width: none;
        position: static;
    }

    .logo-badge {
        width: 42px;
        height: 42px;
        padding: 5px;
        border-radius: 14px;
        position: relative;
        z-index: 1;
    }

    .logo img {
        border-radius: 10px;
    }

    .logo-text {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        max-width: calc(100% - 120px);
        text-align: center;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
        height: auto;
        align-items: center;
        padding: 110px 0 34px;
    }

    .hero-content {
        width: 100%;
        max-width: 420px;
        padding: 18px 10px 8px;
    }

    .hero-content .btn {
        width: min(100%, 300px);
        padding: 15px 18px;
        font-size: 15px;
    }

    .hero-video {
        object-position: center center;
    }

    .video-overlay {
        background:
            linear-gradient(180deg, rgba(2, 4, 3, 0.2) 0%, rgba(5, 8, 6, 0.5) 24%, rgba(5, 8, 6, 0.78) 100%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Common Styles */
.section {
    padding: 80px 0;
}

.section.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.scroll-reveal.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.highlight {
    color: var(--primary-color);
}

/* About Section */
#about {
    background-color: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.about-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.about-card p {
    color: var(--text-muted);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item .overlay i {
    color: var(--primary-color);
    font-size: 30px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}


/* Marquee Section */
.marquee-section {
    padding: 40px 0;
    overflow: hidden;
    background: var(--secondary-color);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--primary-color);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.marquee-item:hover img {
    transform: scale(1.1);
}

/* Pause animation on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-320px * 9));
    }

    /* Adjusted based on item count */
}

/* Pricing Section */
.pricing-section {
    background-color: #000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.column-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

/* Amenities */
.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
    border: 1px solid var(--primary-color);
}

.amenity-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.amenity-item span {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

/* Pricing Cards */
.pricing-cards-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.pricing-card .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-card .period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card .features {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

.trial-card {
    border-left: 4px solid #fff;
}

.elite-card {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
    /* Highlight emphasis */
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}


/* Contact Section */
#contact {
    background: var(--secondary-color);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.map-container {
    flex: 1 1 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary-color);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    display: block;
}

.contact-info {
    flex: 1 1 300px;
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #fff;
}

.info-item p {
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

/* Footer */
.site-footer {
    background: #000;
}

.footer-top {
    padding: 60px 0 40px;
    border-top: 2px solid var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col {
    min-width: 0;
}

/* Footer Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}

.footer-logo img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Headings */
.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--primary-color);
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 10px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Footer Hours */
.footer-hours {
    list-style: none;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: var(--text-muted);
}

.footer-hours li span {
    white-space: nowrap;
}

.footer-hours li span:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-cta {
    margin-top: 20px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-muted);
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.5);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.back-to-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.3);
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-top {
        padding: 40px 0 30px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-hours li {
        justify-content: center;
        gap: 20px;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .footer-cta {
        text-align: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Responsive fixes */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column-reverse;
    }

    .map-container {
        width: 100%;
        flex: none;
    }

    .contact-info {
        width: 100%;
        text-align: center;
    }

    .info-item {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Pricing Responsive */
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item:hover .overlay i {
    transform: scale(1);
}

/* Masonry Effect */
@media (min-width: 768px) {
    .gallery-item.item-wide {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-item.item-wide {
        grid-column: span 2;
        height: 220px;
    }
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    margin-top: -30px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Founder Gateway */
.founder-link-section {
    background:
        radial-gradient(circle at top left, rgba(57, 255, 20, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.founder-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 38px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03) 50%, rgba(57, 255, 20, 0.08) 100%),
        rgba(14, 18, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.founder-link-kicker {
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
}

.founder-link-title {
    font-size: clamp(34px, 4vw, 48px);
    margin-bottom: 10px;
}

.founder-link-text {
    max-width: 700px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Founder Page */
.founder-page {
    background:
        radial-gradient(circle at top right, rgba(57, 255, 20, 0.08), transparent 26%),
        radial-gradient(circle at left center, rgba(255, 255, 255, 0.04), transparent 20%),
        #090b09;
}

.founder-page main {
    overflow: hidden;
}

.founder-btn-secondary {
    background: transparent;
    color: var(--text-color);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: none;
}

.founder-btn-secondary:hover {
    color: #000;
    background: #fff;
    border-color: #fff;
}

.founder-hero-section {
    padding-top: 160px;
    padding-bottom: 92px;
    position: relative;
}

.founder-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(57, 255, 20, 0.06), transparent 24%),
        radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.08), transparent 16%);
    pointer-events: none;
}

.founder-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.founder-copy {
    max-width: 700px;
}

.founder-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.founder-profile-chip {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px 10px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 22px;
}

.founder-profile-chip img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.14);
}

.founder-profile-chip strong,
.founder-profile-chip span {
    display: block;
}

.founder-profile-chip span {
    color: var(--text-muted);
    font-size: 14px;
}

.founder-hero-title {
    font-size: clamp(56px, 8vw, 96px);
    line-height: 0.96;
    margin-bottom: 16px;
}

.founder-hero-subtitle {
    font-size: 24px;
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.founder-hero-text {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 62ch;
}

.founder-hero-text a {
    color: var(--primary-color);
}

.founder-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 34px 0 28px;
}

.founder-stat-card {
    padding: 20px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-stat-card strong,
.founder-stat-card span {
    display: block;
}

.founder-stat-card strong {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--primary-color);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.founder-stat-card span {
    color: var(--text-muted);
    font-size: 14px;
}

.founder-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.founder-source-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
}

.founder-visual-stack {
    position: relative;
    min-height: 650px;
}

.founder-main-visual,
.founder-side-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.founder-main-visual {
    width: min(100%, 430px);
    aspect-ratio: 4 / 5;
    margin-left: auto;
}

.founder-side-visual {
    position: absolute;
    left: 0;
    bottom: 28px;
    width: min(58%, 280px);
    aspect-ratio: 4 / 3;
}

.founder-main-visual img,
.founder-side-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-floating-quote {
    position: absolute;
    right: 16px;
    bottom: 0;
    max-width: 270px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(8, 12, 10, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.founder-floating-quote span,
.founder-floating-quote strong {
    display: block;
}

.founder-floating-quote span {
    color: var(--primary-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.founder-floating-quote strong {
    font-size: 22px;
    line-height: 1.2;
}

.founder-story-section,
.founder-highlights-section {
    background: var(--secondary-color);
}

.founder-story-grid,
.founder-pillars {
    display: grid;
    gap: 22px;
}

.founder-story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.founder-story-card,
.founder-pillar-card,
.founder-highlight-card,
.founder-video-card,
.founder-cta-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.founder-story-card,
.founder-pillar-card {
    padding: 26px;
    border-radius: 24px;
}

.founder-story-card p,
.founder-pillar-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.founder-leadership-intro {
    max-width: 760px;
    margin-bottom: 34px;
}

.founder-leadership-intro .section-title {
    text-align: left;
    left: 0;
    transform: none;
    display: block;
    margin-bottom: 12px;
}

.founder-leadership-intro .section-title::after {
    margin-left: 0;
}

.founder-pillars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.founder-pillar-card i {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.founder-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.founder-highlight-card {
    border-radius: 26px;
    overflow: hidden;
    margin: 0;
}

.founder-highlight-feature {
    grid-column: span 2;
}

.founder-highlight-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.founder-highlight-feature img {
    height: 480px;
}

.founder-highlight-card figcaption {
    padding: 22px 22px 24px;
}

.founder-highlight-card span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.founder-highlight-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 10px;
}

.founder-highlight-card p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.founder-video-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    gap: 28px;
    align-items: center;
}

.founder-video-copy {
    max-width: 540px;
}

.founder-video-copy .section-title {
    text-align: left;
    left: 0;
    transform: none;
    display: block;
    margin-bottom: 20px;
}

.founder-video-copy .section-title::after {
    margin-left: 0;
}

.founder-video-copy p {
    color: var(--text-muted);
}

.founder-video-points {
    display: grid;
    gap: 12px;
    margin: 26px 0;
}

.founder-video-points li {
    position: relative;
    padding-left: 24px;
    color: var(--text-muted);
}

.founder-video-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
}

.founder-video-card {
    position: relative;
    padding: 16px;
    border-radius: 28px;
}

.founder-video-card video {
    display: block;
    width: 100%;
    border-radius: 20px;
    background: #000;
}

.founder-cta-card {
    padding: 36px 40px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(57, 255, 20, 0.08) 100%),
        rgba(12, 17, 13, 0.92);
}

.founder-cta-copy p:last-child {
    margin-bottom: 0;
    color: var(--text-muted);
}

.founder-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 1200px) {
    .founder-stat-grid,
    .founder-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .founder-story-grid,
    .founder-highlights-grid,
    .founder-video-grid {
        grid-template-columns: 1fr;
    }

    .founder-highlight-feature {
        grid-column: span 1;
    }

    .founder-highlight-feature img {
        height: 360px;
    }
}

@media (max-width: 900px) {
    .founder-link-card,
    .founder-cta-card,
    .founder-hero-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .founder-hero-grid {
        gap: 32px;
    }

    .founder-visual-stack {
        width: 100%;
        min-height: 0;
        padding-bottom: 96px;
    }

    .founder-main-visual {
        width: 100%;
        margin-left: 0;
    }

    .founder-side-visual {
        width: 46%;
    }

    .founder-floating-quote {
        right: 0;
    }
}

@media (max-width: 768px) {
    .founder-link-card {
        padding: 26px 22px;
        border-radius: 24px;
    }

    .founder-link-title {
        font-size: 32px;
    }

    .founder-hero-section {
        padding-top: 124px;
        padding-bottom: 62px;
    }

    .founder-hero-subtitle {
        font-size: 18px;
    }

    .founder-hero-text {
        font-size: 16px;
    }

    .founder-stat-grid,
    .founder-story-grid,
    .founder-pillars,
    .founder-highlights-grid {
        grid-template-columns: 1fr;
    }

    .founder-profile-chip {
        width: 100%;
        border-radius: 22px;
    }

    .founder-highlight-card img,
    .founder-highlight-feature img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .founder-video-card,
    .founder-cta-card,
    .founder-story-card,
    .founder-pillar-card {
        border-radius: 22px;
    }

    .founder-cta-card {
        padding: 28px 22px;
    }
}

@media (max-width: 480px) {
    .founder-link-card {
        gap: 18px;
    }

    .founder-profile-chip img {
        width: 46px;
        height: 46px;
    }

    .founder-hero-title {
        font-size: 46px;
    }

    .founder-visual-stack {
        padding-bottom: 76px;
    }

    .founder-side-visual {
        width: 54%;
        bottom: 16px;
    }

    .founder-floating-quote {
        max-width: 230px;
        padding: 16px 18px;
    }

    .founder-floating-quote strong {
        font-size: 18px;
    }

    .founder-actions,
    .founder-cta-actions {
        width: 100%;
    }

    .founder-actions .btn,
    .founder-cta-actions .btn,
    .founder-link-card .btn {
        width: 100%;
        text-align: center;
    }
}

/* Instagram Reels Section */
.reels-section {
    background: var(--secondary-color);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 10px;
}

.reel-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #111;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.reel-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(57, 255, 20, 0.15);
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.reel-item:hover .reel-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.reel-item.playing .reel-overlay {
    opacity: 0;
}

.reel-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(57, 255, 20, 0.3);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.reel-play-btn:hover {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.reel-play-btn i {
    margin-left: 3px;
}

.reel-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.reel-badge i {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
}

.reels-cta {
    text-align: center;
    margin-top: 40px;
}

.reels-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    font-size: 16px;
}

.reels-cta .btn-outline:hover {
    background: var(--primary-color);
    color: #000;
}

.reels-cta .btn-outline i {
    font-size: 20px;
}

@media (max-width: 1024px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .reel-play-btn {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-top: -20px;
        margin-bottom: 24px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ======= Meet Our Trainers Section ======= */
.trainers-section {
    background:
        radial-gradient(circle at top left, rgba(57, 255, 20, 0.12), transparent 24%),
        radial-gradient(circle at bottom right, rgba(57, 255, 20, 0.08), transparent 22%),
        linear-gradient(180deg, #000 0%, var(--secondary-color) 52%, #000 100%);
    overflow: hidden;
}

.trainers-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    max-width: 920px;
    margin: 0 auto;
}

.trainer-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #101010;
    border: 1px solid rgba(57, 255, 20, 0.16);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.trainer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(57, 255, 20, 0.32);
    box-shadow:
        0 22px 52px rgba(0, 0, 0, 0.4),
        0 0 28px rgba(57, 255, 20, 0.08);
}

.trainer-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #050505;
}

.trainer-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trainer-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.02) 38%,
            rgba(0, 0, 0, 0.48) 100%);
}

.trainer-info-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
}

.trainer-info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trainer-label {
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

.trainer-desc {
    max-width: 24ch;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.45;
}

.trainer-badge-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.14);
    border: 1px solid rgba(57, 255, 20, 0.3);
    box-shadow: 0 0 18px rgba(57, 255, 20, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.trainer-badge-icon i {
    color: var(--primary-color);
    font-size: 16px;
}

.trainer-card .video-audio-toggle {
    top: 14px;
    right: 14px;
}

.trainers-home-cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.trainers-home-cta .btn {
    min-width: 240px;
    text-align: center;
    animation: trainers-cta-nudge 3.8s ease-in-out infinite;
    transform-origin: center;
    box-shadow: 0 0 0 rgba(57, 255, 20, 0);
}

.trainers-home-cta .btn:hover,
.trainers-home-cta .btn:focus-visible {
    animation-play-state: paused;
}

@keyframes trainers-cta-nudge {
    0%,
    68%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        box-shadow: 0 0 0 rgba(57, 255, 20, 0);
    }

    72% {
        transform: translate3d(-5px, 0, 0) rotate(-2.2deg) scale(1.02);
    }

    76% {
        transform: translate3d(6px, 0, 0) rotate(2.3deg) scale(1.03);
        box-shadow: 0 0 28px rgba(57, 255, 20, 0.22);
    }

    80% {
        transform: translate3d(-6px, 0, 0) rotate(-2deg) scale(1.03);
    }

    84% {
        transform: translate3d(5px, -1px, 0) rotate(1.8deg) scale(1.02);
    }

    88% {
        transform: translate3d(-4px, 0, 0) rotate(-1.3deg) scale(1.01);
    }

    92% {
        transform: translate3d(3px, 0, 0) rotate(1deg) scale(1.01);
    }

    96% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.14);
    }
}

@media (prefers-reduced-motion: reduce) {
    .trainers-home-cta .btn {
        animation: none;
    }
}

.trainers-intro {
    max-width: 980px;
    margin: 0 auto 24px;
    text-align: center;
}

.trainers-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.2);
    color: var(--primary-color);
    font-family: var(--font-heading);
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.trainers-pillars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.trainers-pillars span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

.trainer-roster {
    display: grid;
    gap: 28px;
}

.trainer-profile-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 320px);
    gap: 28px;
    align-items: center;
    padding: 28px;
    border-radius: 32px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(57, 255, 20, 0.04) 58%, rgba(255, 255, 255, 0.03) 100%),
        rgba(8, 12, 9, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trainer-profile-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.14), transparent 70%);
    pointer-events: none;
}

.trainer-profile-card:hover {
    transform: translateY(-6px);
    border-color: rgba(57, 255, 20, 0.22);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.34),
        0 0 40px rgba(57, 255, 20, 0.08);
}

.trainer-profile-card--reverse .trainer-profile-copy {
    order: 2;
}

.trainer-profile-card--reverse .trainer-profile-media {
    order: 1;
    justify-self: start;
}

.trainer-profile-copy,
.trainer-profile-media {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.trainer-profile-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.trainer-profile-avatar {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    flex-shrink: 0;
}

.trainer-profile-role {
    display: inline-flex;
    margin-bottom: 6px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
}

.trainer-profile-name {
    margin-bottom: 6px;
    font-size: 40px;
    line-height: 0.95;
}

.trainer-profile-handle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    overflow-wrap: anywhere;
}

.trainer-profile-handle:hover {
    color: var(--primary-color);
}

.trainer-profile-summary,
.trainer-profile-note {
    color: var(--text-muted);
}

.trainer-profile-summary {
    max-width: 62ch;
    margin-bottom: 22px;
    font-size: 16px;
    overflow-wrap: anywhere;
}

.trainer-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.trainer-profile-tags span {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.18);
    color: #f4fff0;
    font-size: 13px;
}

.trainer-profile-note {
    margin-bottom: 22px;
    padding-left: 18px;
    border-left: 3px solid rgba(57, 255, 20, 0.7);
    font-size: 15px;
    overflow-wrap: anywhere;
}

.trainer-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.trainer-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 500;
}

.trainer-secondary-link:hover {
    color: var(--primary-color);
}

.trainer-profile-media {
    width: 100%;
    max-width: 320px;
    justify-self: end;
}

.trainer-profile-video-shell {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    background: #050505;
}

.trainer-profile-video-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.trainer-profile-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trainer-profile-badge,
.trainer-profile-video-meta {
    position: absolute;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 12px;
    color: #ffffff;
}

.trainer-profile-badge {
    top: 14px;
}

.trainer-profile-badge i {
    color: var(--primary-color);
}

.trainer-profile-video-meta {
    bottom: 14px;
    gap: 12px;
    flex-wrap: wrap;
}

.video-audio-toggle {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(5, 9, 7, 0.6);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.04em;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.video-audio-toggle i {
    color: var(--primary-color);
    font-size: 13px;
}

.video-audio-toggle:hover,
.video-audio-toggle:focus-visible {
    background: rgba(57, 255, 20, 0.12);
    border-color: rgba(57, 255, 20, 0.34);
    transform: translateY(-1px);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.32),
        0 0 18px rgba(57, 255, 20, 0.14);
}

.video-audio-toggle.is-unmuted {
    background: rgba(57, 255, 20, 0.16);
    border-color: rgba(57, 255, 20, 0.38);
}

.video-audio-toggle.is-unmuted i {
    color: #dfffdb;
}

.site-music-audio {
    display: none;
}

.site-music-toggle {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 998;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(57, 255, 20, 0.22);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(57, 255, 20, 0.08)),
        rgba(7, 12, 9, 0.82);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-music-toggle i {
    color: var(--primary-color);
}

.site-music-toggle:hover,
.site-music-toggle:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(57, 255, 20, 0.34);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.34),
        0 0 20px rgba(57, 255, 20, 0.12);
}

.site-music-toggle.is-playing {
    background:
        linear-gradient(135deg, rgba(210, 255, 201, 0.18), rgba(57, 255, 20, 0.12)),
        rgba(7, 12, 9, 0.86);
}

.site-music-toggle.is-paused-by-video {
    border-color: rgba(255, 255, 255, 0.18);
}

.site-music-toggle.is-off {
    border-color: rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
        rgba(7, 12, 9, 0.7);
}

.trainers-source-note {
    margin-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
}

.page-hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    background: #040604;
}

.page-hero .hero-video {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    object-fit: cover;
    object-position: center center;
    transform: none;
    z-index: 0;
}

.page-hero .video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 0 24px;
}

.trainers-page-hero {
    min-height: clamp(420px, 58vh, 560px);
    padding: 126px 0 48px;
    align-items: center;
}

.trainers-page-hero .hero-video {
    object-position: center 34%;
}

.trainers-page-hero .video-overlay {
    background:
        linear-gradient(180deg, rgba(3, 6, 4, 0.36) 0%, rgba(4, 7, 5, 0.52) 58%, rgba(5, 7, 5, 0.7) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.3));
}

.trainers-page-hero .hero-title {
    font-size: clamp(46px, 7vw, 82px);
    line-height: 0.95;
    margin-bottom: 14px;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.58);
}

.trainers-page-hero .hero-subtitle {
    max-width: min(920px, 90vw);
    margin: 0 auto;
    font-size: clamp(16px, 1.8vw, 24px);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.46);
}

.trainers-section {
    padding-top: 16px;
    padding-bottom: 80px;
}

.trainers-section .section-title,
.trainers-section .section-subtitle {
    display: none;
}

/* Trainers responsive */
@media (max-width: 960px) {
    .trainer-profile-card,
    .trainer-profile-card--reverse {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .trainer-profile-card--reverse .trainer-profile-copy,
    .trainer-profile-card--reverse .trainer-profile-media {
        order: initial;
    }

    .trainer-profile-media,
    .trainer-profile-card--reverse .trainer-profile-media {
        max-width: 360px;
        justify-self: stretch;
    }

    .trainer-profile-name {
        font-size: 34px;
    }

    .trainer-profile-summary {
        max-width: none;
    }

}

@media (max-width: 640px) {
    .trainers-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .trainer-card {
        border-radius: 16px;
    }

    .trainer-video-wrap {
        aspect-ratio: 9 / 14;
    }

    .trainer-info-bar {
        padding: 12px;
    }

    .trainer-label {
        font-size: 16px;
    }

    .trainer-desc {
        font-size: 11px;
        max-width: 18ch;
    }

    .trainer-badge-icon {
        display: none;
    }

    .trainers-home-cta {
        margin-top: 24px;
    }

    .trainers-home-cta .btn {
        width: 100%;
        min-width: 0;
    }

    .trainers-intro {
        margin-bottom: 16px;
    }

    .page-hero .hero-content {
        padding: 0 18px;
    }

    .trainers-page-hero {
        min-height: 440px;
        height: auto;
        padding: 92px 0 26px;
        align-items: center;
        background: #040604;
    }

    .trainers-page-hero .hero-video,
    .trainers-page-hero .video-overlay {
        display: block;
    }

    .trainers-page-hero .hero-video {
        object-position: center 28%;
    }

    .trainers-page-hero .video-overlay {
        background:
            linear-gradient(180deg, rgba(2, 5, 3, 0.5) 0%, rgba(3, 6, 4, 0.68) 42%, rgba(4, 6, 5, 0.84) 100%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.4));
    }

    .trainers-page-hero .hero-content {
        max-width: 100%;
        padding: 0 18px 18px;
    }

    .trainers-page-hero .hero-title {
        font-size: clamp(30px, 9vw, 42px);
        line-height: 0.94;
        max-width: 7.5ch;
        margin: 0 auto 10px;
    }

    .trainers-page-hero .hero-subtitle {
        max-width: 19ch;
        font-size: 13px;
        line-height: 1.45;
        margin-bottom: 0;
    }

    .trainers-section {
        padding-top: 12px;
        padding-bottom: 64px;
    }

    .trainers-kicker {
        font-size: 13px;
        letter-spacing: 0.08em;
        margin-bottom: 10px;
    }

    .trainers-pillars {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .trainers-pillars span {
        width: auto;
        text-align: center;
        padding: 10px 12px;
        font-size: 13px;
        line-height: 1.3;
    }

    .trainers-pillars span:last-child {
        grid-column: 1 / -1;
    }

    .trainer-profile-card {
        padding: 20px 18px;
        border-radius: 24px;
    }

    .trainer-profile-head {
        align-items: flex-start;
        gap: 14px;
        flex-wrap: wrap;
    }

    .trainer-profile-avatar {
        width: 68px;
        height: 68px;
        border-radius: 18px;
    }

    .trainer-profile-name {
        font-size: 30px;
    }

    .trainer-profile-head>div {
        min-width: 0;
        flex: 1 1 180px;
    }

    .trainer-profile-actions,
    .trainer-profile-actions .btn,
    .trainer-secondary-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .trainer-profile-media,
    .trainer-profile-card--reverse .trainer-profile-media {
        max-width: 100%;
    }

    .trainer-profile-video-shell {
        border-radius: 22px;
    }

    .trainer-profile-badge,
    .trainer-profile-video-meta {
        left: 12px;
    }

    .trainer-profile-video-meta {
        right: 12px;
    }

    .video-audio-toggle {
        top: 12px;
        right: 12px;
        padding: 7px 11px;
        font-size: 12px;
    }

    .site-music-toggle {
        left: 16px;
        bottom: 16px;
        padding: 10px 14px;
        font-size: 12px;
    }
}

/* ======= Facilities & Programs Section ======= */
.facilities-section {
    background: #000;
}

.facilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.facility-card {
    background: #111;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(57, 255, 20, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.facility-card:hover {
    border-color: rgba(57, 255, 20, 0.3);
    transform: translateY(-5px);
}

.facility-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: #fff;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
}

.title-icon {
    color: var(--primary-color);
    font-size: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-list li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

@media (max-width: 900px) {
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .facility-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .feature-list.two-cols {
        grid-template-columns: 1fr;
    }

    .facility-card h3 {
        font-size: 22px;
    }
}

/* Contact link styling */

/* Contact link styling */
.contact-info a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* ============================================================
   INTERIOR PAGE
   ============================================================ */

/* Page-level background */
.interior-page {
    background:
        radial-gradient(circle at top right, rgba(57, 255, 20, 0.06), transparent 28%),
        radial-gradient(circle at left 60%, rgba(255, 255, 255, 0.03), transparent 18%),
        #090b09;
}

/* ---- Hero ---- */
.interior-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
}

.interior-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.interior-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.interior-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.20) 30%,
            rgba(9, 11, 9, 0.70) 65%,
            rgba(9, 11, 9, 0.96) 100%);
}

.interior-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 72px;
    padding-top: 160px;
    max-width: 660px;
    animation: fadeIn 1.2s ease;
}

.interior-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 14px;
    margin-bottom: 18px;
}

.interior-hero-title {
    font-size: clamp(52px, 9vw, 88px);
    line-height: 0.96;
    margin-bottom: 18px;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.interior-hero-title span {
    color: var(--primary-color);
    text-shadow:
        0 0 28px rgba(57, 255, 20, 0.25),
        0 4px 24px rgba(0, 0, 0, 0.5);
}

.interior-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 300;
    max-width: 52ch;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ---- Stats Section ---- */
.interior-stats-section {
    padding: 70px 0 50px;
    background: transparent;
}

.interior-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.interior-stat-card {
    padding: 28px 18px 24px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02) 50%, rgba(57, 255, 20, 0.04) 100%),
        rgba(14, 18, 15, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.interior-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(57, 255, 20, 0.35);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.28),
        0 0 24px rgba(57, 255, 20, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.interior-stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.2);
    display: grid;
    place-items: center;
    font-size: 20px;
    color: var(--primary-color);
}

.interior-stat-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    color: #fff;
    margin-bottom: 4px;
}

.interior-stat-card span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ---- Gallery Section ---- */
.interior-gallery-section {
    padding-top: 40px;
    background: transparent;
}

.interior-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 10px;
}

.ig-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin: 0;
}

.ig-item.ig-featured {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.ig-item:hover img {
    transform: scale(1.08);
}

.ig-item figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 48px 22px 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.ig-item:hover figcaption {
    transform: translateY(0);
}

.ig-tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 4px;
}

.ig-item figcaption strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.03em;
}

/* Gallery zoom icon overlay */
.ig-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 32px;
    color: var(--primary-color);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 2;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.ig-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* ---- Equipment Section ---- */
.interior-equipment-section {
    background: var(--secondary-color);
}

.interior-equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.interior-equip-card {
    padding: 32px 26px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01) 50%, rgba(57, 255, 20, 0.03) 100%),
        rgba(10, 12, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.interior-equip-card:hover {
    transform: translateY(-6px);
    border-color: rgba(57, 255, 20, 0.3);
}

.interior-equip-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.22);
    display: grid;
    place-items: center;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.interior-equip-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.interior-equip-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- Amenities Strip ---- */
.interior-amenities-strip {
    padding: 50px 0;
    background:
        linear-gradient(180deg, var(--secondary-color) 0%, var(--bg-color) 100%);
}

.interior-amenities-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.interior-amenity-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.interior-amenity-chip i {
    color: var(--primary-color);
    font-size: 16px;
}

.interior-amenity-chip:hover {
    background: rgba(57, 255, 20, 0.12);
    border-color: rgba(57, 255, 20, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(57, 255, 20, 0.1);
}

/* ---- CTA Section ---- */
.interior-cta-section {
    padding: 60px 0 80px;
}

.interior-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 42px 46px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03) 50%, rgba(57, 255, 20, 0.08) 100%),
        rgba(14, 18, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.interior-cta-copy h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 12px;
}

.interior-cta-copy p:last-child {
    color: var(--text-muted);
    max-width: 56ch;
    margin-bottom: 0;
}

.interior-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

/* ---- Lightbox ---- */
.interior-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
}

.interior-lightbox[hidden] {
    display: none;
}

.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(57, 255, 20, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    margin-top: 18px;
    font-family: var(--font-heading);
    font-size: 18px;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lightbox-counter {
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================================
   INTERIOR PAGE - RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .interior-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .interior-equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .interior-hero {
        min-height: 92vh;
        min-height: 92svh;
    }

    .interior-hero-content {
        padding-bottom: 48px;
        padding-top: 120px;
    }

    .interior-hero-subtitle {
        font-size: 16px;
        max-width: 34ch;
    }

    .interior-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .interior-stat-card {
        padding: 20px 10px 18px;
        border-radius: 16px;
    }

    .interior-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .interior-stat-card strong {
        font-size: 17px;
    }

    .interior-stat-card span {
        font-size: 11px;
    }

    .interior-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ig-item.ig-featured {
        grid-column: span 2;
    }

    .ig-item {
        border-radius: 12px;
    }

    /* Show captions by default on mobile */
    .ig-item figcaption {
        transform: translateY(0);
        padding: 30px 14px 14px;
    }

    .ig-item::after {
        display: none;
    }

    .ig-item figcaption strong {
        font-size: 13px;
    }

    .ig-tag {
        font-size: 10px;
    }

    .interior-equipment-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .interior-equip-card {
        padding: 24px 20px;
    }

    .interior-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 34px 24px;
        border-radius: 22px;
    }

    .interior-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .interior-cta-actions .btn {
        width: 100%;
        text-align: center;
    }

    .lightbox-prev {
        left: 8px;
        width: 42px;
        height: 42px;
    }

    .lightbox-next {
        right: 8px;
        width: 42px;
        height: 42px;
    }

    .lightbox-close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .interior-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .interior-stat-card {
        padding: 16px 8px 14px;
    }

    .interior-stat-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .interior-stat-card strong {
        font-size: 15px;
    }

    .interior-amenities-row {
        gap: 8px;
    }

    .interior-amenity-chip {
        padding: 10px 16px;
        font-size: 13px;
        gap: 8px;
    }
}

/* ============================================================
   ACCESSIBILITY & SKIP LINK
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color, #39ff14);
    color: #000;
    padding: 12px 24px;
    z-index: 100000;
    font-weight: 700;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.4);
    transition: top 0.3s ease;
}
.skip-link:focus {
    top: 0;
    outline: none;
}

/* ============================================================
   PREMIUM FEATURES: TESTIMONIALS SLIDER
   ============================================================ */
.testimonials-section {
    background: #000;
    position: relative;
    overflow: hidden;
}

.testimonials-slider-wrap {
    position: relative;
    max-width: 1024px;
    margin: 40px auto 0;
    padding: 0 50px;
}

.testimonials-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-color, #39ff14);
}

.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 60px;
    color: rgba(57, 255, 20, 0.06);
    pointer-events: none;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.1);
    border: 2px solid var(--primary-color, #39ff14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color, #39ff14);
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 18px;
}

.testimonial-meta h4 {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 18px;
    color: #fff;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.testimonial-meta h4 i {
    color: #4285f4;
    font-size: 14px;
}

.testimonial-meta span {
    font-size: 13px;
    color: var(--text-muted, #888);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-color, #39ff14);
    color: #000;
    border-color: var(--primary-color, #39ff14);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--primary-color, #39ff14);
    width: 24px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .testimonials-slider-wrap {
        padding: 0 10px;
    }
    .slider-btn {
        display: none;
    }
    .testimonial-card {
        padding: 24px;
    }
}

/* ============================================================
   PREMIUM FEATURES: WEEKLY CLASS SCHEDULE
   ============================================================ */
.schedule-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 24px;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary-color, #39ff14);
    color: #000;
    border-color: var(--primary-color, #39ff14);
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.25);
}

.schedule-grid-wrap {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-day-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.schedule-day-pane.active {
    display: block;
}

.schedule-header-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr 1.5fr;
    background: rgba(57, 255, 20, 0.08);
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    padding: 16px 24px;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 15px;
    color: var(--primary-color, #39ff14);
}

.schedule-item-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr 1.5fr;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    transition: background 0.3s ease;
}

.schedule-item-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.schedule-item-row:last-child {
    border-bottom: none;
}

.schedule-time {
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-time i {
    color: var(--primary-color, #39ff14);
    font-size: 14px;
}

.schedule-class-name {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 18px;
    color: #fff;
}

.schedule-trainer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.schedule-action .btn-sm {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .schedule-header-row {
        display: none;
    }
    .schedule-item-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px;
        text-align: center;
    }
    .schedule-time {
        justify-content: center;
    }
    .schedule-action {
        margin-top: 5px;
    }
}

/* ============================================================
   PREMIUM FEATURES: FAQ ACCORDION
   ============================================================ */
.faq-section {
    background: #090b09;
}

.faq-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(57, 255, 20, 0.2);
}

.faq-item.active {
    border-color: rgba(57, 255, 20, 0.3);
    background: rgba(57, 255, 20, 0.02);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 22px 28px;
    text-align: left;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 18px;
    letter-spacing: 0.02em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.faq-question span {
    padding-right: 20px;
}

.faq-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon-box i {
    color: var(--primary-color, #39ff14);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-box {
    background: var(--primary-color, #39ff14);
}

.faq-item.active .faq-icon-box i {
    color: #000;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   PREMIUM FEATURES: ONLINE TRIAL booking form next to pricing
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 40px;
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .trial-form-card {
        padding: 24px 20px;
    }
}

.trial-form-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.trial-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #39ff14, #00ff87);
}

.trial-form-card h3 {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
}

.trial-form-card p {
    font-size: 14px;
    color: var(--text-muted, #888);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color, #39ff14);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: var(--primary-color, #39ff14);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.15);
    outline: none;
}

select.form-control option {
    background: #111;
    color: #fff;
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: var(--primary-color, #39ff14);
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
}

.form-submit-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-status {
    margin-top: 14px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-status.success {
    display: block;
    color: #39ff14;
}

.form-status.error {
    display: block;
    color: #ff3838;
}

/* ============================================================
   PREMIUM FLOATING MUSIC PLAYER INTERFACE
   ============================================================ */
.site-music-toggle {
    position: fixed;
    left: 24px;
    bottom: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-music-toggle i {
    font-size: 14px;
    color: var(--primary-color, #39ff14);
    transition: transform 0.3s ease;
}

.site-music-toggle:hover {
    border-color: var(--primary-color, #39ff14);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(57, 255, 20, 0.15);
}

.site-music-toggle.is-playing {
    border-color: var(--primary-color, #39ff14);
    background: rgba(57, 255, 20, 0.06);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(57, 255, 20, 0.2);
    animation: musicPulse 2s infinite alternate;
}

.site-music-toggle.is-playing i {
    animation: musicRotate 3s infinite linear;
}

@keyframes musicPulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 5px rgba(57, 255, 20, 0.1);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(57, 255, 20, 0.35);
    }
}

@keyframes musicRotate {
    100% {
        transform: rotate(360deg);
    }
}

.site-music-toggle.is-off {
    opacity: 0.65;
}

.site-music-toggle.is-off i {
    color: #ff3838;
}

.site-music-toggle.is-paused-by-video {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.site-music-toggle.is-paused-by-video i {
    color: #ffc107;
}

@media (max-width: 768px) {
    .site-music-toggle {
        left: 16px;
        bottom: 80px; /* Shift up on mobile so it doesn't overlap WhatsApp button */
        padding: 10px 14px;
        font-size: 11px;
    }
}

/* Global Styles */
:root {
    --primary-color: #39ff14;
    /* Neon Green */
    --secondary-color: #1a1a1a;
    /* Dark Gray */
    --bg-color: #0d0d0d;
    /* Almost Black */
    --text-color: #ffffff;
    --text-muted: #cccccc;
    --glass-surface: rgba(12, 18, 15, 0.62);
    --glass-border: rgba(255, 255, 255, 0.16);
    --glass-highlight: rgba(255, 255, 255, 0.2);
    --header-shell: rgba(244, 250, 245, 0.12);
    --header-stroke: rgba(255, 255, 255, 0.22);
    --header-shadow: rgba(3, 9, 6, 0.28);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0 0;
    background: transparent;
}

header::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 104px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    width: min(94%, 1320px);
    max-width: none;
    margin: 0 auto;
    padding: 10px 18px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05) 45%, rgba(57, 255, 20, 0.05) 100%),
        rgba(16, 22, 18, 0.34);
    backdrop-filter: blur(20px) saturate(165%);
    -webkit-backdrop-filter: blur(20px) saturate(165%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    position: relative;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
    letter-spacing: 0.12em;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.logo-badge {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    padding: 6px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 8px 18px rgba(6, 12, 8, 0.14);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.logo-text {
    white-space: nowrap;
    line-height: 1;
    color: rgba(220, 255, 214, 0.96);
    text-shadow: 0 0 16px rgba(57, 255, 20, 0.18);
}

nav {
    flex: 1;
    min-width: 0;
    margin-left: 4px;
    position: relative;
    z-index: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}

.nav-links li:last-child {
    margin-left: auto;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    color: rgba(255, 255, 255, 0.86);
    padding: 10px 15px;
    border-radius: 999px;
    border: 1px solid transparent;
    letter-spacing: 0.02em;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    inset: auto 14px 6px;
    height: 1px;
    width: auto;
    background: linear-gradient(90deg, rgba(57, 255, 20, 0), rgba(57, 255, 20, 0.95), rgba(57, 255, 20, 0));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn):focus-visible {
    color: #ffffff;
    background: rgba(57, 255, 20, 0.08);
    border-color: rgba(57, 255, 20, 0.36);
    box-shadow:
        0 0 18px rgba(57, 255, 20, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-shadow: 0 0 12px rgba(57, 255, 20, 0.28);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn):focus-visible::after {
    transform: scaleX(1);
}

.nav-links a[aria-current="page"] {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav-links a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-links .btn {
    min-width: 118px;
    padding: 10px 18px;
    margin-left: 16px;
    text-align: center;
    color: #081208;
    background: linear-gradient(135deg, rgba(198, 255, 186, 0.95), rgba(57, 255, 20, 0.92));
    border-color: rgba(214, 255, 205, 0.72);
    box-shadow:
        0 10px 24px rgba(57, 255, 20, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.nav-links .btn::after {
    display: none;
}

.nav-links .btn:hover {
    color: #051003;
    border-color: rgba(214, 255, 205, 0.9);
    background: linear-gradient(135deg, rgba(220, 255, 213, 0.98), rgba(70, 255, 36, 0.94));
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    font-size: 18px;
    cursor: pointer;
    color: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 8px 18px rgba(4, 10, 6, 0.12);
    position: relative;
    z-index: 1;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 126px;
    /* Offset for fixed header */
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Overlay darken */
    z-index: 2;
}

.hero-content {
    position: relative;
    max-width: 800px;
    padding: 20px;
    animation: fadeIn 1.5s ease;
    z-index: 3;
}

.hero-title {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--text-muted);
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding-top: 10px;
    }

    header::before {
        height: 88px;
    }

    header .nav-container {
        width: calc(100% - 20px);
        max-width: none;
    }

    .nav-container {
        justify-content: flex-start;
        gap: 10px;
        padding: 9px 10px;
        border-radius: 24px;
        overflow: visible;
    }

    nav {
        position: static;
        margin-left: 0;
        min-width: auto;
        flex: 0 0 auto;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        width: auto;
        height: auto;
        max-height: min(70svh, 420px);
        padding: 10px;
        border-radius: 20px;
        background:
            linear-gradient(160deg, rgba(255, 255, 255, 0.15), rgba(244, 255, 246, 0.05) 42%, rgba(59, 96, 68, 0.18) 100%),
            rgba(10, 14, 11, 0.76);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow:
            0 18px 34px rgba(0, 0, 0, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(22px) saturate(170%);
        -webkit-backdrop-filter: blur(22px) saturate(170%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 5;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        border-radius: 14px;
        font-size: 18px;
    }

    .hero-title {
        font-size: clamp(44px, 14vw, 60px);
        line-height: 0.96;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.45;
        max-width: 22ch;
        margin: 0 auto 26px;
        color: rgba(255, 255, 255, 0.8);
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 13px 14px;
        font-size: 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
    }

    .nav-links li:last-child {
        margin-left: 0;
    }

    .nav-links .btn {
        margin-left: 0;
        margin-top: 6px;
        text-align: center;
    }

    .logo {
        gap: 9px;
        font-size: 15px;
        letter-spacing: 0.08em;
        flex: 1;
        min-width: 0;
        max-width: none;
        position: static;
    }

    .logo-badge {
        width: 42px;
        height: 42px;
        padding: 5px;
        border-radius: 14px;
        position: relative;
        z-index: 1;
    }

    .logo img {
        border-radius: 10px;
    }

    .logo-text {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        max-width: calc(100% - 120px);
        text-align: center;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
        height: auto;
        align-items: center;
        padding: 110px 0 34px;
    }

    .hero-content {
        width: 100%;
        max-width: 420px;
        padding: 18px 10px 8px;
    }

    .hero-content .btn {
        width: min(100%, 300px);
        padding: 15px 18px;
        font-size: 15px;
    }

    .hero-video {
        object-position: center center;
    }

    .video-overlay {
        background:
            linear-gradient(180deg, rgba(2, 4, 3, 0.2) 0%, rgba(5, 8, 6, 0.5) 24%, rgba(5, 8, 6, 0.78) 100%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Common Styles */
.section {
    padding: 80px 0;
}

.section.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.scroll-reveal.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.highlight {
    color: var(--primary-color);
}

/* About Section */
#about {
    background-color: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.about-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.about-card p {
    color: var(--text-muted);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item .overlay i {
    color: var(--primary-color);
    font-size: 30px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}


/* Marquee Section */
.marquee-section {
    padding: 40px 0;
    overflow: hidden;
    background: var(--secondary-color);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--primary-color);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.marquee-item:hover img {
    transform: scale(1.1);
}

/* Pause animation on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-320px * 9));
    }

    /* Adjusted based on item count */
}

/* Pricing Section */
.pricing-section {
    background-color: #000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.column-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

/* Amenities */
.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
    border: 1px solid var(--primary-color);
}

.amenity-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.amenity-item span {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

/* Pricing Cards */
.pricing-cards-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.pricing-card .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-card .period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card .features {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

.trial-card {
    border-left: 4px solid #fff;
}

.elite-card {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
    /* Highlight emphasis */
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}


/* Contact Section */
#contact {
    background: var(--secondary-color);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.map-container {
    flex: 1 1 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary-color);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    display: block;
}

.contact-info {
    flex: 1 1 300px;
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #fff;
}

.info-item p {
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

/* Footer */
.site-footer {
    background: #000;
}

.footer-top {
    padding: 60px 0 40px;
    border-top: 2px solid var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col {
    min-width: 0;
}

/* Footer Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}

.footer-logo img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Headings */
.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--primary-color);
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 10px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Footer Hours */
.footer-hours {
    list-style: none;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: var(--text-muted);
}

.footer-hours li span {
    white-space: nowrap;
}

.footer-hours li span:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-cta {
    margin-top: 20px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-muted);
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.5);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.back-to-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.3);
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-top {
        padding: 40px 0 30px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-hours li {
        justify-content: center;
        gap: 20px;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .footer-cta {
        text-align: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Responsive fixes */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column-reverse;
    }

    .map-container {
        width: 100%;
        flex: none;
    }

    .contact-info {
        width: 100%;
        text-align: center;
    }

    .info-item {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Pricing Responsive */
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item:hover .overlay i {
    transform: scale(1);
}

/* Masonry Effect */
@media (min-width: 768px) {
    .gallery-item.item-wide {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-item.item-wide {
        grid-column: span 2;
        height: 220px;
    }
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    margin-top: -30px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Founder Gateway */
.founder-link-section {
    background:
        radial-gradient(circle at top left, rgba(57, 255, 20, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.founder-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 38px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03) 50%, rgba(57, 255, 20, 0.08) 100%),
        rgba(14, 18, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.founder-link-kicker {
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
}

.founder-link-title {
    font-size: clamp(34px, 4vw, 48px);
    margin-bottom: 10px;
}

.founder-link-text {
    max-width: 700px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Founder Page */
.founder-page {
    background:
        radial-gradient(circle at top right, rgba(57, 255, 20, 0.08), transparent 26%),
        radial-gradient(circle at left center, rgba(255, 255, 255, 0.04), transparent 20%),
        #090b09;
}

.founder-page main {
    overflow: hidden;
}

.founder-btn-secondary {
    background: transparent;
    color: var(--text-color);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: none;
}

.founder-btn-secondary:hover {
    color: #000;
    background: #fff;
    border-color: #fff;
}

.founder-hero-section {
    padding-top: 160px;
    padding-bottom: 92px;
    position: relative;
}

.founder-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(57, 255, 20, 0.06), transparent 24%),
        radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.08), transparent 16%);
    pointer-events: none;
}

.founder-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.founder-copy {
    max-width: 700px;
}

.founder-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.founder-profile-chip {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px 10px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 22px;
}

.founder-profile-chip img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.14);
}

.founder-profile-chip strong,
.founder-profile-chip span {
    display: block;
}

.founder-profile-chip span {
    color: var(--text-muted);
    font-size: 14px;
}

.founder-hero-title {
    font-size: clamp(56px, 8vw, 96px);
    line-height: 0.96;
    margin-bottom: 16px;
}

.founder-hero-subtitle {
    font-size: 24px;
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.founder-hero-text {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 62ch;
}

.founder-hero-text a {
    color: var(--primary-color);
}

.founder-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 34px 0 28px;
}

.founder-stat-card {
    padding: 20px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-stat-card strong,
.founder-stat-card span {
    display: block;
}

.founder-stat-card strong {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--primary-color);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.founder-stat-card span {
    color: var(--text-muted);
    font-size: 14px;
}

.founder-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.founder-source-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
}

.founder-visual-stack {
    position: relative;
    min-height: 650px;
}

.founder-main-visual,
.founder-side-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.founder-main-visual {
    width: min(100%, 430px);
    aspect-ratio: 4 / 5;
    margin-left: auto;
}

.founder-side-visual {
    position: absolute;
    left: 0;
    bottom: 28px;
    width: min(58%, 280px);
    aspect-ratio: 4 / 3;
}

.founder-main-visual img,
.founder-side-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-floating-quote {
    position: absolute;
    right: 16px;
    bottom: 0;
    max-width: 270px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(8, 12, 10, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.founder-floating-quote span,
.founder-floating-quote strong {
    display: block;
}

.founder-floating-quote span {
    color: var(--primary-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.founder-floating-quote strong {
    font-size: 22px;
    line-height: 1.2;
}

.founder-story-section,
.founder-highlights-section {
    background: var(--secondary-color);
}

.founder-story-grid,
.founder-pillars {
    display: grid;
    gap: 22px;
}

.founder-story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.founder-story-card,
.founder-pillar-card,
.founder-highlight-card,
.founder-video-card,
.founder-cta-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.founder-story-card,
.founder-pillar-card {
    padding: 26px;
    border-radius: 24px;
}

.founder-story-card p,
.founder-pillar-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.founder-leadership-intro {
    max-width: 760px;
    margin-bottom: 34px;
}

.founder-leadership-intro .section-title {
    text-align: left;
    left: 0;
    transform: none;
    display: block;
    margin-bottom: 12px;
}

.founder-leadership-intro .section-title::after {
    margin-left: 0;
}

.founder-pillars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.founder-pillar-card i {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.founder-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.founder-highlight-card {
    border-radius: 26px;
    overflow: hidden;
    margin: 0;
}

.founder-highlight-feature {
    grid-column: span 2;
}

.founder-highlight-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.founder-highlight-feature img {
    height: 480px;
}

.founder-highlight-card figcaption {
    padding: 22px 22px 24px;
}

.founder-highlight-card span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.founder-highlight-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 10px;
}

.founder-highlight-card p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.founder-video-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    gap: 28px;
    align-items: center;
}

.founder-video-copy {
    max-width: 540px;
}

.founder-video-copy .section-title {
    text-align: left;
    left: 0;
    transform: none;
    display: block;
    margin-bottom: 20px;
}

.founder-video-copy .section-title::after {
    margin-left: 0;
}

.founder-video-copy p {
    color: var(--text-muted);
}

.founder-video-points {
    display: grid;
    gap: 12px;
    margin: 26px 0;
}

.founder-video-points li {
    position: relative;
    padding-left: 24px;
    color: var(--text-muted);
}

.founder-video-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
}

.founder-video-card {
    position: relative;
    padding: 16px;
    border-radius: 28px;
}

.founder-video-card video {
    display: block;
    width: 100%;
    border-radius: 20px;
    background: #000;
}

.founder-cta-card {
    padding: 36px 40px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(57, 255, 20, 0.08) 100%),
        rgba(12, 17, 13, 0.92);
}

.founder-cta-copy p:last-child {
    margin-bottom: 0;
    color: var(--text-muted);
}

.founder-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 1200px) {
    .founder-stat-grid,
    .founder-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .founder-story-grid,
    .founder-highlights-grid,
    .founder-video-grid {
        grid-template-columns: 1fr;
    }

    .founder-highlight-feature {
        grid-column: span 1;
    }

    .founder-highlight-feature img {
        height: 360px;
    }
}

@media (max-width: 900px) {
    .founder-link-card,
    .founder-cta-card,
    .founder-hero-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .founder-hero-grid {
        gap: 32px;
    }

    .founder-visual-stack {
        width: 100%;
        min-height: 0;
        padding-bottom: 96px;
    }

    .founder-main-visual {
        width: 100%;
        margin-left: 0;
    }

    .founder-side-visual {
        width: 46%;
    }

    .founder-floating-quote {
        right: 0;
    }
}

@media (max-width: 768px) {
    .founder-link-card {
        padding: 26px 22px;
        border-radius: 24px;
    }

    .founder-link-title {
        font-size: 32px;
    }

    .founder-hero-section {
        padding-top: 124px;
        padding-bottom: 62px;
    }

    .founder-hero-subtitle {
        font-size: 18px;
    }

    .founder-hero-text {
        font-size: 16px;
    }

    .founder-stat-grid,
    .founder-story-grid,
    .founder-pillars,
    .founder-highlights-grid {
        grid-template-columns: 1fr;
    }

    .founder-profile-chip {
        width: 100%;
        border-radius: 22px;
    }

    .founder-highlight-card img,
    .founder-highlight-feature img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .founder-video-card,
    .founder-cta-card,
    .founder-story-card,
    .founder-pillar-card {
        border-radius: 22px;
    }

    .founder-cta-card {
        padding: 28px 22px;
    }
}

@media (max-width: 480px) {
    .founder-link-card {
        gap: 18px;
    }

    .founder-profile-chip img {
        width: 46px;
        height: 46px;
    }

    .founder-hero-title {
        font-size: 46px;
    }

    .founder-visual-stack {
        padding-bottom: 76px;
    }

    .founder-side-visual {
        width: 54%;
        bottom: 16px;
    }

    .founder-floating-quote {
        max-width: 230px;
        padding: 16px 18px;
    }

    .founder-floating-quote strong {
        font-size: 18px;
    }

    .founder-actions,
    .founder-cta-actions {
        width: 100%;
    }

    .founder-actions .btn,
    .founder-cta-actions .btn,
    .founder-link-card .btn {
        width: 100%;
        text-align: center;
    }
}

/* Instagram Reels Section */
.reels-section {
    background: var(--secondary-color);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 10px;
}

.reel-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #111;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.reel-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(57, 255, 20, 0.15);
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.reel-item:hover .reel-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.reel-item.playing .reel-overlay {
    opacity: 0;
}

.reel-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(57, 255, 20, 0.3);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.reel-play-btn:hover {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.reel-play-btn i {
    margin-left: 3px;
}

.reel-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.reel-badge i {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
}

.reels-cta {
    text-align: center;
    margin-top: 40px;
}

.reels-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    font-size: 16px;
}

.reels-cta .btn-outline:hover {
    background: var(--primary-color);
    color: #000;
}

.reels-cta .btn-outline i {
    font-size: 20px;
}

@media (max-width: 1024px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .reel-play-btn {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-top: -20px;
        margin-bottom: 24px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ======= Meet Our Trainers Section ======= */
.trainers-section {
    background:
        radial-gradient(circle at top left, rgba(57, 255, 20, 0.12), transparent 24%),
        radial-gradient(circle at bottom right, rgba(57, 255, 20, 0.08), transparent 22%),
        linear-gradient(180deg, #000 0%, var(--secondary-color) 52%, #000 100%);
    overflow: hidden;
}

.trainers-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    max-width: 920px;
    margin: 0 auto;
}

.trainer-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #101010;
    border: 1px solid rgba(57, 255, 20, 0.16);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.trainer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(57, 255, 20, 0.32);
    box-shadow:
        0 22px 52px rgba(0, 0, 0, 0.4),
        0 0 28px rgba(57, 255, 20, 0.08);
}

.trainer-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #050505;
}

.trainer-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trainer-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.02) 38%,
            rgba(0, 0, 0, 0.48) 100%);
}

.trainer-info-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
}

.trainer-info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trainer-label {
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

.trainer-desc {
    max-width: 24ch;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.45;
}

.trainer-badge-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.14);
    border: 1px solid rgba(57, 255, 20, 0.3);
    box-shadow: 0 0 18px rgba(57, 255, 20, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.trainer-badge-icon i {
    color: var(--primary-color);
    font-size: 16px;
}

.trainer-card .video-audio-toggle {
    top: 14px;
    right: 14px;
}

.trainers-home-cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.trainers-home-cta .btn {
    min-width: 240px;
    text-align: center;
    animation: trainers-cta-nudge 3.8s ease-in-out infinite;
    transform-origin: center;
    box-shadow: 0 0 0 rgba(57, 255, 20, 0);
}

.trainers-home-cta .btn:hover,
.trainers-home-cta .btn:focus-visible {
    animation-play-state: paused;
}

@keyframes trainers-cta-nudge {
    0%,
    68%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        box-shadow: 0 0 0 rgba(57, 255, 20, 0);
    }

    72% {
        transform: translate3d(-5px, 0, 0) rotate(-2.2deg) scale(1.02);
    }

    76% {
        transform: translate3d(6px, 0, 0) rotate(2.3deg) scale(1.03);
        box-shadow: 0 0 28px rgba(57, 255, 20, 0.22);
    }

    80% {
        transform: translate3d(-6px, 0, 0) rotate(-2deg) scale(1.03);
    }

    84% {
        transform: translate3d(5px, -1px, 0) rotate(1.8deg) scale(1.02);
    }

    88% {
        transform: translate3d(-4px, 0, 0) rotate(-1.3deg) scale(1.01);
    }

    92% {
        transform: translate3d(3px, 0, 0) rotate(1deg) scale(1.01);
    }

    96% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.14);
    }
}

@media (prefers-reduced-motion: reduce) {
    .trainers-home-cta .btn {
        animation: none;
    }
}

.trainers-intro {
    max-width: 980px;
    margin: 0 auto 24px;
    text-align: center;
}

.trainers-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.2);
    color: var(--primary-color);
    font-family: var(--font-heading);
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.trainers-pillars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.trainers-pillars span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

.trainer-roster {
    display: grid;
    gap: 28px;
}

.trainer-profile-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 320px);
    gap: 28px;
    align-items: center;
    padding: 28px;
    border-radius: 32px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(57, 255, 20, 0.04) 58%, rgba(255, 255, 255, 0.03) 100%),
        rgba(8, 12, 9, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trainer-profile-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.14), transparent 70%);
    pointer-events: none;
}

.trainer-profile-card:hover {
    transform: translateY(-6px);
    border-color: rgba(57, 255, 20, 0.22);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.34),
        0 0 40px rgba(57, 255, 20, 0.08);
}

.trainer-profile-card--reverse .trainer-profile-copy {
    order: 2;
}

.trainer-profile-card--reverse .trainer-profile-media {
    order: 1;
    justify-self: start;
}

.trainer-profile-copy,
.trainer-profile-media {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.trainer-profile-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.trainer-profile-avatar {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    flex-shrink: 0;
}

.trainer-profile-role {
    display: inline-flex;
    margin-bottom: 6px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
}

.trainer-profile-name {
    margin-bottom: 6px;
    font-size: 40px;
    line-height: 0.95;
}

.trainer-profile-handle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    overflow-wrap: anywhere;
}

.trainer-profile-handle:hover {
    color: var(--primary-color);
}

.trainer-profile-summary,
.trainer-profile-note {
    color: var(--text-muted);
}

.trainer-profile-summary {
    max-width: 62ch;
    margin-bottom: 22px;
    font-size: 16px;
    overflow-wrap: anywhere;
}

.trainer-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.trainer-profile-tags span {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.18);
    color: #f4fff0;
    font-size: 13px;
}

.trainer-profile-note {
    margin-bottom: 22px;
    padding-left: 18px;
    border-left: 3px solid rgba(57, 255, 20, 0.7);
    font-size: 15px;
    overflow-wrap: anywhere;
}

.trainer-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.trainer-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 500;
}

.trainer-secondary-link:hover {
    color: var(--primary-color);
}

.trainer-profile-media {
    width: 100%;
    max-width: 320px;
    justify-self: end;
}

.trainer-profile-video-shell {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    background: #050505;
}

.trainer-profile-video-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.trainer-profile-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trainer-profile-badge,
.trainer-profile-video-meta {
    position: absolute;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 12px;
    color: #ffffff;
}

.trainer-profile-badge {
    top: 14px;
}

.trainer-profile-badge i {
    color: var(--primary-color);
}

.trainer-profile-video-meta {
    bottom: 14px;
    gap: 12px;
    flex-wrap: wrap;
}

.video-audio-toggle {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(5, 9, 7, 0.6);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.04em;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.video-audio-toggle i {
    color: var(--primary-color);
    font-size: 13px;
}

.video-audio-toggle:hover,
.video-audio-toggle:focus-visible {
    background: rgba(57, 255, 20, 0.12);
    border-color: rgba(57, 255, 20, 0.34);
    transform: translateY(-1px);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.32),
        0 0 18px rgba(57, 255, 20, 0.14);
}

.video-audio-toggle.is-unmuted {
    background: rgba(57, 255, 20, 0.16);
    border-color: rgba(57, 255, 20, 0.38);
}

.video-audio-toggle.is-unmuted i {
    color: #dfffdb;
}

.site-music-audio {
    display: none;
}

.site-music-toggle {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 998;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(57, 255, 20, 0.22);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(57, 255, 20, 0.08)),
        rgba(7, 12, 9, 0.82);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-music-toggle i {
    color: var(--primary-color);
}

.site-music-toggle:hover,
.site-music-toggle:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(57, 255, 20, 0.34);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.34),
        0 0 20px rgba(57, 255, 20, 0.12);
}

.site-music-toggle.is-playing {
    background:
        linear-gradient(135deg, rgba(210, 255, 201, 0.18), rgba(57, 255, 20, 0.12)),
        rgba(7, 12, 9, 0.86);
}

.site-music-toggle.is-paused-by-video {
    border-color: rgba(255, 255, 255, 0.18);
}

.site-music-toggle.is-off {
    border-color: rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
        rgba(7, 12, 9, 0.7);
}

.trainers-source-note {
    margin-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
}

.page-hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    background: #040604;
}

.page-hero .hero-video {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    object-fit: cover;
    object-position: center center;
    transform: none;
    z-index: 0;
}

.page-hero .video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 0 24px;
}

.trainers-page-hero {
    min-height: clamp(420px, 58vh, 560px);
    padding: 126px 0 48px;
    align-items: center;
}

.trainers-page-hero .hero-video {
    object-position: center 34%;
}

.trainers-page-hero .video-overlay {
    background:
        linear-gradient(180deg, rgba(3, 6, 4, 0.36) 0%, rgba(4, 7, 5, 0.52) 58%, rgba(5, 7, 5, 0.7) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.3));
}

.trainers-page-hero .hero-title {
    font-size: clamp(46px, 7vw, 82px);
    line-height: 0.95;
    margin-bottom: 14px;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.58);
}

.trainers-page-hero .hero-subtitle {
    max-width: min(920px, 90vw);
    margin: 0 auto;
    font-size: clamp(16px, 1.8vw, 24px);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.46);
}

.trainers-section {
    padding-top: 16px;
    padding-bottom: 80px;
}

.trainers-section .section-title,
.trainers-section .section-subtitle {
    display: none;
}

/* Trainers responsive */
@media (max-width: 960px) {
    .trainer-profile-card,
    .trainer-profile-card--reverse {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .trainer-profile-card--reverse .trainer-profile-copy,
    .trainer-profile-card--reverse .trainer-profile-media {
        order: initial;
    }

    .trainer-profile-media,
    .trainer-profile-card--reverse .trainer-profile-media {
        max-width: 360px;
        justify-self: stretch;
    }

    .trainer-profile-name {
        font-size: 34px;
    }

    .trainer-profile-summary {
        max-width: none;
    }

}

@media (max-width: 640px) {
    .trainers-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .trainer-card {
        border-radius: 16px;
    }

    .trainer-video-wrap {
        aspect-ratio: 9 / 14;
    }

    .trainer-info-bar {
        padding: 12px;
    }

    .trainer-label {
        font-size: 16px;
    }

    .trainer-desc {
        font-size: 11px;
        max-width: 18ch;
    }

    .trainer-badge-icon {
        display: none;
    }

    .trainers-home-cta {
        margin-top: 24px;
    }

    .trainers-home-cta .btn {
        width: 100%;
        min-width: 0;
    }

    .trainers-intro {
        margin-bottom: 16px;
    }

    .page-hero .hero-content {
        padding: 0 18px;
    }

    .trainers-page-hero {
        min-height: 440px;
        height: auto;
        padding: 92px 0 26px;
        align-items: center;
        background: #040604;
    }

    .trainers-page-hero .hero-video,
    .trainers-page-hero .video-overlay {
        display: block;
    }

    .trainers-page-hero .hero-video {
        object-position: center 28%;
    }

    .trainers-page-hero .video-overlay {
        background:
            linear-gradient(180deg, rgba(2, 5, 3, 0.5) 0%, rgba(3, 6, 4, 0.68) 42%, rgba(4, 6, 5, 0.84) 100%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.4));
    }

    .trainers-page-hero .hero-content {
        max-width: 100%;
        padding: 0 18px 18px;
    }

    .trainers-page-hero .hero-title {
        font-size: clamp(30px, 9vw, 42px);
        line-height: 0.94;
        max-width: 7.5ch;
        margin: 0 auto 10px;
    }

    .trainers-page-hero .hero-subtitle {
        max-width: 19ch;
        font-size: 13px;
        line-height: 1.45;
        margin-bottom: 0;
    }

    .trainers-section {
        padding-top: 12px;
        padding-bottom: 64px;
    }

    .trainers-kicker {
        font-size: 13px;
        letter-spacing: 0.08em;
        margin-bottom: 10px;
    }

    .trainers-pillars {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .trainers-pillars span {
        width: auto;
        text-align: center;
        padding: 10px 12px;
        font-size: 13px;
        line-height: 1.3;
    }

    .trainers-pillars span:last-child {
        grid-column: 1 / -1;
    }

    .trainer-profile-card {
        padding: 20px 18px;
        border-radius: 24px;
    }

    .trainer-profile-head {
        align-items: flex-start;
        gap: 14px;
        flex-wrap: wrap;
    }

    .trainer-profile-avatar {
        width: 68px;
        height: 68px;
        border-radius: 18px;
    }

    .trainer-profile-name {
        font-size: 30px;
    }

    .trainer-profile-head>div {
        min-width: 0;
        flex: 1 1 180px;
    }

    .trainer-profile-actions,
    .trainer-profile-actions .btn,
    .trainer-secondary-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .trainer-profile-media,
    .trainer-profile-card--reverse .trainer-profile-media {
        max-width: 100%;
    }

    .trainer-profile-video-shell {
        border-radius: 22px;
    }

    .trainer-profile-badge,
    .trainer-profile-video-meta {
        left: 12px;
    }

    .trainer-profile-video-meta {
        right: 12px;
    }

    .video-audio-toggle {
        top: 12px;
        right: 12px;
        padding: 7px 11px;
        font-size: 12px;
    }

    .site-music-toggle {
        left: 16px;
        bottom: 16px;
        padding: 10px 14px;
        font-size: 12px;
    }
}

/* ======= Facilities & Programs Section ======= */
.facilities-section {
    background: #000;
}

.facilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.facility-card {
    background: #111;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(57, 255, 20, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.facility-card:hover {
    border-color: rgba(57, 255, 20, 0.3);
    transform: translateY(-5px);
}

.facility-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: #fff;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
}

.title-icon {
    color: var(--primary-color);
    font-size: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-list li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

@media (max-width: 900px) {
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .facility-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .feature-list.two-cols {
        grid-template-columns: 1fr;
    }

    .facility-card h3 {
        font-size: 22px;
    }
}

/* Contact link styling */

/* Contact link styling */
.contact-info a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* ============================================================
   INTERIOR PAGE
   ============================================================ */

/* Page-level background */
.interior-page {
    background:
        radial-gradient(circle at top right, rgba(57, 255, 20, 0.06), transparent 28%),
        radial-gradient(circle at left 60%, rgba(255, 255, 255, 0.03), transparent 18%),
        #090b09;
}

/* ---- Hero ---- */
.interior-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
}

.interior-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.interior-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.interior-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.20) 30%,
            rgba(9, 11, 9, 0.70) 65%,
            rgba(9, 11, 9, 0.96) 100%);
}

.interior-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 72px;
    padding-top: 160px;
    max-width: 660px;
    animation: fadeIn 1.2s ease;
}

.interior-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 14px;
    margin-bottom: 18px;
}

.interior-hero-title {
    font-size: clamp(52px, 9vw, 88px);
    line-height: 0.96;
    margin-bottom: 18px;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.interior-hero-title span {
    color: var(--primary-color);
    text-shadow:
        0 0 28px rgba(57, 255, 20, 0.25),
        0 4px 24px rgba(0, 0, 0, 0.5);
}

.interior-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 300;
    max-width: 52ch;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ---- Stats Section ---- */
.interior-stats-section {
    padding: 70px 0 50px;
    background: transparent;
}

.interior-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.interior-stat-card {
    padding: 28px 18px 24px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02) 50%, rgba(57, 255, 20, 0.04) 100%),
        rgba(14, 18, 15, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.interior-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(57, 255, 20, 0.35);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.28),
        0 0 24px rgba(57, 255, 20, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.interior-stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.2);
    display: grid;
    place-items: center;
    font-size: 20px;
    color: var(--primary-color);
}

.interior-stat-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    color: #fff;
    margin-bottom: 4px;
}

.interior-stat-card span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ---- Gallery Section ---- */
.interior-gallery-section {
    padding-top: 40px;
    background: transparent;
}

.interior-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 10px;
}

.ig-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin: 0;
}

.ig-item.ig-featured {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.ig-item:hover img {
    transform: scale(1.08);
}

.ig-item figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 48px 22px 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.ig-item:hover figcaption {
    transform: translateY(0);
}

.ig-tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 4px;
}

.ig-item figcaption strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.03em;
}

/* Gallery zoom icon overlay */
.ig-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 32px;
    color: var(--primary-color);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 2;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.ig-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* ---- Equipment Section ---- */
.interior-equipment-section {
    background: var(--secondary-color);
}

.interior-equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.interior-equip-card {
    padding: 32px 26px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01) 50%, rgba(57, 255, 20, 0.03) 100%),
        rgba(10, 12, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.interior-equip-card:hover {
    transform: translateY(-6px);
    border-color: rgba(57, 255, 20, 0.3);
}

.interior-equip-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.22);
    display: grid;
    place-items: center;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.interior-equip-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.interior-equip-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- Amenities Strip ---- */
.interior-amenities-strip {
    padding: 50px 0;
    background:
        linear-gradient(180deg, var(--secondary-color) 0%, var(--bg-color) 100%);
}

.interior-amenities-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.interior-amenity-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.interior-amenity-chip i {
    color: var(--primary-color);
    font-size: 16px;
}

.interior-amenity-chip:hover {
    background: rgba(57, 255, 20, 0.12);
    border-color: rgba(57, 255, 20, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(57, 255, 20, 0.1);
}

/* ---- CTA Section ---- */
.interior-cta-section {
    padding: 60px 0 80px;
}

.interior-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 42px 46px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03) 50%, rgba(57, 255, 20, 0.08) 100%),
        rgba(14, 18, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.interior-cta-copy h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 12px;
}

.interior-cta-copy p:last-child {
    color: var(--text-muted);
    max-width: 56ch;
    margin-bottom: 0;
}

.interior-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

/* ---- Lightbox ---- */
.interior-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
}

.interior-lightbox[hidden] {
    display: none;
}

.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(57, 255, 20, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    margin-top: 18px;
    font-family: var(--font-heading);
    font-size: 18px;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lightbox-counter {
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================================
   INTERIOR PAGE - RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .interior-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .interior-equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .interior-hero {
        min-height: 92vh;
        min-height: 92svh;
    }

    .interior-hero-content {
        padding-bottom: 48px;
        padding-top: 120px;
    }

    .interior-hero-subtitle {
        font-size: 16px;
        max-width: 34ch;
    }

    .interior-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .interior-stat-card {
        padding: 20px 10px 18px;
        border-radius: 16px;
    }

    .interior-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .interior-stat-card strong {
        font-size: 17px;
    }

    .interior-stat-card span {
        font-size: 11px;
    }

    .interior-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ig-item.ig-featured {
        grid-column: span 2;
    }

    .ig-item {
        border-radius: 12px;
    }

    /* Show captions by default on mobile */
    .ig-item figcaption {
        transform: translateY(0);
        padding: 30px 14px 14px;
    }

    .ig-item::after {
        display: none;
    }

    .ig-item figcaption strong {
        font-size: 13px;
    }

    .ig-tag {
        font-size: 10px;
    }

    .interior-equipment-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .interior-equip-card {
        padding: 24px 20px;
    }

    .interior-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 34px 24px;
        border-radius: 22px;
    }

    .interior-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .interior-cta-actions .btn {
        width: 100%;
        text-align: center;
    }

    .lightbox-prev {
        left: 8px;
        width: 42px;
        height: 42px;
    }

    .lightbox-next {
        right: 8px;
        width: 42px;
        height: 42px;
    }

    .lightbox-close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .interior-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .interior-stat-card {
        padding: 16px 8px 14px;
    }

    .interior-stat-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .interior-stat-card strong {
        font-size: 15px;
    }

    .interior-amenities-row {
        gap: 8px;
    }

    .interior-amenity-chip {
        padding: 10px 16px;
        font-size: 13px;
        gap: 8px;
    }
}

/* ============================================================
   ACCESSIBILITY & SKIP LINK
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color, #39ff14);
    color: #000;
    padding: 12px 24px;
    z-index: 100000;
    font-weight: 700;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.4);
    transition: top 0.3s ease;
}
.skip-link:focus {
    top: 0;
    outline: none;
}

/* ============================================================
   PREMIUM FEATURES: TESTIMONIALS SLIDER
   ============================================================ */
.testimonials-section {
    background: #000;
    position: relative;
    overflow: hidden;
}

.testimonials-slider-wrap {
    position: relative;
    max-width: 1024px;
    margin: 40px auto 0;
    padding: 0 50px;
}

.testimonials-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-color, #39ff14);
}

.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 60px;
    color: rgba(57, 255, 20, 0.06);
    pointer-events: none;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.1);
    border: 2px solid var(--primary-color, #39ff14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color, #39ff14);
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 18px;
}

.testimonial-meta h4 {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 18px;
    color: #fff;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.testimonial-meta h4 i {
    color: #4285f4;
    font-size: 14px;
}

.testimonial-meta span {
    font-size: 13px;
    color: var(--text-muted, #888);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-color, #39ff14);
    color: #000;
    border-color: var(--primary-color, #39ff14);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--primary-color, #39ff14);
    width: 24px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .testimonials-slider-wrap {
        padding: 0 10px;
    }
    .slider-btn {
        display: none;
    }
    .testimonial-card {
        padding: 24px;
    }
}

/* ============================================================
   PREMIUM FEATURES: WEEKLY CLASS SCHEDULE
   ============================================================ */
.schedule-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 24px;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary-color, #39ff14);
    color: #000;
    border-color: var(--primary-color, #39ff14);
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.25);
}

.schedule-grid-wrap {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-day-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.schedule-day-pane.active {
    display: block;
}

.schedule-header-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr 1.5fr;
    background: rgba(57, 255, 20, 0.08);
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    padding: 16px 24px;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 15px;
    color: var(--primary-color, #39ff14);
}

.schedule-item-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr 1.5fr;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    transition: background 0.3s ease;
}

.schedule-item-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.schedule-item-row:last-child {
    border-bottom: none;
}

.schedule-time {
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-time i {
    color: var(--primary-color, #39ff14);
    font-size: 14px;
}

.schedule-class-name {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 18px;
    color: #fff;
}

.schedule-trainer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.schedule-action .btn-sm {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .schedule-header-row {
        display: none;
    }
    .schedule-item-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px;
        text-align: center;
    }
    .schedule-time {
        justify-content: center;
    }
    .schedule-action {
        margin-top: 5px;
    }
}

/* ============================================================
   PREMIUM FEATURES: FAQ ACCORDION
   ============================================================ */
.faq-section {
    background: #090b09;
}

.faq-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(57, 255, 20, 0.2);
}

.faq-item.active {
    border-color: rgba(57, 255, 20, 0.3);
    background: rgba(57, 255, 20, 0.02);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 22px 28px;
    text-align: left;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 18px;
    letter-spacing: 0.02em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.faq-question span {
    padding-right: 20px;
}

.faq-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon-box i {
    color: var(--primary-color, #39ff14);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-box {
    background: var(--primary-color, #39ff14);
}

.faq-item.active .faq-icon-box i {
    color: #000;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   PREMIUM FEATURES: ONLINE TRIAL booking form next to pricing
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 40px;
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .trial-form-card {
        padding: 24px 20px;
    }
}

.trial-form-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.trial-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #39ff14, #00ff87);
}

.trial-form-card h3 {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
}

.trial-form-card p {
    font-size: 14px;
    color: var(--text-muted, #888);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color, #39ff14);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: var(--primary-color, #39ff14);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.15);
    outline: none;
}

select.form-control option {
    background: #111;
    color: #fff;
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: var(--primary-color, #39ff14);
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
}

.form-submit-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-status {
    margin-top: 14px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-status.success {
    display: block;
    color: #39ff14;
}

.form-status.error {
    display: block;
    color: #ff3838;
}

/* ============================================================
   PREMIUM FLOATING MUSIC PLAYER INTERFACE
   ============================================================ */
.site-music-toggle {
    position: fixed;
    left: 24px;
    bottom: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-music-toggle i {
    font-size: 14px;
    color: var(--primary-color, #39ff14);
    transition: transform 0.3s ease;
}

.site-music-toggle:hover {
    border-color: var(--primary-color, #39ff14);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(57, 255, 20, 0.15);
}

.site-music-toggle.is-playing {
    border-color: var(--primary-color, #39ff14);
    background: rgba(57, 255, 20, 0.06);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(57, 255, 20, 0.2);
    animation: musicPulse 2s infinite alternate;
}

.site-music-toggle.is-playing i {
    animation: musicRotate 3s infinite linear;
}

@keyframes musicPulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 5px rgba(57, 255, 20, 0.1);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(57, 255, 20, 0.35);
    }
}

@keyframes musicRotate {
    100% {
        transform: rotate(360deg);
    }
}

.site-music-toggle.is-off {
    opacity: 0.65;
}

.site-music-toggle.is-off i {
    color: #ff3838;
}

.site-music-toggle.is-paused-by-video {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.site-music-toggle.is-paused-by-video i {
    color: #ffc107;
}

@media (max-width: 768px) {
    .site-music-toggle {
        left: 16px;
        bottom: 80px; /* Shift up on mobile so it doesn't overlap WhatsApp button */
        padding: 10px 14px;
        font-size: 11px;
    }
}

