/* ===============================
   BANNER
=============================== */

.home-banner {
    position: relative;
    height: 720px;
    overflow: hidden;
    background: #000;
    padding-top: 80px;
    width:100%;
}

/* Slide */
.banner-item {
    position: relative;
    height: 100%;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
}

/* Gradient */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 38%, rgba(0,0,0,0) 70% );
}

/* İçerik alanı */
.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 75px 90px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 760px;
}

/* Metin blokları */
.banner-title {
    font-size: 50px;
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    white-space: nowrap;
}

/*.banner-title span {
    white-space: nowrap;  
}*/

.banner-subtitle {
    font-size: 26px;
    color: #d1d1d1;
    margin-top: 10px;
}

.banner-desc {
    font-size: 18px;
    color: #cfcfcf;
    margin: 26px 0 36px;
    max-width: 560px;
    line-height: 1.6;
}

/* CTA */
.btn-banner {
    display: inline-block;
    background: #00b3ff;
    padding: 14px 38px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: .3s;
    letter-spacing: .8px;
    color: #000 !important;
    margin-bottom:20px;
}
 

/* Alt sol specs */
 

.banner-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 420px;
}

.spec-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgb(255 255 255 / 10%);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    padding: 16px 18px;
    border-radius: 16px;
    color: #fff;
}

/* Sol ikon */
.spec-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

/* Sağ metin */
.spec-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

    .spec-text span {
        font-size: 15px;
        opacity: .7;
        margin-bottom: 2px;
    }

    .spec-text strong {
        font-size: 19px;
        font-weight: 500;
    }

/* Sağ üst aksiyonlar */
.banner-actions {
    position: absolute;
    top: 55px; /* header sonrası */
    right: 60px;
    z-index: 6;
    display: flex;
    flex-direction: column; /* KRİTİK */
    gap: 16px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    opacity: .9;
}

    .action-item i {
        width: 42px;
        height: 42px;
        background: rgba(255,255,255,.18);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .action-item:hover {
        color:#000 !important;
        opacity: 1;
    }
        .action-item:hover i {
            background: #00b3ff63;
        }

/* Slider navigasyon */
.banner-nav {
    position: absolute;
    bottom: 40px;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    color: #fff;
}

    .banner-nav.prev {
        right: 120px;
    }

    .banner-nav.next {
        right: 60px;
    }
    .banner-nav i{color:#000;}

    .swiper-button-lock {
        display: flex !important;
    }
.banner-swiper{height:100%;}


@media (max-width: 991px) {

    .home-banner {
        height: auto; 
        padding-top:0px !important;
    }

    .banner-item {
        background-size: contain;
        background-position: center top;
        padding-top: 220px; /* araç için alan */
    }

    .banner-static-promo {
        background-image: url('/Content/images/banner/banner-tasarim-mobil2.jpg') !important;
    } 
    .banner-static-promo2 {
        background-image: url('/Content/images/banner/showroom-mobil.jpg') !important;
    }

    .banner-overlay {
        /*background: linear-gradient( 180deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.75) 45%, rgba(0,0,0,.95) 100% );*/
        background:unset !important;
    }

    .banner-content {
        padding: 40px 24px 32px;
        max-width: 100%;
    }
    .banner-specs {
        max-width: 100%;
    }
}


@media (max-width: 576px) {

    .banner-title {
        font-size: 22px;
        line-height: 1.2;
    }

   

    .banner-subtitle {
        font-size: 18px;
        margin-top: 6px;
    }

    .banner-desc {
        font-size: 15px;
        margin: 18px 0 26px;
        line-height: 1.5;
    }

    .btn-banner {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        font-size: 15px;
    }

    .banner-specs {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 28px;
    }

    .spec-box {
        padding: 8px;
    }
    .spec-text span{font-size:12px !important;}

    .spec-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .spec-text strong {
        font-size: 14px;
    }

    .banner-actions {
        top: 12px;
        right: 12px;
        gap: 10px;
    }

    .action-item span {
        display: none; /* yazıyı gizle */
    }

    .action-item i {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .banner-nav {
        bottom: 16px;
        width: 40px;
        height: 40px;
    }   
    .banner-nav {
        top: 175px;
        width: 40px;
        height: 40px;
    }

        .banner-nav.prev {
            right: 72px;
        }

        .banner-nav.next {
            right: 24px;
        }
}


/* ===============================
   HOME MANIFESTO (GALLERIA STYLE)
=============================== */

.home-manifesto {
    background: #fff;
    padding: 90px 20px;
    text-align: center;
}

.manifesto-inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* Üst küçük yazı */
.manifesto-eyebrow {
    font-size: 13px;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 22px;
    text-transform: uppercase;
}

/* Ana slogan */
.manifesto-title {
    font-size:25px;
    letter-spacing: 7px;
    font-weight: 500;
    color: #000;
    margin-bottom: 50px;
}

/* Buton */
.manifesto-btn {
    display: inline-block;
    background: #000;
    color: #fff !important;
    padding: 16px 48px;
    font-size: 14px;
    text-decoration: none;
    transition: .3s;
}

    .manifesto-btn:hover {
        background: #222;
    }

#loading-welcome-text {
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 35px;
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 65%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    z-index: 99;
    margin: 0 auto;
    text-transform: none !important;
    font-family: "Mercedes" !important;
}

@media screen and (max-width:991px) {
    .manifesto-title {
            font-size: 16px !important;
            letter-spacing: 4px !important; 
        }
        .home-manifesto {
            padding: 85px 20px !important;
        }

    #loading-welcome-text {
        font-size: 25px !important;
        top: 63% !important;
    }
    }
/* =====================================================
   HAFTANIN ARACI – GALLERIA STYLE
===================================================== */

.weekly-section {
    background: #e8e8e8;
    padding: 60px 0;
    overflow: hidden;
}

.weekly-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
}

