:root {
    --primary: #e63946;
    --primary-dark: #c02330;
    --dark: #0f172a;
    --soft-black: #1e293b;
    --footer-bg: #111827;
    --gray: #f3f4f6;
    --white: #ffffff;
    --text: #334155;
    --text-light: #64748b;
    --orange: #f97316;
    --gold: #eab308;
    --radius: 16px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --font: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    font-family: var(--font);
    background-color: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-primary { 
    background: var(--primary); 
    color: var(--white); 
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}
.btn-primary:hover { 
    background: var(--primary-dark); 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.btn-white { 
    background: var(--white); 
    color: var(--primary); 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.btn-white:hover { 
    background: #f8fafc; 
    transform: translateY(-2px);
}

.btn-orange { 
    background: var(--orange); 
    color: var(--white);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}
.btn-orange:hover { 
    background: #ea580c; 
    transform: translateY(-2px);
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-flex { display: flex; justify-content: space-between; align-items: center; }
.top-left { display: flex; gap: 1.5rem; align-items: center; }
.top-left span { display: flex; align-items: center; gap: 0.5rem; }
.top-left i { color: var(--primary); }

.top-right { display: flex; gap: 1rem; }
.top-right a { 
    width: 32px; 
    height: 32px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.1); 
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: 0.3s;
}
.top-right a:hover { background: var(--primary); color: white; }

.header {
    background: var(--white);
    height: 90px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    letter-spacing: -0.03em;
}
.logo span { color: var(--primary); }
.logo.white { color: var(--white); }

.nav-menu { display: flex; gap: 2.5rem; align-items: center; }

.nav-link {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link i { color: #94a3b8; transition: 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover i, .nav-link.active i { color: var(--primary); }

.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--dark); }
.close-menu { display: none; }
.overlay { display: none; }


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

.section { padding: 6rem 0; }
.bg-soft-black { background: var(--soft-black); }
.bg-light { background: #f8fafc; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.section-title { font-size: 2.5rem; font-weight: 800; color: var(--dark); line-height: 1.2; }
.text-white { color: var(--white); }
.text-red { color: var(--primary); }
.dot { color: var(--primary); font-size: 3rem; line-height: 0; }
.view-all-link { color: var(--white); font-weight: 600; display: flex; align-items: center; gap: 0.5rem; opacity: 0.8; }
.view-all-link:hover { opacity: 1; gap: 0.8rem; }

.cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.cta-box {
    border-radius: 24px;
    overflow: hidden;
    min-height: 280px; 
    display: flex;
    align-items: center;
    position: relative;
    padding: 3rem;
    transition: transform 0.3s;
}
.cta-box:hover { transform: translateY(-5px); }

.cta-red { background: linear-gradient(135deg, #e63946 0%, #9f1239 100%); color: var(--white); }
.cta-dark { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); color: var(--white); }

.cta-img-col { position: absolute; right: -30px; bottom: -30px; width: 50%; opacity: 0.4; }
.cta-img-col img { transform: rotate(-10deg); width: 100%; }

.cta-txt-col { width: 60%; position: relative; z-index: 2; }
.cta-txt-col h3 { font-size: 2rem; line-height: 1.1; margin-bottom: 1rem; font-weight: 800; }
.cta-txt-col p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 2rem; line-height: 1.5; }

.service-section { padding-top: 0; margin-top: -3rem; position: relative; z-index: 10; }
.service-grid { text-align: left; }

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(230, 57, 70, 0.2); }

.icon-box {
    width: 60px; height: 60px;
    background: #fff1f2;
    color: var(--primary);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    transition: 0.3s;
}
.service-card:hover .icon-box { background: var(--primary); color: white; }

.icon-box span { font-size: 2rem; }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.4rem; font-weight: 700; color: var(--dark); }
.service-card p { color: var(--text-light); margin-bottom: 1.5rem; }
.text-link { color: var(--primary); font-weight: 700; display: inline-flex; align-items: center; gap: 0.5rem; }
.text-link:hover { gap: 0.8rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* Premium Cards */
.card-premium {
    background: #27272a;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #3f3f46;
    transition: 0.4s;
}
.card-premium:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); border-color: var(--gold); }

.card-img-wrap { position: relative; height: 260px; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; transition: 0.5s; }
.card-premium:hover .card-img-wrap img { transform: scale(1.1); }

.badge-vip {
    position: absolute; top: 1rem; left: 1rem;
    background: linear-gradient(45deg, #d4af37, #fcd34d);
    color: #000; padding: 0.4rem 1rem;
    border-radius: 8px; font-weight: 800; font-size: 0.75rem; z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.card-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}
.card-premium:hover .card-overlay { opacity: 1; }

.btn-overlay {
    background: var(--white); color: var(--dark);
    padding: 0.8rem 1.5rem; border-radius: 50px;
    font-weight: 700; transform: translateY(20px); transition: 0.4s;
}
.card-premium:hover .btn-overlay { transform: translateY(0); }

.card-body { padding: 1.5rem; }
.card-premium h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 1rem; }

.premium-specs {
    display: flex; gap: 1rem; margin-bottom: 1.5rem;
    color: #a1a1aa; font-size: 0.9rem;
}
.premium-specs span { display: flex; align-items: center; gap: 0.4rem; }
.premium-specs i { color: var(--gold); }

.card-footer-premium {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 1rem; border-top: 1px solid #3f3f46;
}
.card-premium .price { color: var(--gold); font-size: 1.5rem; font-weight: 800; }
.like-btn {
    background: rgba(255,255,255,0.1); border: none;
    width: 40px; height: 40px; border-radius: 50%;
    color: var(--white); cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center;
}
.like-btn:hover { background: var(--primary); color: white; }

/* Modern Cards */
.showroom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.showcase-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateZ(0);
}

