/* =================================================================
   FULLSCREEN HERO SECTION — DARK NAVY DESIGN (PerfectCar Style)
   ================================================================= */

.hero-fullscreen {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    background: #1a2332;
}

/* Admin bar spacing */
body.admin-bar .hero-fullscreen {
    padding-top: 112px;
}

/* =========================
   Background — Solid dark navy + subtle geometric lines
   ========================= */

/* Hide old diagonal shapes */
.hero-bg-navy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #141c28 0%, #1a2332 40%, #1e2d3d 100%);
    z-index: 0;
}

.hero-bg-red {
    display: none;
}

/* Subtle geometric decoration lines */
.hero-fullscreen::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 45%, rgba(74, 159, 212, 0.03) 45%, rgba(74, 159, 212, 0.03) 46%, transparent 46%),
        linear-gradient(135deg, transparent 55%, rgba(74, 159, 212, 0.02) 55%, rgba(74, 159, 212, 0.02) 56%, transparent 56%);
    z-index: 1;
    pointer-events: none;
}

.hero-fullscreen::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 159, 212, 0.3), transparent);
    z-index: 2;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ===========================
   LEFT SIDE → NOW TEXT CONTENT (swapped)
   =========================== */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    order: -1;
}

.hero-main-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Number Indicator */
.hero-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: #4a9fd4;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Hero Title — Large bold italic serif */
.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.05;
    margin: 0;
    font-style: italic;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.hero-title-line1 {
    display: block;
    color: #ffffff;
}

.hero-title-line2 {
    display: block;
    color: #ffffff;
    margin-top: 4px;
}

/* Description */
.hero-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* CTA Button — Outline style */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: transparent;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    gap: 16px;
    color: #ffffff;
}

/* Info Boxes — Stats Row (120 / 1K / +50K style) */
.hero-info-boxes {
    display: flex;
    gap: 40px;
    margin-top: 10px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.info-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #4a9fd4;
    letter-spacing: -1px;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.info-box h3 {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-box p {
    display: none;
}

/* ===========================
   RIGHT SIDE → NOW IMAGE SLIDER (swapped)
   =========================== */
.hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    order: 1;
}

/* Standard image frame */
.hero-car-image {
    position: relative;
    width: 100%;
    max-width: 520px;
    border: none;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    background: transparent;
    overflow: hidden;
}

/* Removed geometric border effect per request */
.hero-car-image::before,
.hero-car-image::after {
    display: none;
}

.hero-car-swiper {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.hero-car-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dots — Teal accent */
.hero-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(74, 159, 212, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4a9fd4;
    width: 28px;
    height: 10px;
    border-radius: 5px;
}

.dot:hover {
    background: #4a9fd4;
}

/* Social Media Links */
.hero-social {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-divider {
    width: 40px;
    height: 1px;
    background: rgba(74, 159, 212, 0.4);
}

.social-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-link i {
    font-size: 1rem;
    color: #4a9fd4;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #4a9fd4;
}

.social-link:hover i {
    transform: scale(1.2);
}

/* =================================================================
   RESPONSIVE HERO
   ================================================================= */

/* Tablet */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-content-wrapper {
        gap: 40px;
    }

    .info-number {
        font-size: 2.2rem;
    }
}

/* Mobile — CONTENT ON TOP, SLIDER BELOW */
@media (max-width: 968px) {
    .hero-fullscreen {
        min-height: auto;
        padding: 100px 0 60px;
        overflow-x: hidden;
        width: 100%;
    }

    body.admin-bar .hero-fullscreen {
        padding-top: 130px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto;
    }

    /* Content goes on TOP */
    .hero-right {
        order: -1;
        text-align: center;
        align-items: center;
        width: 100%;
    }

    /* Slider goes BELOW */
    .hero-left {
        order: 1;
        align-items: center;
        width: 100%;
    }

    .hero-main-content {
        align-items: center;
        width: 100%;
    }

    .hero-fullscreen::before {
        width: 100%;
        opacity: 0.5;
    }

    .hero-car-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-car-swiper {
        aspect-ratio: 16/9;
        max-height: 250px;
    }

    .hero-title {
        font-size: 2.5rem;
        width: 100%;
    }

    .hero-dots {
        justify-content: center;
        margin-top: 10px;
    }

    .hero-description {
        max-width: 100%;
        margin: 0 auto;
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .hero-info-boxes {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 25px;
    }

    .info-box {
        align-items: center;
    }

    .hero-btn {
        align-self: center;
    }
}

/* Small Phone */
@media (max-width: 640px) {
    .hero-fullscreen {
        padding: 90px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
        max-width: 250px;
    }

    .hero-social {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        width: 100%;
    }

    .social-divider {
        display: none;
    }

    .hero-info-boxes {
        gap: 20px;
    }

    .info-number {
        font-size: 1.8rem;
    }

    .hero-right {
        gap: 20px;
    }

    .hero-car-swiper {
        aspect-ratio: 4/3;
        max-height: 220px;
    }

    .hero-car-image {
        max-width: 100%;
    }
}