/* ========================================
   ROOT VARIABLES & COLOR PALETTE
======================================== */
:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --dark: #1e293b;
    --dark-light: #334155;
    --light: #f8fafc;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   GLOBAL STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Scope button styles to page content only, exclude navbar buttons */
main .btn,
section .btn,
footer .btn {
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
    border: none;
    text-transform: none;
    letter-spacing: 0.3px;
}

main .btn:focus,
section .btn:focus,
footer .btn:focus {
    box-shadow: none;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 50%, #1e40af 100%);
    color: var(--white);
    overflow: hidden;
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(14, 165, 233, 0.85) 0%,
        rgba(37, 99, 235, 0.82) 50%,
        rgba(30, 64, 175, 0.8) 100%
    );
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    animation: float-subtle 25s infinite ease-in-out;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.05));
}

.shape-2 {
    width: 600px;
    height: 600px;
    top: 30%;
    right: -10%;
    animation-delay: 8s;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(37, 99, 235, 0.04));
}

.shape-3 {
    width: 300px;
    height: 300px;
    bottom: -5%;
    left: 40%;
    animation-delay: 15s;
    border-radius: 41% 59% 58% 42% / 45% 60% 40% 55%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(37, 99, 235, 0.03));
}

@keyframes float-subtle {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1); 
    }
    33% { 
        transform: translate(30px, -30px) rotate(5deg) scale(1.05); 
    }
    66% { 
        transform: translate(-20px, 20px) rotate(-5deg) scale(0.95); 
    }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-header {
    position: relative;
    z-index: 10;
}

.hero-header h1 {
    color: var(--white) !important;
    font-weight: 800 !important;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-header p {
    color: var(--white) !important;
    font-weight: 500 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-actions {
    position: relative;
    z-index: 10;
}

.hero-features {
    position: relative;
    z-index: 10;
}

.badge-pill {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(37, 99, 235, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(37, 99, 235, 0.3);
    text-shadow: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.hero .lead {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Hero section button styles - scoped to avoid navbar conflicts */
.hero-content .btn-primary,
section .btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #172554 100%);
    color: #ffffff;
    border: none;
    transition: var(--transition);
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    border-radius: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.hero-content .btn-primary:hover,
section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.5);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f1419 100%);
    color: #ffffff;
}

.hero-content .btn-outline-light {
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.hero-content .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2rem;
    animation: fadeSlideDown 0.8s ease-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    font-size: 1.25rem;
    color: var(--white);
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Content */
.hero-content .display-2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero CTA Buttons */
.hero-content .gap-3 {
    animation: fadeSlideUp 0.8s ease-out 0.8s backwards;
}

/* Hero Stats */
.hero-stats {
    margin-top: 4rem;
    animation: fadeSlideUp 0.8s ease-out 1s backwards;
}

.stat-card {
    padding: 2rem 1.75rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
}

.stat-card:hover::before {
    opacity: 1;
}

/* Stat Icon */
.stat-icon {
    font-size: 2.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    animation: pulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Animations */
.animate-slide-up {
    animation: slideUp 0.8s ease-out both;
    opacity: 0;
    will-change: opacity, transform;
}

/* Ensure hero-specific animation initial state overrides other rules */
.hero .animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
 .delay-4 { animation-delay: 0.8s; }
 .delay-5 { animation-delay: 1s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out both;
    opacity: 0;
    will-change: opacity;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Hero Feature Cards */
.hero-features {
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.feature-icon {
    font-size: 2.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-number {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.feature-title {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.feature-text {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    font-size: 0.9rem;
}

/* ========================================
   SECTION BADGES
======================================== */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

/* ========================================
   EOP SUMMARY SECTION
======================================== */
.eop-summary {
    background-color: var(--white);
    position: relative;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.image-card {
    position: relative;
}

.image-card img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.floating-card {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: floatCard 3s ease-in-out infinite;
    transform: scale(0.7);
    font-size: 0.8rem;
}

.floating-card i {
    font-size: 1rem;
}

.floating-card h6 {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.floating-card small {
    font-size: 0.65rem;
}

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

/* ========================================
   AKC COURSES SECTION
======================================== */
.akc-courses {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.course-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.course-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.course-badge.badge-success {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.course-badge.badge-info {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.course-content {
    padding: 1.5rem;
}

.course-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.course-meta {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Course card button - scoped */
.course-card .btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    transition: var(--transition);
}

.course-card .btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(5px);
}

/* ========================================
   HOW IT WORKS SECTION
======================================== */
.how-it-works {
    background: var(--white);
    position: relative;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #2563eb, #1e40af);
    transform: translateY(-50%);
    z-index: 0;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
}

.steps-container > .col-lg-4 {
    display: flex;
}

.step-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: var(--transition);
    flex-shrink: 0;
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.step-number i {
    font-size: 2.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number-2 {
    background: linear-gradient(135deg, var(--secondary), #0d9488);
}

.step-number-3 {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.number-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.step-indicator {
    margin-top: auto;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.step-indicator::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #0ea5e9, #2563eb, #1e40af);
    animation: progress 2s ease-out forwards;
}

.step-card:hover .step-indicator::after {
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    to { width: 100%; }
}

/* Fade-in animation for steps */
.fade-in-step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-wrapper {
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

.stars {
    color: var(--accent);
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.3);
}

/* ========================================
   SUPPORT SECTION
======================================== */
.support {
    background: var(--white);
}

.support-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

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

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.support-card:hover .support-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--gray-300);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.footer h5,
.footer h6 {
    color: var(--white);
}

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

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

.footer-links a,
.footer-link {
    color: var(--gray-300);
    transition: var(--transition);
    text-decoration: none;
}

.footer-links a:hover,
.footer-link:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 991px) {
    .process-line {
        display: none;
    }
    
    .step-card {
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-badge {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge i {
        font-size: 1.1rem;
    }
    
    .hero-content .display-2 {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        margin-top: 3rem;
    }
    
    .stat-card {
        padding: 1.75rem 1.5rem;
        min-height: 160px;
    }
    
    .stat-icon {
        font-size: 2.25rem;
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
    }
    
    .step-number i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-content .display-2 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .hero-stats {
        margin-top: 2.5rem;
    }
    
    .stat-card {
        padding: 1.5rem 1.25rem;
        min-height: 150px;
        margin-bottom: 1rem;
    }
    
    .stat-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .course-card {
        margin-bottom: 1.5rem;
    }
}

/* Respect OS-level reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .animate-slide-up,
    .animate-fade-in,
    .animate-fade-in * {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.text-muted { color: var(--gray-500) !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.5) !important; }

/* Smooth Scroll */
html {
    scroll-padding-top: 80px;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
