/* =============================================
   Specedu Academy - CSS Styles
   Clean, modern design for kids
============================================= */

/* CSS Variables */
:root {
    /* Primary Colors - Rainbow Palette */
    --color-red: #FF6B6B;
    --color-orange: #FF9F43;
    --color-yellow: #FFE66D;
    --color-green: #4ECDC4;
    --color-blue: #45B7D1;
    --color-purple: #A855F7;
    --color-pink: #FF6B9D;
    
    /* Brand Colors */
    --color-primary: #6366F1;
    --color-primary-dark: #4F46E5;
    --color-secondary: #10B981;
    
    /* Gradient Backgrounds */
    --gradient-rainbow: linear-gradient(135deg, #FF6B6B, #FF9F43, #FFE66D, #4ECDC4, #45B7D1, #A855F7);
    --gradient-sunset: linear-gradient(135deg, #FF6B6B, #FF9F43, #FFE66D);
    --gradient-ocean: linear-gradient(135deg, #45B7D1, #4ECDC4, #A855F7);
    --gradient-candy: linear-gradient(135deg, #FF6B9D, #FF9F43, #FFE66D);
    --gradient-primary: linear-gradient(135deg, #6366F1, #8B5CF6);
    
    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-light: #F8FAFC;
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F1F5F9;
    --color-gray-200: #E2E8F0;
    --color-gray-400: #94A3B8;
    --color-gray-500: #64748B;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1E293B;
    --color-dark: #0F172A;
    
    /* Typography */
    --font-display: 'Fredoka', cursive;
    --font-body: 'Nunito', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-colored: 0 10px 40px rgba(99, 102, 241, 0.25);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
}

.logo-icon {
    font-size: 1.8rem;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-weight: 600;
    color: var(--color-gray-600);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.btn-register {
    background: var(--gradient-primary);
    color: var(--color-white) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: var(--shadow-colored);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.35);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =============================================
   HERO SECTION - Clean & Modern
============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FAFBFF 0%, #F0F4FF 50%, #FDF4FF 100%);
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.bg-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.bg-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.bg-shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    top: 40%;
    left: 30%;
}

.bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--color-gray-200) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    gap: var(--space-4xl);
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content {
    flex: 1;
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    color: var(--color-dark);
}

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

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-gray-500);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.hero-languages {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.lang-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--color-gray-700);
}

.lang-flag {
    font-size: 1.2rem;
}

.lang-divider {
    width: 1px;
    height: 20px;
    background: var(--color-gray-300);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.35);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    background: var(--color-white);
    color: var(--color-gray-700);
    border: 2px solid var(--color-gray-200);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(99, 102, 241, 0.05);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    max-width: 550px;
    position: relative;
}

.visual-container {
    position: relative;
    padding: 20px;
}

.main-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.main-hero-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 30px;
    left: -40px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 80px;
    right: -30px;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: -10px;
    left: 30px;
    animation-delay: 0.5s;
}

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

.card-emoji {
    font-size: 1.8rem;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text strong {
    font-size: 0.9rem;
    color: var(--color-dark);
    font-weight: 700;
}

.card-text small {
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

.programs-mini {
    display: flex;
    gap: 8px;
}

.programs-mini span {
    width: 36px;
    height: 36px;
    background: var(--color-gray-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* =============================================
   SECTION STYLES
============================================= */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-block;
    background: var(--gradient-ocean);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

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

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

.text-gradient-purple {
    background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-pink {
    background: linear-gradient(135deg, var(--color-pink), var(--color-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about-section {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.about-card {
    background: var(--color-gray-50);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-gray-100);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-rainbow);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--color-white);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2.5rem;
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.about-card p {
    color: var(--color-gray-500);
}

/* Programs Section */
.programs-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-50) 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.program-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--color-gray-100);
}

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

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

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-emoji {
    font-size: 4rem;
    text-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.program-content {
    padding: var(--space-xl);
}

.program-content h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
    color: var(--card-color);
}

.program-content p {
    color: var(--color-gray-500);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.program-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--color-gray-700);
}

/* Mentors Section */
.mentors-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, #F5F3FF 0%, #FDF2F8 100%);
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-xl);
}

.mentor-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.mentor-card:hover {
    transform: translateY(-10px);
}

.mentor-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto var(--space-md);
}

.mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--color-white);
    box-shadow: var(--shadow-md);
}

.mentor-badge {
    position: absolute;
    bottom: 0;
    right: 10px;
    background: var(--color-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.mentor-card h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--color-dark);
}

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

/* Gallery Section */
.gallery-section {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(236, 72, 153, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* CTA Section */
.cta-section {
    padding: var(--space-4xl) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.cta-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--color-white);
    top: -100px;
    left: -100px;
}

.cta-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--color-yellow);
    bottom: -50px;
    right: 10%;
}

.cta-shape.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--color-white);
    top: 50%;
    right: -50px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
    color: var(--color-white);
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.cta-features span {
    font-weight: 600;
    font-size: 1rem;
}

.btn-cta {
    background: var(--color-white);
    color: var(--color-primary);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-4xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand .logo-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-md);
}

.footer-brand h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: var(--color-gray-400);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: var(--space-sm);
}

.footer-links a,
.footer-contact li {
    color: var(--color-gray-400);
    transition: color 0.3s ease;
}

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

.language-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.lang-badge-lg {
    background: rgba(255,255,255,0.1);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 600;
}

.footer-tagline {
    color: var(--color-yellow);
    font-style: italic;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--color-gray-500);
}

/* =============================================
   RESPONSIVE DESIGN
============================================= */
@media (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column;
        gap: var(--space-3xl);
        padding: var(--space-xl);
    }
    
    .hero-content {
        max-width: none;
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: none;
    }
    
    .hero-languages {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
    }
    
    .floating-card.card-1 {
        left: -20px;
    }
    
    .floating-card.card-2 {
        right: -20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: var(--space-3xl);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: var(--space-xl);
    }
    
    .floating-card {
        display: none;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
        align-items: center;
    }
    
    .stat-item {
        align-items: center;
    }
    
    .mentors-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
