/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00ff88;
    --primary-dark: #00cc6a;
    --secondary-color: #ffd700;
    --accent-color: #00ff88;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-light: #808080;
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-dark: #000000;
    --bg-card: #1a1a1a;
    --border-color: #333333;
    --shadow-sm: 0 1px 2px 0 rgba(0, 255, 136, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 255, 136, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 255, 136, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 255, 136, 0.4);
    --gradient-primary: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    --gradient-secondary: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --gradient-accent: linear-gradient(135deg, #00ff88 0%, #00ffaa 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.nav-logo a {
    text-decoration: none;
    background: linear-gradient(45deg, #ffffff, #e0e0e0, #ffffff, #c0c0c0, #ffffff);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.5));
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.logo-dot {
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
    }
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-primary) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-menu a {
    color: var(--text-primary) !important;
    text-decoration: none;
}

.nav-menu a:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary) !important;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary) !important;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

/* Hero Section */
.hero {
    padding: 0px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(0,255,136,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

/* Technology Strip */
.tech-strip {
    position: relative;
    width: 100%;
    height: 60px;
    background: #00ff88;
    border-bottom: 3px solid #000000;
    overflow: hidden;
    z-index: 1001;
    display: block;
    margin: 0;
    padding: 0;
    margin-top: 80px;
    margin-bottom: 0;
}

.tech-strip-content {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scrollTech 30s linear infinite;
    white-space: nowrap;
}

.tech-item {
    display: inline-block;
    margin-right: 3rem;
    padding: 0.5rem 1rem;
    background: #000000;
    color: #00ff88;
    font-family: 'Inter', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    border: 2px solid #00ff88;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tech-item:hover {
    background: #00ff88;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.6);
}

@keyframes scrollTech {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


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

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000000;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.6);
    background: linear-gradient(135deg, #00ffaa 0%, #00ff88 100%);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: #000000;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.btn-course {
    background: var(--gradient-primary);
    color: #000000;
    width: 100%;
    justify-content: center;
    margin-top: auto;
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

.btn-course:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
    background: linear-gradient(135deg, #00ffaa 0%, #00ff88 100%);
}

/* Contact buttons styles */
.contact-buttons {
    text-align: center;
    padding: 2rem;
}

.contact-buttons h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-buttons p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-buttons-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(34, 158, 217, 0.4);
    gap: 0.75rem;
}

.btn-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(34, 158, 217, 0.6);
    background: linear-gradient(135deg, #229ED9 0%, #0088cc 100%);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    gap: 0.75rem;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-email:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.contact-email i {
    font-size: 1.25rem;
    color: #00ff88;
}

.contact-email a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
}

.contact-email a:hover {
    text-decoration: underline;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.code-window {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 100%;
    max-width: 580px;
}

.window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.window-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.window-title {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.code-content {
    padding: 16px;
    background: #0d1117;
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: 0.8rem;
    line-height: 1.4;
    overflow-x: auto;
}

.code-content pre {
    margin: 0;
    color: #e6edf3;
}

.code-content .comment { color: #7c3aed; }
.code-content .keyword { color: #ff7b72; }
.code-content .function { color: #d2a8ff; }
.code-content .variable { color: #79c0ff; }
.code-content .string { color: #a5d6ff; }
.code-content .boolean { color: #ff7b72; }

/* Adult Characters - Left Side */
.adult-characters-left {
    position: absolute;
    left: -60px;
    bottom: -20px;
    z-index: 10;
}

/* Adult Characters - Right Side */
.adult-characters-right {
    position: absolute;
    right: -80px;
    bottom: -20px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.adult-man,
.adult-woman,
.adult-developer {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.adult-woman {
    animation-delay: 0.5s;
}

.adult-man {
    animation-delay: 1s;
}

.adult-developer {
    animation-delay: 1.5s;
}

.adult-illustration {
    width: 120px;
    height: 180px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.adult-illustration:hover {
    transform: scale(1.05);
}

/* Special styles for developer */
.adult-developer .adult-illustration {
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
}

.adult-developer:hover .adult-illustration {
    transform: scale(1.08);
}

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

/* Make sure characters appear behind code window but above background */
.code-window {
    position: relative;
    z-index: 5;
}

.teen-characters {
    z-index: 3;
}

/* Adult Professional */
.adult-professional {
    position: absolute;
    top: -30px;
    right: -20px;
    z-index: 15;
    animation: professional-float 3s ease-in-out infinite;
}

.adult-illustration {
    width: 120px;
    height: 180px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.adult-illustration:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Professional floating animation */
@keyframes professional-float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-8px) translateX(3px);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.0rem !important;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Courses Section */
.courses {
    padding: 80px 0;
    background: var(--bg-secondary);
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
}

/* Adult Courses Section */
.adult-courses-section {
    margin-bottom: 4rem;
}

.adult-courses-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.adult-courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.adult-course {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.05) 100%);
    border: 2px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.adult-course::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.6s ease;
}

.adult-course:hover::before {
    left: 100%;
}

.adult-course:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.adult-course .course-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.adult-course .course-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.adult-course .course-description {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature {
    background: var(--gradient-primary);
    color: #000;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 255, 136, 0.3);
}

.adult-course .btn-course {
    background: var(--gradient-primary);
    color: #000000;
    width: 100%;
    justify-content: center;
    margin-top: auto;
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.adult-course .btn-course:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
    background: linear-gradient(135deg, #00ffaa 0%, #00ff88 100%);
}

/* Kids Courses Section */
.kids-courses-section {
    margin-top: 2rem;
}

.kids-courses-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.course-schedule-info {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.schedule-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), #00cc6a);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: schedulePulse 3s ease-in-out infinite;
}

@keyframes schedulePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(0, 255, 136, 0.5);
    }
}

.schedule-badge i {
    font-size: 1.1rem;
    color: #000;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.course-card {
    background: var(--bg-card);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
    border-color: var(--primary-color);
}

.course-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.2);
}

.course-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-secondary);
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.course-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.course-icon i {
    font-size: 2rem;
    color: #000000;
}

.course-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.course-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.course-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.course-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.course-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.course-detail i {
    color: var(--primary-color);
    width: 16px;
}

.course-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-primary);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #000000;
    font-size: 1.25rem;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.feature-content p {
    color: #000000;
    font-size: 0.875rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 1.5rem;
    border: 2px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 25px rgba(0, 255, 136, 0.8);
    }
}

.stat-label {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
    opacity: 0.9;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--bg-primary);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--bg-card);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.2);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.reviewer-info {
    flex-grow: 1;
}

.reviewer-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.reviewer-info span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
}

.review-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-read-more {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-read-more:hover {
    background: var(--primary-color);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--bg-card);
    margin: 5% auto;
    padding: 0;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
    border: 2px solid var(--primary-color);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--text-secondary);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
    border-radius: 1.5rem 1.5rem 0 0;
}