/* =====================================================
   SOL TARAF: BAŞLIK + ANA GÖRSEL
===================================================== */

.weekly-left {
    display: flex;
    flex-direction: column;
    padding: 30px;
    padding-right: 40px;
    min-width: 0;
}

/* Header */
.weekly-header {
    margin-bottom: 30px;
}

.weekly-title {
    font-size: 25px;
    letter-spacing: 7px;
    font-weight: 500;
    color: #000;
    margin: 0 0 8px 0;
}

.weekly-subtitle {
    font-size: 18px;
    color: #000000;
    margin: 0;
    font-weight: 300;
}

/* Ana Görsel */
.weekly-main-image {
    position: relative;
    min-width: 0;
    overflow: hidden;
    height: 380px;
}

.weekly-main-swiper {
    width: 100%;
    height: 100%;
}

.weekly-main-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
}

.weekly-main-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* =====================================================
   SAĞ TARAF: THUMBNAILS + BİLGİLER
===================================================== */

.weekly-right {
    display: flex;
    flex-direction: column;
    background: #fff;
    min-width: 0;
    overflow: hidden;
}

/* Thumbnail Row */
.weekly-thumbs-row {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    min-width: 0;
    overflow: hidden;
}

.weekly-thumb-swiper {
    width: 100%;
    overflow: hidden;
}

.weekly-thumb-swiper .swiper-slide {
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: #f5f5f5;
    opacity: 0.5;
}

.weekly-thumb-swiper .swiper-slide img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.weekly-thumb-swiper .swiper-slide-thumb-active {
    border-color: #1a1a1a;
    opacity: 1 !important;
}

.weekly-thumb-swiper .swiper-slide:hover {
    opacity: 0.8;
}

/* Info Panel */
.weekly-info-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 0;
    flex:1;
}

/* Sol: Araç Bilgileri */
.weekly-car-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    text-align: center;
    border-right: 1px solid #eee;
}

.weekly-brand-logo {
    margin-bottom: 20px;
}

