/* General & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure social links are always clickable */
.social-link {
    cursor: pointer;
    pointer-events: auto;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.social-link:hover {
    color: var(--primary-red);
}

/* Color Variables */
:root {
    /* Background Colors */
    --bg-soft-blue: #F7FBFF;
    --bg-white: #FFFFFF;
    --bg-light-gray: #F8F9FA;
    
    /* Primary Colors */
    --primary-red: #EE6363;
    --primary-red-dark: #D54D4D;
    --primary-red-light: #F4A6A6;
    
    /* Text Colors */
    --text-dark: #2D2D2D;
    --text-medium: #666666;
    --text-light: #999999;
    
    /* Border Colors */
    --border-color: #D0D0D0;
    --border-light: #EAEAEA;
    
    /* Additional variables for form elements */
    --border-radius: 16px;
    --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Legacy variables for compatibility */
    --primary: var(--primary-red);
    --primary-dark: var(--primary-red-dark);
    --primary-light: var(--primary-red-light);
    --primary-xlight: #4c36c4; /* Kept for compatibility */
    --secondary: var(--bg-soft-blue);
    --secondary-dark: #a8dadc; /* Kept for compatibility */
    --secondary-light: #e8f4f8; /* Kept for compatibility */
    --accent: #1d3557; /* Kept for compatibility */
    --accent-light: #bde0fe; /* Kept for compatibility */
    --dark: var(--text-dark);
    --darker: var(--text-dark);
    --light: var(--bg-light-gray);
    --lighter: var(--bg-white);
    --gray: var(--text-medium);
    --gray-light: var(--border-light);
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #0ea5e9;
    --blush: #fff0f5; /* Kept for compatibility */
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--darker);
    background-color: var(--bg-soft-blue); /* Soft blue background */
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Mobile-first font scaling */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
        line-height: 1.5;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark); /* Black headings */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile container adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Section */
.section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #457b9d; /* Softer blue color */
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

/* Responsive section titles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
}

@media (max-width: 375px) {
    .section-title {
        font-size: 1.6rem;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgba(69, 123, 157, 0.8), rgba(168, 218, 220, 0.8));
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(69, 123, 157, 0.2);
}

@media (max-width: 480px) {
    .section-title::after {
        width: 60px;
        height: 3px;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark); /* Black text */
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 0.9rem;
    }
}

.text-gradient {
    color: var(--primary); /* Red text */
}

.text-center {
    text-align: center;
}

.required {
    color: var(--primary); /* Red text */
}

/* Focus styles */
button:focus-visible, 
a:focus-visible, 
input:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-align: center;
    min-height: 48px; /* Touch-friendly minimum */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Mobile button adjustments */
@media (max-width: 768px) {
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 10px;
    }
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(238, 99, 99, 0.3);
}

