﻿/* Gym.css - Unique Styling for Gym Section */
:root {
    --gym-primary: #ff6b35;
    --gym-secondary: #1a237e;
    --gym-accent: #00bcd4;
    --gym-success: #4caf50;
    --gym-warning: #ff9800;
    --gym-danger: #f44336;
    --gym-light: #f5f5f5;
    --gym-dark: #212121;
    --gym-gray: #757575;
    --gym-bg-gradient: linear-gradient(135deg, #ff6b35 0%, #ff8a65 100%);
    --gym-card-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
    --gym-hover-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

/* ===== GYM HERO SECTION ===== */
.gym-hero {
    background: var(--gym-bg-gradient);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .gym-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 Z"/></svg>');
        background-size: cover;
    }

.gym-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.gym-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

    .gym-hero-title span {
        color: #ffeb3b;
    }

.gym-hero-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gym-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== GYM BUTTONS ===== */
.gym-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.gym-btn-primary {
    background: var(--gym-secondary);
    color: white;
    border-color: var(--gym-secondary);
}

    .gym-btn-primary:hover {
        background: #0d1a6b;
        border-color: #0d1a6b;
        transform: translateY(-3px);
        box-shadow: var(--gym-hover-shadow);
    }

.gym-btn-secondary {
    background: white;
    color: var(--gym-primary);
    border-color: white;
}

    .gym-btn-secondary:hover {
        background: rgba(255,255,255,0.9);
        transform: translateY(-3px);
        box-shadow: var(--gym-hover-shadow);
    }

.gym-btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

    .gym-btn-outline:hover {
        background: white;
        color: var(--gym-secondary);
        transform: translateY(-3px);
    }

.gym-btn-link {
    background: transparent;
    color: var(--gym-primary);
    padding: 10px 0;
    border: none;
}

    .gym-btn-link:hover {
        color: var(--gym-secondary);
        transform: translateX(5px);
    }

.gym-btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.gym-btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ===== GYM STATS SECTION ===== */
.gym-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gym-stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--gym-card-shadow);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

    .gym-stat-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--gym-hover-shadow);
    }

.gym-stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--gym-primary);
    font-size: 1.5rem;
}

.gym-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gym-secondary);
    margin-bottom: 10px;
    line-height: 1;
}

.gym-stat-label {
    color: var(--gym-gray);
    font-size: 1rem;
    font-weight: 500;
}

/* ===== GYM MEMBERSHIP SECTION ===== */
.gym-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.gym-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gym-secondary);
    margin-bottom: 15px;
    margin-top: 50px;
}

    .gym-section-title span {
        color: var(--gym-primary);
        position: relative;
    }

.gym-section-description {
    color: var(--gym-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.gym-membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gym-membership-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--gym-card-shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

    .gym-membership-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--gym-hover-shadow);
    }


    .gym-membership-card.gym-featured:hover {
        transform: translateY(-10px);
        box-shadow: var(--gym-hover-shadow);
    }

.gym-membership-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--gym-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gym-membership-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.gym-membership-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gym-secondary);
    margin-bottom: 15px;
}

.gym-membership-price {
    margin-bottom: 15px;
}

.gym-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gym-primary);
}

.gym-price-duration {
    color: var(--gym-gray);
    font-size: 1rem;
    font-weight: 500;
}

.gym-membership-savings {
    background: rgba(76, 175, 80, 0.1);
    color: var(--gym-success);
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gym-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.gym-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gym-dark);
    font-size: 0.95rem;
}

    .gym-feature-item i {
        color: var(--gym-success);
        font-size: 1.1rem;
    }

.gym-membership-action {
    text-align: center;
}

.gym-view-all-plans {
    text-align: center;
    margin-top: 40px;
}

/* ===== GYM TRAINERS SECTION ===== */
.gym-trainers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gym-trainer-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--gym-card-shadow);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

    .gym-trainer-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--gym-hover-shadow);
    }

.gym-trainer-image {
    height: 250px;
    overflow: hidden;
}

    .gym-trainer-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.gym-trainer-card:hover .gym-trainer-image img {
    transform: scale(1.1);
}

.gym-trainer-content {
    padding: 30px;
}

.gym-trainer-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gym-secondary);
    margin-bottom: 8px;
}

.gym-trainer-specialization {
    color: var(--gym-primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.gym-trainer-experience {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gym-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

    .gym-trainer-experience i {
        color: var(--gym-warning);
    }

.gym-trainer-bio {
    color: var(--gym-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gym-view-all-trainers {
    text-align: center;
}

/* ===== GYM FACILITIES SECTION ===== */
.gym-facilities-section {
    padding-bottom: 100px;
}

.gym-facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gym-facility-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--gym-card-shadow);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

    .gym-facility-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--gym-hover-shadow);
    }

.gym-facility-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--gym-primary);
    font-size: 2rem;
}

.gym-facility-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gym-secondary);
    margin-bottom: 15px;
}

