/* Programs Page Styles - Brand Colors */

/* Hero (Programs) */
.hero-section-programs {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.hero-background-programs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
}

/* .hero-overlay-programs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
} */

.hero-pattern-programs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content-programs {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge-programs { 
    margin-bottom: 1rem; 
}

.badge-text-programs { 
    background: rgba(255,255,255,0.2); 
    color: var(--white); 
    padding: 0.5rem 1.5rem; 
    border-radius: 25px; 
    font-size: 0.9rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    border: 1px solid rgba(255,255,255,0.3); 
}

.hero-title-programs { 
    font-size: 3.5rem; 
    font-weight: 700; 
    margin-bottom: 1.5rem; 
    line-height: 1.2; 
}

.title-line-programs { 
    display: block; 
    color: var(--white); 
}

.title-highlight-programs { 
    display: block; 
    color: var(--primary-gold); 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3); 
}

.hero-description-programs { 
    font-size: 1.2rem; 
    line-height: 1.6; 
    margin-bottom: 2rem; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto; 
    color: rgba(255,255,255,0.9); 
}

.hero-actions-programs { 
    display: flex; 
    gap: 1rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}

.hero-btn-primary-programs { 
    background: var(--gradient-secondary); 
    color: #333; 
    border: none; 
    padding: 1rem 2rem; 
    border-radius: 25px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: .5px; 
    transition: all .3s ease; 
}

.hero-btn-primary-programs:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3); 
    color: #333; 
}

.hero-btn-secondary-programs { 
    border: 2px solid rgba(255,255,255,.8); 
    color: var(--white); 
    background: transparent; 
    padding: 1rem 2rem; 
    border-radius: 25px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: .5px; 
    transition: all .3s ease; 
}

.hero-btn-secondary-programs:hover { 
    background: rgba(255,255,255,.1); 
    border-color: var(--white); 
    color: var(--white); 
    transform: translateY(-2px); 
}

/* Main Services Section */
.main-services-section {
    background: white;
    position: relative;
}

.main-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.main-services-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    position: relative;
    z-index: 2;
}

.section-badge {
    margin-bottom: 1rem;
}