.showcase-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.2, 1);
}

.showcase-card:hover .showcase-img img {
    transform: scale(1.1);
}

.glass-price {
    position: absolute;
    top: 15px;
    right: 60px;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10;
    display: flex;
    align-items: center;
}

.fav-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: 0.3s;
}

.fav-btn:hover {
    background: #e63946;
    border-color: #e63946;
}

.showcase-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.4) 80%, transparent 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.car-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.specs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.spec-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec-item i {
    color: #e63946;
    font-size: 0.85rem;
}

.btn-view {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #e63946;
    color: white;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-view:hover {
    background: #c02330;
    transform: translateY(-2px);
}

.showcase-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e63946;
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.showcase-badge.electric {
    background: #10b981;
}

@media (max-width: 992px) {
    .showroom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .showroom-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog */
.blog-card {
    background: var(--white); border-radius: 20px;
    overflow: hidden; box-shadow: var(--shadow-sm);
    cursor: pointer; transition: 0.3s; border: 1px solid #f1f5f9;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.blog-img { height: 240px; position: relative; }
.blog-date {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(255,255,255,0.9); padding: 0.4rem 0.8rem;
    border-radius: 8px; font-size: 0.8rem; font-weight: 700; color: var(--dark);
}

.blog-content { padding: 1.5rem; }
.blog-content h3 { font-size: 1.25rem; margin-bottom: 0.75rem; line-height: 1.4; color: var(--dark); }
.blog-content p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1.5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.read-more { color: var(--primary); font-weight: 700; display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }

/* Slider */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.35);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-text {
    z-index: 2;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

.hero-text p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 500px;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
}

.search-widget {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    z-index: 2;
    width: 100%;
}

.search-tabs {
    display: flex;
    background: #e2e8f0;
    padding: 0.3rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.tab {
    flex: 1;
    background: none;
    border: none;
    padding: 0.8rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tab.active { 
    background: #fff; 
    color: #cd2c2c; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
}

.search-body { 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
}

.input-wrapper { 
    position: relative; 
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #cd2c2c;
    z-index: 1;
    font-size: 1.2rem;
}

.select-arrow {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    font-size: 0.8rem;
}

.form-select {
    width: 100%;
    padding: 1.1rem 1rem 1.1rem 3rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: #fff;
    color: #1e293b;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: 0.3s;
}

.form-select:focus { 
    outline: none; 
    border-color: #cd2c2c; 
    box-shadow: 0 0 0 3px rgba(205, 44, 44, 0.1); 
}

.btn-full {
    width: 100%;
    justify-content: center;
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .search-widget {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .search-widget {
        padding: 1.5rem;
    }
}

/* Sliding Brands */

.marquee-wrapper {
    background: var(--primary);
    padding: 1.2rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 4px solid var(--primary-dark);
}

.marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
.marquee-content span { color: rgba(255,255,255,0.5); font-weight: 900; font-size: 1.5rem; margin: 0 3rem; letter-spacing: 1px; font-style: italic; }


/* Footer */
.footer { background: var(--footer-bg); color: #94a3b8; padding: 5rem 0 2rem; border-top: 1px solid #1f2937; }
.footer-grid-4 { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 4rem; margin-bottom: 4rem; }

.footer-brand-col p { margin: 1.5rem 0 2rem; line-height: 1.6; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s; color: white;
}
.footer-socials a:hover { background: var(--primary); }

.footer h4 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.1rem; letter-spacing: 0.5px; }
.footer ul li { margin-bottom: 0.8rem; }
.footer ul li a { display: flex; align-items: center; gap: 0.5rem; transition: 0.2s; }
.footer ul li a:hover { color: var(--primary); padding-left: 5px; }
.footer ul li i { font-size: 0.8rem; color: var(--primary); }

.footer-contact-col li { display: flex; gap: 1rem; margin-bottom: 1.2rem; align-items: flex-start; }
.footer-contact-col i { font-size: 1rem; color: var(--primary); margin-top: 4px; }
.footer-contact-col span { color: #cbd5e1; }

.footer-bottom { border-top: 1px solid #1f2937; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a:hover { color: var(--white); }

.logo.white {
    color: white;
}

/* Single Cars */


@media (max-width: 768px) {
    .top-bar,
    .desktop-only {
        display: none;
    }
    .header {
        height: 70px;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: 0.4s;
        z-index: 200;
        align-items: flex-start;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }
    .nav-menu.active {
        right: 0;
    }
    .close-menu {
        display: block;
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 1.5rem;
        cursor: pointer;
    }
    .overlay.active {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 150;
    }
    .nav-actions .btn {
        display: none;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .cta-box {
        flex-direction: column;
        height: auto;
        text-align: center;
    }
    .cta-img-col {
        max-width: 100%;
        width: 100%;
        margin-bottom: 1rem;
    }
    .cta-img-col img {
        transform: rotate(0) scale(1);
        width: 100%;
        height: 200px;
    }
    .footer-grid-4 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .footer-contact-col li {
        justify-content: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    .view-all-link {
        color: var(--text-light);
        border-color: rgba(0, 0, 0, 0.1);
    }
    .showroom-grid {
        grid-template-columns: 1fr;
    }
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }
}

/* Contact */
.ct-page {
    min-height: 100vh;
    font-family: "Inter", system-ui, sans-serif;
    background: #f5f7fa;
    color: #1a1d24;
    line-height: 1.6;
}

.ct-hero {
    background: linear-gradient(135deg, #1a1d24 0%, #2d3748 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ct-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(211, 47, 47, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(211, 47, 47, 0.1) 0%, transparent 50%);
}

.ct-hero-content {
    position: relative;
    z-index: 1;
}

.ct-hero-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 40px rgba(211, 47, 47, 0.3);
}

.ct-hero-icon .material-icons-round {
    font-size: 40px;
    color: #fff;
}

.ct-hero-title {
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.ct-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    max-width: 500px;
    margin: 0 auto;
}

.ct-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.ct-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 48px;
    align-items: start;
}

.ct-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ct-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ct-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #d32f2f 0%, #b71c1c 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ct-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.ct-card:hover::before {
    opacity: 1;
}

.ct-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.ct-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ct-card-icon .material-icons-round {
    font-size: 28px;
    color: #d32f2f;
}

.ct-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1d24;
}

.ct-card-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    padding-left: 72px;
}

.ct-card-link {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.ct-card-link:hover {
    color: #b71c1c;
}

.ct-card-link .material-icons-round {
    font-size: 18px;
}

.ct-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 72px;
}

.ct-socials {
    display: flex;
    gap: 12px;
    padding-left: 72px;
    margin-top: 8px;
}

.ct-social {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e5e7eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ct-social:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

.ct-social .material-icons-round {
    font-size: 22px;
}

.ct-hours {
    padding-left: 72px;
}

.ct-hour {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.ct-hour:last-child {
    border-bottom: none;
}

.ct-hour-day {
    font-weight: 600;
    color: #1a1d24;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ct-hour-day .material-icons-round {
    font-size: 16px;
    color: #d32f2f;
}

.ct-hour-time {
    color: #6b7280;
    font-weight: 500;
}

.ct-hour-closed {
    color: #d32f2f;
    font-weight: 700;
}

.ct-form-box {
    background: #fff;
    border-radius: 24px;
    padding: 44px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.ct-form-header {
    text-align: center;
    margin-bottom: 36px;
}

.ct-form-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.25);
}

.ct-form-icon .material-icons-round {
    font-size: 32px;
    color: #fff;
}

.ct-form-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1d24;
    margin-bottom: 8px;
}

.ct-form-desc {
    font-size: 15px;
    color: #6b7280;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.ct-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct-field-full {
    grid-column: 1/-1;
}

.ct-label {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ct-label .material-icons-round {
    font-size: 18px;
    color: #d32f2f;
}

.ct-input-wrap {
    position: relative;
}

.ct-input-wrap .material-icons-round {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #9ca3af;
    transition: color 0.2s;
    pointer-events: none;
}

.ct-input-wrap:focus-within .material-icons-round {
    color: #d32f2f;
}

.ct-input {
    width: 100%;
    padding: 16px 16px 16px 50px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1d24;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
}

.ct-input:hover {
    border-color: #d1d5db;
    background: #fff;
}

.ct-input:focus {
    border-color: #d32f2f;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.08);
}

.ct-input::placeholder {
    color: #9ca3af;
}

.ct-textarea {
    min-height: 160px;
    resize: vertical;
    padding-top: 16px;
}

.ct-textarea-wrap .material-icons-round {
    top: 18px;
    transform: none;
}

.ct-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%236b7280'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.ct-check-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #fef2f2;
    border-radius: 12px;
    margin-top: 8px;
}

.ct-check {
    width: 20px;
    height: 20px;
    accent-color: #d32f2f;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.ct-check-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.ct-check-text a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
}

.ct-check-text a:hover {
    text-decoration: underline;
}

.ct-btn {
    margin-top: 28px;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.25);
}

.ct-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(211, 47, 47, 0.35);
}

.ct-btn .material-icons-round {
    font-size: 22px;
}

.ct-map-section {
    margin-top: 60px;
}

.ct-map-box {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.ct-map-header {
    padding: 24px 32px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ct-map-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1d24;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct-map-title .material-icons-round {
    font-size: 24px;
    color: #d32f2f;
}

.ct-map-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #d32f2f;
    text-decoration: none;
    padding: 10px 16px;
    background: #fef2f2;
    border-radius: 10px;
    transition: all 0.2s;
}

.ct-map-link:hover {
    background: #fee2e2;
}

.ct-map-link .material-icons-round {
    font-size: 18px;
}

.ct-map-frame {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.ct-faq-section {
    margin-top: 80px;
}

.ct-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.ct-section-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.25);
}

.ct-section-icon .material-icons-round {
    font-size: 32px;
    color: #fff;
}

.ct-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1d24;
    margin-bottom: 12px;
}

.ct-section-desc {
    font-size: 16px;
    color: #6b7280;
}

.ct-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ct-faq {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ct-faq::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d32f2f 0%, #b71c1c 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ct-faq:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.ct-faq:hover::before {
    opacity: 1;
}

.ct-faq-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.ct-faq-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ct-faq-icon .material-icons-round {
    font-size: 24px;
    color: #d32f2f;
}

.ct-faq-q {
    font-size: 17px;
    font-weight: 700;
    color: #1a1d24;
    line-height: 1.4;
    padding-top: 8px;
}

.ct-faq-a {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    padding-left: 58px;
}

@media(max-width:1024px) {
    .ct-grid {
        grid-template-columns: 1fr;
    }
    .ct-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    .ct-hero {
        padding: 60px 20px;
    }
    .ct-hero-title {
        font-size: 32px;
    }
    .ct-hero-icon {
        width: 64px;
        height: 64px;
    }
    .ct-hero-icon .material-icons-round {
        font-size: 32px;
    }
    .ct-main {
        padding: 40px 16px;
    }
    .ct-form-row {
        grid-template-columns: 1fr;
    }
    .ct-form-box {
        padding: 28px;
    }
    .ct-card-text,
    .ct-links,
    .ct-hours,
    .ct-socials {
        padding-left: 0;
        margin-top: 16px;
    }
    .ct-map-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .ct-faq-a {
        padding-left: 0;
        margin-top: 12px;
    }
}

/* Listing Page */
.app-wrapper {
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
    line-height: 1.5;
    padding: 40px 24px;
    width: 100%;
}

.container-app {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

.app-filter-section {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.app-filter-row {
    display: flex;
    align-items: flex-end;
    gap: 24px;
}

.app-filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.app-filter-group.app-range-group {
    flex: 1.4;
}

.app-filter-group.app-buttons-group {
    flex: 0 0 auto;
    flex-direction: row;
    align-items: flex-end;
    gap: 12px;
    min-width: auto;
}

.app-filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-filter-label .material-icons-round {
    font-size: 16px;
    color: #dc2626;
}

.app-filter-select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    outline: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='%2364748b'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.app-filter-select:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.app-filter-select:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.app-range-container {
    padding: 8px 0 4px;
    position: relative;
}

.app-range-track {
    position: relative;
    height: 6px;
    background: #e2e8f0;
    border-radius: 99px;
}

.app-range-fill {
    position: absolute;
    height: 6px;
    background: #dc2626;
    border-radius: 99px;
    left: 0;
    right: 0;
}

.app-range-slider {
    position: relative;
    height: 20px;
    margin-top: -13px;
}

.app-range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 20px;
    -webkit-appearance: none;
    background: transparent;
    pointer-events: none;
    margin: 0;
}

.app-range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    cursor: grab;
    pointer-events: auto;
    transition: transform 0.1s;
}

.app-range-slider input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.1);
    cursor: grabbing;
    border-color: #dc2626;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-btn-primary {
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.app-btn-primary:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.2);
}