.btn-primary:hover {
    background: var(--primary-red-dark);
    box-shadow: 0 8px 25px rgba(238, 99, 99, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-glass {
    background: var(--primary-red);
    color: var(--light);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    border: none;
}

.btn-glass:hover {
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.btn-glass:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    color: var(--light);
    box-shadow: 0 4px 15px rgba(69, 123, 157, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(69, 123, 157, 0.4);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

.btn-enroll {
    background-color: var(--primary);
    color: white;
    width: 100%;
    margin-top: 1rem;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--border-radius);
    min-height: 48px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-enroll:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.btn-enroll:active {
    transform: translateY(0) scale(0.98);
}

.btn-accent {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    color: var(--light);
    box-shadow: 0 4px 15px rgba(69, 123, 157, 0.3);
}

.btn-accent:hover {
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(69, 123, 157, 0.4);
}

.btn-accent:active {
    transform: translateY(0) scale(0.98);
}

.btn-warning {
    background: linear-gradient(90deg, var(--warning), #fbbf24);
    color: var(--light);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-warning:hover {
    background: linear-gradient(90deg, #d97706, var(--warning));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-warning:active {
    transform: translateY(0) scale(0.98);
}

.btn-block {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .btn-lg {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Navbar - FIXED VERSION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(240, 248, 255, 0.95); /* Fainter blue background */
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 15px 0;
}

.navbar:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    background: rgba(240, 248, 255, 0.98); /* Fainter blue background */
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #457b9d, #a8dadc); /* Softer blue accent bar */
    border-radius: 0 0 4px 4px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 16px;
    }
}

.navbar .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
    z-index: 1002; /* Above mobile menu */
    position: relative;
}

.navbar .logo img {
    height: 80px;
    margin-right: 12px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .navbar .logo img {
        height: 60px;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .navbar .logo img {
        height: 50px;
        margin-right: 6px;
    }
}

.navbar .logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-highlight {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

@media (max-width: 768px) {
    .logo-highlight {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo-highlight {
        font-size: 1rem;
    }
}

.logo-text span:last-child {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
}

@media (max-width: 768px) {
    .logo-text span:last-child {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo-text span:last-child {
        font-size: 0.75rem;
    }
}

/* Desktop Navigation */
.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
}

.nav-item {
    margin-left: 20px;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 12px 15px;
    position: relative;
    border-radius: 30px;
    letter-spacing: 0.3px;
    min-height: 44px; /* Touch-friendly */
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: #457b9d;
    background-color: rgba(69, 123, 157, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #457b9d;
    font-weight: 700;
    background-color: rgba(69, 123, 157, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, #457b9d, #a8dadc);
    border-radius: 3px;
}

.register-btn {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: var(--light);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
    min-height: 44px;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
}

.register-btn i {
    margin-right: 6px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle .bar {
    height: 2px;
    width: 100%;
    background-color: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Navigation - COMPLETELY REWRITTEN */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.8) 100%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 20px 40px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 1001;
        overflow-y: auto;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    }
    
    .nav-list.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        margin: 0 0 20px 0;
        width: 100%;
        max-width: 280px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 16px 24px;
        border-radius: 12px;
        width: 100%;
        text-align: center;
        justify-content: center;
        min-height: 56px;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(226, 232, 240, 0.5);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }
    
    .nav-link:hover, .nav-link.active {
        background: rgba(230, 57, 70, 0.9);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(230, 57, 70, 0.2);
    }
    
    .register-btn {
        margin-top: 20px;
        padding: 16px 32px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 280px;
        min-height: 56px;
        box-shadow: 0 4px 16px rgba(230, 57, 70, 0.2);
    }
    
    .register-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
    }
    
    /* Mobile menu overlay */
    .nav-list.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
        backdrop-filter: blur(2px);
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .nav-list {
        padding: 80px 15px 30px;
    }
    
    .nav-item {
        margin-bottom: 16px;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 14px 20px;
        min-height: 50px;
    }
    
    .register-btn {
        font-size: 1rem;
        padding: 14px 28px;
        min-height: 50px;
    }
}

/* Hero Section - FIXED VERSION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--darker);
    overflow: hidden;
    margin-top: 80px;
    background: var(--bg-soft-blue); /* Soft blue background */
    background-attachment: fixed;
    will-change: transform, opacity;
}

@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 60px);
        margin-top: 60px;
        padding: 40px 0;
        background-attachment: scroll; /* Better mobile performance */
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: calc(100vh - 50px);
        margin-top: 50px;
        padding: 30px 0;
    }
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(163, 230, 53, 0.05) 0%, rgba(255, 255, 255, 0) 20%),
                radial-gradient(circle at 90% 80%, rgba(179, 217, 254, 0.05) 0%, rgba(255, 255, 255, 0) 20%);
    animation: float 15s infinite linear;
}

.hero::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(241, 250, 238, 0.1), transparent, rgba(240, 128, 128, 0.1));
    animation: rotate 20s infinite linear;
    z-index: -1;
    opacity: 0.1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 500px;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        min-height: auto;
    }
}

.hero-text {
    flex: 1;
    animation: fadeInUp 0.8s ease;
    max-width: 100%;
}

@media (max-width: 992px) {
    .hero-text {
        order: 1;
        margin-bottom: 20px;
    }
}

/* HERO TITLE - MAIN FIX FOR TEXT CUTOFF */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 16px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 14px;
        padding: 0 5px;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--dark); /* Black text */
}

@media (max-width: 992px) {
    .hero-subtitle {
        max-width: 100%;
        margin: 0 auto 24px;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
        padding: 0 5px;
    }
}

@media (max-width: 375px) {
    .hero-subtitle {
        font-size: 0.95rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 24px;
    }
}