.gym-facility-card p {
    color: var(--gym-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.gym-explore-facilities {
    text-align: center;
}

/* ===== GYM CTA SECTION ===== */
.gym-cta-section {
    background: var(--gym-bg-gradient);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .gym-cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.1)" d="M0,100 L50,0 L100,100 Z"/></svg>');
        background-size: cover;
    }

.gym-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.gym-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.gym-cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gym-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gym-cta-simple {
    padding: 80px 0;
}

/* ===== GYM PAGE HERO ===== */
.gym-page-hero {
    background: linear-gradient(135deg, var(--gym-secondary) 0%, #283593 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.gym-page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    margin-top: 60px;
}

.gym-page-hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== GYM COMPARISON TABLE (COMPACT VERSION) ===== */
.gym-comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 12px;
}

.gym-view-toggle {
    display: flex;
    background: #f0f0f0;
    border-radius: 40px;
    padding: 3px;
    margin-top: 40px;
}

.gym-view-btn {
    padding: 8px 18px;
    border: none;
    background: transparent;
    color: var(--gym-gray);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .gym-view-btn.active {
        background: var(--gym-primary);
        color: white;
    }

/* Table Container */
.gym-comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    margin-bottom: 35px;
}

/* Header */
.gym-table-header {
    display: grid;
    grid-template-columns: 220px repeat(auto-fit, minmax(160px, 1fr));
    background: var(--gym-secondary);
    color: white;
    padding: 18px;
}

.gym-table-col {
    padding: 10px;
}

/* Left Feature Column */
.gym-feature-col {
    font-weight: 600;
    font-size: 1rem;
}

/* Plan Columns */
.gym-plan-col {
    text-align: center;
}

.gym-plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gym-plan-price {
    margin-bottom: 6px;
}

.gym-price-main {
    font-size: 1.3rem;
    font-weight: 800;
}

.gym-price-period {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* Yearly Savings Tag */
.gym-yearly-savings {
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Table Body */
.gym-table-body {
    padding: 10px 0;
}

.gym-table-row {
    display: grid;
    grid-template-columns: 220px repeat(auto-fit, minmax(160px, 1fr));
    padding: 10px 18px;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
}

    .gym-table-row:last-child {
        border-bottom: none;
    }

/* Feature Text */
.gym-feature-text {
    font-weight: 500;
    color: var(--gym-dark);
    font-size: 0.95rem;
}

/* Icons */
.gym-feature-check {
    color: var(--gym-success);
    font-size: 1rem;
}

.gym-feature-cross {
    color: var(--gym-danger);
    font-size: 1rem;
}

/* Footer Buttons */
.gym-table-footer {
    display: grid;
    grid-template-columns: 220px repeat(auto-fit, minmax(160px, 1fr));
    padding: 18px;
    background: #f8f9fa;
}

    .gym-table-footer .gym-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
        border-radius: 30px;
        background: #0d1a6b;
    }

    .gym-table-footer .gym-btn:hover {
        color: white;
    }

/* Mobile Compact */
@media (max-width: 768px) {

    .gym-table-header,
    .gym-table-row,
    .gym-table-footer {
        padding: 10px;
        grid-template-columns: 1fr;
    }

    .gym-price-main {
        font-size: 1.15rem;
    }

    .gym-feature-col {
        display: none;
    }
}

/* ===== GYM BILLING SECTION ===== */
.gym-billing-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.gym-billing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--gym-card-shadow);
    position: relative;
    border: 1px solid #f0f0f0;
}

.gym-billing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gym-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gym-billing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.gym-billing-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gym-secondary);
    margin-bottom: 15px;
}

.gym-billing-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gym-primary);
    margin-bottom: 10px;
}

.gym-billing-savings {
    color: var(--gym-success);
    font-weight: 600;
    font-size: 1rem;
}

.gym-billing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .gym-billing-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        color: var(--gym-dark);
        font-size: 0.95rem;
    }

        .gym-billing-features li i {
            font-size: 1.1rem;
        }

            .gym-billing-features li i.fa-check {
                color: var(--gym-success);
            }

            .gym-billing-features li i.fa-times {
                color: var(--gym-danger);
            }

/* ===== GYM FAQ SECTION ===== */
.gym-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.gym-faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--gym-card-shadow);
    border: 1px solid #f0f0f0;
}