.app-btn-icon {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    padding: 0;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.app-btn-icon:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.app-btn-icon.active {
    background: #fef2f2;
    border-color: #dc2626;
    color: #dc2626;
}

.app-filters-extra {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px dashed #e2e8f0;
}

.app-filters-extra.show {
    display: grid;
}

.app-sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
    flex-wrap: wrap;
    background: white;
    padding: 16px 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.app-results-count {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

.app-results-count span {
    color: #0f172a;
    font-weight: 800;
    font-size: 16px;
}

.app-sort-select {
    padding: 10px 36px 10px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    appearance: none;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='%23334155'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    min-width: 220px;
}

.app-cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.app-car-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.app-car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
}

.app-car-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.app-car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.app-car-card:hover .app-car-image {
    transform: scale(1.08);
}

.app-car-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

.app-car-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.app-badge-brand {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #0f172a;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.app-badge-featured {
    background: #dc2626;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3);
}

.app-badge-featured .material-icons-round {
    font-size: 18px;
}

.app-car-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.app-car-header {
    margin-bottom: 16px;
}

.app-car-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.app-car-subtitle {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.app-car-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 0 0 16px 0;
}

.app-car-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.app-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}

.app-spec-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.app-spec-icon .material-icons-round {
    font-size: 16px;
}

