/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: url('background_itart_support.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    transition: all 0.3s ease;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav-menu {
    display: flex;
    gap: 15px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.nav-menu a:hover {
    background: #1A73E8;
}

.nav-menu .active {
    background: #1A73E8;
}

/* Hero Section */
.hero {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-top: 70px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
}

/* Review Form */
.review-form-section {
    background: white;
    border-radius: 10px;
    padding: 40px;
    max-width: 800px;
    margin: 30px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.review-form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.review-form button {
    background: #1A73E8;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.review-form button:hover {
    background: #1765C5;
}

/* Review Stats */
.review-stats-section {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.review-stats-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Scrollable Reviews */
.review-scroll-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
}

.review-list {
    display: flex;
    gap: 10px;
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.review-list::-webkit-scrollbar {
    display: none; /* Webkit */
}

.review-item {
    flex: 0 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    max-width: 300px;
    transition: transform 0.3s;
}

.review-item:hover {
    transform: scale(1.05);
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.scroll-button:hover {
    background: #1A73E8;
}

.scroll-button.left {
    left: 10px;
}

.scroll-button.right {
    right: 10px;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

:root {
            --text: #333;
            --bg: #fff;
            --header-bg: rgba(255, 255, 255, 0.8);
            --card-bg: rgba(255, 255, 255, 0.9);
        }

        .dark-mode {
            --text: #fff;
            --bg: #1a1a1a;
            --header-bg: rgba(0, 0, 0, 0.8);
            --card-bg: rgba(51, 51, 51, 0.9);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            padding-top: 60px;
            background: url('background_itart_support.jpg') no-repeat center center fixed;
            background-size: cover;
            color: var(--text);
            transition: background-color 0.3s;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--header-bg);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(128, 128, 128, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo { height: 40px; }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--text);
            margin: 5px 0;
            transition: 0.3s;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .nav-menu a {
            color: var(--text);
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 6px;
            transition: 0.3s;
            font-weight: 500;
            font-size: 14px;
        }

        .nav-menu a:hover {
            background: rgba(128, 128, 128, 0.1);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--card-bg);
            min-width: 200px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .controls {
            display: flex;
            gap: 15px;
        }

        .icon-button {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: var(--text);
            padding: 5px;
            border-radius: 50%;
            transition: 0.3s;
        }

        .icon-button:hover {
            background: rgba(128, 128, 128, 0.1);
        }

        .language-selector {
            position: relative;
        }

        .language-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--card-bg);
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            min-width: 150px;
            z-index: 1001;
        }

        .language-dropdown a {
            display: block;
            padding: 10px 15px;
            color: var(--text);
            text-decoration: none;
            transition: 0.3s;
        }

        .language-dropdown a:hover {
            background: rgba(128, 128, 128, 0.1);
        }

        .hero {
            text-align: center;
            padding: 100px 20px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            margin-bottom: 40px;
        }

        .hero h1 { 
            font-size: 2.5em; 
            margin-bottom: 20px;
        }

        .content-section {
            background: var(--card-bg);
            margin: 20px auto;
            padding: 40px;
            max-width: 1200px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .service-card {
            background: rgba(128, 128, 128, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            border: 1px solid rgba(128, 128, 128, 0.1);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .service-card h3 {
            color: var(--text);
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        .service-card p {
            color: var(--text);
            line-height: 1.6;
            font-size: 1.1em;
        }

        .service-link {
            color: #1A73E8;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .dark-mode .service-link {
            color: #4a9eff;
        }

        .service-link:hover {
            text-decoration: underline;
        }

        .partner-services {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(128, 128, 128, 0.2);
        }

        .reviews-section {
            text-align: center;
            margin-top: 50px;
            padding: 30px;
            background: rgba(26, 115, 232, 0.1);
            border-radius: 10px;
        }

        .dark-mode .reviews-section {
            background: rgba(26, 115, 232, 0.2);
        }

        footer {
            text-align: center;
            padding: 20px;
            background: var(--header-bg);
            margin-top: 40px;
            color: var(--text);
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--card-bg);
                flex-direction: column;
                padding: 20px;
            }

            .nav-menu.active {
                display: flex;
            }

            .dropdown-content {
                position: static;
                box-shadow: none;
                margin-top: 10px;
                width: 100%;
            }

            .nav-menu a {
                width: 100%;
                text-align: center;
                padding: 12px;
            }

            .hero h1 {
                font-size: 2em;
            }

            .content-section {
                padding: 20px;
                margin: 10px;
            }

            .service-card {
                padding: 20px;
            }
        }
