﻿:root {
    --primary-color: #0a0a1a;
    --secondary-color: #1a1a2e;
    --accent-neon: #00f3ff;
    --accent-purple: #ff00c8;
    --accent-cyan: #00ffcc;
    --accent-orange: #ff6b35;
    --text-glow: #e6f7ff;
    --card-bg: rgba(26, 26, 46, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Exo 2', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--primary-color) 0%, #151528 50%, var(--primary-color) 100%);
    color: var(--text-glow);
    overflow-x: hidden;
    background-attachment: fixed;
}
    /* Add to main CSS file */
    body.menu-open {
        overflow: hidden;
    }

.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 998;
}

    .mobile-menu-backdrop.active {
        display: block;
    }

/* Ensure content doesn't hide behind navbar */
main, section {
    position: relative;
    z-index: 1;
}

/* Particle Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-neon);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    box-shadow: 0 0 10px var(--accent-neon);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    50% {
        transform: translateY(-100px) translateX(100px);
        opacity: 1;
    }

    80% {
        opacity: 0;
    }
}

/* Navbar - FIXED */
/* Navbar - Fixed for Mobile */
.navbar {
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Yeni logo stilleri */
.logo-link {
    display: inline-block;
    z-index: 1001;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-image {
    height: 40px; /* Logo yüksekliğini navbar boyutuna göre ayarlayın */
    width: auto; /* En-boy oranını koru */
    display: block;
    transition: all 0.3s ease;
}

    /* İsteğe bağlı: Hover efekti */
    .logo-image:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.5));
    }

/* Mobil uyumluluk için */
@media (max-width: 768px) {
    .logo-image {
        height: 35px;
    }
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: var(--text-glow);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 80%;
    }

    .nav-link:hover {
        color: var(--accent-neon);
        background: rgba(0, 243, 255, 0.1);
    }

/* Nav Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
}

/* Search Container - Fixed */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-btn {
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: var(--accent-neon);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

    .search-btn:hover {
        background: rgba(0, 243, 255, 0.2);
        box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
        transform: scale(1.1);
    }

.search-input {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) scaleX(0);
    width: 0;
    padding: 0.7rem 1rem;
    border: 1px solid var(--accent-neon);
    background: rgba(10, 10, 26, 0.95);
    color: var(--text-glow);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    outline: none;
    font-size: 0.9rem;
    backdrop-filter: blur(20px);
}

    .search-input.active {
        width: 250px;
        transform: translateY(-50%) scaleX(1);
        opacity: 1;
        box-shadow: 0 0 25px rgba(0, 243, 255, 0.3);
    }

/* Language Selector - Fixed */
.language-selector {
    position: relative;
    z-index: 1001;
}

.selected-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 15px;
    color: var(--text-glow);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

    .selected-language:hover {
        border-color: var(--accent-neon);
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
        transform: translateY(-1px);
    }

.language-flag {
    font-size: 1.1rem;
}

.language-text {
    font-weight: 600;
}

.selected-language i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.language-selector.active .selected-language i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(10, 10, 26, 0.95);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1002;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 10px;
    margin: 0.2rem;
}

    .language-option:hover {
        background: rgba(0, 243, 255, 0.1);
        transform: translateX(5px);
    }

    .language-option:first-child {
        border-radius: 12px 12px 10px 10px;
    }

    .language-option:last-child {
        border-radius: 10px 10px 12px 12px;
    }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 10px;
    width: 45px;
    height: 45px;
    color: var(--accent-neon);
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1001;
}

    .mobile-menu-btn:hover {
        background: rgba(0, 243, 255, 0.2);
        border-color: var(--accent-neon);
        transform: scale(1.05);
    }

/* ==================== */
/* MOBILE RESPONSIVE */
/* ==================== */

