/* SİYAH, MAVİ VE BEYAZ (DARK THEME) RENK PALETİ */
:root {
    --logo-blue: #0b457f;
    --neon-blue: #3b82f6; 
    --wa-green: #25D366; 
    --map-red: #e63946;
    --bg-black: #030712; 
    --bg-dark: #0f172a; 
    --bg-card: #111827; 
    --text-main: #94a3b8; 
    --text-title: #f8fafc; 
    --glass-bg: rgba(3, 7, 18, 0.85); 
}

/* DOKUNMA VURGUSUNU KALDIRDIK */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; -webkit-tap-highlight-color: transparent; }

/* ÖZEL KAYDIRMA ÇUBUĞU (CUSTOM SCROLLBAR) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-black); border-left: 1px solid rgba(255, 255, 255, 0.05); }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, #1e3a8a, var(--neon-blue)); border-radius: 10px; border: 2px solid var(--bg-black); }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(to bottom, var(--neon-blue), #60a5fa); }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--neon-blue) var(--bg-black); }

body { background-color: var(--bg-black); color: var(--text-main); overflow-x: hidden; position: relative; }
body.no-scroll { overflow: hidden; }

/* HAREKETLİ AMBIENT IŞIKLAR (GLOWING ORBS) */
.ambient-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 0; overflow: hidden; pointer-events: none; }
.ambient-light { position: absolute; border-radius: 50%; filter: blur(150px); opacity: 0.4; animation: floatOrb 25s infinite alternate ease-in-out; }
.light-1 { width: 400px; height: 400px; background: var(--neon-blue); top: -100px; left: -100px; }
.light-2 { width: 500px; height: 500px; background: #1e3a8a; bottom: -150px; right: -100px; animation-duration: 30s; animation-direction: alternate-reverse; }
.light-3 { width: 350px; height: 350px; background: #0b457f; top: 40%; left: 40%; animation-duration: 35s; }
@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(10vw, 15vh) scale(1.1); }
    66% { transform: translate(-5vw, 10vh) scale(0.9); }
    100% { transform: translate(15vw, -5vh) scale(1); }
}

/* PRELOADER */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--bg-black); z-index: 999999; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
#preloader.finish { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo { width: 140px; height: auto; margin-bottom: 25px; animation: pulse-logo 1.2s infinite alternate ease-in-out; }
@keyframes pulse-logo { 0% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.2)); } 100% { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5)); } }
.preloader-bar-container { width: 160px; height: 2px; background: rgba(255, 255, 255, 0.05); border-radius: 2px; overflow: hidden; position: relative; }
.preloader-bar { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--neon-blue); box-shadow: 0 0 10px var(--neon-blue); animation: loading-fill 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
@keyframes loading-fill { 0% { width: 0%; } 100% { width: 100%; } }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* NAVBAR */
.navbar { position: fixed; top: 0; width: 100%; background: var(--glass-bg); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; z-index: 1000; transition: padding 0.3s ease; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--text-title); letter-spacing: 1px; }
.nav-logo-img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 20px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-title); font-weight: 400; font-size: 0.95rem; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--neon-blue); transition: width 0.3s; }
.mobile-menu-btn { display: none; font-size: 1.8rem; color: var(--text-title); cursor: pointer; }

@media (hover: hover) {
    .nav-links a:hover::after { width: 100%; }
    .nav-links a:hover { color: var(--neon-blue); }
}

