﻿/* ===== CSS VARIABLES ===== */
:root {
    --primary: #FF007F;
    --primary-dark: #C2185B;
    --secondary: #8e44ad;
    --accent: #3498db;
    --dark: #0B0B0D;
    --dark-light: #1a122e;
    --light: #1b152c;
    --text: #f0f0f0;
    --text-light: #cccccc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--accent));
    --svg-pattern: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEwMDAiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wMykiLz48cGF0aCBkPSJNMCA1MDBMMTAwMCA1MDBMMTAwMCA2MDBMMCA2MDBaIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDMpIi8+PHBhdGggZD0iTTAgMzAwTDEwMDAgMzAwTDEwMDAgNDAwTDAgNDAwWiIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjxwYXRoIGQ9Ik0wIDcwMEwxMDAwIDcwMEwxMDAwIDgwMEwwIDgwMFoiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wMykiLz48L3N2Zz4=');
    --svg-cta: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEwMDAiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===== LAYOUT ===== */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
}

    .btn:hover,
    .btn:focus {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 0, 127, 0.4);
        outline: none;
    }

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

    .btn-secondary:hover,
    .btn-secondary:focus {
        background: var(--primary);
        color: var(--white);
        outline: none;
    }

.btn-block {
    display: block;
    width: 100%;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h2 {
        font-size: 2.8rem;
        color: var(--white);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

    .section-title p {
        color: var(--text-light);
        max-width: 700px;
        margin: 25px auto 0;
        font-size: 1.1rem;
    }

/* ===== HEADER ===== */
header {
    background-color: rgba(11, 11, 13, 0.9);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    direction: ltr;
    text-align: left;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
}

.logo span,
.logo-color {
    color: var(--primary);
}

.logo .tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

    .nav-links a {
        font-weight: 500;
        position: relative;
        font-size: 0.95rem;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a:focus::after {
            width: 100%;
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 4px;
}

.lang-btn {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
}

    .lang-btn.active,
    .lang-btn:hover,
    .lang-btn:focus {
        background: var(--primary);
        color: var(--white);
        outline: none;
    }

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* ===== HERO SECTIONS ===== */
.hero,
.blog-hero,
.contact-hero,
.language-hero {
    background: linear-gradient(135deg, var(--dark-light), var(--dark));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero {
    padding: 180px 0 120px;
}

.blog-hero,
.contact-hero,
.language-hero {
    padding: 180px 0 100px;
}

    .hero::before,
    .blog-hero::before,
    .contact-hero::before,
    .language-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--svg-pattern);
        opacity: 0.1;
    }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.blog-hero-content,
.contact-hero-content,
.language-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 0, 127, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 0, 127, 0.2);
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.blog-hero h1,
.contact-hero h1,
.language-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero p,
.contact-hero p,
.language-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

    .hero-feature i {
        color: var(--primary);
    }

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--dark-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--white);
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--white);
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

    .about-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-secondary);
        opacity: 0.2;
        z-index: 1;
    }

.stats-container {
    width: 100%;
    background: linear-gradient(135deg, #1f1b2e, #2b0528);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    padding: 40px;
    position: relative;
    z-index: 2;
}

.stats-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 400px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 0, 127, 0.2);
    }

.service-icon {
    height: 200px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3.5rem;
}

.service-content {
    padding: 30px;
}

    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--white);
    }

    .service-content p {
        color: var(--text-light);
        margin-bottom: 20px;
        font-size: 1rem;
    }

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    display:none;
}

    .service-link:hover {
        gap: 12px;
    }

