﻿/* ==========================================================================
   Base Styles
   ========================================================================== */
:root {
    /* Brand Colors */
    --primary-color: #0056b3;
    --secondary-color: #00346b;
    --accent-color: #00c6ff;
    --dark-color: #121a23;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    /* Typography */
    --font-primary: 'Exo 2', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    /* Animation */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
    /* Shadows */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    /* Z-indices */
    --z-back: -1;
    --z-normal: 1;
    --z-sticky: 100;
    --z-fixed: 1000;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-preloader: 2000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: #343a40;
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

    a:hover {
        color: var(--secondary-color);
    }

.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.3rem;
    transition: all var(--transition-normal);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
}

    .btn-outline-light:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

/* Section styles */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-dark {
    background-color: var(--dark-color);
    color: #fff;
}

.section-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    z-index: var(--z-preloader);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
}

.logo-container {
    position: relative;
    margin-bottom: 2rem;
}

.preloader-logo {
    width: 120px;
    height: 120px;
}

.logo-path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: dash 2s linear forwards;
}

.logo-text {
    fill: white;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 800;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out 1.5s forwards;
}

.loading-bar-container {
    width: 150px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    width: 0;
    background-color: var(--primary-color);
    animation: loading 2s ease-in-out forwards;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* ==========================================================================
   Custom Cursor
   ========================================================================== */
.cursor-dot,
.cursor-circle {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: var(--z-tooltip);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.cursor-circle {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transition: all 0.2s ease-out;
}

body:hover .cursor-dot,
body:hover .cursor-circle {
    opacity: 1;
}

/* Hide custom cursor on mobile */
@media (max-width: 991.98px) {
    .cursor-dot,
    .cursor-circle {
        display: none;
    }
}

/* ==========================================================================
   Navbar
   ========================================================================== */
/* Fixed Navbar Styles */
.navbar {
    transition: all 0.3s ease;
}

.navbar {
    padding: 1.25rem 0;
    transition: all var(--transition-normal);
    /*    background-color: transparent;  */
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background-color: rgba(33, 37, 41, 0.7); /* Koyu arka plan rengi */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Gölge efekti */
}

    .navbar.scrolled {
        /*padding: 0.75rem 0;*/
        background-color: rgba(18, 26, 35, 0.95);
        box-shadow: var(--shadow-md);
        padding-top: 10px;
        padding-bottom: 10px;
    }

/* Header altındaki içeriğe padding eklemek için (sabit header kullanıldığında) */
.fixed-top + main {
    padding-top: 76px; /* Navbar'ın yüksekliğine bağlı olarak ayarlayın */
}

.navbar-brand {
    padding: 0;
}

.brand-logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.5rem;
    color: #121324;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(8px);
    opacity: 0.7;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all var(--transition-normal);
}

    .nav-link:hover,
    .nav-link:focus {
        color: #fff !important;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 1rem;
        right: 1rem;
        height: 2px;
        background-color: var(--accent-color);
        transform: scaleX(0);
        transition: transform var(--transition-normal);
        transform-origin: center;
    }

    .nav-link:hover::after,
    .nav-link:focus::after,
    .nav-item.active .nav-link::after {
        transform: scaleX(1);
    }

.dropdown-arrow {
    margin-left: 0.25rem;
    transition: transform var(--transition-normal);
}

.nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(-180deg);
}

/* Social Media Icons */
.social-icon {
    font-size: 1.25rem;
    transition: all var(--transition-normal);
    position: relative;
}

    .social-icon:hover {
        color: var(--accent-color) !important;
        transform: translateY(-3px);
    }

/* Language Dropdown */
.lang-dropdown img.flag-icon {
    width: 18px;
    height: 12px;
    margin-right: 0.5rem;
}

.language-dropdown {
    min-width: 10rem;
}

    .language-dropdown .dropdown-item {
        display: flex;
        align-items: center;
        padding: 0.5rem 1rem;
    }

        .language-dropdown .dropdown-item.active {
            background-color: rgba(0, 86, 179, 0.1);
        }

        .language-dropdown .dropdown-item:hover {
            background-color: rgba(0, 86, 179, 0.05);
        }

/* Search Toggle */
.search-toggle {
    font-size: 1.25rem;
    transition: all var(--transition-normal);
}

    .search-toggle:hover {
        color: var(--accent-color) !important;
        transform: scale(1.1);
    }

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 26, 35, 0.98);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

    .search-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.search-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

    .search-close-btn:hover {
        color: var(--accent-color);
        transform: rotate(90deg);
    }

.search-container {
    width: 60%;
    max-width: 800px;
}