.hero-image {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@media (max-width: 992px) {
    .hero-image {
        order: 0;
        flex: 0 0 auto;
        margin-bottom: 20px;
    }
    
    .hero-image img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-image img {
        max-width: 150px;
    }
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .hero-stats {
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 24px;
    }
}

.hero-stat {
    display: flex;
    align-items: center;
}

.hero-stat-icon {
    font-size: 2rem;
    color: rgba(241, 250, 238, 0.8);
    margin-right: 15px;
}

@media (max-width: 480px) {
    .hero-stat-icon {
        font-size: 1.5rem;
        margin-right: 10px;
    }
}

.hero-stat-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark); /* Black text */
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .hero-stat-text h3 {
        font-size: 1.5rem;
    }
}

.hero-stat-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    color: var(--dark); /* Black text */
}

@media (max-width: 480px) {
    .hero-stat-text p {
        font-size: 0.8rem;
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--bg-soft-blue);
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 40px 0;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 300px;
        margin: 0 auto;
    }
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 40px 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, box-shadow;
}

@media (max-width: 768px) {
    .stat-card {
        padding: 30px 16px;
    }
}

@media (max-width: 480px) {
    .stat-card {
        padding: 24px 16px;
    }
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
    .stat-card:hover {
        transform: translateY(-5px);
    }
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(240, 128, 128, 0.8), rgba(230, 57, 70, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 480px) {
    .stat-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    margin-bottom: 5px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(217, 4, 41, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark); /* Black text */
    font-weight: 500;
}

@media (max-width: 480px) {
    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
}

/* Page Header */
.page-header {
    background: var(--bg-soft-blue); /* Soft blue background */
    color: var(--darker);
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease;
}

.courses-page .page-header {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3), rgba(255, 240, 245, 0.3));
}

/* Section header for courses page */
.courses-page .section-header .section-title {
    color: var(--darker);
}

.courses-page .section-header .section-title::after {
    background: linear-gradient(90deg, rgba(255, 182, 193, 0.8), rgba(255, 240, 245, 0.8));
}

.courses-page .section-header .text-gradient {
    background: linear-gradient(90deg, #e63946, #f08080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 50px;
        margin-top: 50px;
    }
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease;
    color: var(--darker);
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 10px;
    }
}

@media (max-width: 375px) {
    .page-header h1 {
        font-size: 1.6rem;
    }
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    color: var(--dark); /* Black text */
}

@media (max-width: 768px) {
    .page-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .page-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* About Page */
.about-page {
    padding: 80px 0;
    background: var(--bg-soft-blue); /* Soft blue background */
}

@media (max-width: 768px) {
    .about-page {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .about-page {
        padding: 40px 0;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    animation: fadeIn 1s ease;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .about-grid {
        gap: 30px;
        margin-bottom: 40px;
    }
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    display: inline-block;
    animation: fadeInLeft 1s ease;
}

@media (max-width: 768px) {
    .about-text h2 {
        font-size: 1.7rem;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 14px;
    }
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: rgba(230, 57, 70, 0.8);
    border-radius: 2px;
}

@media (max-width: 480px) {
    .about-text h2::after {
        width: 50px;
        height: 3px;
        bottom: -8px;
    }
}

.about-text p {
    margin-bottom: 20px;
    color: var(--dark); /* Black text */
    font-size: 1.05rem;
    animation: fadeInUp 1s ease;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-text p {
        font-size: 1rem;
        margin-bottom: 16px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 400px;
    animation: fadeInRight 1s ease;
}

@media (max-width: 992px) {
    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-image {
        height: 250px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .about-image {
        height: 200px;
        border-radius: 10px;
    }
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .about-image:hover img {
        transform: scale(1.02);
    }
}

.achievements {
    margin-top: 60px;
    animation: fadeIn 1s ease;
}

@media (max-width: 768px) {
    .achievements {
        margin-top: 50px;
    }
}

@media (max-width: 480px) {
    .achievements {
        margin-top: 40px;
    }
}

.achievements h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary);
    position: relative;
    animation: fadeInDown 1s ease;
}

@media (max-width: 768px) {
    .achievements h2 {
        font-size: 1.7rem;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .achievements h2 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
}

.achievements h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgba(230, 57, 70, 0.8), rgba(240, 128, 128, 0.8));
    border-radius: 2px;
}

@media (max-width: 480px) {
    .achievements h2::after {
        width: 60px;
        height: 3px;
    }
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 280px;
        margin: 32px auto 0;
    }
}

.achievement-card {
    background: rgba(232, 244, 248, 0.7);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, box-shadow;
}

@media (max-width: 768px) {
    .achievement-card {
        padding: 32px 16px;
    }
}

@media (max-width: 480px) {
    .achievement-card {
        padding: 24px 16px;
        border-radius: 12px;
    }
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
}

@media (max-width: 480px) {
    .achievement-card:hover {
        transform: translateY(-5px);
    }
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.8), rgba(217, 4, 41, 0.8));
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.2);
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 480px) {
    .achievement-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
}