.section-badge .badge-text {
    background: var(--gradient-secondary);
    color: var(--dark-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.main-service-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.main-service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.main-service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.main-service-card-modern:hover .service-image img {
    transform: scale(1.1);
}

.main-service-card-modern:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-blue);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(102, 126, 234, 0.1);
    color: var(--secondary-blue);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.service-btn {
    background: transparent;
    color: var(--secondary-blue);
    border: 2px solid var(--secondary-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-btn:hover {
    background: var(--secondary-blue);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Programs Overview Section */
.programs-overview-section {
    background: var(--gray-50);
    position: relative;
}

.programs-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.programs-overview-section .container {
    position: relative;
    z-index: 2;
}

.programs-grid {
    position: relative;
    z-index: 2;
}

.program-card-elegant {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.program-card-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.program-card-elegant:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.program-card-elegant.featured {
    border: 2px solid var(--primary-gold);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.2);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-secondary);
    color: var(--dark-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.program-header {
    text-align: center;
    margin-bottom: 2rem;
}

.program-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.program-icon-elegant {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
}

.program-card-elegant:hover .program-icon-elegant {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.program-icon-elegant i {
    font-size: 2rem;
    color: white;
}

.program-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.program-badge {
    background: var(--gradient-secondary);
    color: var(--dark-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.program-content {
    text-align: center;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.program-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.program-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    justify-content: center;
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.feature-item span {
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.program-footer {
    text-align: center;
}

.program-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.program-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

/* Language Programs Section */
.language-programs-section {
    background: white;
    position: relative;
}

.language-programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.language-programs-section .container {
    position: relative;
    z-index: 2;
}

.language-programs-grid {
    position: relative;
    z-index: 2;
}

.language-program-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.language-program-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.language-program-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.language-program-card-modern.featured {
    border: 2px solid var(--primary-gold);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.2);
}

.card-gradient-header.ielts-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa07a 50%, #ffb347 100%);
}

.card-gradient-header.business-header {
    background: linear-gradient(135deg, #74b9ff 0%, #a29bfe 50%, #fd79a8 100%);
}

.card-gradient-header.general-header {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 50%, #81ecec 100%);
}

.card-gradient-header.selt-header {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 50%, #fd79a8 100%);
}

/* Programs Cards (classic) */
.specialized-program-card { background: #fff; border-radius: 20px; padding: 2rem; height: 100%; transition: all .3s ease; box-shadow: 0 5px 20px rgba(0,0,0,.1); border: 1px solid rgba(0,0,0,.05); }
.specialized-program-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,.15); }
.specialized-program-card .card-header { display: flex; align-items: center; margin-bottom: 1.5rem; }
.specialized-program-card .card-header i { font-size: 2rem; color: var(--primary-color); margin-right: 1rem; background: rgba(13,110,253,.1); padding: 1rem; border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
.specialized-program-card .card-header h4 { color: var(--dark-color); font-size: 1.5rem; font-weight: 600; margin: 0; flex: 1; }
.specialized-program-card .card-content p { color: #666; font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; }
.specialized-program-card .program-features { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.specialized-program-card .feature-tag { background: rgba(13,110,253,.1); color: var(--primary-color); padding: .5rem 1rem; border-radius: 25px; font-size: .85rem; font-weight: 500; border: 1px solid rgba(13,110,253,.2); transition: all .3s ease; }
.specialized-program-card .feature-tag:hover { background: rgba(13,110,253,.2); transform: translateY(-2px); }

/* Language Programs */
.language-program-card { background: #fff; border-radius: 20px; padding: 2rem; height: 100%; transition: all .3s ease; box-shadow: 0 5px 20px rgba(0,0,0,.1); border: 1px solid rgba(0,0,0,.05); text-align: center; }
.language-program-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,.15); }
.language-program-card .program-icon { width: 80px; height: 80px; background: linear-gradient(135deg,#667eea 0%,#764ba2 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.language-program-card .program-icon i { font-size: 2rem; color: #fff; }
.language-program-card h4 { color: var(--dark-color); font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }
.language-program-card p { color: #666; font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; }
.language-program-card .program-features { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; justify-content: center; }
.language-program-card .feature-tag { background: rgba(102,126,234,.1); color: #667eea; padding: .5rem 1rem; border-radius: 25px; font-size: .85rem; font-weight: 500; border: 1px solid rgba(102,126,234,.2); transition: all .3s ease; }
.language-program-card .feature-tag:hover { background: rgba(102,126,234,.2); transform: translateY(-2px); }

/* Support Services */
.support-service-card { 
    background: white; 
    border-radius: 20px; 
    padding: 2rem; 
    height: 100%; 
    transition: all 0.3s ease; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); 
    border: 1px solid rgba(0, 0, 0, 0.05); 
    position: relative;
    overflow: hidden;
}

.support-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.support-service-card:hover::before {
    transform: scaleX(1);
}
.support-service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,.15); }
.support-service-card .card-header { display: flex; align-items: center; margin-bottom: 1.5rem; }
.support-service-card .card-header i { 
    font-size: 2rem; 
    color: var(--primary-gold); 
    margin-right: 1rem; 
    background: rgba(245, 158, 11, 0.1); 
    padding: 1rem; 
    border-radius: 50%; 
    width: 60px; 
    height: 60px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s ease; 
}

.support-service-card:hover .card-header i {
    background: rgba(245, 158, 11, 0.2);
    transform: scale(1.1);
}
.support-service-card .card-header h4 { color: var(--dark-color); font-size: 1.5rem; font-weight: 600; margin: 0; flex: 1; }
.support-service-card .card-content p { color: #666; font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; }
.support-service-card .service-features { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.support-service-card .feature-tag { background: rgba(102, 126, 234, 0.1); color: var(--secondary-blue); padding: 0.5rem 1rem; border-radius: 25px; font-size: 0.85rem; font-weight: 500; border: 1px solid rgba(102, 126, 234, 0.2); transition: all 0.3s ease; }
.support-service-card .feature-tag:hover { background: rgba(102, 126, 234, 0.2); transform: translateY(-2px); }

/* Support Services Section */
.support-services-section {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.support-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.support-services-section .container {
    position: relative;
    z-index: 2;
}

/* Programs CTA */
.programs-cta-section { background: var(--gradient-primary); color: var(--white); position: relative; overflow: hidden; }
.programs-cta-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'); opacity: .3; z-index: 1; }
.programs-cta-content { position: relative; z-index: 2; }
.programs-cta-card {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.programs-cta-overlay {
    
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}
.programs-cta-background{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grain)"/></svg>');
}
.programs-cta-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--white); }
.programs-cta-description { font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem; color: rgba(255,255,255,0.9); max-width: 600px; margin-left: auto; margin-right: auto; }
.programs-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.programs-cta-btn-primary { background: var(--gradient-secondary); color: var(--dark-color); border: none; padding: 1rem 2rem; border-radius: 25px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; }
.programs-cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3); color: var(--dark-color); }
.programs-cta-btn-secondary { border: 2px solid rgba(255,255,255,.8); color: #fff; background: transparent; padding: 1rem 2rem; border-radius: 25px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; transition: all .3s ease; }
.programs-cta-btn-secondary:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; transform: translateY(-2px); }

/* Redesigned Programs Cards (modern) */
.specialized-programs-section { background: linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%); position: relative; overflow: hidden; }
.specialized-programs-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>'); opacity: .5; z-index: 1; }
.specialized-programs-section .container { position: relative; z-index: 2; }
.specialized-programs-grid { position: relative; z-index: 2; }
.specialized-program-card-modern { background:#126c9a;; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.1); transition: all .4s ease; position: relative; height: 100%; border: 1px solid rgba(0,0,0,.05); }
.specialized-program-card-modern:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,.15); }
.specialized-program-card-modern.featured { border: 2px solid #ffd700; box-shadow: 0 15px 40px rgba(255,215,0,.2); }
.featured-badge-modern { position: absolute; top: 15px; right: 15px; background: linear-gradient(135deg,#ffd700 0%,#ffed4e 100%); color: #333; padding: .5rem 1rem; border-radius: 25px; font-size: .8rem; font-weight: 600; text-transform: uppercase; }
.card-gradient-header { padding: 2rem; color: #fff; position: relative; overflow: hidden; }
.card-gradient-header::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease; }
.specialized-program-card-modern:hover .card-gradient-header::before { opacity: .15; }
.card-gradient-header.jamb-header { background: linear-gradient(135deg,#ff6b6b 0%,#ffa07a 50%,#ffb347 100%); }
.card-gradient-header.summer-header { background: linear-gradient(135deg,#ff8c42 0%,#ffa726 50%,#ffcc02 100%); }
.card-gradient-header.university-header { background: linear-gradient(135deg,#74b9ff 0%,#a29bfe 50%,#fd79a8 100%); }
.icon-wrapper { width: 80px; height: 80px; background: rgba(255,255,255,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; backdrop-filter: blur(15px); border: 2px solid rgba(255,255,255,.4); box-shadow: 0 8px 25px rgba(0,0,0,.1); }
.icon-wrapper i { font-size: 2rem; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,.2); }
.header-content h4 { font-size: 1.5rem; font-weight: 800; margin-bottom: .75rem; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,.2); letter-spacing: -.5px; }
.header-subtitle { font-size: 1rem; opacity: .95; color: #fff; font-weight: 500; text-shadow: 0 1px 2px rgba(0,0,0,.1); }
.card-body-modern { padding: 2rem; background: #fff; }
.program-description { color: #4a5568; line-height: 1.7; margin-bottom: 2rem; font-size: 1rem; font-weight: 400; }
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin-bottom: 2rem; }
.feature-item-modern { display: flex; align-items: center; gap: .75rem; padding: 1rem; background: #f8f9fa; border-radius: 12px; transition: all .3s ease; border: 1px solid #e9ecef; }
.feature-item-modern:hover { background: #e3f2fd; transform: translateX(8px); border-color: #2196f3; box-shadow: 0 4px 12px rgba(33,150,243,.15); }
.feature-icon { width: 40px; height: 40px; background: linear-gradient(135deg,#2196f3 0%,#1976d2 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(33,150,243,.3); }
.feature-icon i { font-size: 1rem; color: #fff; }
.feature-item-modern span { font-size: .9rem; font-weight: 600; color: #2d3748; }
.card-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #e9ecef; }
.btn-primary-modern { background: linear-gradient(135deg,#2196f3 0%,#1976d2 100%); color: #fff; border: none; padding: 1rem 2rem; border-radius: 30px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: .75rem; transition: all .3s ease; font-size: 1rem; box-shadow: 0 6px 20px rgba(33,150,243,.3); text-transform: uppercase; letter-spacing: .5px; }
.btn-primary-modern:hover { background: linear-gradient(135deg,#1976d2 0%,#1565c0 100%); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(33,150,243,.4); color: #fff; text-decoration: none; }
.program-stats { display: flex; align-items: center; gap: .75rem; background: #f8f9fa; padding: .75rem 1.25rem; border-radius: 20px; border: 1px solid #e9ecef; }
.stat-item { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: #4a5568; font-weight: 600; }
.stat-item i { color: #2196f3; font-size: .8rem; }

/* Seasonal Bootcamps + Reflection Space */
.seasonal-bootcamps-section { position: relative; }
.seasonal-bootcamps-section::before { content: ''; position: absolute; inset: 0; }
.seasonal-bootcamps-grid { position: relative; }
.bootcamp-card-modern.summer .card-gradient-header { background: linear-gradient(135deg,#ff6b6b 0%,#ffa07a 50%,#ffb347 100%); position: relative; }
.bootcamp-card-modern.summer .card-gradient-header::before { background: linear-gradient(135deg,#ff6b6b 0%,#ffa07a 100%); }
.bootcamp-card-modern.autumn .card-gradient-header { background: linear-gradient(135deg,#ff8c42 0%,#ffa726 50%,#ffcc02 100%); }
.bootcamp-card-modern.autumn .card-gradient-header::before { background: linear-gradient(135deg,#ff8c42 0%,#ffa726 100%); }
.bootcamp-card-modern.winter .card-gradient-header { background: linear-gradient(135deg,#74b9ff 0%,#a29bfe 50%,#fd79a8 100%); }
.bootcamp-card-modern.winter .card-gradient-header::before { background: linear-gradient(135deg,#74b9ff 0%,#a29bfe 100%); }
.bootcamp-card-modern.reflection .card-gradient-header { background: linear-gradient(135deg,#6c5ce7 0%,#a29bfe 50%,#fd79a8 100%); }
.bootcamp-card-modern.reflection .card-gradient-header::before { background: linear-gradient(135deg,#6c5ce7 0%,#a29bfe 100%); }
.bootcamp-card-modern .card-gradient-header { padding: 2.5rem 2rem 2rem; color: #fff; position: relative; overflow: hidden; text-align: center; }
.bootcamp-card-modern .card-gradient-header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity .3s ease; }
.bootcamp-card-modern:hover .card-gradient-header::before { opacity: .15; }
.bootcamp-card-modern .icon-wrapper { width: 80px; height: 80px; background: rgba(255,255,255,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; backdrop-filter: blur(15px); border: 2px solid rgba(255,255,255,.4); box-shadow: 0 8px 25px rgba(0,0,0,.1); }
.bootcamp-card-modern .icon-wrapper i { font-size: 2rem; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,.2); }
.bootcamp-card-modern .header-content h4 { font-size: 1.5rem; font-weight: 800; margin-bottom: .75rem; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,.2); letter-spacing: -.5px; }
.bootcamp-card-modern .header-subtitle { font-size: 1rem; opacity: .95; color: #fff; font-weight: 500; text-shadow: 0 1px 2px rgba(0,0,0,.1); }
.bootcamp-card-modern .card-body-modern { padding: 2.5rem; background: #fff; }
.bootcamp-card-modern .program-description { color: #4a5568; line-height: 1.7; margin-bottom: 2rem; font-size: 1rem; font-weight: 400; }
.bootcamp-card-modern .features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin-bottom: 2rem; }
.bootcamp-card-modern .feature-item-modern { display: flex; align-items: center; gap: .75rem; padding: 1rem; background: #f8f9fa; border-radius: 12px; transition: all .3s ease; border: 1px solid #e9ecef; }
.bootcamp-card-modern .feature-item-modern:hover { background: #e3f2fd; transform: translateX(8px); border-color: #2196f3; box-shadow: 0 4px 12px rgba(33,150,243,.15); }
.bootcamp-card-modern .feature-icon { width: 40px; height: 40px; background: linear-gradient(135deg,#2196f3 0%,#1976d2 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(33,150,243,.3); }
.bootcamp-card-modern .feature-icon i { font-size: 1rem; color: #fff; }
.bootcamp-card-modern .feature-item-modern span { font-size: .9rem; font-weight: 600; color: #2d3748; }
.bootcamp-card-modern .card-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #e9ecef; }
.bootcamp-card-modern .btn-primary-modern { background: linear-gradient(135deg,#2196f3 0%,#1976d2 100%); color: #fff; border: none; padding: 1rem 2rem; border-radius: 30px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: .75rem; transition: all .3s ease; font-size: 1rem; box-shadow: 0 6px 20px rgba(33,150,243,.3); text-transform: uppercase; letter-spacing: .5px; }
.bootcamp-card-modern .btn-primary-modern:hover { background: linear-gradient(135deg,#1976d2 0%,#1565c0 100%); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(33,150,243,.4); color: #fff; text-decoration: none; }
.bootcamp-card-modern .program-stats { display: flex; align-items: center; gap: .75rem; background: #f8f9fa; padding: .75rem 1.25rem; border-radius: 20px; border: 1px solid #e9ecef; }
.bootcamp-card-modern .stat-item { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: #4a5568; font-weight: 600; }
.bootcamp-card-modern .stat-item i { color: #2196f3; font-size: .8rem; }

/* Responsive */
@media (max-width: 768px) {
  .hero-title-programs { font-size: 2.5rem; }
  .hero-description-programs { font-size: 1.1rem; }
  .hero-actions-programs { flex-direction: column; align-items: center; }
  .programs-cta-title { font-size: 2rem; }
  .programs-cta-buttons { flex-direction: column; align-items: center; }
  .specialized-program-card, .language-program-card, .support-service-card { padding: 1.5rem; }
  .language-program-card-modern .card-gradient-header { padding: 2rem 1.5rem 1.5rem; }
  .language-program-card-modern .card-body-modern { padding: 2rem; }
  .language-program-card-modern .features-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .language-program-card-modern .card-actions { flex-direction: column; gap: 1.5rem; align-items: stretch; }
  .language-program-card-modern .program-stats { justify-content: center; padding: 1rem 1.5rem; }
  .language-program-card-modern .header-content h4 { font-size: 1.3rem; }
  .language-program-card-modern .header-subtitle { font-size: .95rem; }
  .language-program-card-modern .icon-wrapper { width: 70px; height: 70px; }
  .language-program-card-modern .icon-wrapper i { font-size: 1.75rem; }
  .language-program-card-modern .btn-primary-modern { padding: 1rem 1.75rem; font-size: .95rem; }
  .bootcamp-card-modern .card-gradient-header { padding: 2rem 1.5rem 1.5rem; }
  .bootcamp-card-modern .card-body-modern { padding: 2rem; }
  .bootcamp-card-modern .features-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .bootcamp-card-modern .card-actions { flex-direction: column; gap: 1.5rem; align-items: stretch; }
  .bootcamp-card-modern .program-stats { justify-content: center; padding: 1rem 1.5rem; }
  .bootcamp-card-modern .header-content h4 { font-size: 1.3rem; }
  .bootcamp-card-modern .header-subtitle { font-size: .95rem; }
  .bootcamp-card-modern .icon-wrapper { width: 70px; height: 70px; }
  .bootcamp-card-modern .icon-wrapper i { font-size: 1.75rem; }
  .bootcamp-card-modern .btn-primary-modern { padding: 1rem 1.75rem; font-size: .95rem; }
}

@media (max-width: 576px) {
  .hero-title-programs { font-size: 2rem; }
  .hero-description-programs { font-size: 1rem; }
  .programs-cta-title { font-size: 1.8rem; }
  .programs-cta-description { font-size: 1rem; }
  .specialized-program-card .card-header, .support-service-card .card-header { flex-direction: column; text-align: center; }
  .specialized-program-card .card-header i, .support-service-card .card-header i { margin-right: 0; margin-bottom: 1rem; }
  .language-program-card .program-features { justify-content: center; }
  .language-program-card-modern .card-gradient-header { padding: 1.75rem 1.25rem 1.25rem; }
  .language-program-card-modern .card-body-modern { padding: 1.75rem; }
  .language-program-card-modern .features-grid { grid-template-columns: 1fr; gap: .75rem; }
  .language-program-card-modern .header-content h4 { font-size: 1.2rem; }
  .language-program-card-modern .header-subtitle { font-size: .9rem; }
  .language-program-card-modern .program-description { font-size: .95rem; line-height: 1.6; }
  .language-program-card-modern .feature-item-modern { padding: .75rem; }
  .language-program-card-modern .feature-icon { width: 35px; height: 35px; }
  .language-program-card-modern .feature-icon i { font-size: .9rem; }
  .language-program-card-modern .feature-item-modern span { font-size: .85rem; }
  .language-program-card-modern .btn-primary-modern { padding: .9rem 1.5rem; font-size: .9rem; }
  .language-program-card-modern .icon-wrapper { width: 60px; height: 60px; }
  .language-program-card-modern .icon-wrapper i { font-size: 1.5rem; }
  .language-program-card-modern .program-stats { padding: .75rem 1rem; }
  .language-program-card-modern .stat-item { font-size: .85rem; }
  .seasonal-bootcamps-section { padding: 2rem 0; }
  .bootcamp-card-modern .card-gradient-header { padding: 1.75rem 1.25rem 1.25rem; }
  .bootcamp-card-modern .card-body-modern { padding: 1.75rem; }
  .bootcamp-card-modern .features-grid { grid-template-columns: 1fr; gap: .75rem; }
  .bootcamp-card-modern .header-content h4 { font-size: 1.2rem; }
  .bootcamp-card-modern .header-subtitle { font-size: .9rem; }
  .bootcamp-card-modern .program-description { font-size: .95rem; line-height: 1.6; }
  .bootcamp-card-modern .feature-item-modern { padding: .75rem; }
  .bootcamp-card-modern .feature-icon { width: 35px; height: 35px; }
  .bootcamp-card-modern .feature-icon i { font-size: .9rem; }
  .bootcamp-card-modern .feature-item-modern span { font-size: .85rem; }
  .bootcamp-card-modern .btn-primary-modern { padding: .9rem 1.5rem; font-size: .9rem; }
  .bootcamp-card-modern .icon-wrapper { width: 60px; height: 60px; }
  .bootcamp-card-modern .icon-wrapper i { font-size: 1.5rem; }
  .bootcamp-card-modern .program-stats { padding: .75rem 1rem; }
  .bootcamp-card-modern .stat-item { font-size: .85rem; }
}