.gym-faq-question {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gym-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .gym-faq-question:hover {
        background: #f8f9fa;
    }

    .gym-faq-question i {
        transition: transform 0.3s ease;
    }

    .gym-faq-question.active i {
        transform: rotate(180deg);
    }

.gym-faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .gym-faq-answer.open {
        padding: 0 30px 25px 30px;
        max-height: 500px;
    }

    .gym-faq-answer p {
        color: var(--gym-gray);
        line-height: 1.6;
        margin: 0;
    }

/* ===== GYM TRAINER FILTER ===== */
.gym-trainers-filter {
    padding: 40px 0;
}

.gym-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gym-filter-search {
    display: flex;
    flex: 1;
    max-width: 400px;
}

.gym-search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

    .gym-search-input:focus {
        border-color: var(--gym-primary);
    }

.gym-search-btn {
    background: var(--gym-primary);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

    .gym-search-btn:hover {
        background: #e65a2b;
    }

.gym-filter-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gym-filter-tag {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-weight: 600;
    color: var(--gym-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .gym-filter-tag:hover,
    .gym-filter-tag.active {
        background: var(--gym-primary);
        color: white;
        border-color: var(--gym-primary);
    }

/* ===== GYM TRAINER EXPANDED CARD ===== */
.gym-trainer-card-expanded {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--gym-card-shadow);
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.gym-trainer-card-header {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: linear-gradient(135deg, var(--gym-secondary) 0%, #283593 100%);
    color: white;
}

.gym-trainer-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
}

    .gym-trainer-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gym-trainer-basic-info {
    flex: 1;
}

    .gym-trainer-basic-info .gym-trainer-name {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: white;
    }

    .gym-trainer-basic-info .gym-trainer-experience {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
    }

.gym-trainer-card-body {
    padding: 30px;
}

.gym-trainer-specializations {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.gym-specialization-tag {
    background: rgba(255, 107, 53, 0.1);
    color: var(--gym-primary);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.gym-trainer-bio {
    color: var(--gym-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.gym-trainer-certifications,
.gym-trainer-availability {
    margin-bottom: 25px;
}

    .gym-trainer-certifications h4,
    .gym-trainer-availability h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--gym-secondary);
        margin-bottom: 15px;
    }

.gym-availability-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gym-availability-slot {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gym-availability-day {
    font-weight: 600;
    color: var(--gym-secondary);
}

.gym-availability-time {
    color: var(--gym-primary);
    font-weight: 500;
}

.gym-trainer-card-footer {
    padding: 25px 30px;
    background: #f8f9fa;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    border-top: 1px solid #e0e0e0;
}

/* ===== GYM NO RESULTS ===== */
.gym-no-results {
    text-align: center;
    padding: 80px 20px;
}

.gym-no-results-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--gym-primary);
    font-size: 3rem;
}

.gym-no-results h3 {
    font-size: 1.8rem;
    color: var(--gym-secondary);
    margin-bottom: 15px;
}

.gym-no-results p {
    color: var(--gym-gray);
    font-size: 1.1rem;
}

/* ===== GYM BECOME TRAINER ===== */
.gym-become-trainer {
    background: var(--gym-bg-gradient);
    color: white;
    padding: 80px 0;
}

.gym-become-trainer-content {
    display: grid;
    grid-template-columns: 1fr 200px;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.gym-become-trainer-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.gym-become-trainer-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.gym-become-trainer-image {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* ===== GYM MODAL ===== */
.gym-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .gym-modal.open {
        display: flex;
    }

.gym-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: gym-modal-fade 0.3s ease;
}

@keyframes gym-modal-fade {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gym-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
}

    .gym-modal-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--gym-secondary);
        margin: 0;
    }

.gym-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--gym-gray);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

    .gym-modal-close:hover {
        color: var(--gym-danger);
    }

.gym-modal-body {
    padding: 30px;
}

/* ===== GYM FORM STYLES ===== */
.gym-form-group {
    margin-bottom: 25px;
}

    .gym-form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--gym-secondary);
    }

.gym-form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

    .gym-form-control:focus {
        border-color: var(--gym-primary);
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    }

.gym-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gym-form-submit {
    text-align: center;
    margin-top: 40px;
}

.gym-validation-error {
    color: var(--gym-danger);
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

/* ===== GYM ALERTS ===== */
.gym-alert {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.gym-alert-success {
    background: rgba(76, 175, 80, 0.1);
    color: var(--gym-success);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

    .gym-alert-success i {
        font-size: 1.2rem;
    }

/* ===== GYM TRAINER HERO ===== */
.gym-trainer-hero-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.gym-trainer-hero-image {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: var(--gym-card-shadow);
}

    .gym-trainer-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gym-trainer-hero-info .gym-trainer-hero-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
}

.gym-trainer-hero-specialization {
    font-size: 1.3rem;
    color: #ffeb3b;
    font-weight: 600;
    margin-bottom: 20px;
}

.gym-trainer-hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.gym-trainer-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

    .gym-trainer-stat i {
        color: #ffeb3b;
        font-size: 1.2rem;
    }

.gym-trainer-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
}

/* ===== GYM BOOKING FORM ===== */
.gym-booking-section {
    padding: 80px 0;
}

.gym-booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--gym-card-shadow);
    border: 1px solid #f0f0f0;
}

.gym-booking-form {
    margin-top: 30px;
}

/* ===== GYM SCHEDULE TABLE ===== */
.gym-schedule-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--gym-card-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.gym-schedule-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--gym-secondary);
    color: white;
    padding: 20px 30px;
    font-weight: 600;
}

.gym-schedule-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 20px 30px;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

    .gym-schedule-row:last-child {
        border-bottom: none;
    }

.gym-availability-badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.gym-available {
    background: rgba(76, 175, 80, 0.1);
    color: var(--gym-success);
}

/* ===== GYM SESSION TYPES ===== */
.gym-session-types {
    padding: 80px 0;
}

.gym-session-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.gym-session-card {
    background: white;
    padding: 15px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--gym-card-shadow);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

    .gym-session-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--gym-hover-shadow);
    }

.gym-session-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--gym-primary);
    font-size: 2rem;
}

.gym-session-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gym-secondary);
    margin-bottom: 15px;
}

.gym-session-card p {
    color: var(--gym-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.gym-session-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gym-primary);
}

/* ===== GYM ENROLLMENT FORM ===== */
.gym-enrollment-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--gym-card-shadow);
    border: 1px solid #f0f0f0;
}

.gym-enrollment-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

    .gym-enrollment-summary h3 {
        font-size: 1.3rem;
        color: var(--gym-secondary);
        margin-bottom: 20px;
    }

.gym-summary-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gym-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0;
}

    .gym-summary-item:last-child {
        border-bottom: none;
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--gym-primary);
    }

.gym-summary-label {
    color: var(--gym-gray);
}

.gym-summary-value {
    font-weight: 600;
    color: var(--gym-secondary);
}

.gym-terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 30px 0;
}

    .gym-terms-checkbox input[type="checkbox"] {
        margin-top: 5px;
    }

    .gym-terms-checkbox label {
        font-size: 0.95rem;
        color: var(--gym-gray);
        line-height: 1.5;
    }

    .gym-terms-checkbox a {
        color: var(--gym-primary);
        text-decoration: none;
        font-weight: 600;
    }

        .gym-terms-checkbox a:hover {
            text-decoration: underline;
        }


