:root {
    --bg-color: #020604;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --accent-yellow: #10b981; /* Changed to leaf green */
    --neon-yellow: #34d399;   /* Changed to neon green */
    --dark-surface: #06110a;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Kinetik Tipografi Arka Planı (Açılı ve Büyük) */
.kinetic-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.03;
}

.kinetic-bg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 150vh;
    transform: rotate(-10deg) translateY(-20%);
}

.kinetic-track {
    display: flex;
    white-space: nowrap;
    font-size: 15vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 3px var(--text-main);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2rem;
}

.track-1 { animation: scrollLeft 60s linear infinite; }
.track-2 { animation: scrollRight 50s linear infinite; -webkit-text-stroke: 3px var(--accent-yellow); opacity: 0.5;}
.track-3 { animation: scrollLeft 70s linear infinite; }

.kinetic-track span {
    margin-right: 5vw;
}

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(3,3,3,0.9), transparent);
    backdrop-filter: blur(5px);
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-logo {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    object-fit: cover;
}
.logo span {
    color: var(--accent-yellow);
}

.call-btn {
    text-decoration: none;
    background: var(--accent-yellow);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.call-btn-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.call-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    background: var(--neon-yellow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-text-container {
    flex: 1;
    max-width: 650px;
    z-index: 2;
    padding-top: 80px;
}

.badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-yellow);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

h1 .highlight {
    color: var(--accent-yellow);
}



.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--accent-yellow);
    color: #000;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.primary-btn:hover {
    background: var(--neon-yellow);
    transform: translateY(-3px);
}

.secondary-btn {
    background: rgba(255,255,255,0.05);
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.1);
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* CSS Art: Gelişmiş Taksi Şovu */
.taxi-showcase {
    flex: 1;
    height: 600px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speed-lines {
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    top: 60%;
    animation: speed 0.5s linear infinite;
    filter: blur(1px);
}
.speed-lines::before, .speed-lines::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: inherit;
}
.speed-lines::before { top: -50px; animation: speed 0.7s linear infinite reverse; }
.speed-lines::after { top: 50px; animation: speed 0.4s linear infinite; }

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

