/* ===== SCHEDULE HERO ===== */
.schedule-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding-top: 80px;
}

.schedule-hero-content {
    position: relative;
    z-index: 2;
}

.schedule-hero h1 {
    font-size: 4rem;
    color: var(--text-white);
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

/* ===== CLASS TYPES ===== */
.class-types {
    padding: 100px 0;
    background: var(--bg-light);
}

.class-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.class-type-card {
    background: var(--text-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.class-type-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.class-type-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
}

.class-type-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.class-type-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.class-duration {
    display: inline-block;
    background: var(--bg-light);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== WEEKLY SCHEDULE ===== */
.weekly-schedule {
    padding: 100px 0;
    background: var(--text-white);
}

.schedule-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: -30px;
    margin-bottom: 40px;
}

.day-selector {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.day-btn {
    padding: 12px 28px;
    border: 2px solid var(--border-color);
    background: var(--text-white);
    color: var(--text-dark);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.day-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.day-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.schedule-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.class-card {
    background: var(--text-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.class-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.class-info {
    flex: 1;
}

.class-time {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.class-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.class-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.class-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.class-detail i {
    color: var(--primary-color);
}

.class-spots {
    color: var(--primary-color);
    font-weight: 600;
}

.class-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.book-btn {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.book-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.book-btn:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

.class-full {
    color: #dc3545;
    font-weight: 600;
    font-size: 0.9rem;
}

.no-classes {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-classes i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--border-color);
}

/* ===== MEMBERSHIP OPTIONS ===== */
.membership-options {
    padding: 100px 0;
    background: var(--bg-light);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.membership-card {
    background: var(--text-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.membership-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    transform: scale(1.05);
}

.membership-card.featured:hover {
    transform: scale(1.07) translateY(-5px);
}

.membership-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.membership-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

.membership-price .price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.membership-price .period {
    font-size: 1.1rem;
    color: var(--text-light);
}

.membership-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.membership-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.membership-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* ===== BOOKING MODAL ===== */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.booking-modal.active {
    display: flex;
}

.booking-modal .modal-content {
    background: var(--text-white);
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.booking-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
}

.booking-modal .modal-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.booking-modal .modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.booking-modal .modal-close:hover {
    color: var(--primary-color);
}

.booking-modal .modal-body {
    padding: 40px;
}

.booking-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.booking-info h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.booking-info p {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .schedule-hero h1 {
        font-size: 2.5rem;
    }

    .class-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .class-actions {
        width: 100%;
    }

    .book-btn {
        width: 100%;
    }

    .day-selector {
        gap: 10px;
    }

    .day-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

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

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