/* --- Genel Ayarlar ve Değişkenler --- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Titillium+Web:wght@300;400;600&display=swap');

:root {
    --bg-dark-deep: #020308;
    --bg-dark-medium: #080c18;
    --bg-navbar: rgba(5, 8, 20, 0.8);
    --primary-glow: #00f0ff;
    --secondary-glow: #c36eff;
    --text-light: #e0e5f0;
    --text-dark: #a0a5b0;
    --text-accent: var(--primary-glow);
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Titillium Web', sans-serif;
    --navbar-height: 70px;
    --transition-speed-fast: 0.3s;
    --transition-speed-med: 0.5s;
    --transition-speed-slow: 0.8s;
    --glow-intensity-low: rgba(0, 240, 255, 0.3);
    --glow-intensity-med: rgba(0, 240, 255, 0.5);
    --glow-intensity-high: rgba(0, 240, 255, 0.8);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-dark-deep);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Ana Header ve Navbar --- */
.main-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000; /* Header'ın z-index'i */
    transition: transform var(--transition-speed-med) cubic-bezier(0.65, 0, 0.35, 1), background-color 0.4s ease;
}

.main-header.navbar--hidden {
    transform: translateY(-110%);
}

.navbar {
    height: var(--navbar-height);
    background: var(--bg-navbar);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    transition: background-color 0.4s ease;
}

.main-header.scrolled .navbar,
.main-header.mobile-menu-active .navbar {
    background: rgba(5, 8, 20, 0.95);
}

.navbar-border-glow {
    position: absolute; bottom: -1px; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), var(--secondary-glow), transparent);
    filter: blur(3px); opacity: 0.7; animation: borderGlowAnim 8s linear infinite; background-size: 200% 100%;
}
@keyframes borderGlowAnim { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.navbar-scanline {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(100, 200, 255, 0.02) 50%, transparent 50%);
    background-size: 100% 3px; opacity: 0.4; pointer-events: none;
    animation: scanlineAnim 25s linear infinite;
}
@keyframes scanlineAnim { from { background-position: 0 0; } to { background-position: 0 -30px; } }

.navbar-container {
    display: flex; justify-content: space-between; align-items: center;
    height: 100%; width: 100%; max-width: 1500px; margin: 0 auto;
    padding: 0 30px; position: relative; z-index: 2;
}

/* --- Logo --- */
.navbar-logo {
    font-family: var(--font-primary); font-weight: 700; font-size: 1.6rem;
    cursor: pointer; position: relative; display: flex; align-items: baseline;
    transition: transform var(--transition-speed-fast) ease; white-space: nowrap;
}
.navbar-logo:hover { transform: scale(1.05); }
.logo-text-main { color: var(--primary-glow); margin-right: 5px; }
.logo-text-sub { color: var(--text-light); font-weight: 400; font-size: 1.5rem; opacity: 0.9; }
.glitch-hover { position: relative; }
.glitch-hover span[aria-hidden="true"] { position: absolute; top: 0; left: 0; pointer-events: none; opacity: 0; }
.glitch-hover:hover span[aria-hidden="true"] { opacity: 1; }
.glitch-hover:hover .logo-text-main[aria-hidden="true"] { color: var(--secondary-glow); animation: glitch1 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite; }
.glitch-hover:hover .logo-text-sub[aria-hidden="true"] { color: var(--primary-glow); animation: glitch2 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite; }
@keyframes glitch1 { 0%{transform:translate(0)}20%{transform:translate(-2px, 1px)}40%{transform:translate(-1px, -1px)}60%{transform:translate(2px, 1px)}80%{transform:translate(1px, -1px)}100%{transform:translate(0)} }
@keyframes glitch2 { 0%{transform:translate(0)}20%{transform:translate(1px, -1px)}40%{transform:translate(-1px, 1px)}60%{transform:translate(1px, 1px)}80%{transform:translate(-1px, -1px)}100%{transform:translate(0)} }

/* --- Navigasyon Menüsü (Masaüstü) --- */
.nav-menu { display: flex; align-items: center; }
.nav-item { margin-left: 1.2rem; position: relative; }
.nav-link { color: var(--text-dark); font-family: var(--font-secondary); font-weight: 600; font-size: 0.9rem; padding: 10px 15px; position: relative; display: inline-block; overflow: hidden; transition: color var(--transition-speed-fast) ease; letter-spacing: 0.8px; text-transform: uppercase; }
.nav-link span { position: relative; display: inline-block; transition: transform var(--transition-speed-fast) cubic-bezier(0.7, 0, 0.3, 1); }
.nav-link:hover span { transform: translateY(-2px); }
.nav-link::before, .nav-link::after { content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: var(--primary-glow); transform: scaleX(0); transition: transform var(--transition-speed-med) cubic-bezier(0.7, 0, 0.3, 1); }
.nav-link::before { top: 0; transform-origin: left; }
.nav-link::after { bottom: 0; transform-origin: right; }
.nav-link:hover { color: var(--text-light); }
.nav-link:hover::before, .nav-link:hover::after { transform: scaleX(1); box-shadow: 0 0 8px var(--primary-glow), 0 0 15px var(--primary-glow); }
.nav-link.active { color: #ffffff; text-shadow: 0 0 8px var(--primary-glow); font-weight: 700; }
.nav-link.active::before, .nav-link.active::after { transform: scaleX(1); background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow)); box-shadow: 0 0 10px var(--primary-glow), 0 0 4px var(--secondary-glow); }

/* --- Mobil Menü İkonu (Masaüstünde Gizli) --- */
.menu-icon {
    display: none !important; /* <<< MASAÜSTÜNDE GİZLİ (!important ile) */
    width: 28px; height: 20px; position: relative; cursor: pointer;
    /* z-index media query içinde ayarlanacak */
}
.menu-icon__line { background-color: var(--primary-glow); height: 3px; width: 100%; position: absolute; left: 0; transition: all var(--transition-speed-med) ease-in-out; border-radius: 2px; box-shadow: 0 0 4px var(--primary-glow); }
.menu-icon__line-1 { top: 0; }
.menu-icon__line-2 { top: 50%; transform: translateY(-50%); }
.menu-icon__line-3 { bottom: 0; }

/* --- İçerik Bölümleri Genel Stilleri --- */
.main-content { padding-top: var(--navbar-height); }
.content-section { padding: 100px 0; position: relative; overflow: hidden; }
.dark-section { background-color: var(--bg-dark-medium); }
.container { width: 90%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }

/* --- Bölüm Başlıkları --- */
.section-title { text-align: center; margin-bottom: 60px; position: relative; }
.section-title h2 { font-family: var(--font-primary); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 15px; color: var(--text-light); letter-spacing: 1.5px; text-transform: uppercase; position: relative; display: inline-block; text-shadow: 0 0 12px var(--glow-intensity-low); }
.section-title h2 .highlight { color: var(--primary-glow); text-shadow: 0 0 15px var(--primary-glow); }
.section-title h2::after { content: ''; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); width: 70px; height: 3px; background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow)); border-radius: 2px; box-shadow: 0 0 15px var(--primary-glow); filter: blur(0.5px); }
.section-title p { font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--text-dark); max-width: 650px; margin: 10px auto 0 auto; line-height: 1.5; }

