/* ===================================================
    MODA 35 Nakliyat - Modernizasyon CSS
    Mevcut tema yapısını bozmadan üzerine yazılan stiller
==================================================== */

/* === Renk Değişkenleri === */
:root {
    --brand-accent: #f5b800;
    --brand-accent-light: #ffd54f;
    --brand-accent-dark: #c49000;
    --brand-dark: #1a1a1a;
    --brand-dark-2: #2d2d2d;
    --brand-gray: #4a4a4a;
    --brand-light-gray: #f8f9fa;
    --brand-white: #ffffff;
    --brand-green: #25D366;
    --brand-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --brand-shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --brand-radius: 8px;
    --brand-radius-lg: 12px;
    --taxi-yellow: #f5b800;
    --taxi-yellow-light: #ffd54f;
    --taxi-yellow-dark: #c49000;
    --taxi-dark: #1a1a1a;
    --taxi-dark-2: #2d2d2d;
    --taxi-gray: #4a4a4a;
    --taxi-light-gray: #f8f9fa;
    --taxi-white: #ffffff;
    --taxi-green: #25D366;
    --taxi-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --taxi-shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --taxi-radius: 8px;
    --taxi-radius-lg: 12px;
}

/* === Genel İyileştirmeler === */
body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #444;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--taxi-dark);
    font-weight: 700;
}

p {
    color: #555;
    line-height: 1.75;
}

a {
    transition: all 0.3s ease;
}

/* === Top Header Modernizasyonu === */
.top-header {
    background-color: var(--taxi-dark);
    border-bottom: none;
    padding: 0;
}

.top-left p {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.header-social-share li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header-social-share li a:hover {
    color: var(--taxi-yellow);
    background: rgba(245,184,0,0.1);
}

/* === Mid Header Modernizasyonu === */
.mid-header-wrap {
    padding: 18px 0;
}

.mid-header-wrap .site-logo {
    max-width: 180px;
}

.header-info li .header-info-icon {
    font-size: 36px;
    color: var(--taxi-yellow);
    background: rgba(245,184,0,0.08);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.header-info li .header-info-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--taxi-dark);
}