.achievement-card h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .achievement-card h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .achievement-card h3 {
        font-size: 1.5rem;
    }
}

.achievement-card p {
    color: var(--dark); /* Black text */
    font-weight: 500;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .achievement-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .achievement-card p {
        font-size: 0.9rem;
    }
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: var(--bg-soft-blue); /* Soft blue background */
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .mission-section {
        padding: 40px 0;
    }
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark); /* Black text */
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .mission-quote {
        font-size: 1.2rem;
        padding: 0 20px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .mission-quote {
        font-size: 1.1rem;
        padding: 0 10px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
}

.mission-quote::before,
.mission-quote::after {
    content: '"';
    font-size: 4rem;
    color: rgba(240, 128, 128, 0.8);
    position: absolute;
    font-family: serif;
}

.mission-quote::before {
    top: -20px;
    left: 0;
}

.mission-quote::after {
    bottom: -60px;
    right: 0;
}

@media (max-width: 480px) {
    .mission-quote::before,
    .mission-quote::after {
        font-size: 3rem;
    }
    
    .mission-quote::before {
        top: -15px;
        left: -10px;
    }
    
    .mission-quote::after {
        bottom: -45px;
        right: -10px;
    }
}

.section-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, rgba(230, 57, 70, 0.8), rgba(241, 250, 238, 0.8));
    margin: 20px auto;
    border-radius: 2px;
}

@media (max-width: 480px) {
    .section-line {
        width: 80px;
        height: 3px;
    }
}

/* Courses Section */
.courses-section {
    padding: 100px 0;
    background: var(--bg-soft-blue); /* Soft blue background */
    position: relative;
    overflow: hidden;
}

.courses-page .courses-section {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.3), rgba(255, 248, 250, 0.3));
}

.courses-page .courses-section::before {
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm6 13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm42 18c1.104 0 2-.896 2-2s-.896-2-2-2-2 .896-2 2 .896 2 2 2zM60 5c1.104 0 2-.896 2-2s-.896-2-2-2-2 .896-2 2 .896 2 2 2zm28 18c1.104 0 2-.896 2-2s-.896-2-2-2-2 .896-2 2 .896 2 2 2zm-3 20c1.104 0 2-.896 2-2s-.896-2-2-2-2 .896-2 2 .896 2 2 2z' fill='%23ffc0cb' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .courses-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .courses-section {
        padding: 60px 0;
    }
}

.courses-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm6 13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm42 18c1.104 0 2-.896 2-2s-.896-2-2-2-2 .896-2 2 .896 2 2 2zM60 5c1.104 0 2-.896 2-2s-.896-2-2-2-2 .896-2 2 .896 2 2 2zm28 18c1.104 0 2-.896 2-2s-.896-2-2-2-2 .896-2 2 .896 2 2 2zm-3 20c1.104 0 2-.896 2-2s-.896-2-2-2-2 .896-2 2 .896 2 2 2z' fill='%234f46e5' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: 0;
}

.courses-section .container {
    position: relative;
    z-index: 1;
}

.courses-section .section-header {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .courses-section .section-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .courses-section .section-header {
        margin-bottom: 40px;
    }
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        margin-bottom: 40px;
    }
}

@media (max-width: 640px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto 32px;
    }
}

@media (max-width: 480px) {
    .courses-grid {
        max-width: 350px;
        gap: 16px;
    }
}

/* Course Card Styles - Enhanced Mobile Version */
.course-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform: translateY(0);
    border: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    will-change: transform, box-shadow;
}

/* Courses page specific styles for blush theme */
.courses-page .course-card {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.9) 0%, rgba(255, 248, 250, 0.9) 100%);
}