.app-car-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.app-car-price {
    font-size: 20px;
    font-weight: 800;
    color: #dc2626;
    letter-spacing: -0.5px;
}

.app-car-btn {
    background: #0f172a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-car-btn:hover {
    background: #dc2626;
}

.app-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.app-filter-overlay.show {
    display: block;
    opacity: 1;
}

.app-mobile-search-btn {
    display: none;
    background: #0f172a;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-sidebar-close {
    display: none;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    z-index: 1002;
    transition: 0.2s;
}

.app-sidebar-close:hover {
    background: #e2e8f0;
    color: #dc2626;
}

@media (max-width: 1100px) {
    .app-filter-row {
        flex-wrap: wrap;
    }
    .app-filter-group {
        flex: 1 1 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
    .app-filters-extra {
        grid-template-columns: repeat(2, 1fr);
    }
    .app-filter-group.app-buttons-group {
        flex: 1 1 100%;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .app-wrapper {
        padding: 20px 16px;
    }
    .app-mobile-search-btn {
        display: inline-flex;
        width: auto;
        margin-right: auto;
    }
    .app-sort-bar {
        margin-bottom: 24px;
        gap: 16px;
        padding: 16px;
    }
    .app-sort-select {
        flex: 1;
        min-width: 0;
    }
    .app-filter-section {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 340px;
        max-width: 85vw;
        height: 100vh;
        z-index: 1001;
        background: #ffffff;
        border-radius: 0;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        padding: 80px 24px 120px;
        margin: 0;
        border-right: 1px solid #e2e8f0;
        box-shadow: none;
    }
    .app-filter-section.open {
        transform: translateX(0);
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
    }
    .app-sidebar-close {
        display: flex;
    }
    .app-filter-row {
        flex-direction: column;
        gap: 24px;
    }
    .app-filter-group {
        width: 100%;
        flex: 1 1 auto;
    }
    .app-filter-group.app-buttons-group {
        display: none;
    }
    .app-filters-extra {
        display: grid !important;
        grid-template-columns: 1fr;
        margin-top: 24px;
        padding-top: 24px;
        gap: 24px;
    }
    #appMobileSidebarSearch {
        display: flex !important;
        position: fixed;
        bottom: 24px;
        left: 24px;
        right: 24px;
        width: calc(100% - 48px) !important;
        z-index: 1003;
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
        justify-content: center;
        padding: 16px;
    }
    .app-cars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .app-car-media {
        height: 220px;
    }
    .container-app {
    padding: 0 0px;
    }
}

/* Sale Car */

.page {
  min-height: 100vh;
  padding: 26px 5% 48px;
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 60%);
}

