/* course page styles - Extracted from inline style */

/* Course Page Specific Styles */
.course-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card.featured {
    border: 2px solid var(--primary-color);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.12);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-light);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.1em;
}

.course-card.featured .course-badge {
    background: var(--gradient-main);
    color: white;
}

.course-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.course-card.featured .course-icon {
    background: var(--gradient-main);
    color: white;
}

.course-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.course-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
    flex-grow: 1;
}

.course-features li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.course-features li:last-child {
    border-bottom: none;
}

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

.course-hours {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.course-hours i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-light);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 15px;
    padding: 25px 30px;
    flex-grow: 1;
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.7;
}

.timeline-hours {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Special Cards */
.special-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 25px;
    transition: all 0.4s ease;
    height: 100%;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
    border-color: var(--primary-light);
}

.special-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.special-card:hover .special-icon {
    background: var(--gradient-main);
    color: white;
}

.special-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.special-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.special-time {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* CTA Box */
.cta-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .timeline::before {
        left: 25px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .cta-box {
        padding: 50px 30px;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .course-card {
        padding: 30px 25px;
    }

    .special-card {
        flex-direction: column;
        text-align: center;
    }

    .special-icon {
        margin: 0 auto;
    }
}