.taxi-container {
    position: relative;
    width: 400px;
    height: 160px;
    animation: taxiBounce 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes taxiBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Taksi Tabelası */
.taxi-sign {
    position: absolute;
    top: 15px;
    left: 170px;
    width: 60px;
    height: 15px;
    background: #0f172a;
    border: 1px solid var(--accent-yellow);
    border-radius: 3px 3px 0 0;
    font-size: 9px;
    font-weight: 900;
    color: var(--accent-yellow);
    text-align: center;
    line-height: 13px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    z-index: 3;
}

/* Taksi Kabini (Camlar vs) */
.taxi-cabin {
    position: absolute;
    top: 30px;
    left: 100px;
    width: 220px;
    height: 50px;
    background: #0f172a;
    border-radius: 60px 80px 0 0;
    z-index: 2;
    box-shadow: inset 0 5px 15px rgba(255,255,255,0.1);
}

.taxi-windows {
    position: absolute;
    top: 5px;
    left: 15px;
    width: 190px;
    height: 35px;
    background: #000;
    border-radius: 40px 60px 0 0;
    display: flex;
    gap: 5px;
    border: 3px solid #0f172a;
    border-bottom: none;
}

.window {
    background: linear-gradient(135deg, #1a2530, #000);
    position: relative;
    overflow: hidden;
}
.window::after {
    content: '';
    position: absolute;
    top: -10px; left: -20px;
    width: 50px; height: 100px;
    background: rgba(255,255,255,0.05);
    transform: rotate(45deg);
}
.window-left { flex: 1.2; border-radius: 35px 0 0 0; }
.window-right { flex: 1; border-radius: 0 55px 0 0; }

/* Ana Gövde */
.taxi-body {
    position: absolute;
    top: 80px;
    left: -20px;
    width: 440px;
    height: 60px;
    background: linear-gradient(to right, #0a1120 0%, #1e3a5f 50%, #064e3b 100%);
    border-radius: 20px 40px 15px 15px;
    z-index: 1;
    box-shadow: inset 0 -5px 15px rgba(0,0,0,0.5), 0 10px 20px rgba(0,0,0,0.5);
    overflow: hidden;
}

.taxi-checker {
    position: absolute;
    top: 20px;
    width: 100%;
    height: 3px;
    background: var(--accent-yellow);
    opacity: 0.9;
    box-shadow: 0 0 10px var(--accent-yellow);
}

.headlight {
    position: absolute;
    right: 5px;
    top: 15px;
    width: 15px;
    height: 25px;
    background: #fff;
    border-radius: 50% 10px 10px 50%;
    box-shadow: 0 0 20px #fff;
}

.taillight {
    position: absolute;
    left: 5px;
    top: 10px;
    width: 12px;
    height: 30px;
    background: #ff0000;
    border-radius: 10px 50% 50% 10px;
    box-shadow: -5px 0 15px rgba(255,0,0,0.8);
}

.door-line {
    position: absolute;
    left: 190px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(0,0,0,0.2);
}

.door-handle {
    position: absolute;
    top: 5px;
    width: 15px;
    height: 5px;
    background: #333;
    border-radius: 5px;
}
.door-handle.left { left: 120px; }
.door-handle.right { left: 210px; }

/* Tekerlekler */
.wheel {
    position: absolute;
    bottom: -15px;
    width: 70px;
    height: 70px;
    background: #111;
    border-radius: 50%;
    z-index: 3;
    border: 6px solid #222;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.8);
    animation: spinWheel 0.3s linear infinite;
}

.wheel-inner {
    width: 35px;
    height: 35px;
    background: #ddd;
    border-radius: 50%;
    border: 4px solid #999;
    position: relative;
}
.wheel-inner::after, .wheel-inner::before {
    content: '';
    position: absolute;
    background: #666;
    width: 100%; height: 4px;
    top: 50%; left: 0;
    transform: translateY(-50%);
}
.wheel-inner::before { transform: translateY(-50%) rotate(90deg); }

.wheel.front { right: 50px; }
.wheel.back { left: 50px; }

@keyframes spinWheel {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Farların Yansıma Hüzmesi */
.light-beam {
    position: absolute;
    right: -400px;
    top: 90px;
    border-left: 400px solid rgba(255, 255, 255, 0.15);
    border-top: 50px solid transparent;
    border-bottom: 80px solid transparent;
    z-index: 0;
    filter: blur(10px);
    pointer-events: none;
}

/* Yere Vuran Gölge */
.taxi-shadow {
    position: absolute;
    bottom: -25px;
    left: 20px;
    width: 360px;
    height: 20px;
    background: rgba(0,0,0,0.8);
    border-radius: 50%;
    filter: blur(10px);
    z-index: -1;
}

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

/* Ortak Bölüm Stilleri */
.section-padding {
    padding: 100px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.alt-bg {
    background: var(--dark-surface);
}

.section-header {
    text-align: center;
    margin: 0 auto 60px auto;
    max-width: 700px;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

/* Kart Ortak Yapısı */
.feature-card, .fleet-card, .testimonial-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.feature-card:hover, .fleet-card:hover, .testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.04);
}

/* Feature Kartları */
.card-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
}
.card-icon svg {
    width: 48px;
    height: 48px;
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}
.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Fleet (Filo) Kartları */
.fleet-icon {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.fleet-icon svg {
    width: 64px;
    height: 64px;
}
.fleet-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.fleet-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Nasıl Çalışır (Adımlar) */
.step-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.step-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
    padding: 30px;
}
.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    color: #000;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}
.step-card h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Müşteri Yorumları */
.stars {
    color: var(--accent-yellow);
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}
.stars svg {
    display: block;
}
.testimonial-card h6 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--text-main);
}
.testimonial-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.author {
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 0.9rem;
}

/* İletişim / Footer */
.contact-section {
    padding: 100px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.contact-box {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 60px 40px;
    border-radius: 30px;
    max-width: 800px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--accent-yellow);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

h6 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.huge-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-main);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.huge-number:hover {
    color: var(--accent-yellow);
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    position: relative;
}

.fab-btn svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    z-index: 2;
}