/* Mobil toggle */
.filter-toggle {
  display: none;
}

.filter-toggle-btn {
  position: fixed;
  right: 18px;
  top: 16px;
  background: #d7272a;
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  z-index: 30;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(215, 39, 42, 0.35);
}

.filter-toggle-btn .material-symbols-rounded {
  font-size: 20px;
}

/* Sağdan kayan panel */
.filter-panel {
  position: fixed;
  right: -420px;
  top: 0;
  width: 380px;
  max-width: 92%;
  height: 100vh;
  background: #fff;
  box-shadow: -28px 0 60px rgba(0, 0, 0, 0.16);
  padding: 20px;
  z-index: 25;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#filter-toggle:checked ~ .filter-panel {
  right: 0;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1b1b1f;
}

.panel-title .material-symbols-rounded {
  color: #d7272a;
}

.close-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #f2f2f2;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 20px;
}

.filter-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 12px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  transition: all 0.25s ease;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.filter-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff4f4;
  color: #d7272a;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.filter-card .content label {
  font-size: 12px;
  color: #7a7d85;
  margin-bottom: 6px;
  display: block;
}

.filter-card select,
.filter-card input {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #e9e9e9;
  background: #fff;
  color: #1b1b1f;
}

.filter-card input[type="range"] {
  accent-color: #d7272a;
}