.weekly-brand-logo img {
    max-height: 50px;
    width: 100%;
    object-fit: contain;
}

.weekly-car-name {
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
    line-height: 1.4;
    text-transform: uppercase;
}

.weekly-car-name span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 4px;
    text-transform: none;
    letter-spacing: 0;
}

.weekly-cta-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 50px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: 24px;
    transition: all 0.3s ease;
}

.weekly-cta-btn:hover {
    background: #000;
    color: #fff;
}

/* Sağ: Specs Panel */
.weekly-specs-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-content: center;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: #f8f8f8;
}

.spec-item:nth-child(odd) {
    border-right: 1px solid #f0f0f0;
}

.spec-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.spec-item i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f4ff 100%);
    border-radius: 8px;
    font-size: 13px;
    color: #000;
    flex-shrink: 0;
}

.spec-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.spec-label {
    display: block;
    font-size: 11px;
    color: #999;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.spec-value {
    display: block;
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 500;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {
    .weekly-left {
        padding: 24px;
        padding-right: 30px;
    }
    
    .weekly-main-image {
        height: 420px;
    }
    
    .weekly-car-info {
        padding: 30px 20px;
    }
}

@media (max-width: 991px) {
    .weekly-layout {
        grid-template-columns: 1fr;
    }
    
    .weekly-left {
        padding: 24px;
    }
    
    .weekly-main-image {
        height: 350px;
    }
    
    .weekly-right {
        border-top: 1px solid #eee;
    }
    
    .weekly-info-panel {
        grid-template-columns: 1fr 1fr;
    }
    
    .weekly-thumbs-row {
        padding: 12px 16px;
    }
}

@media (max-width: 768px) {
    .weekly-section {
        padding: 30px 0;
    }
    
    .weekly-left {
        padding: 20px 16px;
    }
    
    .weekly-title {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .weekly-subtitle {
        font-size: 14px;
    }
    
    .weekly-main-image {
        height: 280px;
    }
    
    .weekly-thumbs-row {
        padding: 12px;
    }
    
    .weekly-info-panel {
        grid-template-columns: 1fr;
    }
    
    .weekly-car-info {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 24px 20px;
    }
    
    .spec-item {
        padding: 10px 14px;
        gap: 10px;
    }
    
    .spec-item i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .weekly-section {
        padding: 24px 0;
    }
    
    .weekly-left {
        padding: 16px 12px;
    }
    
    .weekly-header {
        margin-bottom: 16px;
    }

    .weekly-title {
        font-size: 16px !important;
        letter-spacing: 4px !important;
        text-align: center;
        margin-bottom: 0px;
    }

    .weekly-subtitle {
        font-size: 15px;
        text-align: center;
    }
    
    .weekly-main-image {
        height: 220px;
    }
    
    .weekly-thumbs-row {
        padding: 10px;
    }
    
    .weekly-car-info {
        padding: 20px 16px;
    }
    
    .weekly-car-name {
        font-size: 14px;
    }
    
    .weekly-car-name span {
        font-size: 12px;
    }
    
    .weekly-cta-btn {
        padding: 10px 24px;
        font-size: 12px;
    }
    
    .spec-item {
        padding: 8px 12px;
        gap: 8px;
    }

        .spec-item i {
            width: 35px;
            height: 35px;
            font-size: 16px;
            border-radius: 6px;
        }
    
    .spec-label {
        font-size: 10px;
    }
    
    .spec-value {
        font-size: 12px;
    }
}

/* Enson eklenenler***************************************/
.latest-cars {
    padding: 100px 0;
    background: #fff;
}

.latest-head {
    text-align: center;
    margin-bottom: 60px;
}

    .latest-head span {
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #9a9a9a;
    }

    .latest-head h2 {
        font-size: 25px;
        letter-spacing: 4px;
        font-weight: 500;
        margin-top: 10px;
    }

/* CARD */
.car-card {
    background: #fff; 
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,.06);
}

    .car-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 80px rgba(0,0,0,.12);
    }