.reviewer-avatar-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.modal-reviewer-info {
    flex-grow: 1;
}

.modal-reviewer-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-reviewer-info span {
    color: var(--text-secondary);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.75rem;
}

.modal-rating {
    display: flex;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1.125rem;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

.modal-body p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -1rem;
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-secondary);
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-form-wrapper {
    position: relative;
}

/* Pointing Finger */
.pointing-finger {
    position: absolute;
    left: -300px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    color: var(--primary-color);
    font-size: 21rem;
    filter: drop-shadow(0 8px 24px rgba(0, 255, 136, 0.6));
    animation: pointPulse 2s ease-in-out infinite;
}

@keyframes pointPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50%) scale(1.1);
        opacity: 1;
    }
}

.pointing-finger:hover {
    transform: translateY(-50%) scale(1.2);
    filter: drop-shadow(0 6px 18px rgba(0, 255, 136, 0.7));
    animation-play-state: paused;
}

.contact-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.1);
    border: 2px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 3px solid var(--border-color);
    border-radius: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
    color: var(--text-primary);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    background: var(--bg-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Custom Select Dropdown */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ff88' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.5rem;
    padding-right: 4rem;
    cursor: pointer;
}

.form-group select:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.75rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
}

.form-group select option:hover {
    background: var(--primary-color);
    color: #000;
}

/* Enhanced Select Focus States */
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    background: var(--bg-primary);
    transform: translateY(-2px);
}

/* Select Animation */
.form-group select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group select:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.15);
}

/* Teachers Section */
.teachers {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
    position: relative;
}

.teachers::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.teacher-card {
    background: var(--bg-card);
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.teacher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.6s ease;
}

.teacher-card:hover::before {
    left: 100%;
}