/* FAB SPEED DIAL */
.fab-container { position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; flex-direction: column-reverse; align-items: center; gap: 15px; }
.fab-menu { display: flex; flex-direction: column-reverse; gap: 15px; opacity: 0; transform: translateY(20px); pointer-events: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.fab-container.active .fab-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab-container.active .fab-toggle i { transform: rotate(180deg) scale(1.1); }

.fab-toggle { width: 65px; height: 65px; background: linear-gradient(135deg, var(--neon-blue), #1e3a8a); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 5px 20px rgba(59, 130, 246, 0.5); cursor: pointer; transition: transform 0.3s ease; position: relative; }
.fab-toggle i { transition: transform 0.3s ease; }
.pulse-ring { position: absolute; width: 100%; height: 100%; border: 2px solid var(--neon-blue); border-radius: 50%; z-index: -1; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.5); opacity: 0; border-width: 0; } }

.fab-item { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: white; text-decoration: none; box-shadow: 0 4px 10px rgba(0,0,0,0.4); transition: transform 0.2s ease; position: relative; }
.fab-whatsapp { background-color: var(--wa-green); }
.fab-phone { background-color: #0b457f; }
.fab-map { background-color: var(--map-red); }
.fab-label { position: absolute; right: 65px; background: rgba(17, 24, 39, 0.9); color: var(--text-title); padding: 6px 14px; border-radius: 6px; font-size: 0.9rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; border: 1px solid rgba(255,255,255,0.1); font-family: 'Rajdhani', sans-serif; letter-spacing: 0.5px; }

@media (hover: hover) {
    .fab-container:hover .fab-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .fab-container:hover .fab-toggle i { transform: rotate(180deg) scale(1.1); }
    .fab-item:hover { transform: scale(1.15); color: white; }
    .fab-item:hover .fab-label { opacity: 1; }
}

/* TEXT GRADIENT VURGULARI */
.hero h1 span { background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 30%, var(--neon-blue) 70%, #93c5fd 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4)); }
.section-title span { background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 30%, var(--neon-blue) 70%, #93c5fd 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.3)); }

/* ============================================================== */
/* HERO & 3D LOGO & SİNEMATİK PARÇACIKLAR                         */
/* ============================================================== */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 120px 20px 60px; background: transparent; position: relative; overflow: hidden; z-index: 1; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjMDAwIiBmaWxsLW9wYWNpdHk9IjAiPjwvcmVjdD4KPHBhdGggZD0iTTAgMEgxdjFIMHoiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wMykiPjwvcGF0aD4KPC9zdmc+') repeat; z-index: -1; }

/* PARÇACIK KONTEYNERİ */
#particles-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 1; pointer-events: none; }
.particle { position: absolute; bottom: -10px; background: var(--neon-blue); border-radius: 50%; box-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue); opacity: 0; animation: floatUp linear infinite; }
@keyframes floatUp {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    20% { opacity: 0.8; transform: translateY(-20vh) scale(1); }
    80% { opacity: 0.4; }
    100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

.scene { width: 280px; height: 280px; perspective: 1000px; margin-bottom: 30px; z-index: 2; }
.cube { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; animation: swingLogo 4s ease-in-out infinite; }
.face { position: absolute; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; filter: drop-shadow(0 0 35px rgba(11, 69, 127, 0.6)); }
.face img { width: 100%; height: auto; object-fit: contain; }
@keyframes swingLogo { 0% { transform: rotateY(-20deg); } 50% { transform: rotateY(20deg); } 100% { transform: rotateY(-20deg); } }
.hero h1 { font-size: 3.8rem; font-weight: 800; color: var(--text-title); margin-bottom: 15px; z-index: 2; line-height: 1.2; text-shadow: 0 4px 20px rgba(0,0,0,0.8); }
.hero p { font-size: 1.2rem; color: var(--text-main); max-width: 650px; margin-bottom: 40px; z-index: 2; }

/* KAYAN MARKALAR */
.brands-marquee { background: linear-gradient(90deg, #030712 0%, #0a0f1a 50%, #030712 100%); padding: 50px 0; border-top: 1px solid rgba(59, 130, 246, 0.15); border-bottom: 1px solid rgba(59, 130, 246, 0.15); box-shadow: inset 0 0 50px rgba(0,0,0,0.8); overflow: hidden; position: relative; display: flex; white-space: nowrap; user-select: none; -webkit-user-select: none; z-index: 2;}
.brands-marquee::before, .brands-marquee::after { content: ''; position: absolute; top: 0; width: 200px; height: 100%; z-index: 2; pointer-events: none;  }
.brands-marquee::before { left: 0; background: linear-gradient(to right, #030712 10%, transparent); }
.brands-marquee::after { right: 0; background: linear-gradient(to left, #030712 10%, transparent); }
.marquee-track { display: inline-flex; align-items: center; animation: scroll-marquee 40s linear infinite; }
.brand-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; margin: 0 20px; width: 170px; height: 130px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor: default; }
.brand-logo { height: 50px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 5px rgba(255, 255, 255, 0.15)) opacity(0.6); transition: all 0.4s ease; }
.brand-name { font-family: 'Rajdhani', sans-serif; font-size: 0.95rem; font-weight: 700; color: #94a3b8; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.4s ease; }

@media (hover: hover) {
    .brand-card:hover { background: rgba(59, 130, 246, 0.08); border-color: rgba(59, 130, 246, 0.3); transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(59, 130, 246, 0.1); }
    .brand-card:hover .brand-logo { transform: scale(1.15); filter: drop-shadow(0 8px 15px rgba(59, 130, 246, 0.5)) opacity(1); }
    .brand-card:hover .brand-name { color: #ffffff; text-shadow: 0 0 10px rgba(59, 130, 246, 0.8); }
}
@keyframes scroll-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* HİZMET KARTLARI */
.section-padding { padding: 100px 5%; position: relative; z-index: 2; background: transparent; }
.section-title { text-align: center; font-family: 'Rajdhani', sans-serif; font-size: 2.8rem; font-weight: 700; color: var(--text-title); margin-bottom: 20px; letter-spacing: 1px; }
.section-subtitle { text-align: center; color: var(--text-main); font-size: 1.1rem; max-width: 700px; margin: 0 auto 60px; line-height: 1.6; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; max-width: 1300px; margin: 0 auto; }
.service-card { background: rgba(17, 24, 39, 0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 12px; padding: 40px 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.05); transition: all 0.4s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--neon-blue); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }
.icon-box { width: 70px; height: 70px; background: rgba(59, 130, 246, 0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: all 0.4s ease; border: 1px solid rgba(59, 130, 246, 0.1); }
.icon-box i { font-size: 2rem; color: var(--neon-blue); transition: all 0.4s ease; text-shadow: 0 0 10px rgba(59, 130, 246, 0.3); }
.service-card h3 { font-size: 1.15rem; font-weight: 600; color: var(--text-title); margin-bottom: 10px; }
.highlight { border: 1px solid rgba(59, 130, 246, 0.5); background: linear-gradient(to bottom, rgba(17, 24, 39, 0.8), rgba(11, 69, 127, 0.3)); }
.highlight .icon-box { background: rgba(59, 130, 246, 0.2); }
.highlight h3 { color: var(--neon-blue); }

@media (hover: hover) {
    .service-card:hover { transform: translateY(-10px); background: rgba(23, 32, 51, 0.9); border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 20px rgba(59, 130, 246, 0.15); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover .icon-box { background: var(--neon-blue); }
    .service-card:hover .icon-box i { color: #fff; text-shadow: none; }
}

/* İSTATİSTİKLER */
.stats-section { background-color: transparent; border-top: 1px solid rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.05); position: relative; overflow: hidden; }
.stats-section::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjMDAwIiBmaWxsLW9wYWNpdHk9IjAiPjwvcmVjdD4KPHBhdGggZD0iTTAgMEgxdjFIMHoiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wMykiPjwvcGF0aD4KPC9zdmc+'); z-index: -1; }
.stats-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--neon-blue), transparent); opacity: 0.5; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.stat-card { padding: 40px 20px; background: linear-gradient(145deg, rgba(17, 24, 39, 0.8) 0%, rgba(3, 7, 18, 0.4) 100%); backdrop-filter: blur(10px); border: 1px solid rgba(59, 130, 246, 0.1); border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); position: relative; overflow: hidden; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.stat-card::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.stat-icon { width: 80px; height: 80px; margin: 0 auto 20px; background: rgba(15, 23, 42, 0.8); border: 1px solid rgba(59, 130, 246, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 0 15px rgba(59, 130, 246, 0.1); transition: all 0.5s ease; }
.stat-icon i { font-size: 2.2rem; color: var(--neon-blue); filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4)); transition: transform 0.5s ease; }
.counter-wrap { font-family: 'Rajdhani', sans-serif; font-size: 3.5rem; font-weight: 800; margin-bottom: 5px; line-height: 1; display: flex; align-items: center; justify-content: center; gap: 5px; background: linear-gradient(to bottom right, #ffffff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.counter-wrap .plus { font-size: 2.5rem; font-weight: 700; color: var(--neon-blue); -webkit-text-fill-color: var(--neon-blue); text-shadow: 0 0 15px rgba(59, 130, 246, 0.5); }
.stat-card p { font-size: 1.05rem; color: #64748b; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }

@media (hover: hover) {
    .stat-card:hover { transform: translateY(-10px); border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8); }
    .stat-card:hover::after { opacity: 1; }
    .stat-card:hover .stat-icon { background: var(--neon-blue); border-color: var(--neon-blue); box-shadow: 0 0 25px rgba(59, 130, 246, 0.4); }
    .stat-card:hover .stat-icon i { color: #fff; transform: scale(1.2); filter: none; }
}

/* İŞLEM SÜRECİ (TIMELINE) */
.process-section { background-color: transparent; border-bottom: 1px solid rgba(255,255,255,0.05); position: relative; }
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding-left: 60px; }
.timeline::before { content: ''; position: absolute; top: 0; left: 25px; width: 2px; height: 100%; background: linear-gradient(to bottom, transparent, var(--neon-blue), var(--neon-blue), transparent); box-shadow: 0 0 10px rgba(59, 130, 246, 0.5); }
.timeline-item { position: relative; margin-bottom: 50px; }
.timeline-item:last-child { margin-bottom: 0; }
.step-marker { position: absolute; left: -60px; top: 15px; width: 50px; height: 50px; background: rgba(15, 23, 42, 0.9); border: 2px solid var(--neon-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 800; color: #fff; box-shadow: 0 0 15px rgba(59, 130, 246, 0.3); z-index: 2; transition: all 0.4s ease; }
.step-content { background: linear-gradient(145deg, rgba(17, 24, 39, 0.8) 0%, rgba(3, 7, 18, 0.4) 100%); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.05); border-left: 3px solid transparent; border-radius: 16px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); transition: all 0.4s ease; position: relative; overflow: hidden; }
.step-content h3 { color: var(--text-title); font-size: 1.3rem; margin-bottom: 15px; display: flex; align-items: center; gap: 12px; font-family: 'Rajdhani', sans-serif; letter-spacing: 0.5px; }
.step-content h3 i { color: var(--neon-blue); font-size: 1.5rem; filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5)); }
.step-content p { color: var(--text-main); font-size: 0.95rem; line-height: 1.6; }

@media (hover: hover) {
    .timeline-item:hover .step-marker { background: var(--neon-blue); transform: scale(1.15); box-shadow: 0 0 25px rgba(59, 130, 246, 0.8); color: #fff; }
    .timeline-item:hover .step-content { transform: translateX(10px); border-left-color: var(--neon-blue); border-right-color: rgba(59, 130, 246, 0.2); background: rgba(15, 23, 42, 0.95); box-shadow: 0 15px 40px rgba(0,0,0,0.6); }
}

/* GÖSTERGE PANELİ */
.dashboard-section { background-color: transparent; border-top: 1px solid rgba(255,255,255,0.05); position: relative; }
.warning-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; max-width: 1300px; margin: 0 auto; }
.warning-card { background: rgba(17, 24, 39, 0.7); backdrop-filter: blur(10px); border-radius: 12px; padding: 30px; border: 1px solid rgba(255,255,255,0.05); box-shadow: inset 0 0 20px rgba(0,0,0,0.5); transition: transform 0.3s; }
.warn-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; }
.neon-red { color: #ff4757; text-shadow: 0 0 15px rgba(255, 71, 87, 0.4); }
.neon-yellow { color: #ffa502; text-shadow: 0 0 15px rgba(255, 165, 2, 0.4); }
.abs-icon { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 800; border: 2px solid #ffa502; border-radius: 50%; padding: 5px 8px; color: #ffa502; }
.warn-header i { font-size: 2.5rem; }
.warn-header h3 { font-size: 1.2rem; font-family: 'Rajdhani', sans-serif; color: var(--text-title); letter-spacing: 1px; }
.warn-meaning { color: var(--text-main); font-size: 0.95rem; margin-bottom: 15px; }
.warn-action { background: rgba(59, 130, 246, 0.05); padding: 15px; border-radius: 8px; border-left: 2px solid var(--neon-blue); }
.warn-action strong { color: var(--text-title); display: block; margin-bottom: 5px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px;}
.warn-action p { color: #64748b; font-size: 0.9rem; }

@media (hover: hover) { .warning-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.15); } }

/* YORUMLAR */
.reviews-section { background-image: radial-gradient(circle at 50% 100%, rgba(30, 41, 59, 0.6) 0%, transparent 70%); border-top: 1px solid rgba(255,255,255,0.05); position: relative; }
.widget-container { max-width: 1200px; margin: 0 auto; padding: 30px; background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(59, 130, 246, 0.15); border-radius: 20px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(59, 130, 246, 0.05); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); transition: transform 0.4s ease, box-shadow 0.4s ease; }

@media (hover: hover) { .widget-container:hover { transform: translateY(-5px); box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.3); } }

/* FOOTER */
footer { background-color: #000000; color: var(--text-main); padding: 80px 5% 20px; border-top: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; max-width: 1300px; margin: 0 auto 50px; }
.footer-col h4 { color: var(--text-title); font-size: 1.3rem; margin-bottom: 25px; font-family: 'Rajdhani', sans-serif; letter-spacing: 1px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; }
.contact-item i { color: var(--neon-blue); font-size: 1.2rem; margin-top: 4px; }
.contact-item span { line-height: 1.6; }
.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; color: #475569; }

/* MOBİL UYUM */
@media (max-width: 991px) {
    .ambient-bg { display: none; }
    body { background-color: var(--bg-black); }

    .nav-links { position: absolute; top: 100%; left: -100%; width: 100%; background: var(--bg-black); flex-direction: column; text-align: center; padding: 30px 0; transition: left 0.4s ease; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .nav-links.active { left: 0; }
    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 2.5rem; }
    
    .brands-marquee { padding: 30px 0; }
    .brand-card { width: 140px; height: 110px; padding: 15px; margin: 0 15px; }
    .brand-logo { height: 40px; }
    .brand-name { font-size: 0.85rem; }
    .brands-marquee::before, .brands-marquee::after { width: 60px; }

    .counter-wrap { font-size: 2.8rem; }
    .counter-wrap .plus { font-size: 2rem; }
    .stat-icon { width: 65px; height: 65px; }
    .stat-icon i { font-size: 1.8rem; }

    .timeline { padding-left: 50px; }
    .timeline::before { left: 20px; }
    .step-marker { left: -50px; width: 40px; height: 40px; font-size: 1.2rem; top: 20px;}
    .step-content { padding: 20px; }

    .fab-container { bottom: 20px; right: 20px; }
    .fab-toggle { width: 55px; height: 55px; font-size: 1.5rem; }
    .fab-label { display: none; }
    .widget-container { padding: 15px; border-radius: 15px; }
}