@media (max-width: 992px) {
    .nav-container {
        padding: 0.8rem 5%;
        flex-wrap: wrap;
    }

    /* Hide regular menu on mobile */
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        gap: 0;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(0, 243, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

        .nav-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

    .nav-item {
        width: 100%;
        margin: 0;
    }

    .nav-link {
        border-radius: 0;
        padding: 1.2rem 2rem;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1rem;
    }

        .nav-link::after {
            display: none;
        }

        .nav-link:hover {
            background: rgba(0, 243, 255, 0.15);
            color: var(--accent-neon);
            transform: translateX(10px);
        }

    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex;
    }

    /* Adjust nav-right for mobile */
    .nav-right {
        gap: 0.8rem;
    }

    /* Search input mobile adjustment */
    .search-input.active {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%) scaleX(1);
        width: 90%;
        max-width: 400px;
        z-index: 1002;
    }

    /* Language selector mobile adjustment */
    .language-dropdown {
        position: fixed;
        top: 80px;
        right: 50%;
        transform: translateX(50%) translateY(-10px);
        min-width: 200px;
    }

    .language-selector.active .language-dropdown {
        transform: translateX(50%) translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.7rem 5%;
    }

    .logo {
        font-size: 1.6rem;
    }

    .nav-right {
        gap: 0.6rem;
    }

    .search-btn,
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .selected-language {
        padding: 0.5rem 0.8rem;
        min-width: 70px;
        font-size: 0.8rem;
    }

    .language-flag {
        font-size: 1rem;
    }

    .search-input.active {
        top: 70px;
    }

    .language-dropdown {
        top: 70px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.6rem 4%;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-right {
        gap: 0.4rem;
    }

    .search-btn,
    .mobile-menu-btn {
        width: 38px;
        height: 38px;
    }

    .selected-language {
        min-width: 65px;
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }

    .language-flag {
        font-size: 0.9rem;
    }

    /* Hide language text on very small screens */
    .language-text {
        display: none;
    }

    .selected-language {
        min-width: auto;
        width: 42px;
        justify-content: center;
    }

    .search-input.active {
        width: 85%;
        font-size: 0.8rem;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .nav-container {
        padding: 0.5rem 3%;
    }

    .logo {
        font-size: 1.3rem;
    }

    .search-btn,
    .mobile-menu-btn {
        width: 36px;
        height: 36px;
    }

    .selected-language {
        width: 40px;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Backdrop for mobile menu */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 998;
}

    .mobile-menu-backdrop.active {
        display: block;
    }

/* Banner - Enhanced */
/* Banner Improvements */
.banner {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.banner-content {
    flex: 1;
    z-index: 2;
    max-width: 650px;
}

.banner-headline {
    margin-bottom: 2rem;
}

.banner-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--text-glow), var(--accent-neon), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.typing-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 80px;
}

.typed-text {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.typing-cursor {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-neon);
    animation: blink 1s infinite;
    text-shadow: 0 0 10px var(--accent-neon);
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}

.banner-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 600px;
}

.banner-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

    .cta-button.primary {
        background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
        color: var(--primary-color);
        box-shadow: 0 0 25px rgba(0, 243, 255, 0.4);
    }

    .cta-button.secondary {
        background: transparent;
        color: var(--accent-neon);
        border: 2px solid var(--accent-neon);
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    }

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button.primary:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 243, 255, 0.6);
    }

    .cta-button.secondary:hover {
        transform: translateY(-5px);
        background: rgba(0, 243, 255, 0.1);
        box-shadow: 0 10px 25px rgba(0, 243, 255, 0.3);
    }

.banner-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.3rem;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--text-glow);
}

/* Banner Visuals Enhancement */
.banner-visuals {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}

.tech-orb {
    position: absolute;
    width: 90px;
    height: 90px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 243, 255, 0.4);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.3), inset 0 0 15px rgba(0, 243, 255, 0.1);
    animation: orbFloat 8s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

    .tech-orb:hover {
        transform: scale(1.3) rotate(15deg);
        box-shadow: 0 0 40px rgba(0, 243, 255, 0.6), inset 0 0 20px rgba(0, 243, 255, 0.2);
        border-color: var(--accent-neon);
    }

.orb-1 {
    top: 20%;
    left: 15%;
    color: var(--accent-neon);
    animation-delay: 0s;
}

.orb-2 {
    top: 60%;
    right: 20%;
    color: var(--accent-purple);
    animation-delay: -2s;
}

.orb-3 {
    bottom: 25%;
    left: 30%;
    color: var(--accent-cyan);
    animation-delay: -4s;
}

.orb-4 {
    top: 35%;
    right: 25%;
    color: var(--accent-orange);
    animation-delay: -6s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-25px) rotate(90deg) scale(1.05);
    }

    50% {
        transform: translateY(-10px) rotate(180deg) scale(1.1);
    }

    75% {
        transform: translateY(-20px) rotate(270deg) scale(1.05);
    }
}
/* Floating Shapes Enhancement */
.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: floatShape 12s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-neon);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--accent-purple);
    top: 50%;
    right: 15%;
    animation-delay: -4s;
}

