/* ============================================
   ТЕМНЫЙ НЕОНОВЫЙ ДИЗАЙН
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    box-shadow: 0 2px 30px rgba(0, 245, 255, 0.3);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #00f5ff;
    text-decoration: none;
    transition: all 0.3s;
    text-shadow: 0 0 10px #00f5ff, 0 0 20px #00f5ff;
}

.logo:hover {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-list a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    transition: width 0.3s;
    box-shadow: 0 0 10px #00f5ff;
}

.nav-list a:hover {
    color: #00f5ff;
    text-shadow: 0 0 5px #00f5ff;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #00f5ff;
    transition: all 0.3s;
    box-shadow: 0 0 5px #00f5ff;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 10px #00f5ff, 0 0 20px #00f5ff, 0 0 30px #00f5ff;
}

.section-header p {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero-modern {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%);
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-wrapper {
    text-align: center;
    max-width: 1400px;
    width: 100%;
}

/* Огромный H1 заголовок */
.hero-title {
    font-weight: 900;
    line-height: 0.9;
    margin: 0 0 40px 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-title-line {
    display: block;
    margin-bottom: 0.05em;
}

/* Первая строка - самая большая */
.hero-title-line:nth-child(1) {
    font-size: clamp(48px, 12vw, 180px);
}

/* Вторая строка - заметно меньше */
.hero-title-line:nth-child(2) {
    font-size: clamp(36px, 8vw, 120px);
}

/* Третья строка - еще меньше */
.hero-title-line:nth-child(3) {
    font-size: clamp(24px, 5vw, 80px);
}

.hero-title-word {
    display: inline-block;
    color: #ffffff;
    text-shadow: 
        0 0 5px rgba(0, 245, 255, 0.5),
        0 0 10px rgba(0, 245, 255, 0.3);
    margin-right: 0.1em;
    transition: all 0.3s;
    position: relative;
}

.hero-title-word:hover {
    transform: scale(1.02);
    text-shadow: 
        0 0 8px rgba(0, 245, 255, 0.6),
        0 0 15px rgba(0, 245, 255, 0.4);
}

.hero-title-word.highlight {
    background: linear-gradient(135deg, #00f5ff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.4));
    animation: glow-pulse 3s ease-in-out infinite;
}

.hero-title-word.brand {
    background: linear-gradient(135deg, #00f5ff 0%, #ff00ff 50%, #00f5ff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
    animation: gradient-shift 4s ease infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(0, 245, 255, 0.6)) drop-shadow(0 0 20px rgba(255, 0, 255, 0.3));
    }
}

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

/* Subtitle */
.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 28px);
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0 0 50px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.stat-number-modern {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: bold;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    display: block;
}

.stat-label-modern {
    font-size: clamp(14px, 1.5vw, 18px);
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Buttons Modern */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #0a0a0a;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.btn-primary-modern:hover {
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.8), 0 0 50px rgba(255, 0, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary-modern {
    background: transparent;
    color: #00f5ff;
    border: 2px solid #00f5ff;
    text-shadow: 0 0 5px #00f5ff;
}

.btn-secondary-modern:hover {
    background: rgba(0, 245, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.btn-modern:hover .btn-arrow {
    transform: translateX(5px);
}

/* Languages */
.languages-title {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.5);
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.language-card-modern {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

.language-card-modern:hover {
    border-color: #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    transform: translateY(-5px);
}

.language-flag {
    font-size: 32px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.5));
}

.language-name {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
}

.language-level {
    font-size: 12px;
    color: #00f5ff;
    text-shadow: 0 0 5px #00f5ff;
}

/* Features Modern */
.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon-modern {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.6);
    flex-shrink: 0;
}

.feature-text-modern {
    color: #e0e0e0;
    font-size: 16px;
}

/* Scroll Indicator */
.scroll-indicator-modern {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #00f5ff;
    z-index: 10;
}

.scroll-text {
    font-size: 12px;
    text-shadow: 0 0 5px #00f5ff;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(0, 245, 255, 0.3);
    position: relative;
    border-radius: 2px;
}

.scroll-progress {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #00f5ff, #ff00ff);
    border-radius: 2px;
    transition: height 0.1s;
    box-shadow: 0 0 10px #00f5ff;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(0, 245, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: #00f5ff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 5px #00f5ff;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    z-index: 10000;
    box-shadow: 0 0 10px #00f5ff;
}

/* Theme Toggle */
.theme-toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 50px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    border-color: #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.theme-icon {
    font-size: 20px;
    display: inline-block;
}

/* Canvas */
.hero-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(36px, 15vw, 80px);
        line-height: 1;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 60px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .btn-modern {
        width: 100%;
        max-width: 300px;
    }
}

/* Courses Section */
.courses-section {
    background: #0f0f0f;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
}

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

.course-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 245, 255, 0.3);
    box-shadow: 0 5px 30px rgba(0, 245, 255, 0.2);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: #00f5ff;
    box-shadow: 0 15px 50px rgba(0, 245, 255, 0.5), 0 0 30px rgba(0, 245, 255, 0.3);
}