/* ===== GYM SUCCESS PAGE ===== */
.gym-success-section {
    text-align: center;
    padding: 100px 20px;
    background: #f8f9fa;
}

.gym-success-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: var(--gym-success);
    font-size: 4rem;
}

.gym-success-title {
    font-size: 2rem;
    color: var(--gym-secondary);
    margin-bottom: 20px;
}

.gym-success-description {
    font-size: 1.2rem;
    color: var(--gym-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.gym-success-details {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

    .gym-success-details h3 {
        font-size: 1.5rem;
        color: var(--gym-secondary);
        margin-bottom: 25px;
        text-align: center;
    }

.gym-success-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gym-success-info-item {
    padding: 15px 0;
    border-bottom: 1px dashed #e0e0e0;
}

    .gym-success-info-item:last-child {
        border-bottom: none;
    }

.gym-success-info-label {
    color: var(--gym-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.gym-success-info-value {
    font-weight: 600;
    color: var(--gym-secondary);
    font-size: 1.1rem;
}

.gym-success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .gym-hero-title {
        font-size: 2.8rem;
    }

    .gym-section-title {
        font-size: 2.2rem;
    }

    .gym-membership-card.gym-featured {
        transform: none;
    }

        .gym-membership-card.gym-featured:hover {
            transform: translateY(-10px);
        }

    .gym-trainer-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .gym-trainer-hero-image {
        margin: 0 auto;
    }

    .gym-contact-grid {
        grid-template-columns: 1fr;
    }

    .gym-become-trainer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .gym-become-trainer-image {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .gym-hero {
        padding: 80px 0;
    }

    .gym-hero-title {
        font-size: 2.3rem;
    }

    .gym-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

        .gym-hero-buttons .gym-btn {
            width: 100%;
            max-width: 300px;
        }

    .gym-section-title {
        font-size: 1.8rem;
    }

    .gym-stats-grid,
    .gym-membership-grid,
    .gym-trainers-grid,
    .gym-facilities-grid {
        grid-template-columns: 1fr;
    }

    .gym-table-header,
    .gym-table-row,
    .gym-table-footer {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .gym-feature-col {
        display: none;
    }

    .gym-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .gym-billing-card.gym-featured {
        transform: none;
    }

    .gym-trainer-card-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .gym-trainer-card-footer {
        flex-direction: column;
    }

    .gym-booking-form-container {
        padding: 30px;
    }

    .gym-enrollment-form {
        padding: 30px;
    }

    .gym-summary-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .gym-hero-title {
        font-size: 2rem;
    }

    .gym-page-hero-title {
        font-size: 2.2rem;
    }

    .gym-cta-title {
        font-size: 2rem;
    }

    .gym-cta-buttons {
        flex-direction: column;
    }

        .gym-cta-buttons .gym-btn {
            width: 100%;
        }

    .gym-comparison-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gym-success-info {
        grid-template-columns: 1fr;
    }

    .gym-success-actions {
        flex-direction: column;
    }

        .gym-success-actions .gym-btn {
            width: 100%;
        }
}

/* ===== ANIMATIONS ===== */
@keyframes gym-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gym-fade-in {
    animation: gym-fade-in 0.6s ease forwards;
}

.gym-delay-1 {
    animation-delay: 0.2s;
}

.gym-delay-2 {
    animation-delay: 0.4s;
}

.gym-delay-3 {
    animation-delay: 0.6s;
}

/* ===== UTILITY CLASSES ===== */
.gym-text-primary {
    color: var(--gym-primary) !important;
}

.gym-text-secondary {
    color: var(--gym-secondary) !important;
}

.gym-shadow {
    box-shadow: var(--gym-card-shadow) !important;
}

.gym-rounded {
    border-radius: 20px !important;
}

.gym-mt-1 {
    margin-top: 10px;
}

.gym-mt-2 {
    margin-top: 20px;
}

.gym-mt-3 {
    margin-top: 30px;
}

.gym-mt-4 {
    margin-top: 40px;
}

.gym-mt-5 {
    margin-top: 50px;
}

.gym-mb-1 {
    margin-bottom: 10px;
}

.gym-mb-2 {
    margin-bottom: 20px;
}

.gym-mb-3 {
    margin-bottom: 30px;
}

.gym-mb-4 {
    margin-bottom: 40px;
}

.gym-mb-5 {
    margin-bottom: 50px;
}

/* Enrollment Section */
.gym-section-subtitle {
    font-size: 1.5rem;
    color: var(--gym-secondary);
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gym-light);
}

.gym-form-note {
    color: var(--gym-gray);
    font-size: 0.9rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .gym-form-note i {
        color: var(--gym-accent);
    }

/* Features Grid */
.gym-features-included {
    background: #f8f9fa;
    padding: 80px 0;
}

.gym-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gym-feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--gym-card-shadow);
    transition: transform 0.3s ease;
}

    .gym-feature-item:hover {
        transform: translateY(-5px);
    }

    .gym-feature-item i {
        color: var(--gym-primary);
        margin-left: 10px;
    }

    .gym-feature-item h3 {
        font-size: 1.3rem;
        color: var(--gym-secondary);
        margin-bottom: 10px;
    }

    .gym-feature-item p {
        color: var(--gym-gray);
        font-size: 0.95rem;
        line-height: 1.6;
    }

/* Help Section */
.gym-help-section {
    padding: 60px 0;
}

.gym-help-content {
    background: linear-gradient(135deg, var(--gym-secondary) 0%, #283593 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
}

.gym-help-icon {
    font-size: 3rem;
    opacity: 0.8;
}

.gym-help-text {
    flex: 1;
}

    .gym-help-text h3 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .gym-help-text p {
        opacity: 0.9;
        font-size: 1.1rem;
    }

.gym-help-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Selection Page */
.gym-membership-cards-select {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gym-membership-card-select {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--gym-card-shadow);
    transition: all 0.3s ease;
    position: relative;
}

    .gym-membership-card-select:hover {
        transform: translateY(-10px);
        box-shadow: var(--gym-hover-shadow);
    }

.gym-membership-badge-select {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--gym-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gym-membership-header-select {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.gym-membership-name-select {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gym-secondary);
    margin-bottom: 15px;
}

.gym-price-amount-select {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gym-primary);
}

.gym-price-duration-select {
    color: var(--gym-gray);
    font-size: 1rem;
    font-weight: 500;
}

.gym-membership-savings-select {
    background: rgba(76, 175, 80, 0.1);
    color: var(--gym-success);
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gym-membership-description-select {
    color: var(--gym-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.gym-membership-features-select h4 {
    font-size: 1.2rem;
    color: var(--gym-secondary);
    margin-bottom: 15px;
}

.gym-membership-features-select ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.gym-membership-features-select li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gym-dark);
    font-size: 0.95rem;
}

    .gym-membership-features-select li i {
        color: var(--gym-success);
        font-size: 1.1rem;
    }

.gym-membership-action-select {
    text-align: center;
}

/* Comparison Table */
.gym-membership-comparison-select {
    margin-top: 60px;
}

.gym-comparison-title {
    font-size: 1.8rem;
    color: var(--gym-secondary);
    margin-bottom: 30px;
    text-align: center;
}

.gym-comparison-table-select {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--gym-card-shadow);
}

.gym-comparison-row {
    display: grid;
    grid-template-columns: 300px repeat(auto-fit, minmax(200px, 1fr));
    padding: 20px 30px;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

    .gym-comparison-row:last-child {
        border-bottom: none;
    }

.gym-comparison-header-select {
    background: var(--gym-secondary);
    color: white;
}

.gym-comparison-col {
    padding: 10px;
}

.gym-comparison-feature {
    font-weight: 600;
}

.gym-comparison-plan {
    text-align: center;
}

.gym-plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gym-plan-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gym-primary);
}

.gym-feature-name {
    font-weight: 500;
    color: var(--gym-dark);
}

.gym-check-yes {
    color: var(--gym-success);
    font-size: 1.2rem;
}

.gym-check-no {
    color: var(--gym-danger);
    font-size: 1.2rem;
}

/* Choose Help */
.gym-choose-help {
    background: linear-gradient(135deg, var(--gym-primary) 0%, #ff8a65 100%);
    color: white;
    padding: 40px 0;
    margin-top: 60px;
}

.gym-choose-help-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

    .gym-choose-help-content h3 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .gym-choose-help-content p {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 40px;
        line-height: 1.6;
    }

.gym-choose-help-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Success Page */
.gym-success-next-steps {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

    .gym-success-next-steps h3 {
        font-size: 1.8rem;
        color: var(--gym-secondary);
        text-align: center;
        margin-bottom: 40px;
    }

.gym-steps-timeline {
    position: relative;
}

    .gym-steps-timeline::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--gym-light);
    }

.gym-step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.gym-step-number {
    width: 60px;
    height: 60px;
    background: var(--gym-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
    flex-shrink: 0;
}

.gym-step-content {
    flex: 1;
    padding-top: 10px;
}

    .gym-step-content h4 {
        font-size: 1.3rem;
        color: var(--gym-secondary);
        margin-bottom: 10px;
    }

    .gym-step-content p {
        color: var(--gym-gray);
        line-height: 1.6;
    }

/* Facilities Page */
.gym-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--gym-light) 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--gym-primary);
}

.gym-tour-section {
    background: linear-gradient(135deg, var(--gym-secondary) 0%, #283593 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.gym-tour-content {
    max-width: 800px;
    margin: 0 auto;
}

.gym-tour-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gym-tour-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Contact Page */
.gym-contact-section {
    padding: 80px 0;
    background: white;
}

.gym-contact-title, .gym-contact-form-title {
    font-size: 1.8rem;
    color: var(--gym-secondary);
    margin-bottom: 20px;
}

.gym-contact-description {
    color: var(--gym-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.gym-contact-social {
    margin-top: 40px;
}

    .gym-contact-social h3 {
        font-size: 1.2rem;
        color: var(--gym-secondary);
        margin-bottom: 15px;
    }

.gym-social-links {
    display: flex;
    gap: 15px;
}

.gym-social-link {
    width: 40px;
    height: 40px;
    background: var(--gym-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gym-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

    .gym-social-link:hover {
        background: var(--gym-primary);
        color: white;
        transform: translateY(-3px);
    }

.gym-map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gym-map-container {
    margin-bottom: 40px;
}

.gym-location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gym-location-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--gym-card-shadow);
}

    .gym-location-card i {
        font-size: 2.5rem;
        color: var(--gym-primary);
        margin-bottom: 20px;
    }

    .gym-location-card h3 {
        font-size: 1.3rem;
        color: var(--gym-secondary);
        margin-bottom: 10px;
    }

    .gym-location-card p {
        color: var(--gym-gray);
        line-height: 1.6;
    }

.gym-contact-faq {
    padding: 80px 0;
    background: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gym-help-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .gym-help-actions {
        justify-content: center;
    }

    .gym-choose-help-actions {
        flex-direction: column;
    }

        .gym-choose-help-actions .gym-btn {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

    .gym-success-actions {
        flex-direction: column;
    }

        .gym-success-actions .gym-btn {
            width: 100%;
            max-width: 300px;
            margin: 0 auto 15px;
        }

    .gym-steps-timeline::before {
        left: 30px;
    }

    .gym-step-item {
        gap: 20px;
    }

    .gym-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .gym-comparison-row {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .gym-comparison-feature {
        display: none;
    }

    .gym-plan-name {
        font-size: 1rem;
    }

    .gym-plan-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .gym-membership-cards-select {
        grid-template-columns: 1fr;
    }

    .gym-features-grid {
        grid-template-columns: 1fr;
    }

    .gym-location-info {
        grid-template-columns: 1fr;
    }

    .gym-success-info {
        grid-template-columns: 1fr;
    }
}

/* ================================
   COMPACT MEMBERSHIP CARD STYLE
================================ */
.gym-membership-grid {
    gap: 25px;
}

.gym-membership-card {
    padding: 15px;
    border-radius: 14px;
    transform: scale(1);
}

.gym-membership-header {
    padding: 12px 10px;
}

.gym-membership-name {
    font-size: 18px;
    margin-bottom: 8px;
}

.gym-membership-price {
    font-size: 16px;
    margin-bottom: 6px;
}

.gym-price-amount {
    font-size: 20px;
    font-weight: 700;
}

.gym-price-duration {
    font-size: 13px;
}

/* Savings Badge Smaller */
.gym-membership-savings {
    font-size: 12px;
    padding: 6px 8px;
}

/* Feature list smaller + compact spacing */
.gym-feature-list li {
    font-size: 14px;
    padding: 6px 0;
}

/* Button smaller */
.gym-membership-action .gym-btn {
    padding: 8px 14px;
    font-size: 13px;
}

/* Mobile Optimization */
@media(max-width: 768px) {
    .gym-membership-card {
        padding: 12px;
    }

    .gym-price-amount {
        font-size: 18px;
    }

    .gym-membership-name {
        font-size: 16px;
    }
}
/* Make cards equal + keep button visible */
.gym-membership-card {
    display: flex;
    flex-direction: column;
}

/* Push button to bottom always */
.gym-membership-action {
    margin-top: auto;
}

    /* Ensure button is always visible */
    .gym-membership-action .gym-btn {
        display: inline-block;
    }
.gym-trainer-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.gym-trainer-card-footer {
    margin-top: auto;
    padding: 25px 0;
    text-align: center;
}
    .gym-trainer-card-footer .gym-btn {
        display: inline-block;
        margin: 0 auto;
    }

.gym-trainer-card-body {
    padding-bottom: 5px !important;
    margin-bottom: 0 !important;
}

.gym-trainer-availability {
    margin-bottom: 8px !important;
}

.gym-trainer-card-footer {
    padding-top: 20px !important;
}

.gym-availability-slot {
    padding: 6px 10px !important;
}

.gym-summary-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
    row-gap: 12px;
}

.gym-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gym-summary-label {
    font-weight: 600;
    color: #555;
}

.gym-summary-value {
    font-weight: 700;
    color: #0c1a6b;
}

.gym-text-primary {
    color: #ff7a2f !important;
}
/* Membership Summary - Single Line Labels */
.gym-summary-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 35px;
}

.gym-summary-item {
    display: grid;
    grid-template-columns: 160px auto; /* Increased label width */
    align-items: center;
    column-gap: 8px;
    border-bottom: 1px dashed #e0e0e0;
    padding: 6px 0;
}

    .gym-summary-item:last-child {
        border-bottom: none;
    }

.gym-summary-label {
    font-weight: 600;
    color: #666;
    white-space: nowrap; /* 🔥 IMPORTANT */
}

.gym-summary-value {
    font-weight: 700;
    color: #0c1a6b;
    text-align: left;
    white-space: nowrap;
}

.gym-text-primary {
    color: #ff7a2f !important;
}
.gym-summary-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 12px;
}

.gym-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gym-summary-label {
    font-weight: 600;
    color: #333;
}

.gym-summary-value {
    color: #0b2c74;
    font-weight: 600;
    white-space: nowrap;
}
/* --- FIX MEMBERSHIP SUMMARY LAYOUT --- */
.gym-summary-details {
    display: grid;
    grid-template-columns: 1fr; /* Single column list */
    row-gap: 10px;
}

.gym-summary-item {
    display: grid;
    grid-template-columns: 160px 1fr; /* Label + Value columns */
    align-items: center;
    border-bottom: 1px dashed #ddd;
    padding: 6px 0;
}

    .gym-summary-item:last-child {
        border-bottom: none;
    }

/* Left label */
.gym-summary-label {
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}

/* Right value */
.gym-summary-value {
    font-weight: 700;
    color: #0b2c74;
    text-align: right;
    white-space: normal; /* 🔥 Allow wrapping */
}

.gym-text-primary {
    color: #ff7a2f !important;
}

/* Mobile - perfect alignment */
@media(max-width:768px) {
    .gym-summary-item {
        grid-template-columns: 140px 1fr;
    }
}

/* ===============================
   UNIQUE FEATURES INCLUDED STYLE
   =============================== */

.gym-feature-box-section {
    padding: 80px 0;
}

.gym-feature-box-header {
    text-align: center;
    margin-bottom: 40px;
}

.gym-feature-box-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a237e;
}

    .gym-feature-box-title span {
        color: #ff6b35;
    }

.gym-feature-box-description {
    color: #777;
    font-size: 1.1rem;
}

/* Grid */
.gym-feature-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card */
.gym-feature-box-item {
    background: white;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease-in-out;
}

    /* Hover */
    .gym-feature-box-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(255,107,53,0.2);
    }

    /* Icon */
    .gym-feature-box-item i {
        font-size: 30px;
        color: #ff6b35;
        margin-bottom: 12px;
    }

    /* Title */
    .gym-feature-box-item h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #1a237e;
        margin-bottom: 8px;
    }

    /* Description */
    .gym-feature-box-item p {
        color: #666;
        line-height: 1.5;
        margin: 0;
    }

/* Responsive */
@media(max-width:768px) {
    .gym-feature-box-title {
        font-size: 2rem;
    }
}

.gym-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease;
}

    .gym-faq-answer.open {
        max-height: 500px;
        padding-bottom: 20px;
    }