.filter-card:hover,
.filter-card:focus-within {
  border-color: #d7272a;
  box-shadow: 0 14px 32px rgba(215, 39, 42, 0.12);
}

/* Üst filtre bar (desktop) */
.filter-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 160px;
  gap: 16px;
  margin-bottom: 26px;
}

.filter-pill {
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid #eee;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.filter-pill:hover,
.filter-pill:focus-within {
  border-color: #d7272a;
  box-shadow: 0 14px 32px rgba(215, 39, 42, 0.12);
}

.pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff4f4;
  display: grid;
  place-items: center;
  color: #d7272a;
  font-size: 20px;
}

.pill-body label {
  font-size: 12px;
  color: #7a7d85;
  margin-bottom: 6px;
  display: block;
}

.pill-body select,
.pill-body input {
  width: 100%;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 9px 10px;
}

.pill-body input[type="range"] {
  accent-color: #d7272a;
}

.search-btn {
  background: #d7272a;
  color: #fff;
  border: none;
  border-radius: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(215, 39, 42, 0.25);
}

.search-btn.inline {
  width: 100%;
  height: 100%;
  font-size: 15px;
}

.search-btn.panel {
  padding: 14px 16px;
}

/* Kartlar */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.car-card {
  background: #111;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.car-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.img-wrap {
  position: relative;
}

.car-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.58) 100%);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #d7272a;
  color: #fff;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  z-index: 2;
}

.badge.accent {
  background: #18c964;
}

.price-chip {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: #1b1b1f;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.fav {
  position: absolute;
  right: 16px;
  top: 64px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.fav .material-symbols-rounded {
  font-size: 22px;
}

.card-body {
  padding: 18px;
  margin-top: -6px;
}

.card-body h3 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 12px;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #f6f6f6;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 12px;
}

.specs i.material-symbols-rounded {
  font-size: 16px;
}

.cta {
  width: 100%;
  border: none;
  background: #d7272a;
  color: #fff;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta:hover {
  background: #b11f23;
  box-shadow: 0 12px 28px rgba(215, 39, 42, 0.22);
}

/* Responsive */
@media (max-width: 1080px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-bar {
    grid-template-columns: 1fr;
  }
  .search-btn.inline {
    height: auto;
  }
}

@media (max-width: 720px) {
  .filter-toggle-btn {
    display: inline-flex;
  }
  .filter-bar {
    display: none;
  }
  .cards {
    grid-template-columns: 1fr;
  }
}

/* Sell Form */
.sl-bg-red {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: #b91c1c;
    border-bottom-right-radius: 50% 20%;
    border-bottom-left-radius: 50% 20%;
    transform: scaleX(1.5);
    z-index: -1;
}

.sl-main-wrapper {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    margin: 20px auto 0;
}

.sl-header-content {
    text-align: center;
    color: white;
    margin-bottom: 30px;
    padding: 0 10px;
}

.sl-header-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.sl-header-desc {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

.sl-wizard-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.sl-progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
    padding: 0 20px;
}