.course-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.3s;
}

.course-card:hover .course-image img {
    filter: brightness(1);
}

.course-content {
    padding: 30px;
}

.course-content h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.course-content p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.course-features {
    list-style: none;
    margin-bottom: 20px;
}

.course-features li {
    padding: 8px 0;
    color: #d0d0d0;
    font-size: 15px;
}

.course-features li::before {
    content: '✓';
    color: #00ff00;
    margin-right: 10px;
    font-weight: bold;
    text-shadow: 0 0 5px #00ff00;
}

.course-price {
    font-size: 24px;
    font-weight: bold;
    color: #00f5ff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00f5ff;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #00f5ff;
    background: transparent;
    color: #00f5ff;
    cursor: pointer;
    text-shadow: 0 0 5px #00f5ff;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.6), 0 0 40px rgba(255, 0, 255, 0.4);
    text-shadow: none;
}

.btn-primary {
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #0a0a0a;
    border: none;
    text-shadow: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff00ff, #00f5ff);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.8), 0 0 60px rgba(255, 0, 255, 0.6);
}

.btn-outline {
    border: 2px solid #00f5ff;
    color: #00f5ff;
    background: transparent;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #0a0a0a;
    border-color: transparent;
}

/* About Section */
.about-section {
    background: #0a0a0a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

.about-text h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 10px #00f5ff, 0 0 20px #00f5ff;
}

.about-text p {
    color: #b0b0b0;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.6);
}

.feature-text h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.5);
}

.feature-text p {
    color: #b0b0b0;
    font-size: 16px;
    margin: 0;
}

/* Teachers Section */
.teachers-section {
    background: #0f0f0f;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    overflow: visible;
    position: relative;
    z-index: 1;
}

.teachers-slider {
    position: relative;
    overflow: visible;
    padding: 20px 0;
    margin: -20px 0;
    min-height: 400px;
}

.teachers-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.teacher-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    box-shadow: 0 5px 30px rgba(0, 245, 255, 0.2);
    min-width: 300px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.teacher-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00f5ff;
    box-shadow: 0 15px 50px rgba(0, 245, 255, 0.5), 0 0 30px rgba(0, 245, 255, 0.3);
    z-index: 10;
}

.teacher-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.teacher-info h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.5);
}

.teacher-specialty {
    color: #00f5ff;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #00f5ff;
}

.teacher-bio {
    color: #b0b0b0;
    line-height: 1.8;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(0, 245, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
    z-index: 10;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #0a0a0a;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.8);
    border-color: transparent;
}

.slider-btn-prev {
    left: -25px;
}

.slider-btn-next {
    right: -25px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%);
    color: white;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-item:hover {
    border-color: #00f5ff;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.stat-label {
    font-size: 18px;
    color: #b0b0b0;
}

/* Reviews Section */
.reviews-section {
    background: #0a0a0a;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(20, 20, 20, 0.8);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #00f5ff;
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00f5ff;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.review-author h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.5);
}

.review-author p {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0;
}

.review-rating {
    color: #ffd700;
    font-size: 18px;
    text-shadow: 0 0 10px #ffd700;
}

.review-text {
    color: #d0d0d0;
    line-height: 1.8;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background: #0f0f0f;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.5);
}

.info-item p {
    color: #b0b0b0;
    line-height: 1.8;
}

.info-item a {
    color: #00f5ff;
    text-decoration: none;
    text-shadow: 0 0 5px #00f5ff;
    transition: all 0.3s;
}

.info-item a:hover {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

.contact-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

.contact-form {
    background: rgba(20, 20, 20, 0.8);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    box-shadow: 0 5px 30px rgba(0, 245, 255, 0.2);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    background: rgba(10, 10, 10, 0.8);
    color: #e0e0e0;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

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

/* Footer */
.footer {
    background: #0a0a0a;
    color: #b0b0b0;
    padding: 50px 0 30px;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #00f5ff;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 0 10px #00f5ff;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: #00f5ff;
    text-shadow: 0 0 5px #00f5ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
}

.footer-bottom p {
    color: #808080;
    font-size: 14px;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    color: #e0e0e0;
    padding: 20px;
    box-shadow: 0 -5px 30px rgba(0, 245, 255, 0.3);
    border-top: 1px solid rgba(0, 245, 255, 0.3);
    z-index: 10000;
    transition: bottom 0.3s;
    backdrop-filter: blur(20px);
}

.cookie-notice.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: #00f5ff;
    text-decoration: underline;
    text-shadow: 0 0 5px #00f5ff;
}

.cookie-btn {
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #0a0a0a;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.cookie-btn:hover {
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.8), 0 0 50px rgba(255, 0, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        box-shadow: 0 5px 30px rgba(0, 245, 255, 0.3);
        border-top: 1px solid rgba(0, 245, 255, 0.3);
        padding: 20px;
        backdrop-filter: blur(20px);
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

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