/* =================================================================
   FULLSCREEN HERO SECTION
   ================================================================= */

.hero-fullscreen {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    background: var(--white);
}

/* Admin bar spacing */
body.admin-bar .hero-fullscreen {
    padding-top: 112px;
}

/* =========================
   Background Shapes
   - NAVY BLUE strip at TOP (like a header band)
   - RED diagonal on LEFT
   - WHITE below
   ========================= */

/* Navy blue strip at TOP — acts as a color band behind header */
.hero-bg-navy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: var(--navy-blue);
    z-index: 0;
}

/* Red diagonal — left side */
.hero-bg-red {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: var(--primary-red);
    /* Slant to the RIGHT */
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    z-index: 1;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ===========================
   LEFT SIDE: Car Image + Dots + Social
   =========================== */
.hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-car-image {
    position: relative;
    width: 100%;
    max-width: 500px;

    border: 10px solid #ffffff;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    /* Slanted cut: Top-Left and Bottom-Right */
    clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
}

.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 */
.hero-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    width: 14px;
    height: 14px;
}

.dot:hover {
    background: var(--white);
}

/* Social Media Links */
.hero-social {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-divider {
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--white);
}

/* ===========================
   RIGHT SIDE: Content
   =========================== */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Number Indicator */
.hero-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 2px;
}

/* Hero Title */
.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin: 0;
}

.hero-title-line1 {
    display: block;
    color: var(--navy-blue);
}

.hero-title-line2 {
    display: block;
    color: var(--primary-red);
    margin-top: 8px;
}

/* Description */
.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 450px;
    margin: 0;
}

/* CTA Button */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--primary-red);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    align-self: flex-start;
}

.hero-btn:hover {
    background: var(--primary-red-dark);
    gap: 16px;
}

/* Info Boxes (02 and 03) */
.hero-info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.info-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 2px;
}

.info-box h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin: 0;
}

.info-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* =================================================================
   RESPONSIVE HERO
   ================================================================= */


/* Tablet */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-content-wrapper {
        gap: 40px;
    }
	
	
}

/* Mobile — SLIDER ON TOP, CONTENT BELOW */
@media (max-width: 968px) {
    .hero-fullscreen {
        min-height: auto;
        padding: 100px 0 60px;
        overflow-x: hidden;
        /* Prevent horizontal scroll */
        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;
    }

    /* Slider (left) goes on TOP */
    .hero-left {
        order: -1;
        align-items: center;
        width: 100%;
    }

    /* Content (right) goes BELOW */
    .hero-right {
        order: 1;
        text-align: center;
        align-items: center;
        width: 100%;
    }

    .hero-main-content {
        align-items: center;
        width: 100%;
    }

    /* Red covers more area on mobile - ADJUSTED FOR PRECISION */
    .hero-bg-red {
        width: 100%;
        height: 55%;
        /* Taller to embrace the car */
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    }

    /* Blue strip stays at top */
    .hero-bg-navy {
        height: 100px;
    }

    /* Car image full width, proportional - FIXED CENTERING */
    .hero-car-image {
        width: 100%;
        max-width: 400px;
        /* Easier to center on phones */
        margin: 0 auto;
        padding: 5px;
        /* Thinner border */
        border-width: 5px;
        /* Thinner white border */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .hero-car-swiper {
        aspect-ratio: 16/9;
        max-height: 250px;
    }

    .hero-title {
        font-size: 2.5rem;
        /* Smaller for mobile */
        width: 100%;
    }

    .hero-dots {
        justify-content: center;
        margin-top: 10px;
    }

    .hero-description {
        max-width: 100%;
        margin: 0 auto;
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-info-boxes {
        grid-template-columns: 1fr 1fr;
        text-align: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .hero-btn {
        align-self: center;
    }

    .info-box {
        align-items: center;
    }
	
	.hero-title-line1 {
    display: block;
    color: #fff;
    -webkit-text-stroke: 1px rgba(0,0,0,0.6); /* border luar */
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.35); /* soft shadow */
		font-size: 35px;
}

	.hero-title-line2 {
    display: block;
    color: var(--navy-blue);
    margin-top: 8px;
	}
}

/* Small Phone - FIXED "GESER KANAN" */
@media (max-width: 640px) {
    .hero-fullscreen {
        padding: 90px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 0.85rem;
        width: 100%;
        /* Full width button on small screens */
        justify-content: center;
        max-width: 250px;
    }

    .hero-social {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        width: 100%;
    }

    .social-divider {
        display: none;
        /* Hide divider on small screens to save space */
    }

    .hero-info-boxes {
        grid-template-columns: 1fr;
        /* Stack info boxes */
        gap: 30px;
    }

    .hero-right {
        gap: 25px;
    }

    /* Fix Aspect Ratio for small screens */
    .hero-car-swiper {
        aspect-ratio: 4/3;
        max-height: 220px;
    }

    .hero-car-image {
        padding: 5px;
        max-width: 100%;
        border-width: 4px;
    }
}