/* ========================================
   PROGRAMS PAGE STYLES
   ======================================== */

/* Programs Overview Section */
.programs-overview {
    padding: 80px 0;
    background: white;
}

/* Program Detail Cards */
.program-detail-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.program-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.program-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    border-bottom: 2px solid #e5e7eb;
}

.program-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d 0%, #2d5aa0 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.2);
}

.program-detail-icon i {
    font-size: 2.5rem;
    color: white;
}

.program-detail-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.program-subtitle {
    font-size: 1rem;
    color: #4a5568;
    margin: 0;
}

.program-detail-content {
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.program-description h4,
.program-features h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

.program-description p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 0.95rem;
}

.program-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.program-features li i {
    color: #10b981;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.program-meta {
    grid-column: 1 / -1;
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-item i {
    color: #2d5aa0;
    font-size: 1.1rem;
}

/* Custom Programs CTA */
.custom-programs-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d5aa0 100%);
    position: relative;
    overflow: hidden;
}

.custom-programs-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.cta-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.cta-action .btn-primary {
    background: white;
    color: #1a365d;
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
}

.cta-action .btn-primary:hover {
    background: #ffd700;
    color: #1a365d;
    transform: translateY(-3px);
}

/* Program Benefits Section */
.program-benefits {
    padding: 80px 0;
    background: #f7fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #2d5aa0;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a365d 0%, #2d5aa0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design for Programs Page */
@media (max-width: 992px) {
    .program-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .program-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .program-detail-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .program-detail-icon {
        width: 70px;
        height: 70px;
    }

    .program-detail-icon i {
        font-size: 2rem;
    }

    .program-detail-title h3 {
        font-size: 1.5rem;
    }

    .program-detail-content {
        padding: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    .cta-text p {
        font-size: 1rem;
    }
}