.shape-3 {
    width: 280px;
    height: 280px;
    background: var(--accent-cyan);
    bottom: 15%;
    left: 25%;
    animation-delay: -8s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(40px, -30px) scale(1.1) rotate(120deg);
    }

    66% {
        transform: translate(-30px, 20px) scale(0.9) rotate(240deg);
    }
}


/* Responsive Banner */
@media (max-width: 1200px) {
    .banner-title {
        font-size: 3.5rem;
    }

    .typed-text {
        font-size: 2.2rem;
    }

    .banner-stats {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .banner {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 6rem 5% 4rem;
    }

    .banner-content {
        margin-bottom: 3rem;
    }

    .banner-title {
        font-size: 3rem;
    }

    .typed-text {
        font-size: 2rem;
    }

    .banner-actions {
        justify-content: center;
    }

    .banner-stats {
        justify-content: center;
    }

    .banner-visuals {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }

    .typed-text {
        font-size: 1.8rem;
    }

    .typing-container {
        min-height: 60px;
    }

    .banner-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .banner-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat {
        flex: 1;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2rem;
    }

    .typed-text {
        font-size: 1.5rem;
    }

    .typing-cursor {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* Pricing Section - FIXED */
.pricing {
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

    .pricing::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 70%, rgba(255, 0, 200, 0.1) 0%, transparent 50%);
        z-index: -1;
    }

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.pricing-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-glow);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    flex: 1;
}

    .tab-btn.active {
        color: var(--primary-color);
    }

.tab-indicator {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: calc(33.333% - 1rem);
    height: calc(100% - 1rem);
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    z-index: 1;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.pricing-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 46, 0.6) 100%);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

    .pricing-card::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple), var(--accent-cyan), var(--accent-orange));
        border-radius: 27px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .pricing-card:hover::before {
        opacity: 1;
        animation: borderRotate 3s linear infinite;
    }

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.3);
}

.card-popular {
    border: 2px solid var(--accent-neon);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.3);
}

    .card-popular::after {
        content: 'POPÜLER';
        position: absolute;
        top: 20px;
        right: -35px;
        background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
        color: var(--primary-color);
        padding: 0.5rem 3rem;
        font-weight: 700;
        font-size: 0.8rem;
        transform: rotate(45deg);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
/* Pricing Section Styles */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a1f 0%, #1a1a3a 100%);
    position: relative;
    overflow: hidden;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00f3ff, #9d4edd, #00f3ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 50px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.tab-btn {
    padding: 12px 30px;
    border: none;
    background: transparent;
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

    .tab-btn.active {
        color: #0a0a1f;
    }

.tab-indicator {
    position: absolute;
    height: calc(100% - 20px);
    background: linear-gradient(45deg, #00f3ff, #9d4edd);
    border-radius: 40px;
    transition: all 0.3s ease;
    top: 10px;
    left: 10px;
    width: calc(33.33% - 10px);
    z-index: 0;
}

/* Pricing Cards */
.pricing-cards {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

    .pricing-cards.active {
        display: grid;
    }

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 30px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .pricing-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 243, 255, 0.3);
        box-shadow: 0 20px 40px rgba(0, 243, 255, 0.1);
    }

.card-popular {
    border: 2px solid transparent;
    background: linear-gradient(45deg, rgba(0, 243, 255, 0.1), rgba(157, 78, 221, 0.1));
    position: relative;
}

    .card-popular::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(45deg, #00f3ff, #9d4edd);
    }

.plan-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #00f3ff20, #9d4edd20);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

    .plan-icon i {
        font-size: 35px;
        background: linear-gradient(45deg, #00f3ff, #9d4edd);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.plan-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00f3ff;
    margin-bottom: 25px;
    font-family: 'Exo 2', sans-serif;
}

.plan-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

    .plan-features li {
        color: rgba(255, 255, 255, 0.8);
        padding: 10px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: 'Exo 2', sans-serif;
    }

        .plan-features li i {
            width: 20px;
            font-size: 0.9rem;
        }

            .plan-features li i.fa-check {
                color: #00f3ff;
            }

.feature-disabled {
    opacity: 0.4;
}

    .feature-disabled i {
        color: #ff4444;
    }

.plan-button {
    display: block;
    text-align: center;
    padding: 15px;
    background: linear-gradient(45deg, #00f3ff, #9d4edd);
    color: #0a0a1f;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .plan-button:hover {
        background: transparent;
        border-color: #00f3ff;
        color: #00f3ff;
        transform: scale(1.05);
    }

.card-popular .plan-button {
    background: #00f3ff;
    color: #0a0a1f;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-tabs {
        max-width: 300px;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .pricing-title {
        font-size: 2rem;
    }
}

/* Features Section - ENHANCED */
.features {
    padding: 8rem 5%;
    background: rgba(10, 10, 26, 0.5);
    position: relative;
    overflow: hidden;
}

    .features::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 80% 20%, rgba(0, 255, 204, 0.1) 0%, transparent 50%);
        z-index: -1;
    }

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
}