/* IMAGE */
.car-image {
    aspect-ratio: 16 / 10;
    background: #f3f3f3;
}

    .car-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* BODY */
.car-body {
    padding: 26px 28px 30px;
    text-align: center;
}

    .car-body h3 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 6px;
    }

.car-meta {
    margin-top: 10px;
    font-size: 16px;
    color: #777;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.car-price {
    font-size: 22px;
    font-weight: 500;
    margin: 18px 0;
    color: #222;
}

/* CTA */
.car-link {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid #111;
    font-size: 14px;
    transition: .3s;
    background: #111;
    color: #fff;
}

    .car-link:hover {
        background: #111;
        color: #fff;
    }

/* FOOTER */
.latest-footer {
    text-align: center;
    margin-top: 50px;
}

    .latest-footer a {
        font-size: 15px;
        border-bottom: 1px solid #111;
    }

/* SWIPER */
.latest-swiper {
    padding-bottom: 60px;
    position: relative;
}

/* NAV BASE */
.latest-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    box-shadow: 0 10px 30px rgba(0,0,0,.12); 
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all .3s ease;
    display: none;
}

    .latest-nav:hover {
        background: #111;
        color: #fff;
    }
 
/* POSITIONS */
.latest-prev {
    left: -22px;
}

.latest-next {
    right: -22px;
}

/* MOBILE */
@media (max-width: 768px) {
    /* Varsayılan: gizli (desktop) */

     
        .latest-nav {
            display: flex;
        }
  

    .latest-prev {
        left: 8px;
    }

    .latest-next {
        right: 8px;
    }
}
.swiper-slide {
    transition: opacity .3s;
}

    .swiper-slide:not(.swiper-slide-active) {
        opacity: .6;
    }

/* RESPONSIVE */
@media (max-width: 991px) {
    .latest-head h2 {
        font-size: 16px !important;
        letter-spacing: 4px !important;
    }
    .latest-head { 
        margin-bottom: 20px !important;
    }
}



/* CTA VALUATION ****************************/
.cta-valuation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f7; 
    padding: 24px 40px;
    overflow: hidden;
    gap: 30px;
    position: relative;
    min-height: 140px;
    margin-top:60px;
}

/* SOL İÇERİK */
.cta-content {
    max-width: 42%;
    flex-shrink: 0;
}

.cta-tag {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    display: inline-block;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.cta-content h2 {
    font-size: 28px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 8px;
    font-weight: 400;
}

.cta-content h2 strong {
    font-weight: 700;
    color: #000;
}

.cta-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.4;
}

.cta-button {
    background: #000000;
    color: #fff;
    padding: 12px 24px;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s ease;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* SAĞ ARAÇ WRAPPER */
.cta-car-wrapper {
    position: relative;
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 210px;
}

/* AVANTAJ KUTULARI */
.cta-badge {
    position: absolute;
    z-index: 15;
    background: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

    .cta-badge i {
        font-size: 14px;
        color: #00b3ff;
    }

/* Kutu Pozisyonları */
.cta-badge-1 {
    top: 10%;
    left: 5%;
}

.cta-badge-2 {
    top: 0;
    right: 25%;
}

.cta-badge-3 {
    bottom: 0;
    left: 10%;
}

.cta-badge-4 {
    bottom: 0;
    right: 20%;
}

/* ARAÇ GÖRSELİ */
.cta-car {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.cta-car img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

/* SAĞ TARAF FADE OVERLAY */
.cta-car-fade {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(245, 245, 247, 0) 0%,
        rgba(245, 245, 247, 0.4) 20%,
        rgba(245, 245, 247, 0.7) 50%,
        rgba(245, 245, 247, 0.9) 100%
    );
    z-index: 3;
    pointer-events: none;
}

/* DİKEY TARAMA EFEKTİ - REFERANS TASARIM GİBİ */
.cta-scan-line {
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: 48%;
    transform: translateX(-50%);
    width: 3px;
    background: linear-gradient(to bottom, rgba(0, 220, 180, 0) 0%, rgb(0 179 255 / 90%) 15%, rgb(0 179 255) 50%, rgb(0 179 255 / 90%) 85%, rgba(0, 220, 180, 0) 100%);
    z-index: 10;
    pointer-events: none;
}

/* Ana glow katmanı */
    .cta-scan-line::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 255, 200, 0) 0%, rgb(0 179 255 / 40%) 20% 20%, rgb(0 179 255 / 60%) 50%, rgb(0 179 255 / 40%) 80%, rgba(0, 255, 200, 0) 100%);
        filter: blur(12px);
        z-index: -1;
    }