/* --- Genel Buton Stilleri --- */
.btn { padding: 12px 25px; border: none; border-radius: 5px; font-family: var(--font-secondary); font-weight: 600; font-size: 0.95rem; cursor: pointer; text-transform: uppercase; letter-spacing: 0.8px; position: relative; overflow: hidden; transition: all var(--transition-speed-fast) ease; display: inline-block; }
.btn-primary { background: linear-gradient(45deg, var(--primary-glow), var(--secondary-glow)); color: #fff; box-shadow: 0 4px 12px rgba(0, 229, 255, 0.25); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 7px 20px rgba(0, 229, 255, 0.4); }
.futuristic-btn { background: transparent; border: 2px solid var(--primary-glow); color: var(--primary-glow); padding: 12px 30px; font-size: 0.95rem; font-weight: 700; position: relative; overflow: hidden; transition: color 0.4s ease-in-out; z-index: 1; }
.futuristic-btn span { position: relative; z-index: 2; }
.futuristic-btn i { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: var(--primary-glow); z-index: 1; transform: translateX(-101%); transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1); }
.futuristic-btn:hover { color: var(--bg-dark-deep); }
.futuristic-btn:hover i { transform: translateX(0); }
.outline-btn { border: 2px solid var(--text-dark); color: var(--text-dark); transition: all 0.4s ease; }
.outline-btn:hover { border-color: var(--primary-glow); color: var(--primary-glow); box-shadow: 0 0 12px var(--glow-intensity-low); transform: translateY(-3px); }

/* --- Scroll Down Indicator --- */
.scroll-down-indicator { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); color: var(--text-light); font-size: 1.4rem; z-index: 3; opacity: 0.6; animation: bounce 2s infinite ease-in-out; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-12px); } 60% { transform: translateX(-50%) translateY(-4px); } }

/* --- Arka Plan Elementleri --- */
.section-background-elements { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; pointer-events: none; z-index: 0; }
.section-background-elements::before, .section-background-elements::after { content: ''; position: absolute; background: var(--primary-glow); border-radius: 50%; opacity: 0.04; filter: blur(60px); animation: bgPulse 15s infinite alternate ease-in-out; }
.section-background-elements::before { width: 350px; height: 350px; top: 15%; left: 8%; animation-delay: 0s; }
.section-background-elements::after { width: 250px; height: 250px; bottom: 20%; right: 12%; background: var(--secondary-glow); animation-delay: 3s; }
@keyframes bgPulse { from { transform: scale(0.85); opacity: 0.03; } to { transform: scale(1.15); opacity: 0.06; } }
.section-background-elements.type-why-us::before { top: 5%; left: 60%; background: var(--secondary-glow); width: 300px; height: 300px; }
.section-background-elements.type-why-us::after { bottom: 10%; right: auto; left: 5%; width: 400px; height: 400px; background: var(--primary-glow); }
.section-background-elements.type-contact-v2::before { width: 40vw; height: 40vw; top: 10%; left: -10%; animation-delay: 0s; background: radial-gradient(circle, rgba(0, 240, 255, 0.06) 0%, transparent 70%); }
.section-background-elements.type-contact-v2::after { width: 50vw; height: 50vw; bottom: -10%; right: -15%; animation-delay: 3s; background: radial-gradient(circle, rgba(195, 110, 255, 0.06) 0%, transparent 70%); }

