* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    margin-bottom: 2rem;
}

.loader-logo .logo-text {
    font-size: 2.5rem;
    animation: neonPulse 2s ease-in-out infinite alternate;
}

.loader-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spinner-ring {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 255, 136, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    animation-delay: 0.2s;
    border-top-color: var(--secondary-color);
}

.spinner-ring:nth-child(3) {
    animation-delay: 0.4s;
    border-top-color: var(--primary-color);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    color: var(--text-gray);
    font-size: 1rem;
    letter-spacing: 2px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

:root {
    --primary-color: #00ff88;
    --secondary-color: #00d4ff;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --border-color: #1a1a1a;
    --accent-glow: rgba(0, 255, 136, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f1a 25%, #0a0a0a 50%, #0f0f1a 75%, #0a0a0a 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 0.8),
        0 0 20px rgba(0, 255, 136, 0.6),
        0 0 30px rgba(0, 255, 136, 0.4),
        0 0 40px rgba(0, 255, 136, 0.2);
    animation: neonPulse 2s ease-in-out infinite alternate;
}

.logo-text .accent {
    color: var(--primary-color);
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 1),
        0 0 20px rgba(0, 255, 136, 0.8),
        0 0 30px rgba(0, 255, 136, 0.6),
        0 0 40px rgba(0, 255, 136, 0.4);
}

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

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--text-light);
}

.nav-menu a:hover::after {
    width: 100%;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 50%, #25D366 100%);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(37, 211, 102, 0.5),
        0 0 40px rgba(37, 211, 102, 0.3),
        0 0 60px rgba(37, 211, 102, 0.1),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: whatsappGradientShift 3s ease infinite, whatsappPulseGlow 2s ease-in-out infinite;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: whatsappShimmer 3s infinite;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #25D366;
    border-radius: 25px;
    opacity: 0;
    animation: whatsappBorderPulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #25D366 50%, #20BA5A 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(37, 211, 102, 0.8),
        0 0 60px rgba(37, 211, 102, 0.5),
        0 0 90px rgba(37, 211, 102, 0.3),
        0 10px 30px rgba(37, 211, 102, 0.4),
        inset 0 0 25px rgba(255, 255, 255, 0.2);
    animation: whatsappGradientShift 1.5s ease infinite, whatsappPulseGlow 1s ease-in-out infinite;
}

.whatsapp-btn:hover::before {
    animation: whatsappShimmer 1.5s infinite;
}

.whatsapp-btn:hover::after {
    opacity: 1;
    animation: whatsappBorderPulse 1s ease-in-out infinite;
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-text {
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Fiyat Hesaplayıcı Butonu */
.price-calculator-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00cc70 50%, var(--primary-color) 100%);
    background-size: 200% 200%;
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.5),
        0 0 40px rgba(0, 255, 136, 0.3),
        0 0 60px rgba(0, 255, 136, 0.1),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    animation: gradientShift 3s ease infinite, pulseGlow 2s ease-in-out infinite;
}

.price-calculator-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.price-calculator-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    opacity: 0;
    animation: borderPulse 2s ease-in-out infinite;
}

