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

html {
    scroll-behavior: smooth;
}

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

/* Color Variables */
:root {
    --primary-color: #3EE7C9;
    --secondary-color: #3B134E;
    --background-dark: #0A0B0E;
    --text-light: #EAE7F5;
    --gradient-primary: linear-gradient(135deg, #3EE7C9 0%, #3B134E 100%);
    --gradient-text: linear-gradient(135deg, #3EE7C9 0%, #EAE7F5 50%, #3B134E 100%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--background-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(62, 231, 201, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 11, 14, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(59, 19, 78, 0.1) 0%, rgba(10, 11, 14, 1) 100%);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(59, 19, 78, 0.1) 0%, rgba(10, 11, 14, 1) 100%);
}

.page-header h1 {
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.8;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

/* Features Section */
.features {
    background: rgba(59, 19, 78, 0.05);
}

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

.feature-card {
    background: rgba(59, 19, 78, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(62, 231, 201, 0.2);
    border-color: rgba(62, 231, 201, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

/* Languages Section */
.languages-preview {
    padding: 4rem 0;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.language-card {
    background: rgba(59, 19, 78, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.language-card:hover {
    transform: translateY(-5px);
    border-color: rgba(62, 231, 201, 0.3);
}

.language-flag {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.language-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Languages Detail Page */
.languages-grid-full {
    display: grid;
    gap: 2rem;
}

.language-detail-card {
    background: rgba(59, 19, 78, 0.1);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(62, 231, 201, 0.1);
    transition: all 0.3s ease;
}

.language-detail-card:hover {
    border-color: rgba(62, 231, 201, 0.3);
    box-shadow: 0 10px 30px rgba(62, 231, 201, 0.1);
}

.language-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(59, 19, 78, 0.1);
}

.language-flag {
    font-size: 2.5rem;
}

.language-info h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.language-subtitle {
    opacity: 0.8;
    font-size: 1rem;
}

.language-content {
    padding: 2rem;
}

.language-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.feature-tag {
    background: rgba(62, 231, 201, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.language-levels {
    margin-top: 1rem;
    font-weight: 600;
}

/* Course Types */
.course-types {
    background: rgba(59, 19, 78, 0.05);
}

.course-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.course-type-card {
    background: rgba(59, 19, 78, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.course-type-card:hover {
    transform: translateY(-10px);
    border-color: rgba(62, 231, 201, 0.3);
    box-shadow: 0 20px 40px rgba(62, 231, 201, 0.1);
}

.course-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.course-type-card ul {
    text-align: left;
    margin-top: 1rem;
}

.course-type-card li {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Teachers Section */
.teachers-section {
    padding: 4rem 0;
}

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

.teacher-card {
    background: rgba(59, 19, 78, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.teacher-card:hover {
    transform: translateY(-10px);
    border-color: rgba(62, 231, 201, 0.3);
    box-shadow: 0 20px 40px rgba(62, 231, 201, 0.1);
}

.teacher-photo-container {
    position: relative;
    overflow: hidden;
}

.teacher-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.teacher-card:hover .teacher-photo {
    transform: scale(1.05);
}

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

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

.teacher-contact {
    text-align: center;
    color: var(--primary-color);
}

.teacher-info {
    padding: 1.5rem;
}

.teacher-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.teacher-role {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.teacher-languages {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.teacher-experience {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.teacher-bio {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.teacher-specializations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spec-tag {
    background: rgba(62, 231, 201, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
}

/* Team Preview */
.team-preview {
    background: rgba(59, 19, 78, 0.05);
}

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

.team-card {
    background: rgba(59, 19, 78, 0.1);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(62, 231, 201, 0.3);
}

.team-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-card h3 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
}

.team-role {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-experience {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Requirements Section */
.requirements-section {
    background: rgba(59, 19, 78, 0.05);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.requirement-card {
    background: rgba(59, 19, 78, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.requirement-card:hover {
    transform: translateY(-5px);
    border-color: rgba(62, 231, 201, 0.3);
}

.requirement-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.requirement-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Schedule Section */
.schedule-filters {
    background: rgba(59, 19, 78, 0.05);
    padding: 2rem 0;
}

.filter-controls {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--primary-color);
}

.filter-select {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(62, 231, 201, 0.3);
    background: rgba(59, 19, 78, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.weekly-schedule {
    padding: 4rem 0;
}

.schedule-table-container {
    overflow-x: auto;
    border-radius: 16px;
    background: rgba(59, 19, 78, 0.1);
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.schedule-table th,
.schedule-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(62, 231, 201, 0.1);
}

.schedule-table th {
    background: rgba(59, 19, 78, 0.2);
    color: var(--primary-color);
    font-weight: 600;
}

.time-slot {
    background: rgba(59, 19, 78, 0.1);
    font-weight: 600;
    color: var(--primary-color);
}

.course-cell {
    background: rgba(62, 231, 201, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.course-cell:hover {
    background: rgba(62, 231, 201, 0.2);
}

.course-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.course-name {
    font-weight: 600;
    color: var(--primary-color);
}

.course-teacher {
    font-size: 0.8rem;
    opacity: 0.8;
}

.empty-cell {
    background: rgba(59, 19, 78, 0.05);
}

/* Course Details */
.course-details {
    background: rgba(59, 19, 78, 0.05);
}

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

.detail-card {
    background: rgba(59, 19, 78, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(62, 231, 201, 0.3);
}

.detail-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(59, 19, 78, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(62, 231, 201, 0.1);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(62, 231, 201, 0.3);
    box-shadow: 0 20px 40px rgba(62, 231, 201, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(62, 231, 201, 0.2);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--background-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    background: rgba(59, 19, 78, 0.1);
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    opacity: 0.8;
    font-size: 0.9rem;
}

.pricing-content {
    padding: 2rem;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-currency {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(62, 231, 201, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

.pricing-footer {
    padding: 2rem;
    text-align: center;
}

/* Discounts Section */
.discounts-section {
    background: rgba(59, 19, 78, 0.05);
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.discount-card {
    background: rgba(59, 19, 78, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.discount-card:hover {
    transform: translateY(-5px);
    border-color: rgba(62, 231, 201, 0.3);
}

.discount-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.discount-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.discount-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Additional Services */
.additional-services {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(59, 19, 78, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.service-item:hover {
    border-color: rgba(62, 231, 201, 0.3);
    transform: translateX(10px);
}

.service-icon {
    font-size: 2rem;
    min-width: 60px;
}

.service-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-price {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Payment Section */
.payment-section {
    background: rgba(59, 19, 78, 0.05);
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.payment-methods h3,
.payment-terms h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(59, 19, 78, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.payment-icon {
    font-size: 1.5rem;
}

.payment-terms ul {
    list-style: none;
}

.payment-terms li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(62, 231, 201, 0.1);
}

.payment-terms li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

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

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(62, 231, 201, 0.3);
    background: rgba(59, 19, 78, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(62, 231, 201, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(62, 231, 201, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--background-dark);
    font-weight: bold;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.social-media h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(59, 19, 78, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

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

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: rgba(59, 19, 78, 0.05);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.map-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.directions-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(59, 19, 78, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.directions-icon {
    font-size: 2rem;
    min-width: 50px;
}

.directions-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-search {
    background: rgba(59, 19, 78, 0.05);
    padding: 2rem 0;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(62, 231, 201, 0.3);
    background: rgba(59, 19, 78, 0.1);
    color: var(--text-light);
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.faq-categories {
    padding: 2rem 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(62, 231, 201, 0.3);
    background: transparent;
    color: var(--text-light);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-color);
    color: var(--background-dark);
    border-color: var(--primary-color);
}

.faq-content {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(59, 19, 78, 0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(62, 231, 201, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(62, 231, 201, 0.3);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(59, 19, 78, 0.1);
}

.faq-question h3 {
    color: var(--primary-color);
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-preview {
    background: rgba(59, 19, 78, 0.05);
}

.faq-item-simple {
    background: rgba(59, 19, 78, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(62, 231, 201, 0.1);
    transition: all 0.3s ease;
}

.faq-item-simple:hover {
    border-color: rgba(62, 231, 201, 0.3);
    transform: translateY(-5px);
}

.faq-item-simple h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Privacy Policy */
.privacy-content {
    padding: 4rem 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(62, 231, 201, 0.2);
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.privacy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.contact-details {
    background: rgba(59, 19, 78, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(62, 231, 201, 0.1);
    margin: 1rem 0;
}

.purpose-table,
.cookies-table {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

.purpose-row,
.cookie-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 19, 78, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.cookie-row {
    grid-template-columns: 1fr 1fr 1fr;
}

.purpose-title,
.cookie-type {
    color: var(--primary-color);
}

.contact-info {
    background: rgba(59, 19, 78, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(62, 231, 201, 0.1);
    margin: 1rem 0;
}

/* Success Page */
.success-section {
    padding: 8rem 0 4rem;
    text-align: center;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: scaleIn 0.5s ease-out;
}

.checkmark {
    font-size: 3rem;
    color: var(--background-dark);
    font-weight: bold;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.success-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.success-details {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(59, 19, 78, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.detail-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.detail-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-steps {
    padding: 4rem 0;
    background: rgba(59, 19, 78, 0.05);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(59, 19, 78, 0.1);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(62, 231, 201, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: rgba(62, 231, 201, 0.3);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--background-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-section {
    padding: 4rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Stats Section */
.stats-section {
    background: rgba(59, 19, 78, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(59, 19, 78, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(62, 231, 201, 0.3);
    box-shadow: 0 20px 40px rgba(62, 231, 201, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Mission Section */
.mission-section {
    padding: 4rem 0;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.mission-feature {
    background: rgba(59, 19, 78, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(62, 231, 201, 0.1);
}

.mission-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(62, 231, 201, 0.3);
}

.mission-feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mission-feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* About Content */
.about-content {
    padding: 4rem 0;
}

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

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.values-list {
    list-style: none;
    margin-left: 0;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--background-dark);
    text-align: center;
    padding: 4rem 0;
}

.cta-content h2 {
    color: var(--background-dark);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--background-dark);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: rgba(10, 11, 14, 0.9);
    transform: translateY(-2px);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 11, 14, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(62, 231, 201, 0.2);
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: rgba(59, 19, 78, 0.1);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(62, 231, 201, 0.1);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer .social-links {
    justify-content: flex-end;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(62, 231, 201, 0.1);
    opacity: 0.7;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 11, 14, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 6rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .page-header {
        padding: 6rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .features-grid,
    .languages-grid,
    .course-types-grid,
    .teachers-grid,
    .team-grid,
    .requirements-grid,
    .pricing-grid,
    .discounts-grid,
    .stats-grid,
    .mission-features,
    .steps-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer .social-links {
        justify-content: center;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-icons {
        grid-template-columns: 1fr;
    }
    
    .directions-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .schedule-table {
        font-size: 0.8rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 0.5rem;
    }
    
    .pricing-card {
        margin: 0 0.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .checkmark-circle {
        width: 80px;
        height: 80px;
    }
    
    .checkmark {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-consent,
    .footer,
    .btn,
    .social-links {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .page-header {
        padding: 2rem 0 1rem;
    }
    
    section {
        padding: 1rem 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #00FF00;
        --text-light: #FFFFFF;
        --background-dark: #000000;
    }
    
    .btn-primary {
        background: #00FF00;
        color: #000000;
    }
    
    .btn-secondary {
        border-color: #00FF00;
        color: #00FF00;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(62, 231, 201, 0.8);
}