.search-form {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1.25rem 5rem 1.25rem 1.25rem;
    font-size: 1.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    transition: all var(--transition-normal);
}

    .search-input:focus {
        outline: none;
        background-color: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.2);
    }

.search-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 1.5rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    transition: all var(--transition-normal);
}

    .search-btn:hover {
        color: var(--accent-color);
    }

/* Mega Dropdown */
.mega-dropdown {
    position: static !important;
}

.mega-dropdown-menu {
    width: 100%;
    border: none;
    border-radius: 0;
    margin-top: 0;
    background-color: rgba(18, 26, 35, 0.98);
    padding: 2rem 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.mega-dropdown:hover .mega-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    color: var(--accent-color);
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 0 0.75rem 0;
    margin-bottom: 0.75rem;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    transition: all var(--transition-normal);
}

    .dropdown-item:hover {
        color: #fff;
        background-color: transparent;
        transform: translateX(5px);
    }

.dropdown-media {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    height: 100%;
}

    .dropdown-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-normal);
    }

    .dropdown-media:hover img {
        transform: scale(1.05);
    }

.dropdown-media-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

    .dropdown-media-content h5 {
        color: #fff;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .dropdown-media-content p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

/* Products Dropdown */
.products-dropdown .product-category {
    text-align: center;
    transition: all var(--transition-normal);
    padding: 1rem;
    height: 100%;
}

    .products-dropdown .product-category:hover {
        transform: translateY(-5px);
    }

.products-dropdown .product-image {
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

    .products-dropdown .product-image img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        transition: transform var(--transition-normal);
    }

.products-dropdown .product-category:hover .product-image img {
    transform: scale(1.05);
}

.products-dropdown h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.products-dropdown p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    height: 60px;
    overflow: hidden;
}

.btn-product-link {
    color: var(--accent-color);
    font-weight: 500;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
}

    .btn-product-link i {
        margin-left: 0.5rem;
        transition: transform var(--transition-normal);
    }

    .btn-product-link:hover {
        color: #fff;
    }

        .btn-product-link:hover i {
            transform: translateX(5px);
        }

/* Responsive Navbar */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(18, 26, 35, 0.95);
        padding: 1rem;
        max-height: 80vh;
        overflow-y: auto;
    }

    .mega-dropdown-menu {
        position: static !important;
        box-shadow: none;
        padding: 1rem 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .nav-link::after {
        display: none;
    }

    .navbar-nav-right {
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1rem;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-back);
}

    .hero-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-background::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

.fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: var(--z-normal);
    padding: 2rem 0;
}

.hero-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

    .hero-title span {
        color: var(--accent-color);
        position: relative;
        display: inline-block;
    }

        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: var(--accent-color);
            opacity: 0.3;
        }

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.btn-play {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 0;
    cursor: pointer;
    transition: all var(--transition-normal);
}

    .btn-play:hover {
        color: var(--accent-color);
    }

.play-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    position: relative;
    transition: all var(--transition-normal);
}

    .play-icon i {
        font-size: 1.5rem;
        margin-left: 4px;
    }

    .play-icon::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-radius: 50%;
        background-color: rgba(0, 198, 255, 0.3);
        animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    }

.btn-play:hover .play-icon {
    transform: scale(1.1);
    background-color: #fff;
    color: var(--accent-color);
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }

    80%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.hero-image {
    position: relative;
}

    .hero-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: var(--shadow-lg);
    }

.section-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

    .section-waves svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 80px;
    }

    .section-waves .shape-fill {
        fill: #FFFFFF;
    }

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
    background-color: #fff;
}

.feature-card {
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        z-index: -1;
        opacity: 0;
        transition: opacity var(--transition-normal);
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-md);
    }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover .feature-icon,
        .feature-card:hover .feature-title,
        .feature-card:hover .feature-description,
        .feature-card:hover .feature-link {
            color: #fff;
        }

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.feature-description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.feature-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition-normal);
}

    .feature-link i {
        margin-left: 0.5rem;
        transition: transform var(--transition-normal);
    }

    .feature-link:hover i {
        transform: translateX(5px);
    }

/* ==========================================================================
   Products Section
   ========================================================================== */
.products-section {
    position: relative;
    overflow: hidden;
}