/* === İÇERİK BÖLÜMLERİNİN STİLLERİ === */
/* (Hero, WhyUs, Services, Process, Tech, Partners, Growth, Contact...) */
/* Önceki yanıtlardaki tüm içerik stilleri buraya gelecek... */
/* ... (Kısalık için buraya tekrar eklenmedi, ama TAM CSS dosyasında olmalı) ... */
/* --- Hero Section v2 --- */
.hero-section-v2 { min-height: calc(100vh - var(--navbar-height)); padding-top: 80px; padding-bottom: 80px; display: flex; align-items: center; position: relative; color: #fff; overflow: hidden; background: radial-gradient(ellipse at bottom, var(--bg-dark-medium) 0%, var(--bg-dark-deep) 80%); }
.hero-background-animation { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; }
.particle { position: absolute; width: 3px; height: 3px; background: var(--primary-glow); border-radius: 50%; box-shadow: 0 0 8px var(--primary-glow), 0 0 15px var(--primary-glow); opacity: 0; animation: floatParticle 10s infinite ease-in-out; }
@keyframes floatParticle { 0% { transform: translate(0, 0); opacity: 0; } 20% { opacity: 0.7; } 80% { opacity: 0.4; } 100% { transform: translate(calc(var(--x-drift, 0) * 1px), -105vh) scale(0.5); opacity: 0; } }
.particle:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; animation-duration: 12s; } .particle:nth-child(2) { top: 50%; left: 5%; animation-delay: 1s; animation-duration: 8s; width: 2px; height: 2px;} .particle:nth-child(3) { top: 80%; left: 25%; animation-delay: 3s; animation-duration: 15s; background: var(--secondary-glow); box-shadow: 0 0 10px var(--secondary-glow);} .particle:nth-child(4) { top: 20%; left: 40%; animation-delay: 2s; animation-duration: 10s; } .particle:nth-child(5) { top: 65%; left: 50%; animation-delay: 4s; animation-duration: 9s; width: 3px; height: 3px;} .particle:nth-child(6) { top: 30%; left: 70%; animation-delay: 1.5s; animation-duration: 13s; background: var(--secondary-glow); box-shadow: 0 0 10px var(--secondary-glow);} .particle:nth-child(7) { top: 90%; left: 80%; animation-delay: 5s; animation-duration: 7s; width: 2px; height: 2px;} .particle:nth-child(8) { top: 5%; left: 90%; animation-delay: 0.5s; animation-duration: 11s; } .particle:nth-child(9) { top: 40%; left: 85%; animation-delay: 2.5s; animation-duration: 14s; background: var(--secondary-glow); box-shadow: 0 0 10px var(--secondary-glow);} .particle:nth-child(10) { top: 75%; left: 60%; animation-delay: 6s; animation-duration: 8s; } .particle:nth-child(11) { top: 15%; left: 55%; animation-delay: 7s; animation-duration: 12s; width: 3px; height: 3px; background: var(--secondary-glow); box-shadow: 0 0 10px var(--secondary-glow);} .particle:nth-child(12) { top: 55%; left: 30%; animation-delay: 8s; animation-duration: 10s; } .particle:nth-child(13) { top: 85%; left: 10%; animation-delay: 9s; animation-duration: 13s; width: 2px; height: 2px;} .particle:nth-child(14) { top: 35%; left: 20%; animation-delay: 10s; animation-duration: 9s; } .particle:nth-child(15) { top: 60%; left: 75%; animation-delay: 11s; animation-duration: 11s; background: var(--secondary-glow); box-shadow: 0 0 10px var(--secondary-glow);} .particle:nth-child(16) { top: 25%; left: 95%; animation-delay: 12s; animation-duration: 8s; width: 3px; height: 3px;} .particle:nth-child(17) { top: 70%; left: 40%; animation-delay: 13s; animation-duration: 15s; } .particle:nth-child(18) { top: 10%; left: 35%; animation-delay: 14s; animation-duration: 10s; width: 2px; height: 2px; background: var(--secondary-glow); box-shadow: 0 0 10px var(--secondary-glow);} .particle:nth-child(19) { top: 95%; left: 50%; animation-delay: 15s; animation-duration: 12s; } .particle:nth-child(20) { top: 45%; left: 65%; animation-delay: 16s; animation-duration: 9s; }
.hero-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.hero-content-v2 { flex-basis: 60%; position: relative; z-index: 2; padding-right: 30px; }
.hero-title-v2 { font-family: var(--font-primary); font-size: clamp(2.5rem, 6vw, 4.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 25px; color: #fff; text-shadow: 0 0 10px var(--glow-intensity-med), 0 0 25px var(--glow-intensity-low); }
.hero-subtitle-v2 { font-size: clamp(1rem, 3vw, 1.4rem); color: var(--text-light); opacity: 0.85; margin-bottom: 35px; max-width: 600px; line-height: 1.5; }
.hero-stats { display: flex; gap: 30px; margin-bottom: 40px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-primary); font-size: clamp(2rem, 5vw, 2.5rem); font-weight: 700; color: var(--primary-glow); display: block; }
.stat-number.award-stat { color: var(--secondary-glow); }
.stat-label { font-size: clamp(0.8rem, 2vw, 0.9rem); color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.8px; }
.hero-cta-v2 { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-abstract-visual { flex-basis: 35%; position: relative; height: 350px; display: flex; align-items: center; justify-content: center; min-width: 250px; }
.hero-abstract-visual .shape { position: absolute; border-radius: 50%; background: linear-gradient(45deg, var(--primary-glow), var(--secondary-glow)); opacity: 0.1; filter: blur(40px); animation: shapePulse 8s infinite alternate ease-in-out; }
.shape-1 { width: 250px; height: 250px; animation-delay: 0s; } .shape-2 { width: 180px; height: 180px; opacity: 0.15; animation-delay: 2s; animation-direction: reverse;} .shape-3 { width: 350px; height: 350px; opacity: 0.08; animation-delay: 4s; }
@keyframes shapePulse { from { transform: scale(0.9); filter: blur(50px); opacity: 0.08;} to { transform: scale(1.1); filter: blur(30px); opacity: 0.12;} }

/* --- Neden Biz Section --- */
.why-us-section { position: relative; }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.why-us-item { text-align: center; padding: 30px 25px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(0, 240, 255, 0.1); border-radius: 8px; position: relative; transition: background 0.4s ease, transform 0.4s ease, border-color 0.4s ease; }
.why-us-item:hover { background: rgba(0, 240, 255, 0.06); transform: translateY(-8px); border-color: rgba(0, 240, 255, 0.3); }
.why-us-icon { font-size: 2.5rem; color: var(--primary-glow); margin-bottom: 20px; display: inline-block; text-shadow: 0 0 12px var(--glow-intensity-med); transition: transform 0.4s ease; }
.why-us-item:hover .why-us-icon { transform: scale(1.15) rotate(-5deg); }
.why-us-title { font-family: var(--font-primary); font-size: 1.3rem; color: var(--text-light); margin-bottom: 12px; }
.why-us-item p { color: var(--text-dark); font-size: 0.9rem; line-height: 1.6; }

/* --- Hizmetler Section v2 (Tabs) --- */
.services-tabs { display: flex; gap: 40px; }
.service-tab-triggers { flex: 0 0 230px; display: flex; flex-direction: column; gap: 8px; }
.tab-trigger { display: flex; align-items: center; background: transparent; border: 1px solid rgba(0, 240, 255, 0.2); color: var(--text-dark); padding: 12px 18px; border-radius: 5px; cursor: pointer; text-align: left; font-family: var(--font-secondary); font-size: 0.95rem; font-weight: 600; transition: all 0.3s ease; position: relative; overflow: hidden; }
.tab-trigger::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--primary-glow); transition: left 0.4s ease; z-index: 0; opacity: 0.1; }
.tab-trigger:hover::before, .tab-trigger.active::before { left: 0; opacity: 0.15; }
.tab-trigger i { margin-right: 12px; font-size: 1.2rem; width: 20px; transition: transform 0.3s ease, color 0.3s ease; position: relative; z-index: 1; text-align: center; }
.tab-trigger span { position: relative; z-index: 1; }
.tab-trigger:hover { color: var(--primary-glow); border-color: var(--primary-glow); }
.tab-trigger:hover i { transform: scale(1.15); }
.tab-trigger.active { background: rgba(0, 240, 255, 0.1); color: #fff; border-color: var(--primary-glow); box-shadow: 0 0 12px var(--glow-intensity-low); }
.tab-trigger.active i { color: var(--primary-glow); transform: scale(1.1); }
.service-tab-content { flex: 1; }
.tab-pane { display: none; background: rgba(5, 8, 20, 0.6); padding: 35px; border-radius: 8px; border: 1px solid rgba(0, 240, 255, 0.15); animation: fadeInContent 0.6s ease forwards; min-height: 400px; }
.tab-pane.active { display: block; }
@keyframes fadeInContent { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
.tab-pane h3 { font-family: var(--font-primary); font-size: 1.6rem; color: var(--primary-glow); margin-bottom: 18px; }
.tab-pane p { color: var(--text-dark); line-height: 1.6; margin-bottom: 20px; font-size: 0.95rem; }
.tab-pane ul { padding-left: 5px; margin-bottom: 25px; }
.tab-pane li { margin-bottom: 10px; color: var(--text-light); display: flex; align-items: flex-start; font-size: 0.9rem; }
.tab-pane li i { color: var(--primary-glow); margin-right: 10px; margin-top: 3px; font-size: 0.8rem; }
.tab-pane-visual { text-align: right; opacity: 0.1; font-size: 1.3rem; color: var(--primary-glow); margin-top: 20px; }
.tab-pane-visual i { margin-left: 12px; }

/* --- Süreç Section --- */
.process-section { background: linear-gradient(180deg, var(--bg-dark-deep) 0%, var(--bg-dark-medium) 100%); }
.process-timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 40px 0; }
.timeline-line { position: absolute; left: 50%; top: 0; width: 3px; height: 100%; background: linear-gradient(var(--primary-glow), var(--secondary-glow)); transform: translateX(-50%); box-shadow: 0 0 12px var(--primary-glow); z-index: 0; border-radius: 2px; opacity: 0.7; }
.timeline-item { padding: 15px 40px; position: relative; width: 50%; margin-bottom: 30px; z-index: 1; }
.timeline-item:nth-child(odd) { left: 50%; text-align: left; }
.timeline-item:nth-child(even) { left: 0; text-align: right; }
.timeline-icon { position: absolute; top: 25px; width: 45px; height: 45px; background: var(--bg-dark-medium); border: 2px solid var(--primary-glow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--primary-glow); z-index: 2; box-shadow: 0 0 12px var(--primary-glow), inset 0 0 8px rgba(0, 240, 255, 0.2); transition: transform 0.3s ease; }
.timeline-item:hover .timeline-icon { transform: scale(1.12); }
.timeline-item:nth-child(odd) .timeline-icon { left: -22.5px; transform: translateX(-50%); }
.timeline-item:nth-child(even) .timeline-icon { right: -22.5px; transform: translateX(50%); }
.timeline-content { padding: 25px; background: rgba(10, 15, 30, 0.85); border-radius: 8px; border: 1px solid rgba(0, 240, 255, 0.1); position: relative; transition: box-shadow 0.4s ease, border-color 0.4s ease; }
.timeline-item:hover .timeline-content { box-shadow: 0 0 20px rgba(0, 240, 255, 0.1); border-color: rgba(0, 240, 255, 0.35); }
.timeline-content h3 { font-family: var(--font-primary); font-size: 1.3rem; margin-bottom: 8px; color: var(--primary-glow); }
.timeline-content p { color: var(--text-dark); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.timeline-content::before { content: ''; position: absolute; top: 30px; width: 0; height: 0; border-style: solid; }
.timeline-item:nth-child(odd) .timeline-content::before { left: -14px; border-width: 8px 14px 8px 0; border-color: transparent rgba(0, 240, 255, 0.15) transparent transparent; }
.timeline-item:nth-child(even) .timeline-content::before { right: -14px; border-width: 8px 0 8px 14px; border-color: transparent transparent transparent rgba(0, 240, 255, 0.15); }

/* --- Teknolojiler Section --- */
.tech-section { position: relative; }
.tech-background-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(to right, rgba(0, 240, 255, 0.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 240, 255, 0.06) 1px, transparent 1px); background-size: 40px 40px; opacity: 0.4; animation: techGridMove 25s linear infinite; z-index: 0; }
@keyframes techGridMove { 0% { background-position: 0 0; } 100% { background-position: 80px 80px; } }
.tech-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 20px; justify-content: center; max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.tech-item { background: rgba(5, 8, 20, 0.75); border: 1px solid rgba(0, 240, 255, 0.1); border-radius: 8px; padding: 20px 10px; text-align: center; transition: all 0.3s ease; }
.tech-item:hover { transform: scale(1.12) rotate(2deg); background: rgba(0, 240, 255, 0.1); border-color: var(--primary-glow); box-shadow: 0 0 15px var(--glow-intensity-low); }
.tech-item i { font-size: 3rem; color: var(--primary-glow); display: block; margin-bottom: 12px; transition: color 0.3s ease; }
.tech-item:hover i { color: #fff; text-shadow: 0 0 8px var(--primary-glow); }
.tech-item span { font-size: 0.8rem; color: var(--text-dark); font-weight: 600; transition: color 0.3s ease; }
.tech-item:hover span { color: #fff; }

/* --- Partnerler Section v2 --- */
.partners-logos-v2 { display: flex; justify-content: center; align-items: stretch; gap: 40px; flex-wrap: wrap; margin-bottom: 50px; }
.partner-logo-item-v2 { flex-basis: 280px; background: linear-gradient(145deg, rgba(10, 15, 30, 0.7), rgba(5, 8, 20, 0.9)); border: 1px solid rgba(0, 240, 255, 0.15); border-radius: 10px; padding: 35px 25px; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; }
.partner-logo-item-v2:hover { transform: translateY(-10px); box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45); border-color: rgba(0, 240, 255, 0.5); }
.partner-logo-item-v2::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, var(--glow-intensity-med) 0%, transparent 45%); transform: rotate(45deg); opacity: 0; transition: opacity 0.6s ease, transform 0.8s ease; z-index: 0; }
.partner-logo-item-v2:hover::before { opacity: 0.8; transform: rotate(225deg); }
.logo-container { width: 70px; height: 70px; margin: 0 auto 20px auto; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.logo-container i { font-size: 3rem; }
.meta-logo { background: rgba(0, 240, 255, 0.1); border: 2px solid var(--primary-glow); color: var(--primary-glow); }
.google-logo { background: rgba(195, 110, 255, 0.1); border: 2px solid var(--secondary-glow); color: var(--secondary-glow); }
.partner-name { display: block; font-family: var(--font-primary); font-size: 1.3rem; color: var(--text-light); margin-bottom: 8px; position: relative; z-index: 1; }
.partner-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(0, 0, 0, 0.35); color: var(--text-dark); font-size: 0.75rem; padding: 4px 10px; border-radius: 20px; position: relative; z-index: 1; }
.partner-badge i { color: #4caf50; font-size: 0.8rem; }
/* Başarı Alanı v2 */
.achievement-highlight-v2 { margin-top: 60px; display: flex; align-items: center; background: linear-gradient(90deg, rgba(0, 240, 255, 0.05), rgba(195, 110, 255, 0.05)); padding: 25px 35px; border-radius: 10px; border: 1px solid rgba(195, 110, 255, 0.2); }
.award-icon { flex-shrink: 0; margin-right: 25px; font-size: 3rem; color: var(--secondary-glow); text-shadow: 0 0 18px var(--secondary-glow); animation: awardPulse 2s infinite ease-in-out; }
@keyframes awardPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.award-text h4 { font-family: var(--font-primary); font-size: 1.3rem; color: var(--text-light); margin: 0 0 4px 0; }
.award-text p { margin: 0; color: var(--text-dark); font-size: 0.95rem; }
.award-rank { font-weight: 700; color: var(--secondary-glow); font-size: 1.1em; }

/* --- SEO & Dijital Büyüme Bölümü --- */
.growth-cta-section { background: linear-gradient(160deg, var(--bg-dark-medium) 10%, var(--bg-dark-deep) 90%); position: relative; }
.growth-bg-elements { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; pointer-events: none; }
.growth-bg-elements::before { content: ''; position: absolute; top: 0; left: 0; width: 200%; height: 200%; background-image: linear-gradient(135deg, rgba(0, 240, 255, 0.06) 1px, transparent 1px); background-size: 12px 12px; opacity: 0.4; animation: moveLines 45s linear infinite; }
@keyframes moveLines { 0% { transform: translate(0, 0); } 100% { transform: translate(-50%, -50%); } }
.growth-content-wrapper { display: flex; gap: 40px; align-items: stretch; position: relative; z-index: 1; }
.growth-column { flex: 1; background: rgba(10, 15, 30, 0.6); padding: 35px; border-radius: 10px; border: 1px solid rgba(0, 240, 255, 0.1); display: flex; flex-direction: column; }
.growth-icon { font-size: 2.8rem; color: var(--primary-glow); margin-bottom: 20px; display: inline-block; text-shadow: 0 0 12px var(--glow-intensity-low); }
.seo-focus .growth-icon { color: var(--primary-glow); } .cta-focus .growth-icon { color: var(--secondary-glow); }
.growth-column h3 { font-family: var(--font-primary); font-size: 1.6rem; color: var(--text-light); margin-bottom: 18px; }
.growth-column h3 .highlight { color: var(--primary-glow); } .cta-focus h3 .highlight { color: var(--secondary-glow); }
.growth-column p { color: var(--text-dark); line-height: 1.6; margin-bottom: 20px; font-size: 0.95rem; }
.growth-column ul { padding-left: 0; list-style: none; margin-bottom: 20px; }
.growth-column li { margin-bottom: 10px; color: var(--text-light); opacity: 0.8; display: flex; align-items: center; font-size: 0.9rem; }
.growth-column li i { color: var(--primary-glow); margin-right: 10px; font-size: 0.85rem; }
.cta-box { margin-top: auto; padding: 25px; background: linear-gradient(45deg, rgba(0, 240, 255, 0.05), rgba(195, 110, 255, 0.05)); border: 1px solid rgba(195, 110, 255, 0.15); border-radius: 8px; text-align: center; }
.cta-box h4 { font-family: var(--font-primary); font-size: 1.2rem; color: var(--text-light); margin-bottom: 8px; }
.cta-box p { color: var(--text-dark); margin-bottom: 20px; font-size: 0.9rem; }
.cta-button { width: auto; padding: 12px 28px; }


/* --- İletişim Sayfası Özel Stilleri --- */
.page-hero-section { padding: 100px 0 80px 0; min-height: 40vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; color: #fff; overflow: hidden; background: linear-gradient(135deg, var(--bg-dark-medium) 0%, var(--bg-dark-deep) 100%); }
.page-hero-background-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(2, 3, 8, 0.5); z-index: 1; }
.page-hero-background-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; pointer-events: none; }
.page-hero-background-shapes .shape-1, .page-hero-background-shapes .shape-2 { content: ''; position: absolute; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; background: var(--primary-glow); opacity: 0.06; filter: blur(70px); animation: blobPulse 20s infinite alternate ease-in-out; }
.page-hero-background-shapes .shape-1 { width: 40vw; height: 40vw; top: -10%; left: -5%; animation-delay: 0s; animation-duration: 18s; animation-name: blobPulse, rotateEffect; animation-timing-function: ease-in-out, linear; }
.page-hero-background-shapes .shape-2 { width: 30vw; height: 30vw; bottom: -15%; right: -10%; background: var(--secondary-glow); animation-delay: 5s; animation-duration: 18s; animation-name: blobPulse, rotateEffect; animation-timing-function: ease-in-out, linear; animation-direction: alternate-reverse, reverse; }
@keyframes blobPulse { from { transform: scale(0.9) rotate(0deg); opacity: 0.04; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;} to { transform: scale(1.1) rotate(45deg); opacity: 0.08; border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;} }
@keyframes rotateEffect { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.page-hero-section .container { position: relative; z-index: 2; }
.page-hero-title { font-family: var(--font-primary); font-size: clamp(2.8rem, 7vw, 4.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 15px; color: #fff; text-shadow: 0 0 15px var(--glow-intensity-low); }
.page-hero-subtitle { font-size: clamp(1.1rem, 3vw, 1.4rem); color: var(--text-light); opacity: 0.85; max-width: 600px; margin: 0 auto; }

.contact-details-form-section { background-color: var(--bg-dark-deep); padding-top: 80px; }
.contact-main-wrapper { display: flex; gap: 50px; align-items: flex-start; }
.contact-details-column { flex: 1; min-width: 300px; }
.contact-additional-info-column { flex: 1.3; min-width: 300px; display: flex; flex-direction: column; gap: 30px; position: relative; } /* Form yerine gelen sütun */
.contact-info-block.enhanced-block { background: linear-gradient(145deg, rgba(10, 15, 30, 0.6), rgba(5, 8, 20, 0.7)); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); border-top: 2px solid var(--primary-glow); border-radius: 12px; padding: 40px; margin-bottom: 30px; transition: all 0.4s ease; border: 1px solid rgba(0, 240, 255, 0.1); }
.contact-info-block.enhanced-block:hover { box-shadow: 0 12px 35px rgba(0, 240, 255, 0.1); transform: translateY(-5px); }
.contact-block-title { border-bottom: 1px solid rgba(0, 240, 255, 0.3); font-size: 1.6rem; padding-bottom: 12px; margin-bottom: 30px; display: inline-block; color: var(--primary-glow); font-family: var(--font-primary); }
.contact-detail-item.enhanced-item { padding: 15px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.08); transition: background-color 0.3s ease; display: flex; align-items: center; gap: 18px; }
.contact-detail-item.enhanced-item:last-child { border-bottom: none; }
.contact-detail-item.enhanced-item:hover { background-color: rgba(0, 240, 255, 0.04); border-radius: 5px; }
.detail-icon-wrapper { flex-shrink: 0; width: 45px; height: 45px; background-color: rgba(0, 240, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background-color 0.3s ease, transform 0.3s ease; }
.detail-icon-wrapper i { font-size: 1.2rem; color: var(--primary-glow); margin: 0; transition: color 0.3s ease; }
.contact-detail-item.enhanced-item:hover .detail-icon-wrapper { background-color: var(--primary-glow); transform: scale(1.1) rotate(-5deg); }
.contact-detail-item.enhanced-item:hover .detail-icon-wrapper i { color: var(--bg-dark-deep); }
.detail-text-wrapper { flex-grow: 1; }
.contact-detail-item.enhanced-item h4 { font-family: var(--font-secondary); font-weight: 600; font-size: 1.05rem; color: var(--text-light); margin: 0 0 5px 0; }
.contact-detail-item.enhanced-item p { font-size: 0.9rem; line-height: 1.5; color: var(--text-dark); margin: 0;}
.contact-detail-item.enhanced-item a { font-size: 0.9rem; color: var(--text-dark); transition: color var(--transition-speed-fast) ease; }
.contact-detail-item.enhanced-item a:hover { color: var(--primary-glow); }
.map-placeholder { margin-top: 30px; position: relative; }
.map-title { font-family: var(--font-primary); font-size: 1.4rem; color: var(--secondary-glow); margin-bottom: 18px; padding-bottom: 8px; border-bottom: 1px dashed rgba(195, 110, 255, 0.3); display: inline-block; }
.map-placeholder div, .map-placeholder iframe { border-radius: 8px; border: 1px solid rgba(0, 240, 255, 0.1); min-height: 350px; width: 100%; }
.working-hours-block, .next-steps-block { background: rgba(15, 25, 50, 0.6); padding: 35px; border-radius: 10px; border: 1px solid rgba(195, 110, 255, 0.15); box-shadow: 0 5px 20px rgba(0,0,0, 0.2); }
.working-hours-block .contact-block-title, .next-steps-block .contact-block-title { color: var(--secondary-glow); border-bottom-color: rgba(195, 110, 255, 0.3); }
.working-hours-list { list-style: none; padding: 0; margin: 0; }
.working-hours-list li { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.95rem; transition: background-color 0.3s ease; }
.working-hours-list li:last-child { border-bottom: none; }
.working-hours-list li:hover { background-color: rgba(195, 110, 255, 0.05); border-radius: 4px; }
.working-hours-list .day { color: var(--text-light); font-weight: 600; display: flex; align-items: center; }
.working-hours-list .day i { margin-right: 10px; color: var(--secondary-glow); width: 18px; text-align: center; }
.working-hours-list .time { color: var(--text-dark); font-weight: 400;}
.working-hours-list .time.available { color: #81c784; } .working-hours-list .time.unavailable { color: #e57373; }
.working-hours-list .time i { margin-right: 5px; font-size: 0.8em;}
.status-dot { width: 10px; height: 10px; border-radius: 50%; margin-left: 15px; box-shadow: 0 0 8px currentColor; transition: transform 0.3s ease; }
.status-dot.available-dot { background-color: #4caf50; } .status-dot.unavailable-dot { background-color: #f44336; }
.working-hours-list li:hover .status-dot { transform: scale(1.3); }
.working-hours-note { font-size: 0.8rem; color: var(--text-dark); margin-top: 15px; text-align: center; opacity: 0.7; }
.next-steps-content { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 20px; }
.step-icon { flex-shrink: 0; font-size: 1.8rem; color: var(--secondary-glow); margin-top: 5px; width: 30px; text-align: center; }
.next-steps-content h4 { font-family: var(--font-secondary); font-weight: 600; font-size: 1.1rem; color: var(--text-light); margin: 0 0 5px 0; }
.next-steps-content p { font-size: 0.9rem; color: var(--text-dark); line-height: 1.5; margin: 0; }
.next-steps-note { font-size: 0.9rem; color: var(--secondary-glow); text-align: center; margin-top: 20px; font-style: italic; }
.additional-info-deco { position: absolute; bottom: 10px; right: 10px; width: 100px; height: 100px; pointer-events: none; opacity: 0.5; }
.deco-shape { position: absolute; border: 1px solid; border-radius: 8px; animation: decoSpin 25s linear infinite; }
.deco-1 { width: 80px; height: 80px; border-color: rgba(0, 240, 255, 0.1); top: 0; left: 0; animation-direction: normal; }
.deco-2 { width: 50px; height: 50px; border-color: rgba(195, 110, 255, 0.15); bottom: 10px; right: 10px; animation-direction: reverse; animation-duration: 20s; }
@keyframes decoSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* --- Site Footer --- */
.site-footer { background-color: var(--bg-dark-deep); color: var(--text-dark); padding: 70px 0 0 0; position: relative; overflow: hidden; border-top: 1px solid rgba(0, 240, 255, 0.08); }
.footer-bg-elements { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(transparent, rgba(0, 240, 255, 0.02)); pointer-events: none; z-index: 0; }
.footer-bg-elements::after { content: ''; position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%); width: 70%; height: 120px; background: radial-gradient(ellipse at bottom, rgba(195, 110, 255, 0.08) 0%, transparent 70%); filter: blur(50px); opacity: 0.6; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 35px; padding-bottom: 50px; position: relative; z-index: 1; }
.footer-column { position: relative; }
.footer-heading { font-family: var(--font-primary); font-size: 1.2rem; color: var(--text-light); margin-bottom: 20px; position: relative; padding-bottom: 8px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 2px; background: var(--primary-glow); }
.footer-logo { display: inline-block; margin-bottom: 18px; font-size: 1.4rem; }
.footer-logo .logo-text-main { font-size: 1.5rem; } .footer-logo .logo-text-sub { font-size: 1.4rem; }
.footer-description { font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; opacity: 0.75; max-width: 280px; }
.footer-social-icons a { color: var(--text-dark); font-size: 1.3rem; margin-right: 15px; transition: all 0.3s ease; display: inline-block; position: relative; }
.footer-social-icons a:hover { color: var(--primary-glow); transform: translateY(-3px); }
.footer-social-icons a::after { content: attr(data-tooltip); position: absolute; bottom: 140%; left: 50%; transform: translateX(-50%) scale(0.8); background: var(--primary-glow); color: var(--bg-dark-deep); padding: 3px 7px; border-radius: 4px; font-size: 0.7rem; white-space: nowrap; opacity: 0; transition: opacity 0.3s ease, transform 0.3s ease, bottom 0.3s ease; pointer-events: none; }
.footer-social-icons a:hover::after { opacity: 1; transform: translateX(-50%) scale(1); bottom: 160%; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-dark); transition: color 0.3s ease, padding-left 0.3s ease; position: relative; font-size: 0.9rem; }
.footer-links a::before { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--primary-glow); transition: width 0.4s ease; }
.footer-links a:hover { color: var(--primary-glow); padding-left: 6px; }
.footer-links a:hover::before { width: 90%; }
.footer-contact p { display: flex; align-items: center; margin-bottom: 12px; font-size: 0.9rem; }
.footer-contact i { color: var(--primary-glow); margin-right: 10px; width: 16px; text-align: center; }
.footer-contact a { color: var(--text-dark); transition: color 0.3s ease; }
.footer-contact a:hover { color: var(--primary-glow); }
.footer-bottom { text-align: center; padding: 20px 20px; border-top: 1px solid rgba(255, 255, 255, 0.05); margin-top: 30px; font-size: 0.8rem; position: relative; z-index: 1; }

/* Başa Dön Butonu */
.back-to-top { position: fixed; bottom: 25px; right: 25px; width: 40px; height: 40px; background: var(--primary-glow); color: var(--bg-dark-deep); border: none; border-radius: 50%; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px var(--glow-intensity-med); opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.9); transition: all 0.4s ease; z-index: 999; }
.back-to-top.visible { opacity: 0.8; visibility: visible; transform: translateY(0) scale(1); }
.back-to-top:hover { background-color: var(--secondary-glow); box-shadow: 0 6px 18px rgba(195, 110, 255, 0.5); transform: scale(1.1); opacity: 1; }