.teacher-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.teacher-photo {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.teacher-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.teacher-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.teacher-photo:hover .teacher-overlay {
    opacity: 1;
}

.teacher-photo:hover .teacher-image {
    transform: scale(1.1);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: #000;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.4);
}

.teacher-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.teacher-position {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.teacher-company {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.teacher-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.skill {
    background: var(--gradient-primary);
    color: #000;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.teacher-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .teachers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .teachers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .teacher-photo {
        width: 150px;
        height: 150px;
    }
    
    .teacher-card {
        padding: 1.5rem;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.05) 100%);
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.1) 100%);
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-container .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-secondary);
}

.faq-container .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.5rem 2rem 1.5rem 2rem;
}

.faq-container .faq-item .faq-answer p {
    color: #b0b0b0;
    line-height: 1.7;
    margin: 0;
    font-size: 1.125rem;
    position: relative;
    padding: 1rem 1.5rem 1rem 3rem;
}

.faq-container .faq-item .faq-answer p::before {
    content: '→';
    position: absolute;
    left: 1.5rem;
    top: 1rem;
    color: #8b5cf6;
    font-weight: bold;
    font-size: 1.2rem;
}

/* FAQ Animations */
@keyframes faqSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: faqSlideIn 0.6s ease-out;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo span {
    background: linear-gradient(135deg, #ffffff, #cccccc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

.footer-logo .logo-dot {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-left: 2px;
    text-shadow: 0 0 10px var(--primary-color);
    animation: dotPulse 2s ease-in-out infinite;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #00cc6a;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-card);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }
    
    .nav-menu a {
        color: var(--text-primary) !important;
        font-size: 1.125rem;
        padding: 1rem 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a:hover {
        color: var(--primary-color) !important;
        background: rgba(0, 255, 136, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-card.featured {
        transform: none;
    }
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .adult-courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .adult-courses-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .kids-courses-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .course-schedule-info {
        margin-bottom: 1.5rem;
    }
    
    .schedule-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
        gap: 0.5rem;
    }
    
    .adult-course {
        padding: 1.5rem;
    }
    
    .adult-course .course-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .adult-course .course-title {
        font-size: 1.5rem;
    }
    
    .course-card h3 {
        font-size: 1.5rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-card.featured {
        transform: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .modal-reviewer-info h3 {
        font-size: 1.25rem;
    }

    /* Hide pointing finger on mobile */
    .pointing-finger {
        display: none;
    }

    /* FAQ Mobile Styles */
    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.125rem;
    }

    .faq-container .faq-item.active .faq-answer {
        padding: 1rem 1.5rem 1rem 1.5rem;
    }

    .faq-container .faq-item .faq-answer p {
        font-size: 1rem;
        padding-left: 1.25rem;
    }

    .faq-container .faq-item .faq-answer p::before {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 1rem 15px;
    }

    .hero {
        padding: 0px 0 60px;
    }

    /* Tech strip mobile */
    .tech-strip {
        height: 50px;
        margin-top: 70px;
        display: block;
    }

    .tech-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-right: 2rem;
    }

    .hero-container {
        padding: 15px 20px 0 20px;
    }


    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    /* Hide adult characters on mobile */
    .adult-characters-left,
    .adult-characters-right {
        display: none;
    }

    /* Hide adult professional on mobile */
    .adult-professional {
        display: none;
    }
}

/* Legal pages styles */
.legal-logo {
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-bottom: 2rem;
}

.legal-logo a {
    text-decoration: none;
    background: linear-gradient(45deg, #ffffff, #e0e0e0, #ffffff, #c0c0c0, #ffffff);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.legal-logo a:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.5));
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.course-card {
    animation: fadeInUp 0.6s ease-out;
}

.course-card:nth-child(1) { animation-delay: 0.1s; }
.course-card:nth-child(2) { animation-delay: 0.2s; }
.course-card:nth-child(3) { animation-delay: 0.3s; }
.course-card:nth-child(4) { animation-delay: 0.4s; }
.course-card:nth-child(5) { animation-delay: 0.5s; }
.course-card:nth-child(6) { animation-delay: 0.6s; }
.course-card:nth-child(7) { animation-delay: 0.7s; }
.course-card:nth-child(8) { animation-delay: 0.8s; }
.course-card:nth-child(9) { animation-delay: 0.9s; }

/* Mobile styles for contact buttons */
@media (max-width: 768px) {
    .contact-buttons-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-telegram,
    .contact-email {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