.circuit-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    overflow: hidden;
    height: 100%;
    transition: all var(--transition-normal);
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    }

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-normal);
    }

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    z-index: 1;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-spec {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

    .product-spec i {
        margin-right: 0.5rem;
        color: var(--accent-color);
    }

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.product-energy {
    display: flex;
    align-items: center;
}

.energy-label {
    display: inline-block;
    background-color: var(--success-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    margin-right: 0.75rem;
}

.energy-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.btn-product-details {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
}

    .btn-product-details i {
        margin-left: 0.5rem;
        transition: transform var(--transition-normal);
    }

    .btn-product-details:hover {
        color: #fff;
    }

        .btn-product-details:hover i {
            transform: translateX(5px);
        }

/* ==========================================================================
   Technologies Section
   ========================================================================== */
.technologies-section {
    background-color: #f8f9fa;
}

.tech-card {
    background-color: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

    .tech-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-md);
    }

.tech-image {
    height: 200px;
    overflow: hidden;
}

    .tech-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-normal);
    }

.tech-card:hover .tech-image img {
    transform: scale(1.05);
}

.tech-content {
    padding: 1.5rem;
}

.tech-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.tech-description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.tech-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

    .tech-link i {
        margin-left: 0.5rem;
        transition: transform var(--transition-normal);
    }

    .tech-link:hover i {
        transform: translateX(5px);
    }

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    padding: 5rem 0;
}

.stat-item {
    position: relative;
}

.stat-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-title {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    background-color: #f8f9fa;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-md);
    }

.testimonial-content {
    position: relative;
    padding-top: 2rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--gray-color);
}

    .testimonial-content::before {
        content: '"';
        position: absolute;
        top: -1.5rem;
        left: -0.5rem;
        font-size: 5rem;
        font-family: Georgia, serif;
        color: var(--primary-color);
        opacity: 0.2;
        line-height: 1;
    }

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid var(--primary-color);
}

    .author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author-info h6 {
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.875rem;
    margin: 0;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    position: relative;
    overflow: hidden;
}

.energy-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners-section {
    background-color: #fff;
}

.partner-item {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-normal);
}

    .partner-item:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

    .partner-item img {
        max-height: 80px;
    }

/* ==========================================================================
   News Section
   ========================================================================== */
.news-section {
    background-color: #f8f9fa;
}

.news-card {
    background-color: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

    .news-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-md);
    }

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-normal);
    }

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.5rem;
    border-radius: 0.25rem;
    text-align: center;
    min-width: 60px;
}

    .news-date .day {
        display: block;
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1;
    }

    .news-date .month {
        display: block;
        font-size: 0.875rem;
        text-transform: uppercase;
    }

.news-content {
    padding: 1.5rem;
}

.news-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

    .news-link i {
        margin-left: 0.5rem;
        transition: transform var(--transition-normal);
    }

    .news-link:hover i {
        transform: translateX(5px);
    }

/* ==========================================================================
   Video Modal
   ========================================================================== */
.video-modal .modal-content {
    background-color: transparent;
    border: none;
}

.video-modal .btn-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    opacity: 1;
    text-shadow: none;
    z-index: 1051;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 0.5rem;
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0.5rem;
    }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    position: relative;
    background-color: var(--dark-color);
    color: #fff;
    overflow: hidden;
}

.footer-wave-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-31.8z' fill='%23003d79' opacity='0.3'/%3E%3C/svg%3E");
    background-position: 0 0;
    background-repeat: repeat-x;
    animation: wave 25s linear infinite;
}

    .footer-wave:nth-child(2) {
        top: 0;
        animation: wave 20s linear infinite;
        opacity: 0.5;
    }

    .footer-wave:nth-child(3) {
        top: 0;
        animation: wave 15s linear infinite;
        opacity: 0.2;
    }

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.footer-content {
    position: relative;
    padding: 6rem 0 0;
    z-index: 1;
}

.footer-top {
    margin-bottom: 4rem;
}

