/* --- TEMEL DEĞİŞKENLER --- */
:root {
    --primary: #FFB300; 
    --primary-hover: #FFA000;
    --dark-navy: #0B132B; 
    --navy-light: #1C2541;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-gray: #F8F9FA;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(11, 19, 43, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif; 
    color: var(--dark-navy);
}

a { text-decoration: none; }

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 8px 5%;
    font-size: 0.85rem;
    font-weight: 300;
}
.top-bar-content {
    display: flex; justify-content: flex-end; gap: 30px;
    max-width: 1200px; margin: 0 auto;
}
.top-bar-content i { color: var(--primary); margin-right: 5px; }

/* --- NAVBAR --- */
.navbar {
    position: fixed; top: 35px; width: 100%; padding: 15px 5%;
    display: flex; justify-content: space-between; align-items: center;
    background: var(--white); box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    z-index: 1000; transition: var(--transition);
}
.navbar.scrolled {
    top: 0; padding: 10px 5%; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px);
}
.logo { font-size: 28px; font-weight: 800; font-family: 'Playfair Display', serif; color: var(--dark-navy); }
.logo span { color: var(--primary); }
.call-btn-nav {
    background: var(--dark-navy); color: var(--white); padding: 10px 25px;
    border-radius: 5px; font-weight: 600; transition: var(--transition);
}
.call-btn-nav:hover { background: var(--navy-light); }
.call-btn-nav i { color: var(--primary); margin-right: 8px; }

/* --- HERO SECTION --- */
.hero {
    position: relative; height: 100vh;
    background: url('hero.png') center/cover no-repeat;
    display: flex; align-items: center; padding: 0 5%;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(11,19,43,0.95) 0%, rgba(11,19,43,0.7) 50%, rgba(11,19,43,0.3) 100%);
}
.hero-content {
    position: relative; z-index: 1; max-width: 700px; color: var(--white); margin-top: 50px;
}
.badge {
    display: inline-block; background: rgba(255, 179, 0, 0.2); color: var(--primary);
    padding: 6px 15px; border-radius: 30px; font-size: 0.9rem; font-weight: 500;
    border: 1px solid var(--primary); margin-bottom: 20px;
}
.hero h1 { font-size: 4rem; color: var(--white); line-height: 1.1; margin-bottom: 25px; }
.hero h1 span { color: var(--primary); }

/* Daktilo Efekti İçin Cursor */
.typing-text::after {
    content: '|';
    animation: blink 1s infinite step-start;
}
@keyframes blink { 50% { opacity: 0; } }