.feature-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 46, 0.6) 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
        transition: left 0.6s;
    }

    .feature-card:hover::before {
        left: 100%;
    }

    .feature-card:hover {
        transform: translateY(-15px) scale(1.03);
        border-color: var(--accent-neon);
        box-shadow: 0 20px 40px rgba(0, 243, 255, 0.3);
    }

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(0, 243, 255, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple), var(--accent-cyan));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper::before {
    opacity: 1;
    animation: iconRotate 2s linear infinite;
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: floatRandom 10s infinite ease-in-out;
}

@keyframes floatRandom {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }

    50% {
        transform: translate(-15px, 15px) rotate(180deg);
    }

    75% {
        transform: translate(10px, -10px) rotate(270deg);
    }
}

/* Responsive Design - IMPROVED */
@media (max-width: 1200px) {
    .banner-text {
        font-size: 3rem;
    }

    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 1rem 5%;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 26, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem 0;
        border-top: 1px solid rgba(0, 243, 255, 0.2);
    }

        .nav-menu.active {
            display: flex;
        }

    .nav-item {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        border-radius: 0;
        padding: 1rem 2rem;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .banner {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 6rem 5% 3rem;
    }

    .banner-content {
        margin-bottom: 3rem;
    }

    .banner-text {
        font-size: 2.5rem;
    }

    .banner-visuals {
        width: 100%;
        height: 400px;
    }

    .floating-shapes {
        width: 100%;
        height: 100%;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-popular {
        transform: scale(1);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .banner-text {
        font-size: 2rem;
    }

    .pricing-title, .section-title {
        font-size: 2.2rem;
    }

    .pricing-tabs {
        flex-direction: column;
        border-radius: 20px;
        padding: 0.5rem;
    }

    .tab-indicator {
        display: none;
    }

    .tab-btn {
        border-radius: 15px;
        margin: 0.2rem 0;
    }

        .tab-btn.active {
            background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
        }

    .search-input.active {
        width: 200px;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .language-selector {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .banner-text {
        font-size: 1.8rem;
    }

    .pricing-title, .section-title {
        font-size: 1.8rem;
    }

    .pricing-card, .feature-card {
        padding: 2rem 1.5rem;
    }

    .plan-price {
        font-size: 2.5rem;
    }

    .search-input.active {
        width: 180px;
        right: -90px;
    }

    .logo {
        font-size: 1.5rem;
    }
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}



/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    animation: floatFooter 15s ease-in-out infinite;
}

    .footer-shape.shape-1 {
        width: 300px;
        height: 300px;
        background: var(--accent-neon);
        top: -150px;
        right: 10%;
        animation-delay: 0s;
    }

    .footer-shape.shape-2 {
        width: 200px;
        height: 200px;
        background: var(--accent-purple);
        bottom: -100px;
        left: 5%;
        animation-delay: -5s;
    }

    .footer-shape.shape-3 {
        width: 250px;
        height: 250px;
        background: var(--accent-cyan);
        top: 50%;
        right: -125px;
        animation-delay: -10s;
    }

@keyframes floatFooter {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-column:first-child {
    max-width: 400px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.footer-description {
    color: var(--text-glow);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 50%;
    color: var(--accent-neon);
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

    .social-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .social-link:hover::before {
        left: 100%;
    }

    .social-link:hover {
        background: rgba(0, 243, 255, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
    }

.social-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-neon);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-link:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-neon);
    font-family: 'Orbitron', sans-serif;
    position: relative;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 30px;
        height: 2px;
        background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
    }

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 0.8rem;
    }

.footer-link {
    color: var(--text-glow);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

    .footer-link::before {
        content: '›';
        position: absolute;
        left: -15px;
        color: var(--accent-neon);
        transition: transform 0.3s ease;
    }

    .footer-link:hover {
        color: var(--accent-neon);
        transform: translateX(5px);
    }

        .footer-link:hover::before {
            transform: scale(1.2);
        }

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-glow);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

    .contact-item:hover {
        opacity: 1;
    }

    .contact-item i {
        color: var(--accent-neon);
        width: 16px;
    }

.newsletter-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-glow);
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .newsletter-form:focus-within {
        border-color: var(--accent-neon);
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    }

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1.2rem;
    color: var(--text-glow);
    outline: none;
    font-size: 0.9rem;
}

    .newsletter-input::placeholder {
        color: rgba(230, 247, 255, 0.5);
    }

.newsletter-btn {
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
    border: none;
    padding: 0.8rem 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .newsletter-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-glow);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-link {
    color: var(--text-glow);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

    .footer-bottom-link:hover {
        color: var(--accent-neon);
    }

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 15px;
    }

    .newsletter-input {
        border-radius: 15px 15px 0 0;
    }

    .newsletter-btn {
        border-radius: 0 0 15px 15px;
    }
}

