.schedule-section {
    padding: 4rem 0 6rem;
    background: var(--color-background);
}

.schedule-header {
    margin-bottom: 3rem;
}

.week-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.week-nav {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.week-nav:hover {
    background: var(--color-dark);
    transform: scale(1.1);
}

.current-week {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    min-width: 300px;
    text-align: center;
}

.schedule-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
}

.schedule-grid {
    display: grid;
    grid-template-columns: 100px repeat(7, 1fr);
    gap: 0;
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.time-column,
.day-column {
    display: flex;
    flex-direction: column;
}

.time-header,
.day-header {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.day-header {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.day-name {
    font-size: 1rem;
    font-weight: 600;
}

.day-date {
    font-size: 0.85rem;
    opacity: 0.9;
}

.time-slot {
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 600;
    color: var(--color-accent);
    background: #fafafa;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.class-slot {
    padding: 0.5rem;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.class-slot.empty {
    background: #f9f9f9;
}

.class-item {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    cursor: pointer;
}

.class-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.class-item.beginner {
    background: #6a7b5a;
}

.class-item.intermediate {
    background: #1a3d3d;
}

.class-item.all-levels {
    background: #c9b896;
    color: var(--color-dark);
}

.class-item.special {
    background: #8b6f47;
}

.class-name {
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.class-info {
    font-size: 0.65rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.class-spots {
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.book-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.book-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.book-btn.waitlist {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.all-levels .book-btn {
    color: var(--color-dark);
    background: rgba(26, 61, 61, 0.1);
    border-color: rgba(26, 61, 61, 0.3);
}

.all-levels .book-btn:hover {
    background: rgba(26, 61, 61, 0.2);
}

.booking-info-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.booking-info-section .info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.booking-info-section .info-card {
    background: var(--color-background);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
}

.booking-info-section .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-info-section .info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-primary);
}

.booking-info-section .info-card h3 i {
    margin-right: 0.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.booking-info-section .info-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .schedule-grid {
        overflow-x: auto;
        display: block;
    }
    
    .schedule-grid > div {
        display: inline-block;
        vertical-align: top;
    }
    
    .time-column {
        width: 100px;
    }
    
    .day-column {
        width: 150px;
    }
}

@media (max-width: 968px) {
    .week-selector {
        flex-direction: column;
        gap: 1rem;
    }
    
    .current-week {
        font-size: 1.2rem;
    }
    
    .schedule-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .booking-info-section .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .schedule-section {
        padding: 2rem 0 4rem;
    }
    
    .schedule-header {
        margin-bottom: 2rem;
    }
    
    .week-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .current-week {
        font-size: 1rem;
        min-width: 200px;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .booking-info-section .info-grid {
        grid-template-columns: 1fr;
    }
}