.courses-page .course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 182, 193, 0.2);
}

.course-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.courses-page .course-card {
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.1);
}

.courses-page .course-card::before {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.3) 0%, transparent 100%);
}

.courses-page .course-icon {
    background: linear-gradient(135deg, #ffb6c1, #ffc0cb);
    box-shadow: 0 10px 20px rgba(255, 182, 193, 0.3);
}

.courses-page .course-title {
    color: #e63946;
}

.courses-page .course-card:hover .course-title {
    color: #d90429;
}

.courses-page .course-features i {
    color: #ff69b4;
}

.courses-page .course-meta i {
    color: #e63946;
}

.courses-page .badge-primary {
    background: #e63946;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.courses-page .badge-accent {
    background: #ff69b4;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.3);
}

/* Course header backgrounds for blush theme */
.courses-page .course-header {
    background-color: rgba(255, 240, 245, 0.8);
}

/* Buttons for courses page */
.courses-page .btn-primary {
    background: linear-gradient(90deg, #e63946, #f08080);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.courses-page .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.courses-page .btn-enroll {
    background-color: #e63946;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.courses-page .btn-enroll:hover {
    background-color: #d90429;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.course-card:nth-child(n) {
    animation-delay: calc(0.1s * var(--index, 1));
}

.course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
}

@media (max-width: 480px) {
    .course-card:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 15px 30px rgba(230, 57, 70, 0.1);
    }
}

.course-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-xlight) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.course-card:hover::before {
    opacity: 0.3;
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.badge-primary {
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.badge-accent {
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(69, 123, 157, 0.3);
}

.course-header {
    padding: 35px 30px 25px;
    text-align: center;
    position: relative;
    background-color: rgba(232, 244, 248, 0.8);
    border-bottom: none;
}

@media (max-width: 480px) {
    .course-header {
        padding: 28px 25px 20px;
    }
}

.course-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

@media (max-width: 480px) {
    .course-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 20px;
    }
}

.course-title-wrapper {
    text-align: center;
}

.course-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary);
    transition: all 0.3s ease;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .course-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .course-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
}

.course-card:hover .course-title {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.course-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    gap: 3px;
}

.course-rating i {
    font-size: 1rem;
    color: #fbbf24;
}

.course-rating span {
    font-size: 0.9rem;
    color: var(--gray);
    margin-left: 8px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .course-rating i {
        font-size: 0.9rem;
    }
    
    .course-rating span {
        font-size: 0.85rem;
        margin-left: 6px;
    }
}

.course-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    color: var(--dark); /* Black text */
}

@media (max-width: 480px) {
    .course-content {
        padding: 25px;
    }
}

.course-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.course-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--dark); /* Black text */
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 480px) {
    .course-features li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
}

.course-features i {
    color: var(--success);
    margin-right: 12px;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.course-footer {
    margin-top: auto;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1rem;
    color: var(--dark); /* Black text */
    padding: 20px 0;
    border-top: none;
    border-bottom: none;
    gap: 15px;
}

@media (max-width: 480px) {
    .course-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.9rem;
        padding: 15px 0;
        margin-bottom: 20px;
    }
}

.course-meta .meta-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.course-meta i {
    margin-right: 8px;
    color: var(--primary);
    font-size: 1rem;
}

@media (max-width: 480px) {
    .course-meta i {
        font-size: 0.9rem;
        margin-right: 6px;
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-soft-blue); /* Soft blue background */
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 0;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}


    /* Features Grid - Mobile Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        gap: 20px;
        max-width: 350px;
        margin: 0 auto;
    }
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: linear-gradient(rgba(232, 244, 248, 0.7), rgba(255, 255, 255, 0.7)) padding-box,
                  linear-gradient(135deg, rgba(230, 57, 70, 0.3), rgba(240, 128, 128, 0.3)) border-box;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    transform: translateY(0);
    will-change: transform, box-shadow;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 24px 20px;
        border-radius: 12px;
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
}

@media (max-width: 480px) {
    .feature-card:hover {
        transform: translateY(-5px);
    }
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.8), rgba(240, 128, 128, 0.8));
    color: var(--light);
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.2);
}

@media (max-width: 480px) {
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

@media (max-width: 768px) {
    .feature-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
}

.feature-description {
    color: var(--dark); /* Black text */
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .feature-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .feature-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--bg-soft-blue); /* Soft blue background */
    color: var(--darker);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.courses-page .cta-section {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3), rgba(255, 240, 245, 0.3));
}