.fab-btn.whatsapp {
    background: #25D366;
}
.fab-btn.whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

.fab-btn.phone {
    background: var(--accent-yellow);
    color: #000;
}
.fab-btn.phone:hover {
    background: var(--neon-yellow);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.5);
}

.fab-btn.phone::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background: var(--accent-yellow);
    z-index: 1;
    animation: pulse-fab 2s infinite;
}

@keyframes pulse-fab {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Hamburger Menü */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10000; /* overlay üzerinde durmalı */
    padding: 10px;
}
.hamburger div {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active .line1 {
    transform: rotate(-45deg) translate(-6px, 6px);
}
.hamburger.active .line2 {
    opacity: 0;
}
.hamburger.active .line3 {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Full Screen Menü Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 25, 47, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(10px);
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.menu-links {
    list-style: none;
    text-align: center;
}
.menu-links li {
    margin: 20px 0;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.menu-overlay.active .menu-links li {
    transform: translateY(0);
    opacity: 1;
}
/* Menü linklerine gecikme ekleme */
.menu-overlay.active .menu-links li:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.active .menu-links li:nth-child(2) { transition-delay: 0.2s; }
.menu-overlay.active .menu-links li:nth-child(3) { transition-delay: 0.3s; }
.menu-overlay.active .menu-links li:nth-child(4) { transition-delay: 0.4s; }
.menu-overlay.active .menu-links li:nth-child(5) { transition-delay: 0.5s; }

.menu-links a {
    color: #fff;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}
.menu-links a:hover {
    color: var(--accent-yellow);
}

/* İçerik Sayfaları (Legal, Hakkımızda vs.) */
.content-section {
    padding: 150px 5% 80px;
    min-height: calc(100vh - 100px);
}
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
}
.content-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-main);
    text-align: center;
}
.content-wrapper h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-main);
}
.content-wrapper p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.content-wrapper ul {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
    font-size: 1.1rem;
}
.content-wrapper li {
    margin-bottom: 10px;
}

/* Footer Linkleri */
.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--accent-yellow);
}

/* Responsive */
@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    .taxi-container { transform: scale(0.8); transform-origin: center; animation: taxiBounceMobile 2s ease-in-out infinite; }
    @keyframes taxiBounceMobile { 0%, 100% { transform: scale(0.8) translateY(0); } 50% { transform: scale(0.8) translateY(-5px); } }
}

@media (max-width: 768px) {
    body { overflow-x: hidden; }
    .hero { flex-direction: column; padding-top: 100px; text-align: center; }
    .hero-text-container { margin: 0 auto; max-width: 100%; padding: 0 10px; }
    .cta-group { justify-content: center; flex-direction: column; gap: 15px; }
    .cta-group a { width: 100%; }
    .taxi-showcase { height: 250px; width: 100%; margin-top: 2rem; }
    h1 { font-size: 2.2rem; }
    .huge-number { font-size: 2.2rem; margin-top: 20px; }
    
    .section-padding { padding: 60px 15px; }
    .section-header h2 { font-size: 2rem; }
    
    .contact-box { padding: 40px 20px; border-radius: 20px; }
    .contact-box h2 { font-size: 1.8rem; }
    
    .grid-3 { gap: 20px; }
    .feature-card, .fleet-card, .testimonial-card { padding: 30px 20px; }
    
    .taxi-container { transform: scale(0.5); transform-origin: center; animation: taxiBounceMobileSmall 2s ease-in-out infinite; }
    @keyframes taxiBounceMobileSmall { 0%, 100% { transform: scale(0.5) translateY(0); } 50% { transform: scale(0.5) translateY(-5px); } }
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    .fab-btn {
        width: 50px;
        height: 50px;
    }
    .fab-btn svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .taxi-container { transform: scale(0.4); }
    @keyframes taxiBounceMobileSmall { 0%, 100% { transform: scale(0.4) translateY(0); } 50% { transform: scale(0.4) translateY(-5px); } }
}