/* References Section Styles */
.references {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a3a 100%);
    position: relative;
    overflow: hidden;
}

    .references::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 80%, rgba(255, 0, 200, 0.1) 0%, transparent 50%);
        z-index: 1;
    }

.references-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.references-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.references-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
}

/* Slider Styles */
.references-slider {
    position: relative;
    margin: 3rem 0;
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent );
}

.slider-track {
    display: flex;
    gap: 2rem;
    animation: slide 30s linear infinite;
    width: max-content;
}

.reference-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 180px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .reference-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
        transition: left 0.5s;
    }

    .reference-item:hover::before {
        left: 100%;
    }

    .reference-item:hover {
        transform: translateY(-5px);
        border-color: var(--accent-neon);
        box-shadow: 0 10px 25px rgba(0, 243, 255, 0.2);
    }

.reference-logo {
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-neon);
    border: 2px solid rgba(0, 243, 255, 0.3);
}

.reference-name {
    font-weight: 600;
    color: var(--text-glow);
    text-align: center;
    font-size: 0.9rem;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-180px * 5 - 2rem * 5));
    }
}

/* Stats Styles */
.references-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .stat-item:hover {
        border-color: var(--accent-neon);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 243, 255, 0.1);
    }

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: var(--text-glow);
    opacity: 0.8;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .references-title {
        font-size: 2.2rem;
    }

    .references-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .reference-item {
        min-width: 150px;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .references-stats {
        grid-template-columns: 1fr;
    }

    .references-title {
        font-size: 1.8rem;
    }
}

/* Combined Section Styles */
.why-references {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a3a 50%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.combined-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatCombined 20s ease-in-out infinite;
}

    .bg-shape.shape-1 {
        width: 400px;
        height: 400px;
        background: var(--accent-neon);
        top: -200px;
        left: -100px;
        animation-delay: 0s;
    }

    .bg-shape.shape-2 {
        width: 300px;
        height: 300px;
        background: var(--accent-purple);
        bottom: -150px;
        right: 10%;
        animation-delay: -7s;
    }

    .bg-shape.shape-3 {
        width: 250px;
        height: 250px;
        background: var(--accent-cyan);
        top: 50%;
        left: 60%;
        animation-delay: -14s;
    }

@keyframes floatCombined {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.9);
    }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-neon);
    border-radius: 50%;
    animation: floatParticle 15s linear infinite;
    opacity: 0.3;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Why Section Styles */
.why-section {
    margin-bottom: 6rem;
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.section-subtitle {
    font-size: 1.3rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(26, 26, 46, 0.4) 100%);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
        transition: left 0.6s;
    }

    .feature-card:hover::before {
        left: 100%;
    }

    .feature-card:hover {
        transform: translateY(-15px) scale(1.03);
        border-color: var(--accent-neon);
        box-shadow: 0 25px 50px rgba(0, 243, 255, 0.25);
    }

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(0, 243, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: rgba(0, 243, 255, 0.2);
    border-color: var(--accent-neon);
}

.feature-icon {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-glow);
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    color: var(--text-glow);
}

.feature-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--text-glow);
}

/* References Section Styles */
.references-section {
    position: relative;
    z-index: 2;
}

.references-header {
    text-align: center;
    margin-bottom: 3rem;
}

.references-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-neon));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.references-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 400px;
    margin: 0 auto;
}

.references-slider-container {
    margin: 3rem 0;
    position: relative;
}

.references-slider {
    position: relative;
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent );
}

.slider-track {
    display: flex;
    gap: 2rem;
    animation: slideInfinite 40s linear infinite;
    width: max-content;
}