.courses-page .cta-section::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 0;
    }
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .cta-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .cta-content {
        padding: 0 15px;
    }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--dark); /* Black text */
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 14px;
        line-height: 1.3;
    }
}

@media (max-width: 375px) {
    .cta-title {
        font-size: 1.6rem;
    }
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--dark); /* Black text */
}

@media (max-width: 768px) {
    .cta-text {
        font-size: 1rem;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .cta-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(26, 34, 56, 0.95));
    color: var(--light);
    padding: 80px 0 0;
    position: relative;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgba(230, 57, 70, 0.8), rgba(240, 128, 128, 0.8));
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm6 13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm42 18c1.104 0 2-.896 2-2s-.896-2-2-2-2 .896-2 2 .896 2 2 2zM60 5c1.104 0 2-.896 2-2s-.896-2-2-2-2 .896-2 2 .896 2 2 2zm28 18c1.104 0 2-.896 2-2s-.896-2-2-2-2 .896-2 2 .896 2 2 2zm-3 20c1.104 0 2-.896 2-2s-.896-2-2-2-2 .896-2 2 .896 2 2 2z' fill='%233b82f6' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.2;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    color: var(--light);
}

@media (max-width: 768px) {
    .footer-col h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .footer-col h3 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, rgba(230, 57, 70, 0.8), rgba(240, 128, 128, 0.8));
    border-radius: 3px;
}

@media (max-width: 480px) {
    .footer-col h3::after {
        width: 35px;
        height: 2px;
        bottom: -8px;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .footer-brand {
        margin-bottom: 16px;
    }
}

.footer-logo {
    height: 50px;
    margin-right: 15px;
}

@media (max-width: 480px) {
    .footer-logo {
        height: 40px;
        margin-right: 10px;
    }
}

.footer-description {
    font-size: 0.95rem;
    color: var(--light);
    margin-bottom: 20px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 16px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .social-links {
        gap: 12px;
    }
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

@media (max-width: 480px) {
    .social-link:hover {
        transform: translateY(-2px);
    }
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .footer-links li {
        margin-bottom: 10px;
    }
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

@media (max-width: 768px) {
    .footer-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-links a {
        font-size: 0.85rem;
    }
}

.footer-links a:hover {
    color: var(--light);
    transform: translateX(5px);
}

@media (max-width: 480px) {
    .footer-links a:hover {
        transform: translateX(3px);
    }
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: var(--light);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .footer-contact li {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-contact li {
        margin-bottom: 10px;
        font-size: 0.85rem;
    }
}

.footer-contact i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1rem;
    padding-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .footer-contact i {
        margin-right: 10px;
        font-size: 0.9rem;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

@media (max-width: 480px) {
    .footer-bottom {
        padding: 16px 0;
    }
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .footer-bottom-content {
        gap: 12px;
    }
}

.footer-bottom p {
    color: var(--light);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 480px) {
    .footer-bottom-links {
        gap: 16px;
    }
}

.footer-bottom-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
}

.footer-bottom-links a:hover {
    color: var(--light);
}

/* Form Elements */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

@media (max-width: 480px) {
    .form-group {
        margin-bottom: 20px;
    }
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark); /* Black text */
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
}

.form-label.required:after {
    content: " *";
    color: var(--danger);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: var(--lighter);
    color: var(--dark); /* Black text */
}

@media (max-width: 480px) {
    .form-control {
        padding: 12px 14px;
        font-size: 14px;
    }
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}

textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

@media (max-width: 480px) {
    textarea.form-control {
        min-height: 120px;
    }
}

/* Course Syllabus */
.course-syllabus {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: linear-gradient(to bottom, rgba(255, 204, 213, 0.3), rgba(248, 250, 252, 0.3));
    border-radius: var(--border-radius);
    margin-top: 15px;
}

.course-syllabus.active {
    max-height: 1000px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid rgba(240, 128, 128, 0.5);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.1);
}

.courses-page .course-syllabus.active {
    background: linear-gradient(to bottom, rgba(255, 240, 245, 0.3), rgba(255, 248, 250, 0.3));
    border: 1px solid rgba(255, 182, 193, 0.5);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.1);
}

.courses-page .course-cta {
    border-top: 1px solid rgba(255, 182, 193, 0.5);
}

.courses-page .course-category,
.courses-page .course-duration {
    color: #e63946;
}

.courses-page .course-level,
.courses-page .course-mode {
    color: #e63946;
}

.courses-page .course-description {
    color: var(--darker);
}

.courses-page .course-syllabus li {
    color: var(--darker);
}

.courses-page .course-syllabus li i {
    color: #ff69b4;
}

.courses-page .course-syllabus h4 {
    color: var(--darker);
}

.courses-page .course-meta {
    color: var(--darker);
}

.courses-page .course-header {
    color: var(--darker);
}

.courses-page .course-body {
    color: var(--darker);
}

.courses-page .course-footer {
    color: var(--darker);
}

.courses-page .course-features {
    color: var(--darker);
}

.courses-page .course-features li {
    color: var(--darker);
}

.courses-page .course-title-wrapper {
    color: var(--darker);
}

.courses-page .page-header-title {
    color: var(--darker);
}

.courses-page .page-header-subtitle {
    color: var(--darker);
}

.courses-page .section-subtitle {
    color: var(--darker);
}

.courses-page .cta-title {
    color: var(--darker);
}

.courses-page .cta-text {
    color: var(--darker);
}

.courses-page .course-card {
    color: var(--darker);
}

.courses-page .course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 182, 193, 0.2);
}