/* --- Scroll Triggered Animations --- */
[class*="animate-on-scroll"] { opacity: 0; transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), transform 0.8s cubic-bezier(0.65, 0, 0.35, 1); }
.fade-in { opacity: 0; }
.fade-in-up { opacity: 0; transform: translateY(50px); }
.slide-in-left { opacity: 0; transform: translateX(-60px); }
.slide-in-right { opacity: 0; transform: translateX(60px); }
.zoom-in { opacity: 0; transform: scale(0.85); }
.scale-up { opacity: 0; transform: scale(0.8); }
.is-visible { opacity: 1 !important; transform: none !important; }


/* --- WhatsApp Floating Action Button (FAB) Stilleri (SOL ALT KÖŞE - Daha Aşağıda) --- */
.whatsapp-float {
    position: fixed; width: 60px; height: 60px;
    bottom: 25px; /* Alttan boşluk */
    left: 25px; /* Sol kenardan boşluk */
    background-color: #25D366; color: #FFF;
    border-radius: 50%; text-align: center; font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 998; /* Başa dön butonundan bir tık altta */
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: all var(--transition-speed-fast) cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform: scale(1);
}
.whatsapp-float:hover { transform: scale(1.15) rotate(-10deg); background-color: #128C7E; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6); }
.whatsapp-float i { line-height: 1; }
.whatsapp-pulse { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-color: rgba(37, 211, 102, 0.5); border-radius: 50%; z-index: -1; opacity: 0; animation: whatsappPulseAnim 1.8s infinite ease-out; }
@keyframes whatsappPulseAnim { 0% { transform: scale(0.9); opacity: 0.7; } 70% { transform: scale(1.4); opacity: 0; } 100% { transform: scale(0.9); opacity: 0; } }


/* ========================== */
/* --- RESPONSIVE STYLES --- */
/* ========================== */

/* --- Büyük Tabletler ve Küçük Laptoplar (~1200px) --- */
@media screen and (max-width: 1200px) {
    .navbar-container { padding: 0 40px; }
    .nav-item { margin-left: 1rem; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content-v2 { flex-basis: auto; padding-right: 0; margin-bottom: 40px; }
    .hero-abstract-visual { flex-basis: auto; height: 280px; width: 70%; max-width: 400px; }
    .hero-stats { justify-content: center; }
    .hero-cta-v2 { justify-content: center; }
    .container { max-width: 1100px; }
    .content-section { padding: 90px 0; }
}


/* --- Tabletler (~992px) --- */
@media screen and (max-width: 992px) {
    .navbar-container { padding: 0 30px; }

    /* --- MOBIL MENU VE IKON GÖRÜNÜRLÜK/Z-INDEX (Düzeltilmiş) --- */
    .menu-icon {
        display: block !important; /* <<< GÖRÜNÜR YAP (Zorla) */
        z-index: 1051 !important; /* <<< DİĞER HER ŞEYİN ÜSTÜNDE (Zorla) */
        width: 28px; height: 20px; position: relative; cursor: pointer;
        opacity: 1 !important; visibility: visible !important; transform: none !important;
    }
    /* YENİ Hamburger Animasyonu (Aktif Durum) */
    .menu-icon.active .menu-icon__line-1 {
        top: 50% !important;
        transform: translateY(-50%) rotate(45deg) !important;
        background-color: var(--secondary-glow) !important;
        box-shadow: 0 0 5px var(--secondary-glow) !important;
    }
    .menu-icon.active .menu-icon__line-2 {
        opacity: 0 !important;
        transform: translateX(-10px) !important;
    }
    .menu-icon.active .menu-icon__line-3 {
        bottom: 50% !important;
        transform: translateY(50%) rotate(-45deg) !important;
        background-color: var(--secondary-glow) !important;
        box-shadow: 0 0 5px var(--secondary-glow) !important;
    }

    /* Mobil Menü (NavMenu) Stilleri */
    .nav-menu {
        display: flex !important; /* Flex olmalı */
        flex-direction: column !important; justify-content: center !important; align-items: center !important;
        width: 100% !important; height: 100vh !important; position: fixed !important; top: 0 !important;
        left: -100% !important; /* Başlangıç konumu */
        background: rgba(3, 4, 10, 0.98) !important; backdrop-filter: blur(15px) !important; -webkit-backdrop-filter: blur(15px) !important;
        opacity: 0 !important; /* Başlangıçta gizli */
        transition: left var(--transition-speed-med) cubic-bezier(0.65, 0, 0.35, 1), opacity var(--transition-speed-med) ease !important;
        padding-top: var(--navbar-height) !important;
        z-index: 1050 !important; /* <<< MENÜ YÜKSEK Z-INDEX (Zorla) */
        overflow-y: auto !important; /* Kaydırma */
        visibility: hidden !important; /* Başlangıçta tamamen gizli */
    }
    .nav-menu.active {
        left: 0 !important; /* <<< GÖRÜNÜR KONUM (Zorla) */

        opacity: 1 !important; /* <<< GÖRÜNÜR OPACITY (Zorla) */
        visibility: visible !important; /* Görünür yap */
        z-index: 29999999999;
    }

    /* Mobil Menü İçeriği (nav-item) */
     .nav-item {
        /* Mobilde masaüstü nav-item gizlenmeli (eğer display:flex ise) */
        /* Ancak açılan menüdeki item'lar için aşağıdaki kurallar geçerli */
        width: 80%; max-width: 400px; text-align: center;
        margin: 0.8rem 0 !important; /* Dikey boşluk (!important eklendi) */
        opacity: 0 !important; /* Başlangıç opacity */
        transform: translateY(20px) !important; /* Başlangıç transform */
        visibility: hidden !important; /* Başlangıç visibility */
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s !important;
    }

    .nav-menu.active .nav-item {
        opacity: 1 !important; /* Aktifken görünür opacity */
        transform: translateY(0) !important; /* Aktifken doğru konum */
        visibility: visible !important; /* Aktifken görünür */
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0s !important;
        /* Kademeli gecikmeler */
        transition-property: opacity, transform, visibility !important;
        transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1) !important;
    }
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.2s !important; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.25s !important; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s !important; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.35s !important; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.4s !important; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.45s !important; }
    .nav-menu.active .nav-item:nth-child(7) { transition-delay: 0.5s !important; }

    /* Mobil Link Stilleri */
    .nav-link {
        display: block !important; /* Tam genişlik (Zorla) */
        padding: 15px 20px !important; /* Padding (Zorla) */
        font-size: 1.5rem !important; /* Font boyutu (Zorla) */
        color: var(--text-light) !important; /* <<< RENK (Zorla) */
        font-weight: 400 !important;
        text-shadow: none !important;
        transition: color 0.3s ease, background-color 0.3s ease !important;
        border-radius: 5px !important;
    }
    .nav-link:hover {
        color: var(--primary-glow) !important;
        background-color: rgba(0, 240, 255, 0.08) !important; /* Hover BG (Zorla) */
    }
    .nav-link::before, .nav-link::after { display: none !important; } /* Pseudo elementleri gizle */
    .nav-link:hover span { transform: none !important; }
    .nav-link.active { color: var(--primary-glow) !important; font-weight: 600 !important; }


    /* Diğer Bölümler için Tablet Ayarları */
    .content-section { padding: 80px 0; }
    .section-title h2 { font-size: 2.4rem; } .section-title p { font-size: 1.1rem; }
    .services-tabs { flex-direction: column; gap: 30px; }
    .service-tab-triggers { flex: 0 0 auto; flex-direction: row; overflow-x: auto; padding-bottom: 15px; justify-content: flex-start; scrollbar-width: thin; scrollbar-color: var(--primary-glow) transparent;}
    .service-tab-triggers::-webkit-scrollbar { height: 5px; } .service-tab-triggers::-webkit-scrollbar-thumb { background: var(--primary-glow); border-radius: 5px;}
    .tab-trigger { flex-shrink: 0; padding: 10px 15px; font-size: 0.9rem; }
    .tab-trigger i { font-size: 1.1rem; margin-right: 8px; }
    .tab-pane { padding: 30px; } .tab-pane h3 { font-size: 1.5rem; } .tab-pane p, .tab-pane li { font-size: 0.9rem; }
    .process-timeline::before { left: 25px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 15px; text-align: left !important; margin-bottom: 25px; }
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { left: 0; }
    .timeline-item .timeline-icon { left: 25px !important; transform: translateX(-50%) !important; width: 40px; height: 40px; font-size: 1.2rem; }
    .timeline-item .timeline-content::before { left: -12px !important; right: auto !important; border-width: 7px 12px 7px 0 !important; border-color: transparent rgba(0, 240, 255, 0.15) transparent transparent !important; }
    .timeline-content { padding: 20px; } .timeline-content h3 { font-size: 1.2rem; } .timeline-content p { font-size: 0.85rem; }
    .growth-content-wrapper { flex-direction: column; gap: 30px; }
    .footer-container { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px;}
    /* İletişim sayfası tablet */
    .contact-main-wrapper { flex-direction: column; gap: 40px; }
    .contact-details-column, .contact-additional-info-column { flex: 1 1 100%; }
    .contact-additional-info-column { margin-top: 0; }
}