.hero p { font-size: 1.1rem; font-weight: 300; margin-bottom: 40px; color: #E0E0E0; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.btn {
    padding: 15px 35px; font-weight: 600; border-radius: 5px;
    transition: var(--transition); display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.btn-primary { background: var(--primary); color: var(--dark-navy); }
.btn-primary:hover { background: var(--white); }
.btn-whatsapp { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-whatsapp:hover { background: #25d366; border-color: #25d366; }

/* --- YOL VE TAKSİ ANİMASYONU --- */
.animated-road {
    position: relative; height: 60px; background: #222; overflow: hidden; border-bottom: 3px solid var(--primary);
}
.road-line {
    position: absolute; top: 50%; left: 0; width: 200%; height: 4px;
    border-top: 4px dashed rgba(255,255,255,0.4); transform: translateY(-50%);
    animation: moveRoad 2s linear infinite;
}
.moving-car {
    position: absolute; top: 5px; left: -100px; font-size: 45px; color: var(--primary);
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.5));
    animation: driveCar 8s linear infinite;
}
@keyframes driveCar {
    0% { left: -100px; }
    100% { left: 100vw; }
}
@keyframes moveRoad {
    0% { transform: translateX(0) translateY(-50%); }
    100% { transform: translateX(-50px) translateY(-50%); }
}

/* --- ÖZELLİKLER (FEATURES) --- */
.features { padding: 50px 5%; background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.feature-box {
    background: var(--white); padding: 40px 30px; border-radius: 10px; box-shadow: var(--shadow);
    text-align: center; border-bottom: 3px solid var(--primary); transition: var(--transition);
}
.feature-box:hover { transform: translateY(-10px); }
.icon-wrapper {
    width: 70px; height: 70px; background: rgba(255, 179, 0, 0.1); color: var(--primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 30px; margin: 0 auto 20px;
}
.feature-box h3 { margin-bottom: 15px; font-size: 1.4rem; }
.feature-box p { color: var(--text-light); font-size: 0.95rem; }

/* --- NASIL ÇALIŞIR (ADIMLAR) --- */
.how-it-works { padding: 100px 5%; background: var(--bg-gray); text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; max-width: 1000px; margin: 0 auto; }
.step-card { position: relative; padding: 30px; }
.step-number {
    position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
    width: 50px; height: 50px; background: var(--primary); color: var(--dark-navy);
    font-size: 1.5rem; font-weight: bold; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; border: 5px solid var(--bg-gray);
}
.step-icon { font-size: 50px; color: var(--dark-navy); margin: 30px 0 20px; }
.step-card h3 { margin-bottom: 10px; }
.step-card p { color: var(--text-light); }

/* --- İSTATİSTİKLER SAYAÇ ALANI --- */
.stats { background: var(--dark-navy); color: var(--white); padding: 60px 5%; position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; text-align: center; }
.stat-item i { font-size: 40px; color: var(--primary); margin-bottom: 15px; }
.stat-item h3 { font-size: 3rem; color: var(--white); margin-bottom: 5px; font-family: 'Poppins', sans-serif; }
.stat-item p { color: #aaa; font-size: 1.1rem; font-weight: 500; }

/* --- HİZMETLER --- */
.services { padding: 100px 5%; background: var(--white); }
.section-title { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-title p { color: var(--text-light); }
.service-split { display: flex; align-items: center; gap: 50px; max-width: 1200px; margin: 0 auto 80px; }
.service-split.reverse { flex-direction: row-reverse; }
.service-img { flex: 1; }
.service-img img { width: 100%; border-radius: 10px; box-shadow: var(--shadow); transition: transform 0.3s; }
.service-split:hover .service-img img { transform: scale(1.02); }
.service-text { flex: 1; }
.service-text h3 { font-size: 2rem; margin-bottom: 20px; }
.service-text p { color: var(--text-light); margin-bottom: 20px; }
.service-text ul { list-style: none; }
.service-text ul li { margin-bottom: 10px; color: var(--dark-navy); font-weight: 500; }
.service-text ul li i { color: var(--primary); margin-right: 10px; }

/* --- CTA BANNER (AKSİYON ALANI) --- */
.cta-banner {
    background: linear-gradient(rgba(11,19,43,0.8), rgba(11,19,43,0.9)), url('hero.jpg') center/cover;
    background-attachment: fixed; /* Parallax effect */
    padding: 100px 5%; text-align: center; color: var(--white);
}
.cta-content { max-width: 800px; margin: 0 auto; }
.cta-content h2 { color: var(--primary); font-size: 2.8rem; margin-bottom: 20px; }
.cta-content p { font-size: 1.2rem; margin-bottom: 40px; }
.btn-large { font-size: 1.3rem; padding: 20px 40px; display: inline-block; border-radius: 50px; }

/* Buton Nabız Animasyonu */
.pulse-anim { animation: pulseBig 2s infinite; }
@keyframes pulseBig {
    0% { box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 179, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 179, 0, 0); }
}

/* --- MÜŞTERİ YORUMLARI --- */
.testimonials { padding: 100px 5%; background: var(--bg-gray); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.review-card { background: var(--white); padding: 40px; border-radius: 10px; box-shadow: var(--shadow); }
.stars { color: var(--primary); margin-bottom: 20px; }
.review-card p { font-style: italic; color: var(--text-light); margin-bottom: 20px; }
.review-card h4 { color: var(--dark-navy); font-weight: 600; font-size: 1rem; }

/* --- SSS (FAQ) --- */
.faq-section { padding: 100px 5%; max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--white); margin-bottom: 15px; border-radius: 5px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); border: 1px solid #eee; }
.faq-question { width: 100%; text-align: left; padding: 20px 25px; background: none; border: none; font-size: 1.1rem; font-weight: 600; color: var(--dark-navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question i { color: var(--primary); transition: var(--transition); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 25px 20px; color: var(--text-light); }

/* --- SEO FOOTER ALANI --- */
.seo-footer-area { background-color: var(--dark-navy); padding: 40px 5%; border-top: 1px solid rgba(255,255,255,0.1); }
.seo-content { max-width: 1200px; margin: 0 auto; text-align: center; }
.seo-content h3 { color: var(--primary); font-family: 'Poppins', sans-serif; font-size: 1.2rem; margin-bottom: 15px; }
.seo-content p { color: #888; font-size: 0.85rem; line-height: 1.8; }

/* --- FOOTER --- */
footer { background: #050A17; color: #fff; padding: 60px 5% 30px; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; max-width: 1200px; margin: 0 auto 50px; }
.footer-info { max-width: 400px; }
.footer-logo { font-size: 2rem; font-family: 'Playfair Display', serif; margin-bottom: 20px; }
.footer-logo span { color: var(--primary); }
.footer-info p { color: #888; }
.footer-contact h3 { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; }
.footer-contact p { margin-bottom: 10px; color: #ccc; }
.footer-contact i { color: var(--primary); width: 20px; margin-right: 10px; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: #666; font-size: 0.9rem; }

/* --- YÜZEN BUTONLAR --- */
.float-btn { position: fixed; bottom: 30px; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--white); box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 1000; transition: var(--transition); }
.float-whatsapp { left: 30px; background: #25d366; }
.float-phone { right: 30px; background: var(--dark-navy); color: var(--primary); border: 2px solid var(--primary); }
.float-btn:hover { transform: scale(1.1); }

/* --- JS ANIMATIONS SINIFLARI --- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUpAnim 1s forwards; }
.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.4s; }
.fade-up:nth-child(3) { animation-delay: 0.6s; }
.fade-up:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeUpAnim {
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .top-bar { display: none; }
    .navbar { top: 0; }
    .hero h1 { font-size: 2.5rem; }
    .service-split, .service-split.reverse { flex-direction: column; }
    .hero-buttons { flex-direction: column; }
    .cta-content h2 { font-size: 2rem; }
    footer { padding-bottom: 100px; }
}