@media (max-width: 480px) {
    .course-syllabus.active {
        padding: 20px;
        margin-top: 16px;
    }
}

.course-syllabus h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark); /* Black text */
    font-weight: 700;
}

@media (max-width: 480px) {
    .course-syllabus h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
}

.course-syllabus ul {
    list-style: none;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .course-syllabus ul {
        margin-bottom: 16px;
    }
}

.course-syllabus li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: var(--dark); /* Black text */
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .course-syllabus li {
        margin-bottom: 10px;
        padding-left: 25px;
        font-size: 0.9rem;
    }
}

.course-syllabus li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--success);
    font-size: 1rem;
}

@media (max-width: 480px) {
    .course-syllabus li i {
        top: 3px;
        font-size: 0.9rem;
    }
}

.course-cta {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

@media (max-width: 480px) {
    .course-cta {
        padding-top: 12px;
    }
}

/* Submit Button */
.submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

@media (max-width: 480px) {
    .submit-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

@media (max-width: 480px) {
    .submit-btn:hover {
        transform: translateY(-1px);
    }
}

.submit-btn:disabled {
    background: var(--gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Response Messages */
.form-response {
    padding: 16px;
    margin-top: 20px;
    border-radius: 8px;
    display: none;
    font-size: 15px;
}

@media (max-width: 480px) {
    .form-response {
        padding: 12px;
        margin-top: 16px;
        font-size: 14px;
    }
}

.form-response.success {
    background: #e6f4ea;
    color: #1e8e3e;
    border: 1px solid #abdfc1;
    display: block;
}

.form-response.error {
    background: #fce8e6;
    color: #d93025;
    border: 1px solid #f5b8b2;
    display: block;
}

/* Spinner Animation */
.spinner {
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Validation Styles */
.is-invalid {
    border-color: var(--danger) !important;
}

.invalid-feedback {
    color: var(--danger);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

@media (max-width: 480px) {
    .invalid-feedback {
        font-size: 12px;
    }
}

/* Utility Classes */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-warning { color: var(--warning); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }

.bg-primary-light { background-color: var(--primary-xlight); }
.bg-secondary-light { background-color: #fff7ed; }
.bg-accent-light { background-color: #fdf2f8; }
.bg-warning-light { background-color: #fffbeb; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Animation Classes */
.animate-fadeIn { animation: fadeIn 0.6s ease forwards; }
.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.animate-fadeInDown { animation: fadeInDown 0.6s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.6s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.6s ease forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }

/* Animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* Accessibility & Performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero::before,
    .hero::after,
    .cta-section::before {
        animation: none !important;
    }
}

/* Print Styles */
@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .navbar,
    .footer,
    .hero-buttons,
    .cta-section {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000 !important;
        page-break-after: avoid;
    }
    
    .container {
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}