/* Dış glow - daha geniş yayılım */
    .cta-scan-line::after {
        content: "";
        position: absolute;
        top: 5%;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        background: linear-gradient(to bottom, rgba(0, 255, 200, 0) 0%, rgb(0 179 255 / 15%) 25%, rgb(0 179 255 / 25%) 50%, rgb(0 179 255 / 15%) 75%, rgba(0, 255, 200, 0) 100%);
        filter: blur(20px);
        z-index: -2;
    }

/* İç parlak çizgi */
.scan-glow {
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(0 179 255 / 90%) 20%, rgba(255, 255, 255, 1) 50%, rgb(0 179 255 / 90%) 80%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .cta-valuation {
        flex-direction: column;
        padding: 24px 20px;
        text-align: center;
        gap: 20px;
        min-height: auto;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-desc {
        font-size: 13px;
    }

    .cta-car-wrapper {
        width: 100%;
        height: 130px;
    }

    /* Badge pozisyonları tablet */
    .cta-badge {
        padding: 6px 10px;
        font-size: 11px;
        gap: 6px;
    }

    .cta-badge i {
        font-size: 12px;
    }

    .cta-badge-1 {
        top: 10%;
        left: 2%;
    }

    .cta-badge-2 {
        top: 0;
        right: 2%;
    }

    .cta-badge-3 {
        bottom: 0;
        left: 5%;
    }

    .cta-badge-4 {
        bottom: 0;
        right: 5%;
    }

    .cta-scan-line {
        width: 2px;
    }

    .cta-scan-line::before {
        width: 30px;
    }

    .cta-scan-line::after {
        width: 50px;
    }
    .cta-car img { 
        object-fit: cover !important; 
    }
}

@media (max-width: 768px) {
    .cta-car-wrapper {
        height: 120px;
    }

    .cta-badge {
        padding: 5px 8px;
        font-size: 10px;
        border-radius: 6px;
    }

    .cta-badge i {
        font-size: 11px;
    }

    .cta-badge-1 {
        top: -5px;
        left: 0;
    }

    .cta-badge-2 {
        top: -5px;
        right: 0;
    }

    .cta-badge-3 {
        bottom: -5px;
        left: 3%;
    }

    .cta-badge-4 {
        bottom: -5px;
        right: 3%;
    }
}

@media (max-width: 576px) {
    .cta-valuation {
        padding: 20px 16px;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .cta-car-wrapper {
        height: 110px;
        margin-top: 10px;
    }

    /* Mobilde sadece ikon göster */
    .cta-badge span {
        display: none;
    }

    .cta-badge {
        padding: 8px;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        justify-content: center;
    }

    .cta-badge i {
        font-size: 13px;
        margin: 0;
    }

    .cta-badge-1 {
        top: 15px;
        left: 5%;
    }

    .cta-badge-2 {
        top: 15px;
        right: 15%;
    }

    .cta-badge-3 {
        bottom: -8px;
        left: 8%;
    }

    .cta-badge-4 {
        bottom: -8px;
        right: 18%;
    }
}

@media (max-width: 400px) {
    .cta-badge {
        width: 28px;
        height: 28px;
        padding: 6px;
    }

    .cta-badge i {
        font-size: 11px;
    }

    .cta-car-wrapper {
        height: 100px;
    }
}