.reference-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.15);
    backdrop-filter: blur(15px);
    min-width: 200px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .reference-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
        transition: left 0.5s;
    }

    .reference-item:hover::before {
        left: 100%;
    }

    .reference-item:hover {
        transform: translateY(-8px);
        border-color: var(--accent-neon);
        box-shadow: 0 15px 30px rgba(0, 243, 255, 0.25);
    }

.reference-logo {
    width: 70px;
    height: 70px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-neon);
    border: 2px solid rgba(0, 243, 255, 0.3);
    transition: all 0.3s ease;
}

.reference-item:hover .reference-logo {
    background: rgba(0, 243, 255, 0.2);
    transform: scale(1.1);
}

.reference-name {
    font-weight: 600;
    color: var(--text-glow);
    text-align: center;
    font-size: 1rem;
}

@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 5 - 2rem * 5));
    }
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

    .stat-item:hover {
        border-color: var(--accent-neon);
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 243, 255, 0.15);
    }

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: var(--text-glow);
    opacity: 0.8;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-references {
        padding: 6rem 5%;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .references-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 2.5rem 2rem;
    }

    .reference-item {
        min-width: 160px;
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .references-title {
        font-size: 1.6rem;
    }

    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .feature-icon {
        font-size: 2rem;
    }
}


/* Solutions Page Specific Styles */
/* Solutions Page Specific Styles */
.solutions-hero {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #151528 50%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-glow);
}

.gradient-text {
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.hero-stat {
    text-align: center;
}

    .hero-stat .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        background: linear-gradient(45deg, var(--accent-neon), var(--accent-cyan));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 0.5rem;
        font-family: 'Orbitron', sans-serif;
    }

.hero-visuals {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.floating-tech {
    position: relative;
    width: 400px;
    height: 400px;
}

.tech-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-neon);
    border: 2px solid rgba(0, 243, 255, 0.3);
    animation: floatTech 8s ease-in-out infinite;
}

    .tech-icon:nth-child(1) {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .tech-icon:nth-child(2) {
        top: 60%;
        right: 20%;
        animation-delay: -2s;
    }

    .tech-icon:nth-child(3) {
        bottom: 30%;
        left: 25%;
        animation-delay: -4s;
    }

    .tech-icon:nth-child(4) {
        top: 40%;
        right: 15%;
        animation-delay: -6s;
    }

@keyframes floatTech {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Solutions Grid */
.solutions-grid {
    padding: 80px 5%;
    background: var(--secondary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1rem;
        font-family: 'Orbitron', sans-serif;
        color: var(--text-glow);
    }

    .section-header p {
        font-size: 1.2rem;
        opacity: 0.8;
        max-width: 500px;
        margin: 0 auto;
    }

.solutions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 46, 0.6) 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

    .solution-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
        transition: left 0.6s;
    }

    .solution-card:hover::before {
        left: 100%;
    }

    .solution-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-neon);
        box-shadow: 0 20px 40px rgba(0, 243, 255, 0.2);
    }

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-neon);
    border: 2px solid rgba(0, 243, 255, 0.3);
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-glow);
}

.solution-card p {
    color: var(--text-glow);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

    .solution-features li {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        padding-left: 1.5rem;
        color: var(--text-glow);
    }

        .solution-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-cyan);
            font-weight: bold;
        }

.solution-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-neon);
    border-color: var(--accent-neon);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(0, 243, 255, 0.1);
    transform: translateY(-2px);
}

/* Process Section */
.process-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #151528 100%);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
}

    .process-step:hover {
        border-color: var(--accent-neon);
        transform: translateX(10px);
    }

.step-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Orbitron', sans-serif;
    min-width: 60px;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-glow);
    font-family: 'Orbitron', sans-serif;
}

.step-content p {
    color: var(--text-glow);
    opacity: 0.8;
    line-height: 1.6;
}

/* CTA Section */
.solutions-cta {
    padding: 80px 5%;
    background: var(--secondary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-glow);
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 992px) {
    .solutions-hero {
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visuals {
        display: none;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .solution-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .solutions-container {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Iletisim sayfası Contact Page Specific Styles */
.contact-hero {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #151528 50%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .info-card:hover {
        border-color: var(--accent-neon);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 243, 255, 0.1);
    }

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-neon);
    border: 2px solid rgba(0, 243, 255, 0.3);
}

.info-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-glow);
    font-family: 'Orbitron', sans-serif;
}

.info-content p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-neon);
    margin-bottom: 0.3rem;
}

.info-content span {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--text-glow);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 5%;
    background: var(--secondary-color);
}

    .contact-form-section .container {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
        align-items: start;
    }