/* Make all membership select cards equal height */
.gym-membership-card-select {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Push button area to bottom always */
.gym-membership-action-select {
    margin-top: auto;
    text-align: center;
    padding-top: 20px;
}


/* Success Page - Classic Style */
.gym-success-section {
    padding: 110px 0;
    background: #fafafa;
}

/* Success Icon */
.gym-success-icon {
    text-align: center;
    margin-bottom: 25px;
}

    .gym-success-icon i {
        font-size: 90px;
        color: #12c977;
    }

/* Headings */
.gym-success-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.gym-success-description {
    text-align: center;
    font-size: 16px;
    color: #555;
    max-width: 650px;
    margin: 0 auto 35px auto;
    line-height: 1.7;
}

/* Details Box */
.gym-success-details {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    padding: 25px;
    max-width: 850px;
    margin: 0 auto 30px auto;
}

    .gym-success-details h3 {
        margin-bottom: 20px;
        font-size: 20px;
        color: #2c3e50;
        text-align: center;
    }

/* Grid Layout */
.gym-success-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gym-success-info-item {
    background: #f7f9fc;
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid #e6ecf5;
}

.gym-success-info-label {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}

.gym-success-info-value {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.gym-text-primary {
    color: #1b6dc1 !important;
}

/* Success Message Box */
.gym-alert-success {
    max-width: 850px;
    margin: 0 auto 25px auto;
    padding: 14px 18px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    color: #047857;
    font-size: 15px;
    margin-top: 50px;
}

/* Button */
.gym-success-actions {
    text-align: center;
}

    .gym-success-actions .gym-btn {
        padding: 12px 32px;
        border-radius: 8px;
        font-size: 15px;
    }

/* Mobile Responsive */
@media (max-width: 992px) {
    .gym-success-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gym-success-title {
        font-size: 26px;
    }

    .gym-success-description {
        font-size: 14px;
    }

    .gym-success-info {
        grid-template-columns: 1fr;
    }

    .gym-success-section {
        padding: 45px 0;
    }

    .gym-success-details {
        padding: 18px;
    }
}


/* ===== FACILITIES PAGE - IMAGE STYLES ===== */

.gym-facility-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .gym-facility-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
    }

.gym-facility-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gym-facility-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gym-facility-card:hover .gym-facility-img {
    transform: scale(1.1);
}

.gym-facility-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gym-secondary);
    margin: 20px 20px 10px 20px;
    line-height: 1.3;
}

