/* ============================================
   LANDING PAGE / HOMEPAGE STYLES
   ============================================ */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-logo .logo-icon {
    font-size: 2rem;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.nav-logo .logo-text .accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-600);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #ddd6fe 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-item p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-500);
    line-height: 1.6;
}

/* Faculties Section */
.faculties-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.faculties-section .section-header h2,
.faculties-section .section-header p {
    color: var(--white);
}

.faculties-section .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.faculties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faculty-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.faculty-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.faculty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.faculty-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.faculty-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li i {
    color: var(--green);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--gray-100);
}

/* Footer */
.footer {
    background: #1e1b4b;
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    line-height: 1.6;
}

.footer h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive for Landing */
@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .nav-toggle { display: block; }
    .nav-menu.active { 
        display: flex; 
        flex-direction: column; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        background: var(--white); 
        padding: 1rem; 
        box-shadow: var(--shadow-lg);
    }
    .hero-title { font-size: 3rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .faculties-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-card.featured { transform: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero { padding: 6rem 1rem 3rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .stats-bar { flex-wrap: wrap; gap: 1.5rem; }
    .stat-item { flex: 1; min-width: 120px; }
    .features-grid { grid-template-columns: 1fr; }
    .faculties-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .nav-actions .btn-ghost { display: none; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; text-align: center; }
}

/* Mobile spacing fixes */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .pricing-section,
    .features-section,
    .faculties-section,
    .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .pricing-card,
    .feature-card,
    .faculty-card {
        margin: 0 0.5rem;
    }
    
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
}

/* Floating shapes for hero */
.hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    font-size: 4rem;
    opacity: 0.6;
    animation: floatShape 6s ease-in-out infinite;
}

.hero-shape.s1 { top: 15%; right: 10%; animation-delay: 0s; }
.hero-shape.s2 { top: 40%; right: 25%; animation-delay: 1s; }
.hero-shape.s3 { top: 65%; right: 5%; animation-delay: 2s; }
.hero-shape.s4 { top: 25%; right: 35%; animation-delay: 0.5s; }
.hero-shape.s5 { top: 55%; right: 15%; animation-delay: 1.5s; }

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Floating shapes animation fix */
.hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.7;
    animation: floatBounce 4s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; right: 15%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 35%; right: 30%; animation-delay: 0.5s; }
.floating-icon:nth-child(3) { top: 50%; right: 10%; animation-delay: 1s; }
.floating-icon:nth-child(4) { top: 65%; right: 25%; animation-delay: 1.5s; }
.floating-icon:nth-child(5) { top: 80%; right: 20%; animation-delay: 2s; }

@keyframes floatBounce {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-25px) rotate(10deg); 
        opacity: 1;
    }
}

/* Stats bar horizontal layout */
.stats-bar {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.stat-item p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   HERO SECTION COMPLETE FIX
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #ddd6fe 100%);
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

/* Hero Stats - Horizontal */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Hero Image / Floating Cards */
.hero-image {
    position: relative;
    height: 500px;
}

.hero-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: floatCard 4s ease-in-out infinite;
}

.hero-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.hero-card span {
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

.hero-card.card-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.hero-card.card-2 {
    top: 40%;
    right: 5%;
    animation-delay: 0.5s;
}

.hero-card.card-3 {
    top: 70%;
    right: 25%;
    animation-delay: 1s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    font-size: 3rem;
    animation: floatEmoji 5s ease-in-out infinite;
    opacity: 0.8;
}

.floating-element.el-1 {
    top: 5%;
    right: 10%;
    animation-delay: 0s;
}

.floating-element.el-2 {
    top: 55%;
    right: 0%;
    animation-delay: 1s;
}

.floating-element.el-3 {
    top: 85%;
    right: 15%;
    animation-delay: 2s;
}

@keyframes floatEmoji {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-20px) rotate(15deg); 
        opacity: 1;
    }
}

/* Dark Mode Hero */
body.dark-mode .hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f1a 100%);
}

body.dark-mode .hero-title {
    color: #ffffff;
}

body.dark-mode .hero-subtitle {
    color: #b0b0c0;
}

body.dark-mode .hero-badge {
    background: rgba(124, 58, 237, 0.3);
    border-color: rgba(124, 58, 237, 0.5);
    color: #c4b5fd;
}

body.dark-mode .hero-card {
    background: #252542;
    border: 1px solid #3a3a5a;
}

body.dark-mode .hero-card span {
    color: #e0e0e0;
}

