* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "SKODA Next", sans-serif;
    background: #fff;
    overflow-x: hidden;
}

.slider-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* === Backgrounds === */
.backgrounds {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}

.background.active {
    opacity: 1;
    z-index: 1;
}

/* === Text Overlay === */
.text-overlay {
    position: absolute;
    top: 0%;
    width: 100%;
    text-align: center;
    z-index: 1;
    pointer-events: none;
}

.text-overlay h2,
.text-overlay h1 {
    opacity: 0;
    transform: translateY(200px);
    transition: all 0.7s ease;
}

.text-overlay.animate-out h2,
.text-overlay.animate-out h1 {
    opacity: 0;
    transform: translateY(-60px);
}

.text-overlay.animate-in h2,
.text-overlay.animate-in h1 {
    opacity: 1;
    transform: translateY(0);
}

.text-overlay h2 {
    font-size: 100px;
    color: rgba(0, 0, 0, 0.8);
    letter-spacing: 6px;
    transition-delay: 0.1s;
    font-weight: 700;
}

.text-overlay h1 {
    font-size: 200px;
    color: rgba(0, 0, 0, 0.68);
    letter-spacing: 20px;
    margin-top: -90px;
    transition-delay: 0.2s;
    font-weight: 900;
}

/* === Slider === */
.slider {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease;
    position: relative;
    z-index: 2;
}

.slide {
    min-width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
}

.slide img {
    width: auto;
    max-width: 85vw;
    height: auto;
    margin: 350px auto 0 auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* === Arrows === */
.nav {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    background: transparent;
    border: none;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
    padding: 5px;
}

.nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.nav.left {
    left: 20px;
}

.nav.right {
    right: 20px;
}

/* === Dots === */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 5;
}

.dot {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #333;
}

/* === CTA Buttons === */
.cta-buttons {
    position: absolute;
    bottom: 60px;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.primary-btn,
.secondary-btn {
    padding: 12px 30px;
    margin: 0 10px;
    font-size: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    color: #fff;
    border: none;
    background-color: #111;
}

.secondary-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #ccc;
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* === Social Media Icons === */
.social-icons {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 18px;
    z-index: 10;
}

.social-icons a {
    color: #ffffffb0;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
    transform: scale(1.2);
}

/* === Details View === */
.details-view {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 15;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease;
    pointer-events: none;
}

.details-view.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.details-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    height: 100%;
}

