/* =================================================================
   FULLSCREEN HERO SECTION — KITCHENPRO REFINED
   Dark overlay on background image + Pink accents (no harsh glow)
   ================================================================= */

.hero-fullscreen {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    background: #0D0D0D;
}

/* Admin bar spacing */
body.admin-bar .hero-fullscreen {
    padding-top: 112px;
}

/* =========================
   Background layers
   ========================= */

/* Dark gradient overlay base */
.hero-bg-navy {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.97) 0%, rgba(20, 20, 20, 0.92) 50%, rgba(13, 13, 13, 0.97) 100%);
    z-index: 1;
}

/* Custom transparent image layer from Customizer */
.hero-bg-custom {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 2;
    pointer-events: none;
}

/* Subtle light accent — quiet warm tint top-right (NOT pink glow) */
.hero-bg-red {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(225deg, rgba(233, 30, 140, 0.05) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
}

/* Very subtle diagonal texture line */
.hero-fullscreen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.012) 60px,
            rgba(255, 255, 255, 0.012) 61px);
    z-index: 2;
    pointer-events: none;
}

/* Bottom separator line */
.hero-fullscreen::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 140, 0.2), transparent);
    z-index: 5;
}

/* 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: 60px;
    align-items: center;
}

/* ===========================
   LEFT SIDE → TEXT CONTENT
   =========================== */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    order: -1;
}

.hero-main-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Badge */
.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.25);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #E91E8C;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    align-self: flex-start;
}

.hero-badge-tag .dot-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #E91E8C;
    animation: dotPulse 1.5s infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

/* Hero Title */
.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.05;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-title-line1 {
    display: block;
    color: #ffffff;
    letter-spacing: -1px;
}

.hero-title-line2 {
    display: block;
    letter-spacing: -1px;
    margin-top: 6px;
    background: linear-gradient(135deg, #E91E8C 0%, #FF6BB3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.hero-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 480px;
    margin: 0;
}

/* CTA Button Row */
.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Primary CTA — Pink */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #E91E8C;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.25);
}

.hero-btn:hover {
    background: #C4166D;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.35);
    color: #ffffff;
}

/* Secondary CTA */
.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.hero-btn-outline:hover {
    border-color: rgba(233, 30, 140, 0.4);
    color: #E91E8C;
    background: rgba(233, 30, 140, 0.05);
}

/* Stats row */
.hero-info-boxes {
    display: flex;
    gap: 40px;
    margin-top: 10px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.info-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1;
}

.info-box h3 {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.info-box p {
    display: none;
}

/* ===========================
   RIGHT SIDE → IMAGE SLIDER
   =========================== */
.hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    order: 1;
}

.hero-car-image {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.hero-car-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 2;
    pointer-events: none;
}

.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;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, #1A1A1A, #222222);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Dots */
.hero-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #E91E8C;
    width: 24px;
    height: 8px;
    border-radius: 4px;
}

.dot:hover {
    background: rgba(233, 30, 140, 0.6);
}

/* Social Links — horizontal row, properly spaced */
.hero-social {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-divider {
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 0.85rem;
    color: inherit;
}

.social-link:hover {
    background: rgba(233, 30, 140, 0.12);
    border-color: rgba(233, 30, 140, 0.3);
    color: #E91E8C;
}

/* =================================================================
   TRUST BAR
   ================================================================= */
.trust-bar {
    background: #111111;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.83rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55) !important;
    letter-spacing: 0.3px;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.55) !important;
}

.trust-item i {
    color: #E91E8C !important;
    font-size: 0.9rem;
}

/* =================================================================
   RESPONSIVE HERO
   ================================================================= */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-content-wrapper {
        gap: 40px;
    }

    .info-number {
        font-size: 1.9rem;
    }
}

@media (max-width: 968px) {
    .hero-fullscreen {
        min-height: auto;
        padding: 100px 0 60px;
    }

    body.admin-bar .hero-fullscreen {
        padding-top: 130px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .hero-right {
        order: -1;
        text-align: center;
        align-items: stretch;
    }

    .hero-left {
        order: 1;
        align-items: center;
        width: 100%;
        overflow: hidden;
    }

    .hero-main-content {
        align-items: center;
        width: 100%;
    }

    .hero-badge-tag {
        align-self: center;
        max-width: 100%;
        text-align: center;
        white-space: normal;
        height: auto;
    }

    .hero-car-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-car-swiper {
        aspect-ratio: 4/3;
        max-height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-dots {
        justify-content: center;
    }

    .hero-description {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-info-boxes {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .info-box {
        align-items: center;
    }

    .hero-btn,
    .hero-btn-outline {
        align-self: center;
    }

    .hero-btn-group {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .hero-social {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-fullscreen {
        padding: 90px 0 40px;
    }

    .hero-title {
        font-size: 2.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-btn {
        padding: 13px 26px;
        font-size: 0.82rem;
    }

    .social-divider {
        display: none;
    }

    .hero-info-boxes {
        gap: 20px;
    }

    .info-number {
        font-size: 1.7rem;
    }

    .trust-grid {
        gap: 20px;
    }

    .trust-item {
        font-size: 0.78rem;
    }

    .hero-car-swiper {
        max-height: 320px;
        aspect-ratio: 4/3;
    }

    .hero-car-image {
        max-width: 100%;
    }
}