.price-calculator-btn:hover {
    background: linear-gradient(135deg, #00cc70 0%, var(--primary-color) 50%, #00cc70 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.8),
        0 0 60px rgba(0, 255, 136, 0.5),
        0 0 90px rgba(0, 255, 136, 0.3),
        0 10px 30px rgba(0, 255, 136, 0.4),
        inset 0 0 25px rgba(255, 255, 255, 0.2);
    animation: gradientShift 1.5s ease infinite, pulseGlow 1s ease-in-out infinite;
}

.price-calculator-btn:hover::before {
    animation: shimmer 1.5s infinite;
}

.price-calculator-btn:hover::after {
    opacity: 1;
    animation: borderPulse 1s ease-in-out infinite;
}

.price-calculator-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--bg-dark);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.price-calculator-btn:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.price-calculator-text {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.glitch {
    position: relative;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px var(--primary-color),
        0 0 20px var(--primary-color),
        0 0 30px var(--primary-color);
    animation: glitch 3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00ffff, 2px 2px #ff00ff;
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    20% { clip: rect(54px, 9999px, 66px, 0); }
    40% { clip: rect(28px, 9999px, 100px, 0); }
    60% { clip: rect(67px, 9999px, 85px, 0); }
    80% { clip: rect(23px, 9999px, 98px, 0); }
    100% { clip: rect(76px, 9999px, 91px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    20% { clip: rect(79px, 9999px, 85px, 0); }
    40% { clip: rect(66px, 9999px, 99px, 0); }
    60% { clip: rect(94px, 9999px, 98px, 0); }
    80% { clip: rect(15px, 9999px, 100px, 0); }
    100% { clip: rect(2px, 9999px, 99px, 0); }
}

.hero-title .subtitle {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--text-gray);
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: subtitleFadeIn 1.5s ease-out 0.8s forwards;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
    overflow: hidden;
}

.hero-title .subtitle::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 0.6),
        0 0 20px rgba(0, 255, 136, 0.4),
        0 0 30px rgba(0, 255, 136, 0.2);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    animation: subtitleReveal 2s ease-out 2.3s forwards, subtitleGlow 3s ease-in-out 4.3s infinite;
}

.hero-title .subtitle::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    animation: subtitleShine 3s ease-in-out 2.3s infinite;
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleReveal {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}