.gym-facility-card p {
    color: var(--gym-gray);
    line-height: 1.6;
    margin: 0 20px 15px 20px;
    font-size: 0.95rem;
}

/* Facility Features List */
.gym-facility-detail-features {
    list-style: none;
    padding: 0 20px 20px 20px;
    margin: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

    .gym-facility-detail-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
        font-size: 0.9rem;
        color: var(--gym-dark);
    }

    .gym-facility-detail-features i {
        color: var(--gym-primary);
        font-size: 0.9rem;
        min-width: 16px;
    }

/* Stats Section */
.gym-stats-section {
    padding: 50px 0;
}

.gym-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gym-stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

    .gym-stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.gym-stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(40, 53, 147, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gym-secondary);
    font-size: 1.8rem;
}

.gym-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gym-secondary);
    margin-bottom: 10px;
    line-height: 1;
}

.gym-stat-label {
    color: var(--gym-gray);
    font-size: 1rem;
    font-weight: 500;
}

/* Section Header */
.gym-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.gym-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gym-secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .gym-section-title span {
        color: var(--gym-primary);
        position: relative;
    }

.gym-section-description {
    color: var(--gym-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Facility Categories */
.gym-facility-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* CTA Section */
.gym-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gym-secondary) 0%, #283593 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .gym-cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,100 L50,0 L100,100 Z"/></svg>');
        background-size: cover;
    }

