/* ==================== RESET & GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0a0a0a;
    --secondary-white: #ffffff;
    --accent-orange: #ff6b35;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --text-gray: #b8b8b8;
    --navbar-height: 70px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-white);
    background-color: var(--primary-black);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    scroll-margin-top: var(--navbar-height);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--navbar-height);
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--secondary-white), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--secondary-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-white);
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    overflow: hidden;
    scroll-margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 107, 53, 0.03) 2px,
            rgba(255, 107, 53, 0.03) 4px
        );
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--primary-black) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--secondary-white), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--accent-orange);
    color: var(--secondary-white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background-color: var(--secondary-white);
    color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--accent-orange);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--accent-orange);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; top: 5px; }
    50% { opacity: 1; top: 10px; }
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    margin: 0 auto 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 8rem 0;
    background-color: var(--dark-gray);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Low-key facility hint */
.facility-hint {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(184, 184, 184, 0.6);
    font-style: italic;
    font-weight: 300;
}

/* Facility Photo Boxes */
.about-facilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.facility-box {
    display: block;
    text-decoration: none;
    background-color: var(--primary-black);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.facility-box:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.facility-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease;
}

.facility-box:hover .facility-image {
    transform: scale(1.05);
}

.facility-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 10, 10, 0.8));
}

.facility-image.weight-room {
    background-image: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(10, 10, 10, 0.4)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><text x="50%" y="50%" font-size="80" text-anchor="middle" dominant-baseline="middle">🏋️</text></svg>');
    background-color: var(--dark-gray);
}

.facility-image.cardio-section {
    background-image: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(10, 10, 10, 0.4)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><text x="50%" y="50%" font-size="80" text-anchor="middle" dominant-baseline="middle">🏃</text></svg>');
    background-color: var(--dark-gray);
}

.facility-image.locker-room {
    background-image: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(10, 10, 10, 0.4)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><text x="50%" y="50%" font-size="80" text-anchor="middle" dominant-baseline="middle">🚿</text></svg>');
    background-color: var(--dark-gray);
}

.facility-image.personal-training {
    background-image: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(10, 10, 10, 0.4)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><text x="50%" y="50%" font-size="80" text-anchor="middle" dominant-baseline="middle">💪</text></svg>');
    background-color: var(--dark-gray);
}

.facility-box h4 {
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-white);
    background-color: var(--primary-black);
}

/* ==================== MEMBERSHIPS SECTION ==================== */
.memberships {
    padding: 8rem 0;
    background-color: var(--primary-black);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Hide carousel arrows on desktop */
.membership-section::before,
.membership-section::after {
    display: none;
}

.membership-card {
    background-color: var(--dark-gray);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.membership-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.membership-card.premium {
    border-color: var(--accent-orange);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
}

.membership-card.premium:hover {
    transform: scale(1.05) translateY(-15px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-orange);
    color: var(--secondary-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.membership-header {
    text-align: center;
    margin-bottom: 2rem;
}

.membership-header h3 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--secondary-white);
}

.membership-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.membership-price {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.membership-price .price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-orange);
    line-height: 1;
}

.membership-price .period {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 400;
}

.membership-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.membership-features li {
    color: var(--text-gray);
    padding: 0.8rem 0;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
}

.membership-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.2rem;
}