@keyframes subtitleGlow {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes subtitleShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin: 2rem 0;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-social {
    margin-top: 3rem;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.hero-social-title {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    color: var(--text-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    border-radius: 50%;
}

.hero-social-icon:hover {
    transform: scale(1.3);
    border-color: var(--primary-color);
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.4),
        0 0 40px rgba(0, 255, 136, 0.2);
}

.hero-social-icon:hover::before {
    width: 150%;
    height: 150%;
}

.hero-social-icon svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-social-icon:hover svg {
    transform: rotate(360deg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00ff88 50%, var(--primary-color) 100%);
    background-size: 200% 200%;
    color: var(--bg-dark);
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.5),
        0 0 40px rgba(0, 255, 136, 0.3),
        0 0 60px rgba(0, 255, 136, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite, pulseGlow 2s ease-in-out infinite;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    opacity: 0;
    animation: borderPulse 2s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.8),
        0 0 60px rgba(0, 255, 136, 0.5),
        0 0 90px rgba(0, 255, 136, 0.3),
        0 10px 30px rgba(0, 255, 136, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    animation: gradientShift 1.5s ease infinite, pulseGlow 1s ease-in-out infinite;
}

.btn-primary:hover::before {
    animation: shimmer 1.5s infinite;
}

.btn-primary:hover::after {
    opacity: 1;
    animation: borderPulse 1s ease-in-out infinite;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(0, 255, 136, 0.5),
            0 0 40px rgba(0, 255, 136, 0.3),
            0 0 60px rgba(0, 255, 136, 0.1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(0, 255, 136, 0.7),
            0 0 60px rgba(0, 255, 136, 0.5),
            0 0 90px rgba(0, 255, 136, 0.3);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes borderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes whatsappGradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes whatsappPulseGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(37, 211, 102, 0.5),
            0 0 40px rgba(37, 211, 102, 0.3),
            0 0 60px rgba(37, 211, 102, 0.1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(37, 211, 102, 0.7),
            0 0 60px rgba(37, 211, 102, 0.5),
            0 0 90px rgba(37, 211, 102, 0.3);
    }
}

@keyframes whatsappShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes whatsappBorderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

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

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d15 50%, #0a0a0a 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.title-number {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.5;
}

.title-text {
    color: var(--text-light);
}

.service-category {
    margin-bottom: 5rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.category-icon {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
    flex-shrink: 0;
}

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

.service-card {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0f1a 0%, #0a0a0a 50%, #0f0f1a 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

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

.about-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.about-visual {
    position: relative;
    height: 400px;
}

.visual-box {
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background: rgba(0, 255, 136, 0.05);
}

.box-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vfx-logo-text {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.vfx-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px var(--primary-color),
        0 0 20px var(--primary-color),
        0 0 30px var(--primary-color),
        0 0 40px var(--primary-color);
    letter-spacing: 8px;
    animation: glow-pulse 2s ease-in-out infinite;
}

.medya-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 4px;
    opacity: 0.9;
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 
            0 0 10px var(--primary-color),
            0 0 20px var(--primary-color),
            0 0 30px var(--primary-color),
            0 0 40px var(--primary-color);
    }
    50% {
        text-shadow: 
            0 0 20px var(--primary-color),
            0 0 30px var(--primary-color),
            0 0 40px var(--primary-color),
            0 0 50px var(--primary-color),
            0 0 60px var(--primary-color);
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.element {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    animation: float 6s ease-in-out infinite;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation: float 8s ease-in-out infinite reverse;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 50%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* References Section */
.references {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d15 50%, #0a0a0a 100%);
    position: relative;
}

.references::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.references .container {
    position: relative;
    z-index: 1;
}

.references-description {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.references-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.references-track {
    display: flex;
    gap: 2rem;
    animation: slideRight 30s linear infinite;
    width: fit-content;
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.reference-item {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    min-width: 220px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.reference-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.reference-item:hover::before {
    left: 100%;
}

.reference-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.reference-logo {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 240px;
    object-fit: contain;
    padding: 0.5rem;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
    margin: 0 auto;
}

.reference-item:hover .reference-logo {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.reference-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    opacity: 0.5;
}

.reference-item img {
    max-width: 90%;
    max-height: 240px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.reference-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0f1a 0%, #0a0a0a 50%, #0f0f1a 100%);
    position: relative;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.partners .container {
    position: relative;
    z-index: 1;
}

.partners-description {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 2rem;
    animation: slideRightPartners 25s linear infinite;
    width: fit-content;
}

@keyframes slideRightPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-item {
    background: rgba(20, 20, 35, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    min-width: 220px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.partner-item:hover::before {
    left: 100%;
}

.partner-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.partner-logo {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 240px;
    object-fit: contain;
    padding: 0.5rem;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
    margin: 0 auto;
}

.partner-item:hover .partner-logo {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.partner-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    opacity: 0.5;
}

.partner-item img {
    max-width: 90%;
    max-height: 240px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d15 50%, #0a0a0a 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 70%, rgba(0, 255, 136, 0.07) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

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

.contact-map {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-map:hover .map-fallback {
    opacity: 1;
    pointer-events: all;
}

.map-link-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.map-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
}

.map-link-btn svg {
    width: 24px;
    height: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
}

.info-icon {
    width: 70px;
    height: 70px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-text h4 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.info-text p {
    color: var(--text-gray);
}

.info-text a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--primary-color);
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--accent-glow);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-gray);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: var(--bg-darker);
    padding: 0 0.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    color: var(--primary-color);
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 0.8),
        0 0 20px rgba(0, 255, 136, 0.6),
        0 0 30px rgba(0, 255, 136, 0.4),
        0 0 40px rgba(0, 255, 136, 0.2);
    animation: neonPulse 2s ease-in-out infinite alternate;
}

.footer-logo .logo-text .accent {
    color: var(--primary-color);
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 1),
        0 0 20px rgba(0, 255, 136, 0.8),
        0 0 30px rgba(0, 255, 136, 0.6),
        0 0 40px rgba(0, 255, 136, 0.4);
}

@keyframes neonPulse {
    from {
        text-shadow: 
            0 0 10px rgba(0, 255, 136, 0.8),
            0 0 20px rgba(0, 255, 136, 0.6),
            0 0 30px rgba(0, 255, 136, 0.4),
            0 0 40px rgba(0, 255, 136, 0.2);
    }
    to {
        text-shadow: 
            0 0 20px rgba(0, 255, 136, 1),
            0 0 30px rgba(0, 255, 136, 0.8),
            0 0 40px rgba(0, 255, 136, 0.6),
            0 0 50px rgba(0, 255, 136, 0.4),
            0 0 60px rgba(0, 255, 136, 0.2);
    }
}

.footer-logo p {
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.footer-links h4,
.footer-social h4,
.footer-contact h4,
.footer-legal h4,
.footer-bank h4 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-legal ul {
    list-style: none;
}

.footer-legal ul li {
    margin-bottom: 0.5rem;
}

.footer-legal ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-legal ul li a:hover {
    color: var(--primary-color);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    line-height: 1.6;
}

.footer-contact-info p svg {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0;
}

.footer-contact-info a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 200px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

.footer-legal-links span {
    color: var(--text-gray);
    opacity: 0.5;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 100px;
    background: var(--bg-dark);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 3rem;
}

.legal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
}

.legal-updated {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: var(--text-gray);
    line-height: 1.8;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.legal-section strong {
    color: var(--text-light);
}

.legal-back {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--bg-dark);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border-top: 2px solid var(--primary-color);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

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

.cookie-content p {
    color: var(--text-light);
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content p a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* IBAN Copy Button */
.copy-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.copy-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.copy-success {
    animation: fadeInOut 2s ease;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Field Error */
.field-error {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 4px;
    display: block;
}

/* Live Support Widget */
.live-support-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9999;
}

.support-toggle {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.support-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.support-toggle svg {
    width: 32px;
    height: 32px;
    color: white;
}

.support-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: var(--bg-dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }
}

.support-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: rgba(20, 20, 30, 0.98);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: none;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.support-panel.active {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.support-header {
    background: rgba(0, 255, 136, 0.1);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.support-header h4 {
    color: var(--text-light);
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    font-size: 1.1rem;
}

.support-close {
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.support-close:hover {
    color: var(--primary-color);
}

.support-close svg {
    width: 20px;
    height: 20px;
}

.support-content {
    padding: 1.5rem;
}

.support-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-option:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.support-option svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.support-option span {
    font-size: 0.95rem;
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: #ff4444;
}

.form-group input:valid:not(:placeholder-shown) {
    border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .whatsapp-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        animation: whatsappGradientShift 4s ease infinite, whatsappPulseGlow 2.5s ease-in-out infinite;
    }

    .whatsapp-btn:hover {
        animation: whatsappGradientShift 2s ease infinite, whatsappPulseGlow 1.2s ease-in-out infinite;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-btn svg {
        width: 18px;
        height: 18px;
    }

    .price-calculator-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        animation: gradientShift 4s ease infinite, pulseGlow 2.5s ease-in-out infinite;
    }

    .price-calculator-btn:hover {
        animation: gradientShift 2s ease infinite, pulseGlow 1.2s ease-in-out infinite;
    }

    .price-calculator-text {
        display: none;
    }

    .price-calculator-btn svg {
        width: 18px;
        height: 18px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-social {
        margin-top: 2.5rem;
    }

    .hero-social-icon {
        width: 48px;
        height: 48px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 300px;
        order: -1;
    }

    .live-support-widget {
        bottom: 80px;
        right: 20px;
    }

    .support-toggle {
        width: 55px;
        height: 55px;
    }

    .support-panel {
        width: calc(100vw - 40px);
        max-width: 320px;
        right: -10px;
    }

    .vfx-text {
        font-size: 3rem;
        letter-spacing: 6px;
    }

    .medya-text {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .references-slider,
    .partners-slider {
        mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    }

    .references-track,
    .partners-track {
        gap: 1.5rem;
    }

    .reference-item,
    .partner-item {
        min-width: 150px;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-title {
        font-size: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact-info p {
        justify-content: center;
    }


    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-content p {
        min-width: auto;
        text-align: left;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .category-title {
        font-size: 1.4rem;
    }

    .category-icon {
        width: 25px;
        height: 25px;
    }

    .service-category {
        margin-bottom: 3rem;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }


    .hero-social {
        margin-top: 2rem;
    }

    .hero-social-title {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .hero-social-icons {
        gap: 1rem;
    }

    .hero-social-icon {
        width: 45px;
        height: 45px;
    }

    .hero-social-icon svg {
        width: 20px;
        height: 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-primary {
        animation: gradientShift 4s ease infinite, pulseGlow 2.5s ease-in-out infinite;
    }

    .btn-primary:hover {
        animation: gradientShift 2s ease infinite, pulseGlow 1.2s ease-in-out infinite;
    }

    .vfx-text {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .medya-text {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .legal-content {
        padding: 2rem;
    }

    .legal-title {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }
}

