@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;900&display=swap');

/* ===================== VARIABLES ===================== */
:root {
    --red: #0f4d36;
    /* Replaced with Premium Dark Green */
    --red-dark: #0a3525;
    --red-glow: rgba(15, 77, 54, 0.35);
    --dark: #f4f4f6;
    /* Light gray background */
    --dark-2: #ffffff;
    /* White background for sections/cards */
    --dark-3: #f9f9fb;
    /* Slightly off-white for secondary cards */
    --dark-4: #e5e5ea;
    --white: #111111;
    /* Dark text */
    --muted: #6e6e73;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-b: rgba(255, 255, 255, 0.95);
    --border: rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    --trans: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================== RESET ===================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 2rem;
    background: var(--red);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--trans);
}

.btn:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--red-glow);
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--glass-b);
    border-color: var(--white);
    box-shadow: none;
}

/* ===================== HEADER ===================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 4%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 900;
    transition: all 0.4s ease;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled {
    padding: 0.8rem 4%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.logo {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #111111;
    transition: var(--trans);
    text-decoration: none;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
    /* Ensures white background perfectly blends */
}

nav {
    justify-self: center;
}

nav ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

nav a {
    color: #333333;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #111111;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-link {
    color: #111111;
    font-size: 1.2rem;
    transition: var(--trans);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.icon-link:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #111111;
    border-radius: 2px;
    transition: var(--trans);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===================== HERO SLIDER ===================== */
.hero-slider {
    position: relative;
    height: calc(100vh - 75px);
    height: calc(100dvh - 75px);
    width: 100%;
    max-width: 100vw;
    margin-top: 75px;
    padding: 0 !important;
    background: #ffffff;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.swiper-slide .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    z-index: 1;
    transition: transform 12s linear;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.1);
}

.swiper-slide .slide-bg.slide-studio {
    height: 85%;
    /* Increased to 85% for more zoom */
    top: 55%;
    object-fit: contain;
    transform: translateY(-50%) scale(1);
    padding: 0;
    transition: transform 12s linear;
}

.swiper-slide-active .slide-bg.slide-studio {
    transform: translateY(-50%) scale(1.1);
}

/* Tesla Style Top Text */
.slide-text-top {
    position: absolute;
    top: 10%;
    /* Moved up slightly to make room for larger car */
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.slide-text-top>* {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.swiper-slide-active .slide-text-top>* {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .title {
    transition-delay: 0.1s;
}

.swiper-slide-active .subtitle {
    transition-delay: 0.3s;
}

.slide-text-top .title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.slide-text-top .subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Tesla Style Bottom Buttons */
.slide-btns-bottom {
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    z-index: 2;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    transition-delay: 0.5s;
}

.swiper-slide-active .slide-btns-bottom {
    opacity: 1;
    transform: translateY(0);
}

.btn-tesla-primary,
.btn-tesla-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    min-width: 260px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: none;
}

.btn-tesla-primary {
    background: #f4f4f4;
    color: #171a20;
}

.btn-tesla-secondary {
    background: rgba(23, 26, 32, 0.8);
    color: #ffffff;
}

.btn-tesla-primary:hover {
    background: #ffffff;
}

.btn-tesla-secondary:hover {
    background: #171a20;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: #111;
    background: rgba(255, 255, 255, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--trans);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.swiper-button-prev {
    left: 2%;
}

.swiper-button-next {
    right: 2%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1rem;
    font-weight: 800;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--red);
    color: #fff;
}

.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
    background: var(--red);
    opacity: 1;
    width: 24px;
    border-radius: 10px;
}

/* ===================== STATS ===================== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--dark-3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--red);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat p {
    color: var(--muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================== SECTION COMMON ===================== */
section {
    padding: 100px 6%;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.section-head p,
.section-sub {
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 8px;
    display: block;
}

/* ===================== FEATURES ===================== */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.feature-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: var(--trans);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.8rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0;
    margin: 0;
    white-space: nowrap;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===================== CATALOG ===================== */
.catalog {
    background: var(--dark-2);
}

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

.car-card {
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--trans);
    border: none;
    box-shadow: none;
}

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

.car-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.car-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f8f8;
}

.car-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.car-card:hover .car-img {
    transform: scale(1.03);
}

.car-badge {
    display: none;
    /* Hidden for simplicity */
}

.car-info {
    padding: 1.2rem 0;
}

.car-info h3 {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--primary);
}