.details-left-arrow {
    position: absolute;
    left: 30px;
    top: 40px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.details-center {
    text-align: center;
    flex: 1;
}

/* ==== Text Behind Car Image ==== */
.car-hero-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.car-text-behind {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 0;
    pointer-events: none;
}

.car-text-behind h2 {
    font-size: 60px;
    color: rgba(0, 0, 0);
    font-weight: 700;
    margin: 0;
    letter-spacing: 6px;
}

.car-text-behind h1 {
    font-size: 160px;
    color: rgba(0, 0, 0, 0.63);
    font-weight: 900;
    margin-top: -30px;
    letter-spacing: 20px;
}

/* ==== Car Image ==== */
.main-car img {
    width: 100%;
    max-width: 800px;
    margin: 140px auto 40px;
    display: block;
    z-index: 2;
    position: relative;
}

/* ==== Specs Panel ==== */
.specs-panel {
    text-align: left;
    width: 180px;
}

.specs-heading {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.spec-item img {
    width: 30px;
    margin-right: 12px;
}

.spec-item span {
    font-size: 13px;
    color: #444;
}

.spec-item span strong {
    display: block;
    font-size: 18px;
    color: #111;
}

/* ==== Thumbnails Section ==== */
.thumbnails-section {
    margin-top: 40px;
}

.thumb-title {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Enlarged Thumbnail Images */
.thumbnails {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.thumbnails img {
    width: 160px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* View More Button */
.view-more-btn {
    background: #800000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    opacity: 0.9;
}

/* === Mobile Responsive Slider Fix === */
@media (max-width: 768px) {
    .slider-container {
        height: 51.5vh; /* reduced height from 100vh */
    }

    .text-overlay {
        top: 5%;
    }

    .text-overlay h2 {
        font-size: 26px;
        letter-spacing: 2px;
        margin-top: 70px;
    }

    .text-overlay h1 {
        font-size: 62px;
        letter-spacing: 6px;
        margin-top: -20px;
    }

    .slide img {
        margin: 170px auto 0 auto; /* move car lower */
        max-width: 70vw;
        height: auto;
    }

    .cta-buttons {
        position: absolute;
        bottom: 80px; /* move buttons up */
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .primary-btn,
    .secondary-btn {
        padding: 10px 22px;
        font-size: 13px;
    }

    .nav.left,
    .nav.right {
        top: 55%;
        font-size: 28px;
    }

    .dots {
        bottom: 50px;
    }

    .social-icons {
        bottom: 20px;
        left: 10px;
        font-size: 14px;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .details-view {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }

    .details-layout {
        flex-direction: column;
        display: flex;
        align-items: center;
        padding: 20px 15px;
        height: auto;
        overflow-y: auto;
    }

    .car-text-behind {
        position: static;
        transform: none;
        margin-bottom: 10px;
        text-align: center;
    }

    .car-text-behind h2 {
        font-size: 22px;
        letter-spacing: 2px;
        margin-top: 20px;
    }

    .car-text-behind h1 {
        font-size: 42px;
        letter-spacing: 8px;
        margin-top: 0px;
    }

    .main-car img {
        max-width: 90%;
        margin: -50px auto 20px;
    }

    .specs-panel {
        width: 100%;
        text-align: center;
        margin-top: 0px;
        margin-bottom: 20px; /* spacing before thumbnails */
    }

    .specs-heading {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .spec-item {
        justify-content: center;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .spec-item img {
        width: 24px;
        margin-right: 8px;
    }

    .spec-item span {
        font-size: 12px;
    }

    .spec-item span strong {
        font-size: 16px;
    }

    .thumbnails-section {
        margin-top: -30px;
    }

    .thumb-title {
        margin-bottom: 10px;
    }

    .thumbnails {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .thumbnails img {
        width: 100px;
        height: 70px;
    }

    .view-more-btn {
        font-size: 13px;
        padding: 10px 20px;
    }
}

/* === Action Buttons (Bottom Row) === */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #000;
    padding: 30px 0;
    align-items: center;
}

.action-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.action-box button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 20px;
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s ease;
    width: 100%;
}

.action-box button:hover {
    color: #ccc;
}

.divider {
    width: 1px;
    height: 40px;
    background: #555;
    justify-self: center;
}

@media (max-width: 768px) {
    .action-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 per row */
        gap: 1px;
        background: #000;
        padding: 10px 0;
    }

    .action-box {
        border-bottom: 1px solid #333;
        border-right: 1px solid #333;
    }

    .action-box:nth-child(2),
    .action-box:nth-child(4) {
        border-right: none;
    }

    .divider {
        display: none; /* Hide dividers on mobile */
    }

    .action-box button {
        padding: 14px;
        font-size: 13px;
    }
}

/* SELECT A MODEL SECTION */
.select-model {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #ffffff, #d7f3e9);
}

.select-model h1 {
    font-size: 36px;
    font-weight: 900;
}

.select-model p {
    font-size: 15px;
    margin-top: 10px;
    color: #444;
}

/* MODEL GRID */
.models {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding: 0 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.model-card {
    background: url("images/box-bg.png") center center no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 40px 20px;
    height: 230px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: visible;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.model-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    z-index: 0;
    transition: background 0.4s ease;
}

.model-card:hover::before {
    background: radial-gradient(
            circle at top left,
            rgba(173, 236, 218, 0.3),
            transparent 60%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(169, 212, 255, 0.3),
            transparent 60%
        );
}

.model-card h2,
.model-card img {
    position: relative;
    z-index: 1;
}

.model-card h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 14px;
    transition: transform 0.4s ease;
}

.model-card img {
    width: 100%;
    max-height: 110px;
    object-fit: contain;
    transition: transform 0.4s ease;
    pointer-events: none;
}

.model-card:hover img {
    transform: scale(1.45);
}

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

@media (max-width: 768px) {
    .models {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .model-card {
        height: 200px;
        padding: 30px 15px;
    }

    .model-card h2 {
        font-size: 18px;
    }

    .model-card img {
        max-height: 90px;
    }
}

@media (max-width: 480px) {
    .models {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* ✅ center if odd */
        gap: 20px;
        padding: 0 20px;
    }

    .model-card {
        flex: 0 1 calc(50% - 20px); /* two in a row */
        max-width: 160px;
    }

    .model-card:nth-last-child(1):nth-child(odd) {
        flex: 0 1 100%;
        justify-content: center;
    }
}

.advantage-section {
    background-image: url("images/bg/advantage-bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    /* ✅ previously was cover */
    background-color: #ffffff;
    /* fallback */
    padding: 80px 20px 40px;
    position: relative;
    overflow: hidden;
}

.advantage-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.left-section {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    position: relative;
}

.subtitle {
    color: #2bb656;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 8px;
}

.main-heading {
    font-size: 36px;
    font-weight: 900;
    color: #2bb656;
}

.main-heading span {
    color: #2bb656;
}

.car-image {
    width: 100%;
    max-width: 520px;
    margin-top: 20px;
    margin-left: -60px;
    /* reduced from -140px */
    transform: scale(1.25);
    /* reduced from 1.6 */
}

.right-section {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.content-box {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

/* ✅ FINAL stats box as per screenshot */
.angled-stats-wrapper {
    margin-top: 80px;
    margin-left: auto;
    margin-right: -60px;
    /* Optional: adds a buffer from right edge */
    width: fit-content;
    padding: 0 20px;
    filter: drop-shadow(0px 25px 35px rgba(0, 0, 0, 0.2));
}

.angled-stats-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    padding: 40px 100px;
    background: #f8f8f8;
    clip-path: polygon(40px 0%, 100% 0%, 100% 100%, 0% 100%);
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.angled-stats-box .stat {
    text-align: center;
    min-width: 120px;
}

.angled-stats-box .stat h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e2a36;
}

.angled-stats-box .stat p {
    font-size: 14px;
    color: #555;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .advantage-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 0 10px;
    }

    .main-heading {
        font-size: 24px;
        text-align: center;
    }

    .subtitle {
        font-size: 14px;
        text-align: center;
    }

    .car-image {
        margin-left: 0;
        transform: scale(1.05);
        max-width: 100%;
    }

    .right-section {
        max-width: 100%;
    }

    .content-box {
        padding: 20px;
        font-size: 14px;
        line-height: 1.6;
    }

    .angled-stats-wrapper {
        margin: 40px auto 0;
        padding: 0 10px;
        width: 100%;
    }

    .angled-stats-box {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 30px 20px;
        clip-path: none;
        border-radius: 12px;
    }

    .angled-stats-box .stat {
        min-width: 45%;
        max-width: 48%;
    }

    .angled-stats-box .stat h3 {
        font-size: 18px;
    }

    .angled-stats-box .stat p {
        font-size: 13px;
    }
}

/* Latest Offers */
.latest-offers-section {
    padding: 60px 40px;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(to bottom, #fefefe, #f6effa);
    text-align: center;
}

.latest-offers-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

/* Row layout */
.latest-offers-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
    /* gap between row 1 and 2 */
}

.latest-offers-row.row-2 {
    margin-bottom: 0;
}

/* Cards and images */
.card-small {
    width: 269px;
    height: 390px;
}

.card-medium {
    width: 418px;
    height: 390px;
}

.card-large {
    width: 665px;
    height: 390px;
}

.offer-card {
    background-color: #1d7746;
    color: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    text-align: left;
}

.offer-card h3 {
    font-size: 20px;
    margin: 10px 0;
    line-height: 1.4;
}

.offer-card span {
    font-size: 14px;
    color: #c2e1cf;
}

.offer-card .brand {
    font-size: 18px;
    font-weight: 700;
}

.image-wrapper {
    overflow: hidden;
    border-radius: 20px;
    height: 390px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hover-offer-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 390px;
    width: 418px;
}

.hover-offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hover-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.hover-offer-card:hover .hover-overlay {
    transform: translateY(0%);
}

.hover-overlay h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    /* ✅ reduces vertical spacing */
}

.hover-overlay .subtitle {
    font-size: 13px;
    color: #d0d0d0;
    margin: 2px 0;
    line-height: 1.2;
    /* ✅ keeps text close */
}

.hover-overlay .offer {
    font-size: 13px;
    color: #32b768;
    font-weight: 500;
    margin-top: 2px;
    line-height: 1.2;
}

.hover-blur-card {
    position: relative;
    width: 665px;
    height: 390px;
    border-radius: 20px;
    overflow: hidden;
}

.hover-blur-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.4s ease;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 24px 30px;
    box-sizing: border-box;
}

.blur-text {
    text-align: center;
}

.blur-text h3 {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.blur-text .subtitle {
    font-size: 13px;
    color: #e0e0e0;
    margin: 6px 0 0;
    line-height: 1.2;
}

.blur-text .offer {
    font-size: 14px;
    color: #32b768;
    font-weight: 500;
    margin-top: 4px;
    line-height: 1.2;
}

.hover-blur-card:hover .blur-overlay {
    opacity: 1;
}

/* Latest Offers Responsive & Unified Card Fix */
@media (max-width: 768px) {
    .latest-offers-section {
        padding: 40px 20px;
    }

    .latest-offers-row {
        flex-direction: column;
        gap: 20px;
    }

    .card-small,
    .card-medium,
    .card-large,
    .hover-offer-card,
    .hover-blur-card {
        width: 100%;
        height: auto;
    }

    .offer-card {
        border-radius: 20px;
        padding: 24px;
        text-align: center;
    }

    .hover-offer-card,
    .hover-blur-card {
        display: flex;
        flex-direction: column;
        border-radius: 20px;
        overflow: hidden;
        background: #000;
        position: relative;
    }

    .hover-offer-card img,
    .hover-blur-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .hover-overlay,
    .blur-overlay {
        position: static;
        transform: none;
        padding: 16px 18px;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: none;
        opacity: 1;
        width: 100%;
        box-sizing: border-box;
        display: block;
    }

    .hover-overlay h3,
    .blur-text h3 {
        margin-top: 4px;
        font-size: 18px;
        color: #fff;
    }

    .hover-overlay .subtitle,
    .blur-text .subtitle {
        font-size: 12px;
        color: #ccc;
        margin: 2px 0;
    }

    .hover-overlay .offer,
    .blur-text .offer {
        font-size: 13px;
        color: #32b768;
        font-weight: 500;
        margin-top: 4px;
    }

    /* Align center for card-small text */
    .offer-card h3,
    .offer-card span,
    .offer-card .brand {
        text-align: center;
    }
}

/* Latest News Section */
.latest-news-section {
    padding: 40px 60px;
    font-family: "Poppins", sans-serif;
    background: #fff;
    width: 100%;
    /* Use full width */
    max-width: none;
    /* Remove max-width */
    margin: 0;
    /* Remove auto margin */
}

.latest-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.latest-news-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

.see-all-btn {
    background-color: #32b768;
    color: #000;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.see-all-btn:hover {
    background-color: #28a65b;
}

/* News Cards Container */
.news-cards {
    display: flex;
    justify-content: center;
    /* Changed from center */
    gap: 30px;
    /* Reduce gap to fit 3 cards on one row */
    flex-wrap: wrap;
}

/* Individual Card */
.news-card {
    width: 360px;
    flex: 0 0 auto;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Image Section */
.news-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 15px;
}

.news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.read-more {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
}

/* Text Content */
.news-content {
    padding: 16px 18px 20px;
    text-align: left;
}

.news-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.news-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.news-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.preowned-section {
    position: relative;
    background: #0d0d0d;
    color: white;
    padding: 20px 60px 0;
    text-align: center;
    border-radius: 36px;
    overflow: hidden;
}

.preowned-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;

    background: linear-gradient(
        to right,
        #ffffff 0%,
        rgba(255, 255, 255, 0.3) 100%,
        #ffffff 0%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preowned-text p {
    font-size: 11px;
    max-width: 800px;
    margin: 0 auto 28px;
    line-height: 1.6;
    color: #a9a9a9;
}

.preowned-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    font-size: 10px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn.green {
    background-color: #32b768;
    color: white;
}

.btn.green:hover {
    background-color: #279859;
}

.btn.white {
    background-color: white;
    color: #000;
}

.btn.white:hover {
    background-color: #f1f1f1;
}

/* SUPERB background text */
.preowned-bg-text {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 240px;
    /* ✅ Increased size */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.25);
    pointer-events: none;
    margin-top: 260px;
    z-index: 1;
    letter-spacing: -8px;
    white-space: nowrap;
}

/* Car image */
.preowned-image {
    margin-top: 40px;
    /* ✅ pushed image down */
    z-index: 2;
    position: relative;
}

.preowned-image img {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
    transform: scaleX(-1) rotate(-1.51deg);
    /* ⬅️ flipped horizontally */
    transition: transform 0.3s ease;
}

/* Responsive for Preowned Section */
@media (max-width: 768px) {
    .preowned-section {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .preowned-text h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .preowned-text p {
        font-size: 13px;
        line-height: 1.7;
        padding: 0 10px;
    }

    .preowned-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-top: 20px;
    }

    .btn {
        font-size: 12px;
        width: 180px;
        padding: 10px 0;
    }

    .preowned-bg-text {
        font-size: 100px;
        top: 235px;
        margin-top: 120px;
        letter-spacing: -3px;
    }

    .preowned-image {
        margin-top: 30px;
        margin-left: -40px;
    }

    .preowned-image img {
        max-width: 110%;
        transform: scaleX(-1) rotate(-1.51deg);
    }
}

.feedback-section {
    background-color: #fff;
    padding: 60px;
    font-family: "Poppins", sans-serif;
}

.feedback-subtitle {
    font-size: 20px;
    color: #32b768;
    font-weight: 600;
    margin-bottom: 10px;
}

.feedback-heading {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.feedback-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* === Left Panel === */
.feedback-info-card {
    width: 260px;
    background: linear-gradient(to bottom right, #e9f6ef, #e8ebf8);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    text-align: center;
}

.feedback-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feedback-info-card .stars {
    margin: 10px auto;
    display: block;
    width: 100px;
}

.feedback-info-card p {
    font-size: 13px;
    margin: 4px 0;
    color: #333;
}

.feedback-info-card .trustpilot-label {
    color: #32b768;
    font-weight: 600;
}

.feedback-info-card hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ccc;
}

.feedback-info-card .google-logo {
    width: 100px;
    margin: 0 auto;
}

.google-stars {
    font-size: 18px;
    color: #ffcc00;
    margin: 5px 0;
}

/* === Carousel Area === */
.carousel-area {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
    overflow: hidden;
}

/* === Carousel Scroll === */
.feedback-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.feedback-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    width: 360px;
    height: 260px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    padding: 20px 24px;
    text-align: left;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-header .stars {
    color: #ffcc00;
    font-size: 16px;
}

.rating-value {
    font-size: 12px;
    color: #555;
}

.google-logo-small {
    width: 50px;
    margin-left: auto;
}

.review-text {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin: 12px 0;
}

.review-author {
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
}

/* Arrows */
.carousel-nav {
    width: 32px;
    height: 32px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 14px;
    transition: background 0.2s ease;
}

.carousel-nav:hover {
    background: #32b768;
}

/* === Footer Tagline === */
.feedback-footer {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    align-items: center;
}

.view-link {
    font-weight: 500;
    color: #000;
    border: 1px solid #32b768;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 14px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-link:hover {
    background-color: #32b768;
    color: #fff;
}

.awards-section {
    background: linear-gradient(to bottom right, #e8f2f1, #f1ebfb, #d8e8e1);
    padding: 60px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.awards-heading {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

.awards-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.award-card {
    width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.award-icon {
    width: 80px;
    margin-bottom: 20px;
}

.award-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    line-height: 1.5;
}

/* Footer View All link */
.awards-footer {
    margin-top: 20px;
}

.view-link {
    font-weight: 500;
    color: #000;
    font-size: 14px;
    position: relative;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 6px;
}

.view-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    border-bottom: 2px dashed #32b768;
}