.footer-branding {
    margin-bottom: 2rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-slogan {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.social-media-container {
    margin-top: 2rem;
}

.social-media-title {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.social-media-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.125rem;
    transition: all var(--transition-normal);
    position: relative;
}

    .social-icon:hover {
        background-color: var(--primary-color);
        transform: translateY(-5px);
    }

.social-hover-text {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.social-icon:hover .social-hover-text {
    opacity: 1;
    visibility: visible;
    bottom: -25px;
}

.footer-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: var(--accent-color);
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    display: block;
    transition: all var(--transition-normal);
    text-decoration: none; /* Bu satır eklendi */
    position: relative; /* Bu satır eklendi */
    z-index: 2; /* Bu satır eklendi - parçacıkların üzerine çıkması için */
}

    .footer-link:hover {
        color: var(--accent-color);
        transform: translateX(5px);
    }

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-right: 1rem;
}

.contact-text {
    color: rgba(255, 255, 255, 0.7);
}

.footer-middle {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.newsletter-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    position: relative;
}

    .newsletter-form .form-control {
        height: 50px;
        background-color: rgba(255, 255, 255, 0.1);
        border: none;
        color: #fff;
        padding-right: 160px;
    }

        .newsletter-form .form-control:focus {
            box-shadow: none;
            background-color: rgba(255, 255, 255, 0.15);
        }

        .newsletter-form .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

.btn-newsletter {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0 1.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

    .btn-newsletter span {
        margin-right: 0.5rem;
    }

    .btn-newsletter:hover {
        background-color: #0099cc;
        color: #fff;
    }

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-policies {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.policy-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: all var(--transition-normal);
}

    .policy-link:hover {
        color: var(--accent-color);
    }

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: particle-animation 15s infinite;
    opacity: 0.3;
}

    .particle:nth-child(2n) {
        width: 8px;
        height: 8px;
        animation-duration: 20s;
        background-color: var(--accent-color);
    }

    .particle:nth-child(3n) {
        width: 4px;
        height: 4px;
        animation-duration: 25s;
        background-color: #fff;
    }

@keyframes particle-animation {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(100px, 100px);
    }

    50% {
        transform: translate(200px, 0);
    }

    75% {
        transform: translate(100px, -100px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: var(--secondary-color);
        color: #fff;
        transform: translateY(-5px);
    }

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .section {
        padding: 5rem 0;
    }

    .hero-section {
        min-height: 600px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-policies {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 4rem 0;
    }

    .hero-section {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .feature-card,
    .product-card,
    .tech-card,
    .testimonial-card,
    .news-card {
        margin-bottom: 1.5rem;
    }

    .newsletter-title {
        font-size: 1.25rem;
    }

    .newsletter-form .form-control {
        padding-right: 120px;
    }

    .btn-newsletter {
        padding: 0 1rem;
    }
}

@media (max-width: 575.98px) {
    .section {
        padding: 3rem 0;
    }

    .hero-section {
        min-height: 450px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .search-container {
        width: 90%;
    }

    .social-media-icons {
        flex-wrap: wrap;
    }

    .footer-content {
        padding-top: 4rem;
    }
}

/* ==========================================================================
   Animations & Keyframes
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.rounded-lg {
    border-radius: 0.75rem !important;
}

.shadow-hover {
    transition: box-shadow var(--transition-normal);
}

    .shadow-hover:hover {
        box-shadow: var(--shadow-md) !important;
    }

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: var(--secondary-color);
    }

/* Logo Elektrik Animasyonu */
/* Logo Elektrik Animasyonu - Güncellenmiş */
/*.logo-electric-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 40px;
}

.logo-electric-circle {
    position: absolute;
    width: 110%;
    height: 150%;
    border-radius: 50%;*/
/*border: 2px solid transparent;*/
/*border-top: 2px solid var(--accent-color);
    border-left: 2px solid rgba(0, 198, 255, 0.4);
    animation: logoRotate 3s linear infinite;
    z-index: 1;
}

    .logo-electric-circle::before {
        content: '';
        position: absolute;
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
        border-radius: 50%;*/
/*border: 2px solid transparent;*/
/*border-top: 2px solid rgba(0, 198, 255, 0.2);
        border-right: 2px solid rgba(0, 198, 255, 0.2);
        animation: logoRotate 5s linear infinite reverse;
    }

.logo-electric-particles {
    position: absolute;
    width: 130%;
    height: 180%;
    z-index: 0;
}

    .logo-electric-particles span {
        position: absolute;
        display: block;
        width: 4px;
        height: 4px;
        background: var(--accent-color);
        border-radius: 50%;*/
/*box-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);*/
/*animation: particleFlow 5s linear infinite;
    }

.logo-text-wrapper {
    position: relative;
    z-index: 2;
    background-color: rgba(18, 26, 35, 0.7);*/ /* Arka plan desteği */
/*padding: 2px 10px;
    border-radius: 4px;
}

.logo-text {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);
    animation: logoTextGlow 2s ease-in-out infinite alternate;
}

@keyframes logoTextGlow {
    0% {
        text-shadow: 0 0 5px rgba(0, 198, 255, 0.7), 0 0 10px rgba(0, 198, 255, 0.5);
        color: #fff;
    }

    100% {
        text-shadow: 0 0 10px rgba(0, 198, 255, 0.9), 0 0 20px rgba(0, 198, 255, 0.7), 0 0 30px rgba(0, 86, 179, 0.5);
        color: #ffffff;
    }
}*/

/* Diğer animasyon kodları aynı kalabilir */

/*.logo-electric-particles span:nth-child(1) {
            top: 10%;
            left: 50%;
            animation-delay: 0s;
        }

        .logo-electric-particles span:nth-child(2) {
            top: 25%;
            left: 15%;
            animation-delay: 0.7s;
        }

        .logo-electric-particles span:nth-child(3) {
            top: 70%;
            left: 10%;
            animation-delay: 1.5s;
        }

        .logo-electric-particles span:nth-child(4) {
            top: 90%;
            left: 50%;
            animation-delay: 2.2s;
        }

        .logo-electric-particles span:nth-child(5) {
            top: 70%;
            left: 90%;
            animation-delay: 3s;
        }

        .logo-electric-particles span:nth-child(6) {
            top: 25%;
            left: 85%;
            animation-delay: 3.8s;
        }

        .logo-electric-particles span:nth-child(7) {
            top: 40%;
            left: 10%;
            animation-delay: 1s;
        }

        .logo-electric-particles span:nth-child(8) {
            top: 60%;
            left: 85%;
            animation-delay: 2.5s;
        }

        .logo-electric-particles span:nth-child(9) {
            top: 40%;
            left: 90%;
            animation-delay: 0.5s;
        }

        .logo-electric-particles span:nth-child(10) {
            top: 80%;
            left: 25%;
            animation-delay: 3.4s;
        }

@keyframes logoRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes particleFlow {
    0% {
        transform: scale(0) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2) translateX(20px) rotate(360deg);
        opacity: 0;
    }
}*/

/* Logo metin animasyonu */
/*.logo-text {
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.7);
    animation: logoTextGlow 2s ease-in-out infinite alternate;
}

@keyframes logoTextGlow {
    0% {
        text-shadow: 0 0 5px rgba(0, 198, 255, 0.7);
    }

    100% {
        text-shadow: 0 0 15px rgba(0, 198, 255, 0.9), 0 0 30px rgba(0, 86, 179, 0.5);
    }
}*/

/* Mevcut glow animasyonuna ekstra neon efekti */
/*.logo-glow {
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.7);
    animation: logoGlowPulse 2s infinite alternate;
}*/

/*@keyframes logoGlowPulse {
    0% {
        box-shadow: 0 0 15px rgba(0, 198, 255, 0.7);
        opacity: 0.6;
    }

    100% {
        box-shadow: 0 0 30px rgba(0, 198, 255, 0.9), 0 0 40px rgba(0, 86, 179, 0.4);
        opacity: 0.8;
    }
}*/

/* Küçük ekranlarda animasyonu düzenle */
/*@media (max-width: 767.98px) {
    .logo-electric-circle {
        width: 105%;
        height: 140%;
    }

    .logo-electric-particles {
        width: 120%;
        height: 160%;
    }
}*/

/* Dil Mega Menü Stilleri - Güncellenmiş */
.mega-dropdown {
    position: static !important;
}

.language-mega-menu {
    width: 100%;
    padding: 2rem 0;
    background-color: #0C1520; /* Koyu arkaplan */
    border: none;
    border-radius: 0;
    margin-top: 0;
    z-index: 1000;
    left: 0;
    right: 0;
}

.language-regions {
    margin-bottom: 2rem;
}

.region-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.region-tab {
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    padding-bottom: 0.5rem;
}

    .region-tab:hover {
        color: #fff;
    }

    .region-tab.active {
        color: #fff;
    }

        .region-tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent-color);
        }

/* Bölge İçerikleri */
.region-content {
    display: none;
}

    .region-content.active {
        display: block;
    }

.language-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 sütunlu grid */
    gap: 1rem;
    margin-top: 2rem;
}

.language-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-normal);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.05);
}

    .language-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
        transform: translateY(-2px);
    }

    .language-item.active {
        background-color: rgba(0, 198, 255, 0.1);
        color: var(--accent-color);
        border-left: 3px solid var(--accent-color);
    }

.flag-icon {
    width: 24px;
    height: 18px;
    margin-right: 0.75rem;
    border-radius: 2px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.language-name {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobil Düzenlemeler */
@media (max-width: 991.98px) {
    .language-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .region-tabs {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .language-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .language-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .region-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}
/* GTranslate Mega Menu Entegrasyonu */
.gtranslate-link {
    transition: all 0.3s ease;
    text-decoration: none !important;
}

    .gtranslate-link:hover {
        transform: translateY(-2px);
        background-color: rgba(0, 86, 179, 0.1);
    }

    .gtranslate-link.active {
        background-color: var(--primary-color);
        color: white;
    }

        .gtranslate-link.active .language-name {
            color: white;
        }

/* GTranslate widget'ını gizle */
.gtranslate_wrapper {
    display: none !important;
}