.car-spec {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.price {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 0;
}

.view-link {
    font-size: 0.85rem;
    color: var(--accent);
    opacity: 0.8;
    transition: var(--trans);
}

.car-card:hover .view-link {
    opacity: 1;
    transform: translateX(4px);
}

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

/* ===================== CONTACT ===================== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background: #ffffff;
}

.contact-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.info-item .icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: rgba(196, 30, 58, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--red);
}

.info-text h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 4px;
}

.info-text p {
    font-size: 1rem;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--trans);
}

.social-btn.wa {
    background: #25D366;
    color: white;
}

.social-btn.wa:hover {
    background: #1da851;
    transform: translateY(-3px);
}

.social-btn.fb {
    background: #1877F2;
    color: white;
}

.social-btn.fb:hover {
    background: #0d5dc4;
    transform: translateY(-3px);
}

/* Form */
.booking-form {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
}

.booking-form h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--trans);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    background: rgba(0, 0, 0, 0.04);
}

.form-group select option {
    background: var(--dark-2);
}

/* Alerts */
.alert {
    padding: 1rem 1.4rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: rgba(52, 199, 89, 0.12);
    border: 1px solid rgba(52, 199, 89, 0.3);
    color: #34C759;
}

.alert-error {
    background: rgba(255, 69, 58, 0.12);
    border: 1px solid rgba(255, 69, 58, 0.3);
    color: #FF453A;
}

/* ===================== FOOTER ===================== */
footer {
    padding: 2.5rem 6%;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo i {
    color: var(--red);
}

.footer-logo span {
    color: var(--red);
}

.footer-links a {
    color: var(--muted);
    margin-left: 20px;
    transition: var(--trans);
}

.footer-links a:hover {
    color: var(--white);
}

/* ===================== FLOATING WA ===================== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: var(--trans);
    animation: waPulse 3s ease infinite;
}

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

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.8);
    }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .slide-btns-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn-tesla-primary,
    .btn-tesla-secondary {
        min-width: 90%;
        width: 90%;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat {
        border-bottom: 1px solid var(--border);
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        padding: 2rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    nav.open {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        background: var(--white);
    }

    nav a {
        color: var(--muted);
    }
}

@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    section {
        padding: 70px 5%;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }
}

/* ===================== SERVICES SECTION ===================== */
.services {
    padding: 100px 6%;
    background: #ffffff;
    border-bottom: 1px solid #f2f2f2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
}

.service-card {
    text-align: center;
    padding: 20px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #f4fbf8;
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-8px) scale(1.05);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--primary);
    letter-spacing: -0.3px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ===================== BRAND MARQUEE ===================== */
.brands {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #f5f5f5;
}

.brand-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 30s linear infinite;
}

.brand-slide {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.brand-slide img {
    height: 50px;
    width: auto;
    filter: grayscale(1) opacity(0.4);
    transition: var(--trans);
}

.brand-slide img:hover {
    filter: grayscale(0) opacity(1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); }
}

@media (max-width: 768px) {
    .brand-track {
        width: calc(180px * 12);
    }
    .brand-slide {
        width: 180px;
    }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-180px * 6)); }
    }
}

/* ===================== INTERNATIONAL FOOTER ===================== */
.main-footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 100px 6% 0;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 80px;
}

.footer-col h3 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.brand-col .footer-logo {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 600;
}

.brand-col .footer-logo span {
    color: var(--accent);
}

.footer-tagline {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.footer-socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-5px);
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.contact-col p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    line-height: 1.6;
}

.contact-col i {
    color: var(--accent);
    font-size: 1.1rem;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 35px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 40px;
}

.footer-bottom-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

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

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    .main-footer {
        padding-top: 60px;
    }
}

/* ===================== STATS BAR ===================== --> */
.stats-bar {
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    padding: 60px 6%;
    border-bottom: 1px solid #f2f2f2;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ===================== FEATURED DEALS ===================== */
.featured-deals {
    padding: 120px 6%;
    background: #fafafa;
}

.deal-card {
    background: #ffffff;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.04);
    margin-top: 60px;
}

.deal-img {
    position: relative;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.deal-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.deal-card:hover .deal-img img {
    transform: scale(1.08);
}

.deal-badge {
    position: absolute;
    top: 35px;
    left: 35px;
    background: #ff3b30;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 10px 20px rgba(255,59,48,0.2);
}

.deal-content {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.deal-tag {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
}

.deal-content h3 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.deal-content p {
    color: #777;
    line-height: 1.9;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.deal-specs {
    display: flex;
    gap: 40px;
    margin-bottom: 45px;
}

.deal-specs span {
    color: var(--primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.deal-specs i {
    color: var(--accent);
    font-size: 1.1rem;
}

.deal-price-wrap {
    margin-bottom: 45px;
}

.old-price {
    display: block;
    color: #bbb;
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.new-price {
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--accent);
}

@media (max-width: 1024px) {
    .deal-card {
        grid-template-columns: 1fr;
    }
    .deal-content {
        padding: 50px;
    }
}

@media (max-width: 768px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 40px;
    }
    .deal-content h3 {
        font-size: 2rem;
    }
    .deal-specs {
        gap: 20px;
        flex-wrap: wrap;
    }
}