.sl-progress-line {
    position: absolute;
    top: 20px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.sl-step-box {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    width: 80px;
}

.sl-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #94a3b8;
    background: white;
    transition: all 0.3s ease;
}

.sl-step-title {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sl-step-box.active .sl-step-circle {
    border-color: #dc2626;
    color: #dc2626;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.sl-step-box.active .sl-step-title {
    color: #dc2626;
}

.sl-step-box.completed .sl-step-circle {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
}

.sl-step-box.completed .sl-step-title {
    color: #1e293b;
}

.sl-section {
    display: none;
}

.sl-section.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sl-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.sl-section-icon {
    color: #dc2626;
    font-size: 28px;
}

.sl-section-h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.sl-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.sl-grid-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.sl-input-container {
    position: relative;
    width: 100%;
}

.sl-icon-inside {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 20px;
    pointer-events: none;
}

.sl-form-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #1e293b;
    outline: none;
    transition: 0.2s;
    background: #fff;
    appearance: none;
    font-weight: 500;
}

.sl-form-input:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

select.sl-form-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    cursor: pointer;
}

.sl-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.sl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: 0.2s;
}

.sl-btn-prev {
    background-color: #f1f5f9;
    color: #64748b;
}

.sl-btn-prev:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}

.sl-btn-next {
    background-color: #dc2626;
    color: white;
}

.sl-btn-next:hover {
    background-color: #b91c1c;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.sl-seo-text {
    max-width: 800px;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 0 20px;
    color: #475569;
    line-height: 1.6;
}

.sl-seo-text h2 {
    color: #0f172a;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 800;
}

.sl-seo-text h3 {
    color: #0f172a;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.sl-seo-text p {
    margin-bottom: 15px;
}

.sl-seo-text ul {
    list-style: none;
    margin-bottom: 20px;
}

.sl-seo-text li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.sl-seo-text li::before {
    content: "•";
    color: #dc2626;
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .sl-grid-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .sl-wizard-card {
        padding: 24px 20px;
    }
    .sl-progress-line {
        left: 30px;
        right: 30px;
    }
    .sl-header-title {
        font-size: 24px;
    }
}

/* Page Style */
.pg-main-top {
    width: 100%;
    min-height: 80vh;
    background-color: #f9fafb;
    padding-bottom: 60px;
}

.pg-header-content {
    background-color: #b91c1c;
    padding: 80px 20px 120px 20px;
    text-align: center;
    color: #ffffff;
    border-radius: 0 0 50% 50% / 0 0 60px 60px;
    position: relative;
    margin-bottom: -60px;
    z-index: 1;
}

.pg-header-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pg-header-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.pg-contents {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

.pg-contents h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-top: 40px;
    margin-bottom: 20px;
}

.pg-contents h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 30px;
    margin-bottom: 15px;
}

.pg-contents p {
    margin-bottom: 20px;
}

.pg-contents ul, 
.pg-contents ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.pg-contents li {
    margin-bottom: 10px;
}

.pg-contents img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    display: block;
}

.pg-contents a {
    color: #b91c1c;
    text-decoration: underline;
    font-weight: 600;
}

.pg-contents a:hover {
    text-decoration: none;
    color: #991b1b;
}

@media (max-width: 768px) {
    .pg-header-content {
        padding: 60px 20px 100px 20px;
        border-radius: 0 0 50% 50% / 0 0 30px 30px;
    }
    
    .pg-header-title {
        font-size: 1.8rem;
    }
    
    .pg-contents {
        width: 95%;
        padding: 30px 20px;
        margin-top: 0;
    }
}

/* sold cars */

.drcta-section {
    padding: 40px 15px;
    background: transparent;
}

.drcta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.drcta-card {
    display: flex;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding: 0;
    min-height: 240px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.drcta-card:hover {
    transform: translateY(-5px);
}

.drcta-red {
    background-color: #cd2c2c;
}

.drcta-dark {
    background-color: #232529; 
}

.drcta-image {
    width: 45%;
    height: 240px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
}

.drcta-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    display: block;
}

.drcta-content {
    width: 55%;
    padding: 30px 30px 30px 10px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.drcta-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 10px 0;
    font-family: system-ui, -apple-system, sans-serif;
}

.drcta-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px 0;
    opacity: 0.9;
}

.drcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px; 
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fff;
    border: 1px solid #fff;
}

.drcta-btn .material-icons-round {
    font-size: 18px;
}

.drcta-red .drcta-btn {
    color: #cd2c2c;
}