/* ===== ADVANTAGES SECTION ===== */
.advantages {
    background: var(--dark-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage {
    text-align: center;
    padding: 40px 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

    .advantage:hover {
        background: rgba(255, 255, 255, 0.06);
        transform: translateY(-5px);
        border-color: rgba(255, 0, 127, 0.2);
    }

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(255, 0, 127, 0.2);
}

.advantage h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.advantage p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== CASES SECTION ===== */
.cases {
    background: var(--dark);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.case-item {
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

    .case-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

.case-image {
    height: 200px;
    background: linear-gradient(135deg, #1f1b2e, #2b0528);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

    .case-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient);
        opacity: 0.1;
    }

.case-content {
    padding: 25px;
}

    .case-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        color: var(--white);
    }

    .case-content p {
        color: var(--text-light);
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.case-tag {
    background: rgba(255, 0, 127, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 0, 127, 0.2);
}

/* ===== CTA SECTION ===== */
.cta {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

    .cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--svg-cta);
        opacity: 0.1;
    }

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta .btn {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    padding: 16px 40px;
    font-size: 1rem;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    gap: 10px;
}

    .pagination a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: var(--light);
        color: var(--text);
        transition: all 0.3s ease;
    }

        .pagination a:hover,
        .pagination a.active {
            background: var(--primary);
            color: var(--white);
        }

/* ===== BLOG / ARTICLE UTILITIES ===== */
.info-box {
    background: rgba(255, 0, 127, 0.05);
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

    .info-box h4 {
        color: var(--primary);
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .tag:hover {
        background: var(--primary);
        color: var(--white);
    }

.author {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.author-info h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.author-info p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: var(--dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info,
.contact-form-container {
    background: var(--light);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

    .contact-info h2,
    .contact-form-container h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        color: var(--white);
        position: relative;
        padding-bottom: 15px;
    }

        .contact-info h2::after,
        .contact-form-container h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
        }

    .contact-info p {
        color: var(--text-light);
        margin-bottom: 30px;
        font-size: 1.1rem;
    }

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--white);
}

.contact-text p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .social-link:hover {
        background: var(--primary);
        color: var(--white);
        transform: translateY(-3px);
    }

/* Contact Form */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 2px rgba(255, 0, 127, 0.2);
    }

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: var(--dark-light);
}

    .faq-section .section-title p {
        color: var(--text-light);
        max-width: 700px;
        margin: 25px auto 0;
        font-size: 1.1rem;
    }

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

    .faq-item:hover {
        border-color: rgba(255, 0, 127, 0.2);
    }

.faq-question {
    padding: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-light);
}

    .faq-answer.active {
        padding: 0 25px 25px;
        max-height: 500px;
    }

.faq-toggle {
    color: var(--primary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

    .faq-toggle.active {
        transform: rotate(45deg);
    }

/* ===== FOOTER ===== */
footer {
    background: #0c0916;
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

    .footer-column h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--gradient);
        border-radius: 2px;
    }

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

    .footer-links a:hover {
        color: var(--primary);
        padding-left: 5px;
    }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 9px;
    margin-top: 9px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== LANGUAGE SELECTION PAGE ===== */
.language-section {
    padding: 100px 0;
    background: var(--dark);
    text-align: center;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.language-card {
    background: var(--light);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

    .language-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient);
    }

    .language-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 0, 127, 0.2);
    }

.language-flag {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.language-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.language-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1rem;
}

.language-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
}

    .language-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 0, 127, 0.4);
    }

.language-info {
    padding: 80px 0;
    background: var(--dark-light);
}

.language-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.language-info-item {
    text-align: center;
    padding: 30px;
}

.language-info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(255, 0, 127, 0.2);
}

.language-info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.language-info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.language-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.language-title {
    flex: 1;
    min-width: 300px;
}

    .language-title h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        color: var(--white);
    }

    .language-title p {
        color: var(--text-light);
        font-size: 1.1rem;
    }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .cta h2 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .header-actions {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 150px 0 80px;
    }

    section {
        padding: 80px 0;
    }

    .cta {
        padding: 80px 0;
    }

        .cta h2 {
            font-size: 2rem;
        }

        .cta p {
            font-size: 1.1rem;
        }

    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-hero p {
        font-size: 1.1rem;
    }

    .author {
        flex-direction: column;
        text-align: center;
    }

    .contact-hero h1 {
        font-size: 2.3rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-info, .contact-form-container {
        padding: 30px;
    }

    .services-grid,
    .advantages-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .contact-hero {
        padding: 150px 0 80px;
    }

    .contact-section {
        padding: 80px 0;
    }

    .faq-section {
        padding: 60px 0;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .language-hero {
        padding: 150px 0 80px;
    }

        .language-hero h1 {
            font-size: 2.2rem;
        }

    .language-card {
        padding: 30px 20px;
    }

    .language-flag {
        font-size: 3rem;
    }

    .language-grid,
    .language-info-grid,
    .language-header {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }
}