.membership-button {
    display: block;
    text-align: center;
    padding: 1.2rem 2rem;
    background-color: var(--accent-orange);
    color: var(--secondary-white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.membership-button:hover {
    background-color: var(--secondary-white);
    color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
}

.membership-note {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.membership-note p {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
}

/* ==================== TRAINERS SECTION ==================== */
.trainers {
    padding: 8rem 0;
    background-color: var(--dark-gray);
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trainer-card {
    background-color: var(--primary-black);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.trainer-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: var(--dark-gray);
}

.trainer-image.trainer1 {
    background-image: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(10, 10, 10, 0.5)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="60" font-size="60">💪</text></svg>');
}

.trainer-image.trainer2 {
    background-image: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(10, 10, 10, 0.5)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="60" font-size="60">⚡</text></svg>');
}

.trainer-image.trainer3 {
    background-image: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(10, 10, 10, 0.5)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="60" font-size="60">🥊</text></svg>');
}

.trainer-image.trainer4 {
    background-image: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(10, 10, 10, 0.5)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="60" font-size="60">🧘</text></svg>');
}

.trainer-info {
    padding: 2rem;
}

.trainer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-white);
}

.trainer-specialty {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trainer-bio {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 8rem 0;
    background-color: var(--primary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-orange);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item strong {
    display: block;
    color: var(--secondary-white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-map {
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.contact-map iframe {
    width: 100%;
    max-width: 550px;
    height: 450px;
    border-radius: 15px;
    margin-left: 125px;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--dark-gray);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6rem;
    margin-bottom: 3rem;
    align-items: start;
    justify-items: center;
    text-align: center;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--secondary-white), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .membership-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 3rem;
    }

    .membership-card.premium {
        transform: scale(1);
    }

    .membership-card.premium:hover {
        transform: scale(1) translateY(-15px);
    }
}

/* ==================== FACILITIES SECTION ==================== */
.facilities {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
}

.facilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.facility-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background-color: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.facility-detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.facility-detail-image {
    height: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.facility-detail-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.facility-detail-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.facility-detail-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.facility-features {
    list-style: none;
    padding: 0;
}

.facility-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.facility-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

/* ==================== FACILITY PAGES ==================== */
.facility-page {
    padding: 120px 0 80px 0;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
}

.facility-gallery {
    margin-top: 3rem;
    padding: 3rem;
    background-color: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trainer-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.trainer-details h4 {
    color: var(--accent-orange);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trainer-details ul {
    list-style: none;
    padding-left: 0;
}

.trainer-details ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.trainer-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .nav-links {
        position: fixed;
        top: var(--navbar-height);
        right: -100%;
        flex-direction: column;
        background-color: var(--primary-black);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-top: 1px solid rgba(255, 107, 53, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-facilities {
        grid-template-columns: 1fr;
    }

    /* Mobile Membership Carousel */
    /* Override container padding for full-width carousel */
    .memberships .container {
        padding: 0;
    }
    
    .membership-section {
        position: relative;
        padding: 0 5px;
        margin: 20px 0;
        overscroll-behavior-x: contain;
        overscroll-behavior-y: none;
    }
    
    .membership-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 15px;
        padding: 20px 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .membership-grid::-webkit-scrollbar {
        display: none;
    }
    
    .membership-card {
        flex: 0 0 92%;
        min-width: 92%;
        max-width: 92%;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        user-select: none;
        -webkit-user-select: none;
        padding: 1.5rem 1.5rem;
        border-radius: 15px;
    }
    
    /* Compact card elements for mobile */
    .membership-header {
        margin-bottom: 1rem;
    }
    
    .membership-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .membership-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .membership-price {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .membership-price .price {
        font-size: 2.5rem;
    }
    
    .membership-price .period {
        font-size: 1rem;
    }
    
    .membership-features {
        margin-bottom: 1.5rem;
    }
    
    .membership-features li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }
    
    .membership-features li::before {
        font-size: 1rem;
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        top: -12px;
    }
    
    /* Visual Left Arrow */
    .membership-section::before {
        content: '‹';
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 48px;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 300;
        pointer-events: none;
        z-index: 1;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        line-height: 1;
    }
    
    /* Visual Right Arrow */
    .membership-section::after {
        content: '›';
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 48px;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 300;
        pointer-events: none;
        z-index: 1;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        line-height: 1;
    }

    .trainers-grid {
        grid-template-columns: 1fr;
    }

    .facility-detail-card {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        margin-left: 0;
        max-width: 100%;
        height: 350px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 1.3rem;
    }

    .membership-price .price {
        font-size: 2.5rem;
    }
}