.gym-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.gym-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.gym-cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.gym-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Feature Box Section */
.gym-feature-box-section {
    padding: 80px 0;
}

.gym-feature-box-header {
    text-align: center;
    margin-bottom: 50px;
}

.gym-feature-box-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gym-secondary);
    margin-bottom: 15px;
}

    .gym-feature-box-title span {
        color: var(--gym-primary);
    }

.gym-feature-box-description {
    color: var(--gym-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.gym-feature-box-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

    .gym-feature-box-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(255, 107, 53, 0.1);
    }

    .gym-feature-box-item i {
        font-size: 2.5rem;
        color: var(--gym-primary);
        margin-bottom: 20px;
    }

    .gym-feature-box-item h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--gym-secondary);
        margin-bottom: 15px;
    }

    .gym-feature-box-item p {
        color: var(--gym-gray);
        line-height: 1.6;
        margin: 0;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .gym-facility-category {
        padding: 60px 0;
    }

    .gym-section-title,
    .gym-feature-box-title,
    .gym-cta-title {
        font-size: 2rem;
    }

    .gym-facility-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gym-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

        .gym-cta-buttons .gym-btn {
            width: 100%;
            max-width: 300px;
        }

    .gym-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gym-section-title,
    .gym-feature-box-title,
    .gym-cta-title {
        font-size: 1.8rem;
    }

    .gym-hero-title {
        font-size: 2.2rem;
    }

    .gym-stat-number {
        font-size: 2rem;
    }

    .gym-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation for fade in */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gym-facility-card,
.gym-stat-card,
.gym-feature-box-item {
    animation: fadeInUp 0.6s ease forwards;
}

.gym-trainer-schedule{
    padding-bottom: 50px;
}

.gym-facility-card {
    position: relative;
}

.gym-facility-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: inline-block;
    background: var(--gym-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: .5px;
    box-shadow: 0 8px 18px rgba(91, 43, 224, .25);
}

.gym-facility-category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 20px;
}
.gym-availability-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.gym-available {
    background: #e6f9ea;
    color: #1e8f3b;
}