.header-info li .header-info-text h3 span {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.header-info li .header-info-text h3 a {
    color: var(--taxi-dark);
}

.header-info li .header-info-text h3 a:hover {
    color: var(--taxi-yellow);
}

/* === Navigasyon Modernizasyonu === */
@media (min-width: 993px) {
    .nav-menu-inner:before {
        background: linear-gradient(135deg, var(--taxi-yellow) 0%, var(--taxi-yellow-dark) 100%);
        border-radius: 0;
    }

    .nav-menu-inner {
        height: 56px;
    }

    .header-menu-wrap ul li > a {
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0;
        text-transform: none;
    }

    .header-menu-wrap ul li > a:before {
        background-color: var(--taxi-white);
        height: 2px;
        bottom: -4px;
    }

    .menu-right-item .menu-btn {
        background-color: var(--taxi-dark);
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 0.3px;
        padding: 0 28px;
        border-radius: 0;
        transition: all 0.3s ease;
    }

    .menu-right-item .menu-btn:hover {
        background-color: var(--taxi-dark-2);
    }

    .header-menu-wrap li ul {
        border-radius: var(--taxi-radius);
        border: none;
        box-shadow: var(--taxi-shadow-lg);
        overflow: hidden;
    }

    .header-menu-wrap li li {
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.2s ease;
    }

    .header-menu-wrap li li:hover {
        background-color: #fafafa;
    }

    .header-menu-wrap li li > a:hover {
        color: var(--taxi-yellow-dark);
    }
}

/* === Slider / Hero Modernizasyonu === */
.slider-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.slider-content-wrap {
    height: 620px;
    z-index: 2;
    position: relative;
}

.slider-caption.medium {
    font-size: 16px;
    font-weight: 600;
    color: var(--taxi-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.slider-caption.big {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    margin-bottom: 18px;
}

.slider-caption.small {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    max-width: 550px;
    margin-bottom: 25px;
}

.slider-btn .default-btn {
    background-color: var(--taxi-yellow);
    color: var(--taxi-dark) !important;
    font-weight: 700;
    font-size: 16px;
    padding: 0 36px;
    height: 52px;
    border-radius: var(--taxi-radius);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(245,184,0,0.4);
    transition: all 0.3s ease;
}

.slider-btn .default-btn:hover {
    background-color: var(--taxi-yellow-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245,184,0,0.5);
}

/* Hero CTA Butonları */
.hero-cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.hero-cta-buttons .btn-call {
    background-color: var(--taxi-yellow);
    color: var(--taxi-dark);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--taxi-radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(245,184,0,0.4);
    transition: all 0.3s ease;
}

.hero-cta-buttons .btn-call:hover {
    background-color: var(--taxi-yellow-light);
    transform: translateY(-2px);
}

.hero-cta-buttons .btn-call i {
    font-size: 20px;
}

.hero-cta-buttons .btn-whatsapp {
    background-color: var(--taxi-green);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--taxi-radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
}

.hero-cta-buttons .btn-whatsapp:hover {
    background-color: #20bd5a;
    transform: translateY(-2px);
}

.hero-cta-buttons .btn-whatsapp i {
    font-size: 20px;
}

/* Slider Controls */
.slider-controls {
    border-radius: 0 var(--taxi-radius) 0 0;
    box-shadow: var(--taxi-shadow);
}

.slider-pagination .swiper-pagination-current {
    color: var(--taxi-yellow);
}

.slider-control:hover {
    color: var(--taxi-yellow);
}

/* === Hakkımızda Bölümü === */
.about-section {
    padding: 80px 0;
}

.about-section .section-heading h4 {
    color: var(--taxi-yellow-dark);
    font-weight: 600;
}

.about-section .section-heading h2 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-section .section-heading p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.about-img:before {
    background-color: var(--taxi-yellow);
    border-radius: var(--taxi-radius);
}

.about-info li h2 a {
    color: #1a1a1a !important;
    font-size: 24px;
    font-weight: 800;
}

.about-info li h2 a[href^="tel:"] {
    color: #1a1a1a !important;
    background: var(--taxi-yellow);
    padding: 8px 20px;
    border-radius: 8px;
    display: inline-block;
    font-size: 22px;
}

.about-info li h2 a[href*="wa.me"] {
    color: #fff !important;
    background: #25D366;
    padding: 8px 20px;
    border-radius: 8px;
    display: inline-block;
    font-size: 18px;
}

.about-info li h2 a[href*="wa.me"]:hover {
    background: #1da851;
    color: #fff !important;
}

.about-info li h2 span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    font-weight: 600;
    margin-bottom: 8px;
}

/* === Hizmetler Bölümü === */
.service-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.service-section .section-heading h2.white {
    color: #fff;
    font-size: 36px;
}

.service-item {
    border-radius: var(--taxi-radius-lg);
    box-shadow: var(--taxi-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--taxi-shadow-lg);
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-content h3 a:hover {
    color: var(--taxi-yellow-dark);
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 18px;
}

.service-content .read-more {
    background-color: var(--taxi-yellow);
    border-radius: var(--taxi-radius);
    clip-path: none;
    font-size: 14px;
    font-weight: 600;
    padding: 0 20px;
    height: 36px;
    transition: all 0.3s ease;
}

.service-content .read-more:before {
    background-color: var(--taxi-dark);
    border-radius: var(--taxi-radius);
}

.service-shape {
    background-color: var(--taxi-yellow);
}

/* === Booking / Randevu Bölümü === */
.booking-section {
    background: linear-gradient(135deg, var(--taxi-dark) 0%, var(--taxi-dark-2) 100%);
}

.booking-wrap {
    padding: 40px;
}

.booking-wrap .section-heading h4 {
    color: var(--taxi-yellow);
}

/* Randevu CTA sarı arka plan düzeltmesi */
.booking-section + .cta-section .cta-call p a,
section.cta-section .cta-call p a {
    color: #000 !important;
}

.booking-wrap .section-heading h2.white {
    font-size: 30px;
    color: #fff;
}

.booking-form .form-field {
    margin-bottom: 5px;
}

.booking-form .form-field input,
.booking-form .form-field textarea {
    border-radius: var(--taxi-radius);
    border: 2px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    padding: 12px 15px 12px 45px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.booking-form .form-field input:focus,
.booking-form .form-field textarea:focus {
    border-color: var(--taxi-yellow);
    background: rgba(255,255,255,0.08);
}

.booking-form .form-field .default-btn {
    background-color: var(--taxi-yellow);
    color: var(--taxi-dark);
    font-weight: 700;
    border-radius: var(--taxi-radius);
    padding: 0 36px;
    height: 48px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.booking-form .form-field .default-btn:hover {
    background-color: var(--taxi-yellow-light);
}

/* === Yorumlar Bölümü === */
.testimonial-section {
    padding: 80px 0;
}

.testi-item {
    background: var(--taxi-white);
    border-radius: var(--taxi-radius-lg);
    padding: 30px;
    box-shadow: var(--taxi-shadow);
}

.testi-item .quote-icon {
    color: var(--taxi-yellow);
    font-size: 36px;
    margin-bottom: 15px;
}

.testi-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

.testi-author .author-info h3 {
    font-size: 18px;
    font-weight: 700;
}

.testi-author .author-info h3 span {
    font-size: 13px;
    color: #888;
}

.testi-author .author-thumb img {
    border-radius: 50%;
    border: 3px solid var(--taxi-yellow);
}

/* Feature Wrap (SSS Yanı) */
.feature-wrap {
    background: linear-gradient(135deg, var(--taxi-dark) 0%, var(--taxi-dark-2) 100%);
    border-radius: var(--taxi-radius-lg);
    padding: 40px;
}

.ridek-features li {
    background: rgba(255,255,255,0.05);
    border-radius: var(--taxi-radius);
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ridek-features li:hover {
    background: rgba(255,255,255,0.08);
}

.feature-icon {
    color: var(--taxi-yellow);
}

.feature-content h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.feature-content p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* === CTA Bölümü === */
.cta-section {
    background: linear-gradient(135deg, var(--taxi-yellow) 0%, var(--taxi-yellow-dark) 100%);
    padding: 60px 0;
}

.cta-content h2 {
    color: #000 !important;
    font-size: 36px;
    font-weight: 800;
}

.cta-content h2 span {
    color: #000 !important;
}

.cta-content p {
    color: #222 !important;
    opacity: 1;
    font-size: 17px;
    font-weight: 500;
}

.cta-call i {
    color: #1a1a1a !important;
    font-size: 44px;
    background: rgba(0,0,0,0.15) !important;
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    border-radius: 50%;
}

.cta-call p span {
    color: #1a1a1a !important;
    opacity: 1;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 4px;
}

.cta-call p a {
    color: #1a1a1a !important;
    font-weight: 900;
    font-size: 34px;
    letter-spacing: -0.5px;
    text-shadow: none;
    display: block;
}

/* CTA section özel override - sarı arka planda koyu yazı */
.cta-section .cta-call p a {
    color: #000 !important;
    font-weight: 900 !important;
    font-size: 36px !important;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.1) !important;
}

.cta-section .cta-call p span {
    color: #1a1a1a !important;
    font-weight: 800 !important;
    font-size: 16px !important;
}

.cta-section .cta-call i {
    color: #1a1a1a !important;
    font-size: 48px !important;
    background: rgba(0,0,0,0.12) !important;
}

/* === Blog Bölümü === */
.blog-section {
    padding: 80px 0;
}

.post-card {
    border-radius: var(--taxi-radius-lg);
    overflow: hidden;
    box-shadow: var(--taxi-shadow);
    transition: all 0.3s ease;
    background: #fff;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--taxi-shadow-lg);
}

.post-content h3 a:hover {
    color: var(--taxi-yellow-dark);
}

.post-content .read-more {
    color: var(--taxi-yellow-dark);
    font-weight: 600;
}

.post-content .read-more:hover {
    color: var(--taxi-dark);
}

.post-meta li {
    font-size: 13px;
    color: #888;
}

/* === Footer Modernizasyonu === */
.footer-top-wrap {
    background-color: var(--taxi-dark);
}

.footer-top-wrap.bg-grey {
    background-color: var(--taxi-dark) !important;
}

.footer-top .brand p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.7;
}

.footer-call i {
    color: #fff !important;
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-call p span {
    color: #fff !important;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-call p a {
    color: #fff !important;
    font-weight: 900;
    font-size: 32px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    letter-spacing: 1px;
    display: block;
}

.footer-mid-wrap {
    background-color: var(--taxi-dark-2);
    padding: 60px 0 80px;
}

.footer-item .widget-title h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-item .widget-title h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--taxi-yellow);
    border-radius: 2px;
}

.footer-contact li {
    color: rgba(255,255,255,0.85) !important;
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-contact li a {
    color: rgba(255,255,255,0.85) !important;
}

.footer-contact li a:hover {
    color: var(--taxi-yellow) !important;
}

.footer-contact li span {
    color: var(--taxi-yellow) !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 3px;
    font-weight: 600;
}

.footer-links li a {
    color: rgba(255,255,255,0.8) !important;
    font-size: 15px;
    padding: 5px 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--taxi-yellow);
    padding-left: 5px;
}

.copyright-wrap {
    background-color: #111;
    padding: 18px 0;
}

.copyright-wrap p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin: 0;
    text-align: center;
}

/* === Section Heading İyileştirmeleri === */
.section-heading h4 {
    color: var(--taxi-yellow-dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-heading h4 span {
    background-color: var(--taxi-yellow);
    width: 30px;
    height: 3px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 2px;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

/* === Default Button === */
.default-btn {
    background-color: var(--taxi-yellow);
    color: var(--taxi-dark);
    font-weight: 700;
    border-radius: var(--taxi-radius);
    font-size: 15px;
    height: 48px;
    padding: 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.default-btn:hover {
    background-color: var(--taxi-yellow-light);
    color: var(--taxi-dark);
    transform: translateY(-2px);
}

/* === Scroll to Top === */
#scrollup .scroll-to-top {
    background-color: var(--taxi-yellow);
    color: var(--taxi-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(245,184,0,0.4);
    transition: all 0.3s ease;
    border: none;
}

#scrollup .scroll-to-top:hover {
    background-color: var(--taxi-yellow-light);
    transform: translateY(-3px);
}

/* === Mobil Sabit Butonlar === */
.mobile-fixed-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--taxi-dark);
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.mobile-fixed-buttons .fixed-btn-wrap {
    display: flex;
    width: 100%;
}

.mobile-fixed-buttons .fixed-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-fixed-buttons .fixed-btn-call {
    background-color: var(--taxi-yellow);
    color: var(--taxi-dark);
}

.mobile-fixed-buttons .fixed-btn-call:hover {
    background-color: var(--taxi-yellow-light);
}

.mobile-fixed-buttons .fixed-btn-whatsapp {
    background-color: var(--taxi-green);
    color: #fff;
}

.mobile-fixed-buttons .fixed-btn-whatsapp:hover {
    background-color: #20bd5a;
}

.mobile-fixed-buttons .fixed-btn i {
    font-size: 20px;
}

@media (max-width: 992px) {
    .mobile-fixed-buttons {
        display: block;
    }

    /* Footer'a alt boşluk ekle ki sabit butonlar footer'ı kapatmasın */
    .footer-section {
        padding-bottom: 65px;
    }

    /* Scroll to top butonu sabit butonların üstünde kalsın */
    #scrollup {
        bottom: 80px !important;
    }
}

/* === WhatsApp Floating Button (Desktop) === */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9997;
    width: 60px;
    height: 60px;
    background-color: var(--taxi-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-float i {
    color: #fff;
    font-size: 32px;
}

/* WhatsApp tooltip */
.whatsapp-float::before {
    content: 'WhatsApp ile Yazın';
    position: absolute;
    right: 70px;
    background: var(--taxi-dark);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--taxi-radius);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover::before {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    .whatsapp-float {
        display: none;
    }
}

/* === Page Header / Breadcrumb İyileştirme === */
.page-header {
    background: linear-gradient(135deg, var(--taxi-dark) 0%, var(--taxi-dark-2) 100%);
    padding: 60px 0;
}

.page-header h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
}

.page-header .breadcrumb li a {
    color: var(--taxi-yellow);
}

/* === İletişim Sayfası === */
.contact-section .contact-title h2 {
    font-size: 28px;
    font-weight: 700;
}

.contact-details li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
}

.contact-details li i {
    color: var(--taxi-yellow);
    font-size: 20px;
    margin-right: 12px;
}

.contact-form .form-control {
    border-radius: var(--taxi-radius);
    border: 2px solid #eee;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--taxi-yellow);
    box-shadow: 0 0 0 3px rgba(245,184,0,0.1);
}

/* === Preloader === */
.car-detail {
    background: var(--taxi-yellow);
}

.car-detail.spoiler {
    border-bottom-color: var(--taxi-yellow);
    border-left-color: var(--taxi-yellow);
}

.car-detail.center {
    border-color: var(--taxi-yellow);
}

/* === Scrollbar === */
::-webkit-scrollbar-thumb {
    background: var(--taxi-yellow);
    border-radius: 4px;
}

::selection {
    background-color: var(--taxi-yellow);
    color: var(--taxi-dark);
}

/* === Genel Responsive İyileştirmeler === */
@media (max-width: 992px) {
    .slider-caption.big {
        font-size: 36px;
        line-height: 1.2;
    }

    .slider-caption.medium {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .slider-caption.small {
        font-size: 14px;
    }

    .slider-content-wrap {
        height: 520px;
    }

    .car-holder {
        display: none !important;
    }

    .section-heading h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta-buttons .btn-call,
    .hero-cta-buttons .btn-whatsapp {
        justify-content: center;
        padding: 12px 24px;
        font-size: 15px;
    }

    .feature-wrap {
        margin-left: 0;
        margin-top: 40px;
        padding: 30px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .footer-call p a {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .slider-caption.big {
        font-size: 26px;
        line-height: 1.25;
    }

    .slider-content-wrap {
        height: 480px;
    }

    .hero-cta-buttons {
        flex-direction: row !important;
        gap: 8px !important;
    }

    .hero-cta-buttons .btn-call,
    .hero-cta-buttons .btn-whatsapp {
        padding: 10px 16px;
        font-size: 13px;
    }

    .trust-badges {
        gap: 10px;
    }

    .trust-badge {
        font-size: 11px;
    }

    .trust-badge i {
        font-size: 13px;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .about-section,
    .service-section,
    .testimonial-section,
    .blog-section {
        padding: 60px 0;
    }

    .booking-wrap {
        padding: 25px;
    }

    .cta-content h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .footer-item .widget-title h3 {
        font-size: 16px;
    }
}

/* === Animasyon İyileştirmeleri === */
.service-item,
.post-card,
.testi-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* === Güven Rozeti Stili (Hero İçin) === */
.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
}

.trust-badge i {
    color: var(--taxi-yellow);
    font-size: 18px;
}

/* === SSS Sayfası === */
.faq-section .accordion-item {
    border-radius: var(--taxi-radius);
    margin-bottom: 10px;
    border: 1px solid #eee;
    overflow: hidden;
}

/* === Running Fleet Animasyonu Footer === */
.running-fleet {
    opacity: 0.3;
}

/* === Ek Mobil İyileştirmeler === */
@media (max-width: 992px) {
    /* Mobil menü iyileştirmeleri */
    .mobile-menu .nav-menu li a {
        font-size: 16px;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    /* Header info gizle mobilde */
    .mid-header .header-info {
        display: none;
    }

    /* Top header daha kompakt */
    .top-header .top-left p {
        font-size: 12px;
    }

    /* Slider buton alanı */
    .slider-btn .default-btn {
        padding: 0 24px;
        height: 44px;
        font-size: 14px;
    }

    /* Trust badges mobilde daha küçük */
    .trust-badges {
        gap: 12px;
    }

    .trust-badge {
        font-size: 12px;
    }

    .trust-badge i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlar */
    .slider-caption.big {
        font-size: 24px;
        line-height: 1.3;
    }

    .slider-content-wrap {
        height: 420px;
    }

    .hero-cta-buttons .btn-call,
    .hero-cta-buttons .btn-whatsapp {
        padding: 10px 20px;
        font-size: 14px;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .mobile-fixed-buttons .fixed-btn {
        padding: 12px 0;
        font-size: 14px;
    }

    .mobile-fixed-buttons .fixed-btn i {
        font-size: 18px;
    }

    .booking-wrap {
        padding: 20px 15px;
    }

    .booking-wrap .section-heading h2.white {
        font-size: 20px;
    }

    .cta-content h2 {
        font-size: 20px;
    }

    .footer-call p a {
        font-size: 18px;
    }

    .footer-mid-wrap {
        padding: 40px 0 70px;
    }
}

/* === Google Fonts Import === */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* === Smooth Scroll === */
html {
    scroll-behavior: smooth;
}

/* === Pulse animasyonu WhatsApp butonu için === */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

/* === Mobil sabit butonlar için pulse === */
@keyframes call-pulse {
    0% {
        box-shadow: inset 0 0 0 0 rgba(245, 184, 0, 0.3);
    }
    50% {
        box-shadow: inset 0 0 20px 0 rgba(245, 184, 0, 0.1);
    }
    100% {
        box-shadow: inset 0 0 0 0 rgba(245, 184, 0, 0.3);
    }
}

/* === Breadcrumb/Page Header düzeltmeleri === */
.page-header-wrap {
    background: linear-gradient(135deg, var(--taxi-dark) 0%, var(--taxi-dark-2) 100%);
}

.page-header-wrap .page-header h2 {
    color: #fff;
    font-weight: 800;
}

.breadcrumb li a {
    color: var(--taxi-yellow) !important;
}

.breadcrumb li.active {
    color: rgba(255,255,255,0.7);
}

/* === Hizmet detay sayfası === */
.service-details-section {
    padding: 80px 0;
}

.service-details-section .section-heading h2 {
    font-size: 30px;
}

/* === Galeri sayfası === */
.gallery-section .gallery-item {
    border-radius: var(--taxi-radius);
    overflow: hidden;
}

/* === Blog detay sayfası === */
.blog-details-section {
    padding: 80px 0;
}

.blog-details-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* === Ekip sayfası === */
.team-section {
    padding: 80px 0;
}

.team-item {
    border-radius: var(--taxi-radius-lg);
    overflow: hidden;
    box-shadow: var(--taxi-shadow);
    transition: all 0.3s ease;
}

.team-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--taxi-shadow-lg);
}

/* === Form düzeltmeleri === */
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.contact-form-group .form-field input::placeholder,
.contact-form-group .form-field textarea::placeholder {
    color: #999;
}

/* === Loading/Preloader düzeltmesi === */
.preloader {
    background: var(--taxi-dark);
}