body.dark-mode .hero-stats {
    border-color: rgba(124, 58, 237, 0.3);
}

body.dark-mode .hero-stats .stat-label {
    color: #9090a0;
}

/* Mobile Hero */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .hero-stats .stat {
        flex: 1;
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
}

/* ============================================
   PROGRAMS/PRICING SECTION FIX
   ============================================ */
.programs-section,
#programs {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.program-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.program-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.program-duration {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.program-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
}

.program-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-500);
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.program-features li {
    padding: 0.6rem 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.program-features li i {
    color: var(--green);
    font-size: 0.9rem;
}

.program-card .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Dark Mode Programs */
body.dark-mode .programs-section,
body.dark-mode #programs {
    background: #0f0f1a;
}

body.dark-mode .program-card {
    background: #252542;
    border-color: #3a3a5a;
}

body.dark-mode .program-card:hover {
    border-color: var(--primary);
}

body.dark-mode .program-card.featured {
    border-color: var(--primary);
}

body.dark-mode .program-card h3 {
    color: #ffffff;
}

body.dark-mode .program-duration,
body.dark-mode .program-features li {
    color: #b0b0c0;
}

/* Mobile Programs */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .programs-section,
    #programs {
        padding: 4rem 1.5rem;
    }
}

/* ============================================
   PROGRAMS SECTION - EXACT FIX
   ============================================ */
.programs {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.programs .container {
    max-width: 1200px;
    margin: 0 auto;
}

.programs .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.programs .section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.programs .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.programs .section-subtitle {
    color: var(--gray-500);
    font-size: 1.1rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
    border-color: var(--primary);
}

.program-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.program-card .program-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.program-level {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.program-duration {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.program-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
}

.program-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-500);
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    text-align: left;
}

.program-features li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.program-features li i {
    color: #10b981;
    font-size: 0.85rem;
}

/* Dark Mode Programs */
body.dark-mode .programs {
    background: #0f0f1a;
}

body.dark-mode .programs .section-title {
    color: #ffffff;
}

body.dark-mode .programs .section-subtitle {
    color: #9090a0;
}

body.dark-mode .programs .section-badge {
    background: rgba(124, 58, 237, 0.2);
    color: #c4b5fd;
}

body.dark-mode .program-card {
    background: #1e1e38;
    border-color: #3a3a5a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .program-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
}

body.dark-mode .program-card.featured {
    background: linear-gradient(135deg, #2d2a4a 0%, #3d3a5a 100%);
    border-color: var(--primary);
}

body.dark-mode .program-card h3 {
    color: #ffffff;
}

body.dark-mode .program-duration {
    color: #9090a0;
}

body.dark-mode .program-features li {
    color: #b0b0c0;
}

/* Mobile Programs */
@media (max-width: 768px) {
    .programs {
        padding: 4rem 1.5rem;
    }
    
    .programs .section-title {
        font-size: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
}

/* ============================================
   PROGRAMS SECTION - EXACT FIX
   ============================================ */
.programs {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.programs .container {
    max-width: 1200px;
    margin: 0 auto;
}

.programs .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.programs .section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.programs .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.programs .section-subtitle {
    color: var(--gray-500);
    font-size: 1.1rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
    border-color: var(--primary);
}

.program-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.program-card .program-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.program-level {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.program-duration {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.program-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
}

.program-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-500);
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    text-align: left;
}

.program-features li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.program-features li i {
    color: #10b981;
    font-size: 0.85rem;
}

/* Dark Mode Programs */
body.dark-mode .programs {
    background: #0f0f1a;
}

body.dark-mode .programs .section-title {
    color: #ffffff;
}

body.dark-mode .programs .section-subtitle {
    color: #9090a0;
}

body.dark-mode .programs .section-badge {
    background: rgba(124, 58, 237, 0.2);
    color: #c4b5fd;
}

body.dark-mode .program-card {
    background: #1e1e38;
    border-color: #3a3a5a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .program-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
}

body.dark-mode .program-card.featured {
    background: linear-gradient(135deg, #2d2a4a 0%, #3d3a5a 100%);
    border-color: var(--primary);
}

body.dark-mode .program-card h3 {
    color: #ffffff;
}

body.dark-mode .program-duration {
    color: #9090a0;
}

body.dark-mode .program-features li {
    color: #b0b0c0;
}

/* Mobile Programs */
@media (max-width: 768px) {
    .programs {
        padding: 4rem 1.5rem;
    }
    
    .programs .section-title {
        font-size: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
}