/* --- Küçük Tabletler ve Büyük Telefonlar (~768px) --- */
@media screen and (max-width: 768px) {
    .container { width: 92%; }
    .navbar-container { padding: 0 20px; }
    .navbar-logo { font-size: 1.4rem; } .logo-text-main, .logo-text-sub { font-size: 1.4rem; }
    .content-section { padding: 70px 0; }
    .section-title h2 { font-size: 2rem; letter-spacing: 1px; } .section-title p { font-size: 1rem; }
    .section-title h2::after { width: 60px; height: 2px; bottom: -10px; }
    .hero-title-v2 { font-size: clamp(2.2rem, 9vw, 3.5rem); } .hero-subtitle-v2 { font-size: clamp(0.9rem, 4vw, 1.1rem); max-width: 90%; }
    .hero-stats { gap: 20px; margin-bottom: 35px; } .stat-number { font-size: clamp(1.8rem, 6vw, 2.2rem); } .stat-label { font-size: 0.75rem; }
    .hero-abstract-visual { height: 220px; max-width: 300px; } .shape-1 { width: 200px; height: 200px; } .shape-2 { width: 150px; height: 150px; } .shape-3 { width: 280px; height: 280px; }
    .hero-cta-v2 { gap: 15px; } .btn { padding: 10px 20px; font-size: 0.9rem; }
    .why-us-grid { grid-template-columns: 1fr; gap: 25px; } .why-us-item { padding: 25px 20px; } .why-us-title { font-size: 1.2rem; } .why-us-item p { font-size: 0.85rem; }
    .tab-pane { padding: 25px; } .tab-pane h3 { font-size: 1.4rem; } .tab-pane p, .tab-pane li { font-size: 0.85rem; }
    .process-timeline { max-width: 100%; padding: 30px 10px; } .timeline-line { left: 20px; }
    .timeline-item { padding-left: 55px; padding-right: 10px; margin-bottom: 20px;} .timeline-item .timeline-icon { left: 20px !important; width: 35px; height: 35px; font-size: 1rem; } .timeline-item .timeline-content::before { left: -10px !important; border-width: 6px 10px 6px 0 !important; top: 25px;} .timeline-content { padding: 18px; } .timeline-content h3 { font-size: 1.1rem; } .timeline-content p { font-size: 0.8rem; }
    .tech-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 15px;} .tech-item i { font-size: 2.5rem; } .tech-item span { font-size: 0.75rem; }
    .partners-logos-v2 { gap: 25px; } .partner-logo-item-v2 { flex-basis: calc(50% - 13px); padding: 25px 15px; } .logo-container { width: 60px; height: 60px; margin-bottom: 15px;} .logo-container i { font-size: 2.5rem; } .partner-name { font-size: 1.1rem; } .partner-badge { font-size: 0.7rem; padding: 3px 8px;}
    .achievement-highlight-v2 { flex-direction: column; text-align: center; gap: 10px; padding: 20px;} .award-icon { margin-right: 0; font-size: 2.8rem; } .award-text h4 { font-size: 1.1rem; } .award-text p { font-size: 0.9rem; }
    .growth-column { padding: 25px; } .growth-icon { font-size: 2.5rem; } .growth-column h3 { font-size: 1.4rem; } .growth-column p, .growth-column li { font-size: 0.9rem; } .cta-box { padding: 20px; } .cta-box h4 { font-size: 1.1rem; } .cta-box p { font-size: 0.85rem; }
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 30px;} .footer-heading::after { left: 50%; transform: translateX(-50%); } .footer-social-icons { text-align: center; margin-top: 15px; } .footer-social-icons a { margin: 0 10px; } .footer-links ul { padding-left: 0; } .footer-contact p { justify-content: center; } .footer-contact i { margin-right: 8px; } .footer-description { margin-left: auto; margin-right: auto;}
    /* İletişim sayfası küçük tablet */
    .page-hero-section { padding: 70px 0 50px 0; min-height: 30vh; } .page-hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); } .page-hero-subtitle { font-size: clamp(1rem, 4vw, 1.2rem); }
    .contact-details-form-section { padding-top: 60px; }
    .contact-info-block.enhanced-block, .working-hours-block, .next-steps-block { padding: 30px; }
    .contact-block-title { font-size: 1.4rem; }
    .contact-detail-item.enhanced-item { padding: 12px 0; gap: 15px;} .detail-icon-wrapper { width: 40px; height: 40px;} .detail-icon-wrapper i { font-size: 1.1rem;}
    .working-hours-list li { flex-wrap: wrap; padding: 10px 0;} .working-hours-list .day { flex-basis: 60%; } .working-hours-list .time { flex-basis: 30%; text-align: right;} .status-dot { flex-basis: 10%; text-align: right; margin-left: 0;}
    .next-steps-content { gap: 15px;} .step-icon { font-size: 1.6rem; } .next-steps-content h4 { font-size: 1rem;} .next-steps-content p { font-size: 0.85rem;}
    /* WhatsApp Buton Responsive */
    .whatsapp-float { width: 55px; height: 55px; font-size: 26px; bottom: 20px; left: 20px; }
}

