/* Enrollment 2026 Banner & Buttons */
.enrollment-banner {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8534 100%);
    padding: 40px 20px;
    text-align: center;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.enrollment-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.enrollment-banner-content {
    position: relative;
    z-index: 1;
}

.enrollment-banner h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.enrollment-banner p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.enrollment-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-enroll-2026 {
    background: white;
    color: #FF6B00;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-enroll-2026:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

.btn-whatsapp-info {
    background: #25D366;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    background: #22c55e;
}

.btn-enroll-2026 i,
.btn-whatsapp-info i {
    font-size: 1.3rem;
}

/* Inline enrollment CTA */
.enrollment-cta-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.enrollment-year-badge {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8534 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 15px rgba(255, 107, 0, 0.3);
}

.enrollment-year-badge i {
    font-size: 1.2rem;
}

/* Course card enrollment buttons */
.course-card .enrollment-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.course-card .btn-enroll-small {
    background: #FF6B00;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.course-card .btn-enroll-small:hover {
    background: #FF8534;
    transform: translateY(-2px);
}

.course-card .btn-info-small {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.course-card .btn-info-small:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .enrollment-banner h2 {
        font-size: 1.8rem;
    }

    .enrollment-banner p {
        font-size: 1rem;
    }

    .enrollment-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-enroll-2026,
    .btn-whatsapp-info {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
    }

    .enrollment-cta-inline {
        flex-direction: column;
        align-items: flex-start;
    }
}