.form-container {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 46, 0.6) 100%);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(15px);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .form-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        font-family: 'Orbitron', sans-serif;
        color: var(--text-glow);
    }

    .form-header p {
        font-size: 1.1rem;
        opacity: 0.8;
        color: var(--text-glow);
    }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--text-glow);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1rem 1rem 1rem 3rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(0, 243, 255, 0.2);
        border-radius: 15px;
        color: var(--text-glow);
        font-size: 1rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-neon);
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

.input-icon {
    position: absolute;
    left: 1rem;
    top: 70%;
    transform: translateY(-50%);
    color: var(--accent-neon);
    font-size: 1rem;
}

.form-group textarea + .input-icon {
    top: 1.5rem;
    transform: none;
}

.submit-btn {
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
    color: var(--primary-color);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 243, 255, 0.4);
    }

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 46, 0.6) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(15px);
}

    .sidebar-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--text-glow);
        font-family: 'Orbitron', sans-serif;
    }

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-glow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .quick-link:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--accent-neon);
        transform: translateX(5px);
    }

    .quick-link.whatsapp:hover {
        border-color: #25D366;
    }

    .quick-link.telegram:hover {
        border-color: #0088cc;
    }

    .quick-link.skype:hover {
        border-color: #00AFF0;
    }

    .quick-link i {
        font-size: 1.2rem;
        width: 20px;
    }

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-glow);
}

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
    color: #ff4444;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

    .emergency-contact:hover {
        background: rgba(255, 0, 0, 0.2);
        transform: scale(1.05);
    }

/* Map Section */
.map-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #151528 100%);
}

.map-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(10px);
}

.map-placeholder {
    color: var(--text-glow);
}

    .map-placeholder i {
        font-size: 4rem;
        color: var(--accent-neon);
        margin-bottom: 1rem;
    }

    .map-placeholder h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        font-family: 'Orbitron', sans-serif;
    }

    .map-placeholder p {
        opacity: 0.8;
        margin-bottom: 2rem;
    }

/* FAQ Section */
.contact-faq {
    padding: 80px 5%;
    background: var(--secondary-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        border-color: var(--accent-neon);
    }

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
}

    .faq-question h3 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-glow);
        margin: 0;
    }

    .faq-question i {
        color: var(--accent-neon);
        transition: transform 0.3s ease;
    }

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-glow);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-form-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-container {
        padding: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .form-header h2 {
        font-size: 2rem;
    }
}
/* Contact Hero - Improved */
.contact-hero {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #151528 50%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.particles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-neon);
    border-radius: 50%;
    animation: floatParticle 15s linear infinite;
    opacity: 0.3;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-glow);
    line-height: 1.1;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.6) 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    justify-content: center;
}

    .info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
        transition: left 0.6s;
    }

    .info-card:hover::before {
        left: 100%;
    }

    .info-card:hover {
        border-color: var(--accent-neon);
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 243, 255, 0.25);
    }

.info-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-neon);
    border: 2px solid rgba(0, 243, 255, 0.3);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.info-card:hover .info-icon {
    background: rgba(0, 243, 255, 0.2);
    transform: scale(1.15) rotate(5deg);
    border-color: var(--accent-neon);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.4);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

    .info-content h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--text-glow);
        font-family: 'Orbitron', sans-serif;
        margin: 0;
    }

    .info-content p {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--accent-neon);
        margin: 0;
        background: linear-gradient(45deg, var(--accent-neon), var(--accent-cyan));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .info-content span {
        font-size: 0.95rem;
        opacity: 0.8;
        color: var(--text-glow);
        line-height: 1.4;
    }

/* Hero Visuals */
.hero-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

    .contact-shapes .shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.2;
        animation: floatShape 20s ease-in-out infinite;
    }

    .contact-shapes .shape-1 {
        width: 400px;
        height: 400px;
        background: var(--accent-neon);
        top: 10%;
        right: 10%;
        animation-delay: 0s;
    }

    .contact-shapes .shape-2 {
        width: 300px;
        height: 300px;
        background: var(--accent-purple);
        bottom: 20%;
        left: 5%;
        animation-delay: -7s;
    }

    .contact-shapes .shape-3 {
        width: 350px;
        height: 350px;
        background: var(--accent-cyan);
        top: 50%;
        left: 60%;
        animation-delay: -14s;
    }

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 20px) scale(0.9);
    }
}

