/* Early Enrollment Tuition Subsidy Section */
.early-enrollment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.early-enrollment-wrapper {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.early-enrollment-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.enrollment-left-content {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.savings-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 15px;
}

.savings-amount .currency {
    font-size: 60px;
    font-weight: 300;
    color: #ffffff;
    margin-right: 5px;
    margin-top: 10px;
}

.savings-amount .amount {
    font-size: 140px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -3px;
}

.savings-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.enrollment-right-content {
    padding: 20px 0 20px 40px;
    position: relative;
    z-index: 2;
}

.enrollment-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.enrollment-benefits {
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding-top: 3px;
}

.benefit-item strong {
    color: #ffffff;
    font-weight: 600;
}

.enrollment-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 30px;
}

.enrollment-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.enrollment-btn-primary {
    background: #ffffff;
    color: #1e3a5f;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.enrollment-btn-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.enrollment-btn-primary i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.enrollment-btn-primary:hover i {
    transform: translateX(5px);
}

.enrollment-btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.enrollment-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .early-enrollment-wrapper {
        padding: 40px 30px;
    }
    
    .enrollment-right-content {
        padding: 30px 0 0 0;
        text-align: center;
    }
    
    .enrollment-left-content {
        padding: 20px;
    }
    
    .savings-amount .amount {
        font-size: 100px;
    }
    
    .savings-amount .currency {
        font-size: 45px;
    }
    
    .enrollment-title {
        font-size: 28px;
    }
    
    .enrollment-buttons {
        justify-content: center;
    }
    
    .benefit-item {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .early-enrollment-wrapper {
        padding: 30px 20px;
    }
    
    .savings-amount .amount {
        font-size: 80px;
    }
    
    .savings-amount .currency {
        font-size: 35px;
    }
    
    .enrollment-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .enrollment-btn-primary,
    .enrollment-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .benefit-item p {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .savings-amount .amount {
        font-size: 70px;
    }
    
    .savings-amount .currency {
        font-size: 30px;
    }
    
    .enrollment-title {
        font-size: 22px;
    }
}
