/* ================= GLOBAL DESIGN SYSTEM & BASICS ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f5f7fa; 
    color: #111827;
    overflow-x: hidden;
    width: 100%;
}

section {
    padding: 90px 8%;
}

.section-title {
    text-align: center;
    font-size: 46px;
    margin-bottom: 15px;
    color: #111827;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 60px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: #2563eb; 
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
    text-align: center;
}

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

/* ================= PREMIUM RED ACCENT NAVBAR LAYER ================= */
nav {
    width: 100%;
    padding: 20px 8%;
    background: #000000; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.logo span {
    color: red; 
}

nav ul.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul.nav-menu li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: 0.3s ease;
}

nav ul.nav-menu li a:hover {
    color: white;
}

.nav-cta-btn {
    text-decoration: none;
    background: red; 
    color: white !important;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-cta-btn:hover {
    background: red;
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.4);
}

.mobile-cta-wrapper {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

/* ================= SMASH-STYLE HERO BANNER ================= */
.hero {
    position: relative;
    height: calc(100vh - 41px - 78px - 105px); 
    background: linear-gradient(to right, #000000 40%, rgba(127, 29, 29, 0.15) 65%, rgba(0, 0, 0, 0) 100%), 
                url("./images/ChatGPT Image Jul 1, 2026 at 05_10_12 PM.png") no-repeat center right;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: white;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 10;
    animation: fadeInHero 0.8s ease-out;
}

.hero-content h1 {
    font-size: 76px;
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 25px;
    color: white;
}

.hero-content h1 span {
    color: red;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #a3a3a3;
    margin-bottom: 35px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-btn-red {
    display: inline-block;
    text-decoration: none;
    background: red;
    color: white;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hero-btn-red:hover {
    background: #be123c;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.4);
}

.hero-btn-outline {
    display: inline-block;
    text-decoration: none;
    color: white;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid white;
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    z-index: 10;
}

.hero-btn-outline:hover {
    background: white;
    color: #000000 !important;
    transform: translateY(-2px);
}

.hero-rating-badge {
    position: absolute;
    bottom: 40px;
    right: 8%;
    text-align: right;
    z-index: 10;
}

.hero-rating-badge .stars {
    color: red;
    font-size: 16px;
    letter-spacing: 2px;
}

.hero-rating-badge .rating-text {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin: 4px 0;
}

.hero-rating-badge .sub-text {
    font-size: 12px;
    color: #737373;
}

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

/* ================= TOP ANNOUNCEMENT BAR & TRUST STRIPS (DESKTOP) ================= */
.top-announcement-bar {
    width: 100%;
    background: #ffffff;
    color: #111827;
    padding: 10px 8%;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    display: flex; 
    justify-content: center;
    align-items: center;
    gap: 15px;
    letter-spacing: 0.02em;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 1001;
}

.strip-separator {
    color: #e11d48;
    font-weight: 700;
}

.hero-features-strip {
    width: 100%;
    background: #0a0a0a; 
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    padding: 30px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 30px;
}

.h-feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.h-feature-box i {
    color: #e11d48; 
    font-size: 24px;
    flex-shrink: 0;
}

.h-feature-text h4 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.h-feature-text p {
    color: #9ca3af;
    font-size: 11px;
    line-height: 1.5;
}

/* ================= WHY CHOOSE US VERTICAL GRID ================= */
.why-choose-us {
    padding: 100px 8%;
    background: linear-gradient(180deg, #f8fafc, #ffffff); 
}

.why-choose-us h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.why-choose-us .section-subtitle {
    max-width: 700px;
    margin: 0 auto 60px;
    color: #64748b;
    font-size: 1.05rem;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-choose-us .feature-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all .35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.why-choose-us .feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, .15);
}

.why-choose-us .feature-card i {
    width: 75px;
    height: 75px;
    line-height: 75px;
    border-radius: 50%;
    background: #eff6ff; 
    color: #2563eb;
    font-size: 30px;
    margin-bottom: 20px;
}

.why-choose-us .feature-card h3 {
    color: #0f172a;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.why-choose-us .feature-card p {
    color: #64748b;
    line-height: 1.7;
}

/* ================= CORE CONTENT ASSET CARDS ================= */
#featured-cars {
    background: #f8fafc !important; 
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.car-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.car-card:hover {
    transform: translateY(-10px);
}

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

.car-content {
    padding: 24px;
}

.car-content h3 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #111827;
}

.price {
    color: #2563eb;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricee {
    background: rgba(37,99,235,0.1);
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    width: fit-content;
}

.car-content p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ================= REAL TIME ACCURATE DASHBOARD CONTAINER ================= */
.realtime-info-section {
    background-color: #f5f7fa;
    padding: 40px 8% 20px 8%;
}

.realtime-container {
    max-width: 1200px;
    margin: 0 auto;
}

.realtime-title {
    font-size: 26px;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 24px;
    text-align: left;
}

.realtime-dashboard-grid {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
    border: 1px solid #e5e7eb;
}

.realtime-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.realtime-circle-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid;
}

.icon-blue { background-color: #f0f7ff; color: #0284c7; border-color: #e0f2fe; }
.icon-teal { background-color: #f0fdfa; color: #0d9488; border-color: #ccfbf1; }
.icon-blue-teal { background-color: #ecfeff; color: #0891b2; border-color: #cffafe; }
.icon-dark-teal { background-color: #f0fdfa; color: #0f766e; border-color: #ccfbf1; }
.icon-teal-stars { background-color: #f0fdfa; color: #0d9488; border-color: #ccfbf1; }

.realtime-details { display: flex; flex-direction: column; justify-content: center; }
.realtime-heading { font-size: 13px; color: #6b7280; margin-bottom: 4px; font-weight: 400; }
.realtime-data { font-size: 20px; font-weight: 700; color: #111827; display: flex; align-items: center; }
.realtime-data.data-dates { font-size: 18px; }
.realtime-unit { font-size: 12px; color: #9ca3af; font-weight: 400; margin-left: 5px; }
.realtime-stars-row { color: #ea580c; font-size: 13px; margin-left: 8px; display: inline-flex; gap: 1px; }

/* ================= REVIEWS & FEEDBACK ROW MAPPING ================= */
.reviews-section {
    background: #ffffff !important;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 40px;
    border-radius: 24px;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.stat-box i { font-size: 36px; margin-bottom: 12px; opacity: 0.9; }
.stat-box h3 { font-size: 32px; font-weight: 700; }
.stat-box p { font-size: 14px; opacity: 0.85; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
}

.stars { color: #f59e0b; margin-bottom: 15px; font-size: 16px; }
.review-text { font-style: italic; color: #475569; line-height: 1.6; margin-bottom: 20px; }
.reviewer-info strong { display: block; color: #0f172a; font-size: 16px; }
.reviewer-info span { font-size: 13px; color: #64748b; }

/* ================= PREMIUM SPECIAL PROMOTIONS DISCOUNT CARD GRID ================= */
.discount-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%) !important;
    border-radius: 32px;
    padding: 80px 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.discount-section .section-title {
    color: #ffffff !important;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.discount-section .section-subtitle {
    color: #93c5fd !important;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 50px;
}

.discount-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.discount-card {
    background: rgba(255, 255, 255, 0.06); 
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 35px 28px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.discount-card:hover { 
    transform: translateY(-10px) scale(1.02); 
    background: rgba(255, 255, 255, 0.12);
    border-color: #60a5fa; 
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
}

.discount-card h3 { 
    color: #ffffff; 
    font-size: 28px; 
    margin-bottom: 14px; 
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.discount-card p { 
    color: #cbd5e1; 
    line-height: 1.7;
    font-size: 14px;
}

.discount-card p strong {
    color: #60a5fa !important;
    font-weight: 700;
    font-size: 15px;
}

/* ================= CONTACT FORM LAUNCH MODULE ================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1180px;
    margin: 0 auto;
}

.contact-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
    padding: 38px;
    border-radius: 28px;
    border: 1px solid rgba(148,163,184,0.18);
    box-shadow: 0 16px 36px rgba(15,23,42,0.08);
}

.contact-box h3 { margin-bottom: 22px; font-size: 28px; color: #0f172a; position: relative; z-index: 1; }
.contact-box p { margin-bottom: 16px; color: #475569; line-height: 1.7; position: relative; z-index: 1; }
#contact form { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }

#contact input, #contact textarea {
    width: 100%; padding: 15px 16px; border-radius: 14px; border: 1px solid #d1d5db;
    outline: none; font-size: 15px; background: #fff; color: #0f172a; transition: all .25s ease;
}

#contact input:focus, #contact textarea:focus { border-color: #2563eb; box-shadow: 0 0 0 4px rgba(37,99,235,0.12); }
#contact textarea { resize: none; min-height: 140px; }
.contact-box:first-child { background: radial-gradient(circle at top right, rgba(37,99,235,0.12), transparent 30%), linear-gradient(180deg,#ffffff 0%,#f8fafc 100%); }
.contact-box:last-child { background: linear-gradient(180deg, rgba(15,23,42,0.96) 0%, rgba(30,64,175,0.94) 100%); }
.contact-box:last-child h3, .contact-box:last-child p { color: rgba(255,255,255,0.94); }

/* ================= FAQ COLLAPSIBLE ENGINE ================= */
.faq-section { 
    padding: 100px 8%; 
    background: #ffffff; 
}

.faq-section h2 { 
    text-align: center; 
    font-size: 3rem; 
    color: #0f172a; 
    margin-bottom: 50px; 
}

.faq-item { 
    max-width: 900px; 
    margin: 0 auto 18px; 
    border-radius: 18px; 
    overflow: hidden; 
    background: #fff; 
    border: 1px solid #e2e8f0; 
    box-shadow: 0 8px 20px rgba(0,0,0,.05); 
    transition: .3s; 
}

.faq-item:hover { 
    border-color: #2563eb; 
}

.faq-question { 
    width: 100%; 
    background: white; 
    border: none; 
    padding: 24px; 
    font-size: 1.05rem; 
    font-weight: 600; 
    color: #0f172a; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.faq-question span { 
    width: 36px; 
    height: 36px; 
    border-radius: 50%; 
    background: #eff6ff; 
    color: #2563eb; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 22px; 
    transition: .3s; 
}

.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height .4s ease; 
    background: #f8fafc; 
}

.faq-answer p { 
    padding: 25px; 
    margin: 0; 
    color: #475569; 
    line-height: 1.8; 
}

.faq-item.active .faq-question span { 
    background: #2563eb; 
    color: white; 
}

/* ================= HARDWARE-ACCELERATED SNAP SCROLL DRIVER ================= */
.mobile-swipe-wrapper {
    position: relative;
    width: 100%;
}

#featured-cars .cars-grid,
.reviews-section .reviews-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 15px 5px 25px 5px;
    scrollbar-width: thin;
}

#featured-cars .car-card,
.reviews-section .review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    scroll-snap-align: start;
}

.swipe-arrow {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.9);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 25;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}
.swipe-arrow:hover { background: #2563eb; transform: translateY(-50%) scale(1.05); }
.left-arrow { left: -22px; }
.right-arrow { right: -22px; }

/* ================= UTILITIES & FLOATS (LAPTOP GENERAL LOOK) ================= */
.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 25px; right: 25px;
    background: #25D366; color: white; border-radius: 50%; text-align: center;
    line-height: 60px; font-size: 32px; box-shadow: 0 4px 12px rgba(0,0,0,.25); z-index: 9999; transition: all .3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }

.call-btn {
    position: fixed; bottom: 95px; right: 20px; display: flex; align-items: center; gap: 10px;
    padding: 14px 24px; background: linear-gradient(135deg, #2563eb, #1d4ed8); color: white;
    text-decoration: none; font-weight: 600; font-size: 16px; border-radius: 50px; z-index: 1000; transition: all 0.3s ease;
}
.call-btn:hover { transform: translateY(-4px) scale(1.05); }
.call-icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.15); border-radius: 50%; font-size: 18px; }

/* ================= SOCIAL INTERACTIVE MULTI-COLUMN FOOTER ================= */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 70px 8% 20px;
    margin-top: 90px;
    text-align: left;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand p { margin-top: 15px; line-height: 1.6; font-size: 14px; }
.social-links { margin-top: 20px; display: flex; gap: 15px; }
.social-links a {
    color: white; background: rgba(255, 255, 255, 0.08); width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; text-decoration: none;
}
.social-links a:hover { background: #2563eb; }
.site-footer h4 { color: white; font-size: 18px; margin-bottom: 20px; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 12px; }
.site-footer ul li a { color: #94a3b8; text-decoration: none; transition: 0.3s; font-size: 14px; }
.site-footer ul li a:hover { color: #60a5fa; padding-left: 5px; }
.footer-contact p { margin-bottom: 12px; font-size: 14px; display: flex; align-items: center; gap: 10px; color: #94a3b8; }
.footer-contact i { color: #2563eb; }
.footer-bottom { text-align: center; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 14px; color: #94a3b8; }


/* ==========================================================================
   CLEAN RESPONSIVE MEDIA QUERIES (TABLETS & PHONES ONLY)
   ========================================================================== */

@media (max-width: 1024px) {
    /* Hide Trust Strip on Tablet and Mobile Viewports */
    .hero-features-strip, 
    .top-announcement-bar { 
        display: none !important; 
    }

    nav { 
        padding: 16px 6% !important; 
    }
    .desktop-cta { display: none !important; }
    .menu-toggle { display: block !important; }

    nav ul.nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        padding: 100px 30px 40px 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
    }

    nav ul.nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    nav ul.nav-menu li a {
        display: block;
        padding: 18px 0;
        font-size: 15px;
        color: white;
    }

    .mobile-cta-wrapper {
        display: block !important;
        width: 100%;
        margin-top: 30px;
    }

    .mobile-cta-wrapper .nav-cta-btn {
        display: block;
        text-align: center;
        width: 100%;
        padding: 14px 0;
    }

    nav ul.nav-menu.active { right: 0 !important; }

    #featured-cars .car-card,
    .reviews-section .review-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
    
    .why-choose-us .features-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 15px 5px 25px 5px;
    }
    .why-choose-us .feature-card {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
        scroll-snap-align: start;
    }
    .why-choose-us .mobile-swipe-wrapper .swipe-arrow {
        display: flex;
    }
    .left-arrow { left: -10px; }
    .right-arrow { right: -10px; }

    .discount-cards { 
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important; 
        gap: 24px; 
    }
    .contact-wrapper { grid-template-columns: 1fr; gap: 24px; }
    .footer-container { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    section, .why-choose-us, .faq-section { padding: 60px 5% !important; }
    .section-title, .why-choose-us h2, .faq-section h2 { font-size: 2.2rem !important; }

    nav {
        padding: 14px 5% !important;
    }

    .logo { font-size: 22px !important; }

    /* Hero Section Mobile Restoration */
    .hero {
        background: linear-gradient(to right, #000000 45%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0) 100%), 
                    url("./images/ChatGPT Image Jul 1, 2026 at 05_10_12 PM.png") no-repeat 72% center !important;
        background-size: cover !important;
        height: 80vh !important;
        padding: 0 5% !important;
    }

    .hero-content {
        max-width: 280px !important;
        text-align: left;
    }

    .hero-content h1 { 
        font-size: 38px !important; 
        line-height: 1.0 !important;
        margin-bottom: 15px !important;
    }

    .hero-content p {
        font-size: 13px !important;
        line-height: 1.5 !important;
        color: #d1d5db !important;
        margin-bottom: 25px !important;
    }

    .hero-actions { 
        flex-direction: column; 
        width: 100%; 
        gap: 10px; 
        align-items: flex-start;
    }

    .hero-btn-red, 
    .hero-btn-outline { 
        width: 100% !important; 
        max-width: 200px !important; 
        padding: 12px 20px !important;
        font-size: 12px !important;
        text-align: center; 
    }
    
    .hero-rating-badge { display: none !important; }

    /* Touch Lane Track Layout Adjustments */
    .why-choose-us .features-grid,
    #featured-cars .cars-grid,
    .reviews-section .reviews-grid {
        scrollbar-width: none;
        padding: 10px 0 !important;
    }
    .why-choose-us .features-grid::-webkit-scrollbar,
    #featured-cars .cars-grid::-webkit-scrollbar,
    .reviews-section .reviews-grid::-webkit-scrollbar {
        display: none;
    }

    .why-choose-us .feature-card,
    #featured-cars .car-card,
    .reviews-section .review-card {
        flex: 0 0 85% !important;
        min-width: 85% !important;
        scroll-snap-align: center;
    }

    /* Fixed Card Real-Time Info Layout System */
    .realtime-dashboard-grid { 
        grid-template-columns: 1fr !important; 
        padding: 30px 20px !important; 
        gap: 24px !important; 
    }
    
    .realtime-title { font-size: 22px; }
    .stats-row { flex-direction: column; gap: 30px; }

    /* Fixed Discounts & Blog Layout System */
    .discount-cards, 
    .discount-grid,
    .blog-grid { 
        grid-template-columns: 1fr !important; 
        gap: 20px !important; 
    }
    
    .discount-card, 
    .blog-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .discount-card p, 
    .blog-card p {
        white-space: normal !important;
    }

    /* Footer Mobile Formatting */
    .footer-container { 
        grid-template-columns: 1fr !important; 
        gap: 30px !important; 
        text-align: center; 
    }
    .footer-brand, .footer-links, .footer-fleet, .footer-contact { text-align: center !important; }
    .social-links { justify-content: center; }
    .footer-contact p { justify-content: center; }

    /* Floating CTA Badges Alignment */
    .whatsapp-float {
        width: 55px !important;
        height: 55px !important;
        line-height: 55px !important;
        bottom: 20px !important;
        right: 20px !important;
        font-size: 28px !important;
    }

    .call-btn { 
        right: 20px !important; 
        bottom: 90px !important; 
        width: 55px !important; 
        height: 55px !important; 
        padding: 0 !important; 
        display: flex !important;
        align-items: center !important;
        justify-content: center !important; 
        border-radius: 50% !important; 
    }
    
    .call-btn span:last-child { display: none !important; }
    .call-icon { 
        margin: 0 !important;
        background: transparent !important;
        font-size: 22px !important; 
    }
}

/* ==========================================================================
   DESKTOP FIX: HIDE SWIPE ARROWS FOR WHY CHOOSE US
   ========================================================================== */
   @media (min-width: 1025px) {
    .why-choose-us .swipe-arrow,
    .why-choose-us .mobile-swipe-wrapper .swipe-arrow {
        display: none !important;
    }
}