:root {
        /* MODERN AÇIK TEMA RENK PALETİ */
        --bg-body: #f8fafc;           /* Ana Arka Plan */
        --bg-card: #ffffff;           /* Kart Arka Planı */
        --primary-red: #ef233c;       /* Aksiyon Butonları */
        --primary-dark: #1e293b;      /* Başlıklar ve Ana Metin */
        --text-gray: #64748b;         /* Alt Metinler */
        --success-green: #2ecc71;     /* Başarı Durumları */
        --accent-orange: #f39c12;     /* Vurgu ve İkonlar */
        --border-color: #e2e8f0;      /* İnce Kenarlıklar */
        --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
        --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
    }

    /* GENEL YAPI */
    body {
        font-family: 'Poppins', sans-serif;
        background-color: var(--bg-body);
        color: var(--primary-dark);
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
        width: 90%;
        text-align: center;
        padding: 40px 0;
    }

    /* ARAÇ ÖNİZLEME (Üst Kısım) */
    #selected-vehicle-preview {
        display: none;
        margin-bottom: 25px;
        animation: fadeIn 0.5s;
    }
    #selected-vehicle-preview img {
        height: 120px;
        object-fit: contain;
        filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    }

    /* ADIMLAR VE GEÇİŞLER */
    .step { display: none; animation: fadeIn 0.5s ease forwards; }
    .step.active { display: block; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

    /* PROGRESS BAR */
    .progress-container { margin-bottom: 40px; }
    .progress-container h2 { font-size: 1.5rem; color: var(--primary-dark); }
    .progress-bar { height: 8px; width: 200px; background: #e2e8f0; margin: 20px auto; border-radius: 10px; overflow: hidden; }
    .progress-fill { height: 100%; width: 15%; background: var(--primary-red); transition: 0.5s; }

    /* ARAÇ SEÇİM KARTLARI (Step 1) */
    .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 20px; }
    .card {
        background: var(--bg-card);
        padding: 30px 20px;
        border-radius: 24px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: var(--shadow-sm);
    }
    .card:hover {
        border-color: var(--primary-red);
        transform: translateY(-8px);
        box-shadow: var(--shadow-md);
    }
    .card h3 { margin-top: 15px; font-size: 1.1rem; color: var(--primary-dark); }
    .vehicle-img { width: 100%; height: 130px; object-fit: contain; filter: drop-shadow(0 5px 10px rgba(0,0,0,0.05)); }

    /* FORM ELEMANLARI (Input, Select) */
    select, input[type="text"] {
        width: 100%; max-width: 380px; padding: 18px; border-radius: 16px;
        background: white; color: var(--primary-dark); border: 2px solid var(--border-color);
        font-size: 1rem; outline: none; text-align: center; margin-bottom: 15px;
        transition: 0.3s;
    }
    select:focus, input[type="text"]:focus { border-color: var(--primary-red); box-shadow: 0 0 0 4px rgba(239, 35, 60, 0.1); }

    .input-group-custom {
        display: flex; justify-content: center; align-items: center;
        max-width: 450px; margin: 0 auto 20px; background: white;
        border-radius: 16px; border: 2px solid var(--border-color); overflow: hidden;
    }
    .prefix {
        background: #f1f5f9; padding: 18px; color: var(--text-gray);
        font-size: 0.85rem; border-right: 2px solid var(--border-color); white-space: nowrap;
    }
    .suffix-input {
        background: transparent !important; border: none !important; margin-bottom: 0 !important;
        text-align: left !important; padding: 15px !important; width: 100px !important;
        letter-spacing: 2px; font-weight: bold; color: var(--primary-red) !important;
    }

    /* BUTONLAR */
    .btn-next {
        background: var(--primary-red); color: white; border: none; padding: 16px 45px;
        border-radius: 50px; font-weight: 700; cursor: pointer; transition: 0.3s;
        box-shadow: 0 4px 15px rgba(239, 35, 60, 0.25);
    }
    .btn-next:hover { transform: scale(1.03); background: #d90429; box-shadow: 0 6px 20px rgba(239, 35, 60, 0.35); }
    .back-btn { background: none; border: none; color: var(--text-gray); cursor: pointer; margin-top: 20px; font-weight: 500; }
    .back-btn:hover { color: var(--primary-dark); text-decoration: underline; }

    /* YARDIMCI GÖRSELLER */
    .help-img { width: 100%; max-width: 450px; border-radius: 16px; margin: 20px auto; border: 2px dashed #cbd5e1; display: block; }

    /* AVANTAJLAR BÖLÜMÜ */
    .advantages-section { max-width: 1000px; margin: 80px auto; padding: 50px 40px; background: white; border-radius: 32px; box-shadow: var(--shadow-sm); border-bottom: 6px solid var(--accent-orange); }
    .advantages-header h2 { color: var(--primary-dark); font-weight: 800; }
    .advantages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .advantage-item { background: #f8fafc; padding: 20px; border-radius: 16px; display: flex; align-items: center; gap: 15px; border: 1px solid var(--border-color); transition: 0.3s; }
    .advantage-item:hover { transform: translateX(10px); border-color: var(--accent-orange); background: white; box-shadow: var(--shadow-sm); }
    .advantage-item i { color: var(--success-green); font-size: 1.3rem; }
    .advantage-item span { color: var(--primary-dark); font-weight: 600; }

    /* SÜREÇ BÖLÜMÜ */
    .process-section { max-width: 1200px; margin: 80px auto; padding: 0 20px; }
    .process-header h2 { color: var(--accent-orange); font-weight: 800; font-size: 2rem; }
    .process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
    .process-card { background: white; padding: 40px 20px; border-radius: 24px; text-align: center; position: relative; border: 1px solid var(--border-color); transition: 0.4s; box-shadow: var(--shadow-sm); }
    .process-card:hover { transform: translateY(-10px); border-color: var(--accent-orange); box-shadow: var(--shadow-md); }
    .step-number { position: absolute; top: 15px; right: 20px; font-weight: 800; font-size: 1.2rem; color: #e2e8f0; }
    .icon-box { width: 70px; height: 70px; background: #f1f5f9; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: 0.4s; }
    .icon-box i { font-size: 1.8rem; color: var(--primary-red); }
    .process-card:hover .icon-box { background: var(--accent-orange); }
    .process-card:hover .icon-box i { color: white; }
    .process-card h3 { color: var(--primary-dark); font-size: 1rem; font-weight: 700; }
    .process-card p { color: var(--text-gray); font-size: 0.85rem; }

    /* SSS (SSS) BÖLÜMÜ */
    .faq-container { max-width: 1000px; width: 90%; margin: 80px auto; display: flex; gap: 50px; align-items: flex-start; text-align: left; }
    .faq-sidebar h1 { font-size: 2.2rem; font-weight: 800; color: var(--primary-dark); }
    .btn-all { display: inline-block; background-color: #2ecc71; color: white; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2); }
    .accordion-item { background-color: white; border-radius: 16px; margin-bottom: 15px; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); overflow: hidden; }
    .accordion-header { width: 100%; padding: 22px; background: none; border: none; color: var(--primary-dark); font-family: 'Poppins'; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
    .accordion-item.active { border-color: #2ecc71; background-color: #f0fff4; }
    .accordion-body { max-height: 0; overflow: hidden; transition: 0.3s; padding: 0 22px; color: var(--text-gray); font-size: 0.95rem; }
    .accordion-item.active .accordion-body { max-height: 200px; padding: 0 22px 22px 22px; }

    /* FOOTER */
    .main-footer { background-color: #1e293b; color: #ffffff; padding: 70px 0 30px 0; margin-top: 100px; width: 100%; text-align: left; }
    .footer-container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }
    .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
    .footer-section h3 { color: var(--accent-orange); margin-bottom: 25px; font-size: 1.2rem; }
    .footer-brand span { color: var(--accent-orange); }
    .footer-section p, .footer-section ul li a { color: #cbd5e1; font-size: 0.9rem; text-decoration: none; transition: 0.3s; }
    .footer-section ul li a:hover { color: white; padding-left: 5px; }
    .social-links { display: flex; gap: 15px; margin-top: 25px; }
    .social-links a { width: 40px; height: 40px; background: #334155; color: white; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; }
    .social-links a:hover { background: var(--accent-orange); transform: translateY(-3px); }
    .footer-bottom { border-top: 1px solid #334155; margin-top: 50px; padding-top: 25px; text-align: center; color: #94a3b8; font-size: 0.85rem; }

    /* LOADER & SUCCESS */
    .loader { border: 5px solid #f1f5f9; border-top: 5px solid var(--primary-red); border-radius: 50%; width: 50px; height: 50px; animation: spin 1s linear infinite; margin: 30px auto; }
    @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
    .success-box { background: white; padding: 50px; border-radius: 32px; border-bottom: 8px solid var(--success-green); box-shadow: var(--shadow-md); }
    .btn-wp { background: #25d366; color: white; padding: 18px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; margin-top: 25px; transition: 0.3s; }
    .btn-wp:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
        .process-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
        .grid { grid-template-columns: 1fr; }
        .advantages-grid { grid-template-columns: 1fr; }
        .process-grid { grid-template-columns: 1fr; }
        .faq-container { flex-direction: column; text-align: center; }
        .faq-sidebar { margin-bottom: 30px; }
        .accordion-header { font-size: 0.9rem; }
        .footer-content { grid-template-columns: 1fr; text-align: center; }
        .social-links { justify-content: center; }
    }
	/* GOOGLE YORUMLARI KAYAN BAND */
.reviews-section {
    width: 100%;
    padding: 60px 0;
    background-color: #f8fafc;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-header h2 {
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.google-rating .stars {
    color: #f39c12;
    font-size: 1.2rem;
}

.reviews-slider {
    display: flex;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite; /* Kayma hızı burada (40s) */
    width: max-content;
}

/* Kartın üzerine gelince durması için */
.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    background: white;
    width: 350px;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    flex-shrink: 0;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.review-user h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.review-user .date {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.review-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 15px;
    height: 60px; /* Metin kutusu yüksekliği sabitlendi */
    overflow: hidden;
}

.review-stars {
    color: #f39c12;
    font-size: 0.9rem;
}

/* KAYMA ANİMASYONU */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-380px * 4)); } /* Kart genişliği + Gap x Kart Sayısı */
}

@media (max-width: 768px) {
    .review-card { width: 280px; }
    @keyframes scroll {
        100% { transform: translateX(calc(-310px * 4)); }
    }
}

/* FULL WIDTH SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh; /* Ekranın %80'ini kaplar */
    overflow: hidden;
    margin-bottom: 40px;
}

.slider-container {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(30px);
    transition: 0.8s all ease;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.slide-content .highlight {
    color: var(--accent-orange);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slide-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-dark);
}

/* OK BUTONLARI */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 20px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 0 5px 5px 0;
    transition: 0.3s;
}

.slider-btn:hover { background: rgba(255,255,255,0.4); }
.slider-btn.next { right: 0; border-radius: 5px 0 0 5px; }

@media (max-width: 768px) {
    .hero-slider { height: 60vh; }
    .slide-content h1 { font-size: 2rem; }
    .slide-content p { font-size: 1rem; }
    .slide-btns { flex-direction: column; }
}

/* NAVIGASYON MENÜSÜ */
.main-nav {
    position: absolute; /* Slider üzerinde yüzmesi için */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sayfa kaydırıldığında eklenecek sınıf (JS ile) */
.main-nav.sticky {
    position: fixed;
    background: white;
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-bottom: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.logo a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
}

.main-nav.sticky .logo a { color: var(--primary-dark); }

.logo i { color: var(--accent-orange); font-size: 1.8rem; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.main-nav.sticky .nav-menu a { color: var(--primary-dark); }
.nav-menu a:hover { color: var(--accent-orange); }

.nav-wp-btn {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.nav-wp-btn:hover { transform: scale(1.05); background: #1ebd5b; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.main-nav.sticky .mobile-menu-btn { color: var(--primary-dark); }

/* SLIDER AYARI: Menü üzerine bindiği için biraz padding ekleyelim */
.hero-slider {
    margin-top: 0; /* Menü üzerinde yüzdüğü için sıfırladık */
}

@media (max-width: 768px) {
    .nav-menu { display: none; } /* Mobil için basit tutuyoruz */
    .mobile-menu-btn { display: block; }
    .logo span { font-size: 1rem; }
}