.gym-closed {
    background: #ffe8e8;
    color: #d93025;
}


/* ================================
   MOBILE MEMBERSHIP TABLE FIX
   ================================ */
@media (max-width: 768px) {

    /* Scroll container */
    .gym-comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    /* Force rows to stay in one line */
    .gym-table-header,
    .gym-table-row,
    .gym-table-footer {
        display: flex;
        width: max-content;
        min-width: 100%;
        padding: 10px;
    }

    /* Feature column (FIRST COLUMN) */
    .gym-feature-col {
        min-width: 160px;
        max-width: 160px;
        flex-shrink: 0;
        font-weight: 600;
        border-right: 1px solid #e5e7eb;
    }

    /* Plan columns */
    .gym-plan-col {
        min-width: 200px;
        flex-shrink: 0;
        text-align: center;
        border-right: 1px solid #e5e7eb;
    }

    /* Header plan name */
    .gym-plan-name {
        font-size: 1rem;
        font-weight: 600;
    }

    /* Price */
    .gym-plan-price {
        font-size: 0.95rem;
        margin-top: 6px;
    }

    /* Row spacing */
    .gym-table-col {
        padding: 14px 12px;
        white-space: nowrap;
    }

    /* Icons */
    .gym-feature-check,
    .gym-feature-cross {
        font-size: 1rem;
    }

    /* Footer buttons */
    .gym-table-footer .gym-btn {
        width: 100%;
        padding: 10px;
        font-size: 0.9rem;
    }

    /* Swipe hint */
    .gym-comparison-table::after {
        content: "← Swipe left / right to compare →";
        display: block;
        text-align: center;
        font-size: 0.8rem;
        color: #6b7280;
        padding: 10px 0;
    }
}
/* ================================
   FORCE FEATURES COLUMN VISIBILITY
   ================================ */
@media (max-width: 768px) {

    /* Ensure table rows stay horizontal */
    .gym-table-header,
    .gym-table-row,
    .gym-table-footer {
        display: flex;
        flex-wrap: nowrap;
    }

    /* FORCE FEATURES COLUMN TO SHOW */
    .gym-feature-col {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-width: 160px;
        max-width: 160px;
        flex: 0 0 160px;
        font-weight: 600;
        border-right: 1px solid #e5e7eb;
        position: relative;
        z-index: 2;
    }

    /* Ensure plan columns don’t override it */
    .gym-plan-col {
        min-width: 200px;
        flex: 0 0 200px;
        text-align: center;
    }

    /* Feature text visibility */
    .gym-feature-text {
        display: block;
        white-space: normal;
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* =========================================
   MOBILE FIX – MEMBERSHIP COMPARISON (SELECT)
   ========================================= */
@media (max-width: 768px) {

    /* Enable horizontal scroll */
    .gym-comparison-table-select {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        margin-top: 15px;
    }

    /* Force rows to stay in one line */
    .gym-comparison-row {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        min-width: 100%;
    }

    /* FEATURES COLUMN – MUST SHOW */
    .gym-comparison-feature {
        min-width: 170px;
        max-width: 170px;
        flex: 0 0 170px;
        background: #f8f9fa;
        font-weight: 600;
        color: #111827;
        border-right: 1px solid #e5e7eb;
        padding: 12px;
        text-align: left;
    }

    /* PLAN COLUMNS */
    .gym-comparison-plan {
        min-width: 180px;
        flex: 0 0 180px;
        text-align: center;
        padding: 12px;
        border-right: 1px solid #e5e7eb;
    }

    /* Header row styling */
    .gym-comparison-header-select .gym-comparison-feature,
    .gym-comparison-header-select .gym-comparison-plan {
        font-weight: 700;
    }

    /* Feature text wrap */
    .gym-feature-name {
        display: block;
        white-space: normal;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Icons size */
    .gym-check-yes,
    .gym-check-no {
        font-size: 1rem;
    }

    /* Scroll hint */
    .gym-comparison-table-select::after {
        content: "← Swipe left / right to compare →";
        display: block;
        text-align: center;
        font-size: 0.8rem;
        color: #6b7280;
        padding: 10px 0;
    }
}