/* --- Küçük Telefonlar (~480px) --- */
@media screen and (max-width: 480px) {
    .container { width: 95%; }
    .navbar-container { padding: 0 15px; }
    .navbar-logo { font-size: 1.2rem; } .logo-text-main, .logo-text-sub { font-size: 1.2rem; }
    .menu-icon { width: 25px; height: 18px; } .menu-icon__line { height: 2px;}
    .content-section { padding: 60px 0; }
    .section-title h2 { font-size: 1.8rem; } .section-title p { font-size: 0.9rem; }
    .hero-title-v2 { font-size: clamp(2rem, 10vw, 2.8rem); } .hero-subtitle-v2 { font-size: 0.9rem; }
    .hero-stats { gap: 15px; } .stat-number { font-size: clamp(1.6rem, 7vw, 2rem); } .stat-label { font-size: 0.7rem; }
    .hero-cta-v2 { flex-direction: column; gap: 12px; align-items: center;} .btn { width: 85%; text-align: center; padding: 10px 15px;}
    .hero-abstract-visual { height: 180px; }
    .why-us-item { padding: 20px 15px; } .why-us-icon { font-size: 2rem; } .why-us-title { font-size: 1.1rem; }
    .service-tab-triggers { padding-bottom: 10px; } .tab-trigger { padding: 8px 12px; font-size: 0.85rem; }
    .tab-pane { padding: 20px; min-height: 350px;} .tab-pane h3 { font-size: 1.3rem; } .tab-pane p, .tab-pane li { font-size: 0.8rem; }
    .process-timeline { padding: 25px 5px; } .timeline-line { left: 15px; width: 2px;} .timeline-item { padding-left: 45px; padding-right: 5px; margin-bottom: 15px;} .timeline-item .timeline-icon { left: 15px !important; width: 30px; height: 30px; font-size: 0.9rem; } .timeline-item .timeline-content::before { left: -8px !important; border-width: 5px 8px 5px 0 !important; top: 20px;} .timeline-content { padding: 15px; } .timeline-content h3 { font-size: 1rem; } .timeline-content p { font-size: 0.75rem; }
    .tech-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 10px;} .tech-item { padding: 15px 5px; } .tech-item i { font-size: 2.2rem; margin-bottom: 8px;} .tech-item span { font-size: 0.7rem; }
    .partners-logos-v2 { gap: 20px; } .partner-logo-item-v2 { flex-basis: 100%; padding: 20px 15px; }
    .achievement-highlight-v2 { padding: 15px; } .award-icon { font-size: 2.5rem; } .award-text h4 { font-size: 1rem; } .award-text p { font-size: 0.85rem; }
    .growth-column { padding: 20px; } .growth-icon { font-size: 2.2rem; } .growth-column h3 { font-size: 1.3rem; } .growth-column p, .growth-column li { font-size: 0.85rem; } .cta-box { padding: 15px; } .cta-box h4 { font-size: 1rem; } .cta-box p { font-size: 0.8rem; }
    .footer-container { gap: 25px; padding-bottom: 40px;} .footer-heading { font-size: 1.1rem; margin-bottom: 15px;} .footer-description, .footer-links a, .footer-contact p { font-size: 0.85rem; } .footer-social-icons a { font-size: 1.2rem; margin: 0 8px;}
    .footer-bottom { padding: 15px 10px; font-size: 0.75rem; margin-top: 20px;}
    .back-to-top { width: 35px; height: 35px; font-size: 0.9rem; bottom: 15px; right: 15px; }
    /* İletişim sayfası en küçük */
    .page-hero-section { padding: 60px 0 40px 0; } .page-hero-title { font-size: clamp(2rem, 9vw, 2.8rem); } .page-hero-subtitle { font-size: clamp(0.9rem, 5vw, 1rem); }
    .contact-info-block.enhanced-block, .working-hours-block, .next-steps-block { padding: 25px 20px; }
    .contact-block-title { font-size: 1.3rem; margin-bottom: 20px;}
    .contact-detail-item.enhanced-item { gap: 10px; } .detail-icon-wrapper { width: 35px; height: 35px;} .detail-icon-wrapper i { font-size: 1rem;} .contact-detail-item.enhanced-item h4 { font-size: 1rem; } .contact-detail-item.enhanced-item p, .contact-detail-item.enhanced-item a { font-size: 0.85rem; }
    .working-hours-list li { font-size: 0.9rem;} .working-hours-list .day i { margin-right: 8px;} .working-hours-list .time { font-size: 0.85rem;} .status-dot { width: 8px; height: 8px;}
    .next-steps-content { flex-direction: column; text-align: center; align-items: center; gap: 8px;} .step-icon { margin-bottom: 5px; } .next-steps-note { font-size: 0.85rem;}
    .additional-info-deco { display: none; }
    /* WhatsApp Buton Responsive */
    .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 15px; left: 15px; }
}