/* Program Page Styles */
body {
    color: white;
    overflow-x: hidden;
}

/* Dark Nav Theme Override */
.nav-container {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
}

.nav-links a:hover,
.nav-links a.active {
    color: #60a5fa;
}

.btn-apply-nav {
    background: white;
    color: #1e3a8a;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-apply-nav:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hamburger span {
    background: white;
}

a:focus-visible,
button:focus-visible {
    outline-color: #60a5fa;
}

/* Program Section */
.program-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    padding: 120px 40px 80px;
}

.program-container {
    max-width: 1100px;
    margin: 0 auto;
}

.program-header {
    text-align: center;
    margin-bottom: 80px;
}

.program-header h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.program-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto;
}

/* Phase Cards */
.program-phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.phase-card {
    background: rgba(30, 58, 138, 0.25);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.phase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.5);
}

.phase-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
}

.phase-card:hover .phase-number {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}

.phase-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.phase-weeks {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.12);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.phase-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Benefits Section */
.program-benefits {
    background: rgba(30, 58, 138, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 60px;
    text-align: center;
}

.program-benefits h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.program-benefits p {
    font-size: 16px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

/* CTA */
.program-cta {
    text-align: center;
}

.program-cta .btn-apply-now {
    background: linear-gradient(145deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.program-cta .btn-apply-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .program-section {
        padding: 120px 40px 60px;
    }

    .program-header {
        margin-bottom: 50px;
    }

    .program-header h1 {
        font-size: 42px;
    }

    .program-phases {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .program-section {
        padding: 100px 24px 60px;
    }

    .program-header h1 {
        font-size: 32px;
    }

    .program-subtitle {
        font-size: 15px;
    }

    .program-benefits {
        padding: 32px 24px;
    }

    .program-benefits h2 {
        font-size: 28px;
    }

    .phase-card {
        padding: 32px 24px;
    }

    .phase-number {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.9);
    }

    .dropdown-menu a:hover {
        color: #60a5fa;
    }
}