.floating-tech {
    position: relative;
    width: 100%;
    height: 100%;
}

    .floating-tech .tech-icon {
        position: absolute;
        width: 80px;
        height: 80px;
        background: rgba(0, 243, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--accent-neon);
        border: 2px solid rgba(0, 243, 255, 0.3);
        animation: floatTech 8s ease-in-out infinite;
        backdrop-filter: blur(10px);
    }

        .floating-tech .tech-icon:nth-child(1) {
            top: 120%;
            left: 15%;
            animation-delay: 0s;
        }

        .floating-tech .tech-icon:nth-child(2) {
            top: 120%;
            right: 20%;
            animation-delay: -3s;
        }

        .floating-tech .tech-icon:nth-child(3) {
            bottom: 0;
            left: 70%;
            animation-delay: -6s;
        }

        .floating-tech .tech-icon:nth-child(4) {
            top: 80%;
            right: 75%;
            animation-delay: -6s;
        }

@keyframes floatTech {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-25px) rotate(90deg) scale(1.05);
    }

    50% {
        transform: translateY(-10px) rotate(180deg) scale(1.1);
    }

    75% {
        transform: translateY(-20px) rotate(270deg) scale(1.05);
    }
}

/* Contact Form - Fixed Icons */
.contact-form-section {
    padding: 80px 5%;
    background: var(--secondary-color);
    position: relative;
}

    .contact-form-section .container {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
        align-items: start;
        position: relative;
        z-index: 2;
    }

.form-container {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 46, 0.6) 100%);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

    .form-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.05), transparent);
        transition: left 0.6s;
    }

    .form-container:hover::before {
        left: 100%;
    }

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

    .form-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        font-family: 'Orbitron', sans-serif;
        color: var(--text-glow);
    }

    .form-header p {
        font-size: 1.1rem;
        opacity: 0.8;
        color: var(--text-glow);
    }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

    .form-group label {
        display: block;
        margin-bottom: 0.8rem;
        font-weight: 600;
        color: var(--text-glow);
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1.2rem 1.2rem 1.2rem 3.5rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(0, 243, 255, 0.2);
        border-radius: 15px;
        color: var(--text-glow);
        font-size: 1rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        font-family: inherit;
    }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(230, 247, 255, 0.5);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-neon);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

/* Fixed Input Icons */
.input-icon {
    position: absolute;
    left: 1.2rem;
    top: 70%;
    transform: translateY(-50%);
    color: var(--accent-neon);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.form-group:focus-within .input-icon {
    color: var(--accent-cyan);
    transform: translateY(-50%) scale(1.1);
}

/* Textarea icon positioning */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

    .form-group textarea + .input-icon {
        top: 3.5rem;
        transform: none;
        align-items: flex-start;
    }

/* Select styling */
.form-group select {
    appearance: none;
    cursor: pointer;
}

    .form-group select option {
        background: var(--primary-color);
        color: var(--text-glow);
        padding: 1rem;
    }

.submit-btn {
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
    color: var(--primary-color);
    border: none;
    padding: 1.3rem 2.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

    .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .submit-btn:hover::before {
        left: 100%;
    }

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 243, 255, 0.4);
    }

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.sidebar-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 46, 0.6) 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .sidebar-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.05), transparent);
        transition: left 0.6s;
    }

    .sidebar-card:hover::before {
        left: 100%;
    }

    .sidebar-card:hover {
        border-color: var(--accent-neon);
        transform: translateY(-5px);
    }

    .sidebar-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--text-glow);
        font-family: 'Orbitron', sans-serif;
        position: relative;
        z-index: 2;
    }

/* Responsive Improvements */
/* Responsive Tasarım */
@media (max-width: 1024px) {
    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    .info-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 1.5rem;
    }

    .info-card:last-child {
        grid-column: 1;
        max-width: none;
    }

    .info-card {
        padding: 2rem 1.5rem;
        min-height: 250px;
    }

    .info-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .info-content h3 {
        font-size: 1.3rem;
    }

    .info-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-info-cards {
        padding: 0 0.5rem;
    }

    .info-card {
        padding: 1.5rem 1rem;
        min-height: 220px;
        gap: 1rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .info-content h3 {
        font-size: 1.2rem;
    }

    .info-content p {
        font-size: 1.1rem;
    }

    .info-content span {
        font-size: 0.9rem;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .contact-info-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .contact-form-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 5% 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .floating-tech .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .contact-info-cards {
        gap: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 1rem 1rem 3rem;
    }

    .input-icon {
        left: 1rem;
    }
}