.drcta-red .drcta-btn:hover {
    background-color: #f0f0f0;
    color: #a01e1e;
}

.drcta-dark .drcta-btn {
    color: #232529;
}

.drcta-dark .drcta-btn:hover {
    background-color: #f0f0f0;
    color: #000;
}

@media (max-width: 991px) {
    .drcta-container {
        grid-template-columns: 1fr;
    }
    
    .drcta-card {
        min-height: auto;
    }
    
    .drcta-image {
        height: auto;
        min-height: 200px;
    }
}

@media (max-width: 575px) {
    .drcta-card {
        flex-direction: column;
        text-align: center;
        padding-bottom: 30px;
    }

    .drcta-image {
        width: 100%;
        height: auto;
        padding: 20px 20px 0 20px;
        margin-bottom: 10px;
    }
    
    .drcta-image img {
        height: 160px;
    }

    .drcta-content {
        width: 100%;
        padding: 0 20px;
        align-items: center;
    }
}

/* blog css */
.blog-page-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
}

.blog-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.2;
}

.blog-page-desc {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.blog-thumb-link {
    display: block;
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.blog-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-thumb {
    transform: scale(1.05);
}

.blog-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 2;
}

.blog-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 12px;
}

.blog-meta i {
    font-size: 16px;
    margin-right: 4px;
    vertical-align: text-bottom;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-title a:hover {
    color: #2563eb;
}

.blog-excerpt {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap 0.2s;
}

.blog-read-more i {
    font-size: 18px;
    margin-left: 5px;
}

.blog-read-more:hover {
    gap: 5px;
}

.single-blog-hero {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    margin-bottom: 50px;
}

.single-blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
}

.single-blog-header {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
    color: #fff;
    max-width: 900px;
}

.single-blog-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.single-blog-meta {
    display: flex;
    gap: 25px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.single-blog-wrap {
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.single-blog-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 50px;
}

.single-blog-content p {
    margin-bottom: 25px;
}

.single-blog-content h2, 
.single-blog-content h3 {
    color: #111827;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.single-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
}

.single-blog-content ul, 
.single-blog-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.single-blog-content li {
    margin-bottom: 10px;
}

.blog-share {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 30px 0;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share-links {
    display: flex;
    gap: 15px;
}

.share-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 18px;
}

.share-links a:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .blog-page-header {
        padding: 40px 0;
    }

    .blog-page-title {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .single-blog-hero {
        height: 350px;
    }

    .single-blog-title {
        font-size: 2rem;
    }

    .single-blog-content {
        font-size: 1rem;
    }

    .blog-share {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

.sl-bg-red {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: 0;
}

.sld-header-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: #fff;
    padding: 40px 20px 0;
    max-width: 800px;
    margin: 0 auto;
}

.sld-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.sld-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.app-wrapper-sold {
    background-color: #f9fafb;
    min-height: 100vh;
    position: relative;
    padding-top: 80px;
}

.sld-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 80px;
    position: relative;
    z-index: 5;
    margin-top: 20px;
}

.sld-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #f3f4f6;
}

.sld-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.sld-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.sld-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.5s ease;
}

.sld-card:hover .sld-img {
    filter: grayscale(40%) contrast(1);
    transform: scale(1.05);
}

.sld-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.sld-badge-modern {
    background: #dc2626;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 12px 50px;
    transform: rotate(-30deg);
    border: 3px solid rgba(255,255,255,0.9);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.sld-content {
    padding: 24px;
}

.sld-car-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sld-car-sub {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 15px;
}

.sld-specs {
    display: flex;
    gap: 15px;
    border-top: 1px solid #f3f4f6;
    padding-top: 15px;
    color: #6b7280;
    font-size: 0.85rem;
}

.sld-spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f9fafb;
    padding: 6px 10px;
    border-radius: 6px;
}

@media (max-width: 1024px) {
    .sld-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sld-grid { grid-template-columns: 1fr; }
    .sld-title { font-size: 2rem; }
    .sl-bg-red { height: 250px; }
}

/* blog */
.blog-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.section-heading span {
    color: #e63946;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.blog-media {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-media img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    z-index: 1;
}

.blog-details {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-details h3 {
    margin: 0 0 15px;
    font-size: 1.25rem;
    color: #1a1a1a;
    line-height: 1.4;
}

.blog-details p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more-btn {
    color: #e63946;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.blogdate {
    position: relative;
    top: 5px;
    color: #b91c1c;
    padding-right: 5px;
    font-size: 19px;
}
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-media {
        height: 220px;
    }
}
