/* ============================================
   SUZUKI HERO SPLIT SCREEN
   Two vehicles side by side (like Geely design)
   ============================================ */

.suzuki-hero-split {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
    margin-bottom: 60px;
}

/* Custom cursor - DISABLED */
.suzuki-hero-cursor {
    display: none;
}

/* Normal cursor on hero */
.suzuki-hero-split {
    cursor: pointer;
}

.suzuki-hero-split a {
    cursor: pointer;
}

/* Center divider bar - removed for 3 sections */
.suzuki-hero-split::after {
    display: none;
}

/* Panel Base */
.suzuki-hero-panel {
    flex: 1;
    aspect-ratio: 1/1;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.suzuki-hero-panel__link {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    z-index: 2;
}

/* Hover effect - no panel expansion to keep center bar fixed */
.suzuki-hero-panel:hover {
    flex: 1;
}

/* Left Panel - No background */
.suzuki-hero-panel--left {
    background: transparent;
}

/* Right Panel - No background */
.suzuki-hero-panel--right {
    background: transparent;
}

/* Middle Panel - No background */
.suzuki-hero-panel--middle {
    background: transparent;
}

/* Ensure middle panel image is perfectly centered */
.suzuki-hero-panel--middle .suzuki-hero-panel__image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.suzuki-hero-panel--middle .suzuki-hero-panel__image {
    margin: 0 auto;
    display: block;
}

/* Panel Content */
.suzuki-hero-panel__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 0 0 50px 0;
    z-index: 3;
}

/* Title */
.suzuki-hero-panel__title {
    font-family: 'SuzukiPROHeadline', 'SuzukiPROBold', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin: 0;
    text-transform: uppercase;
}

.suzuki-hero-panel--left .suzuki-hero-panel__title {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.suzuki-hero-panel--right .suzuki-hero-panel__title {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Image Wrapper */
.suzuki-hero-panel__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Placeholder Title */
.suzuki-hero-panel__placeholder-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    margin: 0;
}

.suzuki-hero-panel__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.suzuki-hero-panel:hover .suzuki-hero-panel__image {
    transform: scale(1.04);
}

/* Bottom container for button */
.suzuki-hero-panel__bottom {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

/* Button - Unified style for all panels */
.suzuki-hero-panel__btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: 'SuzukiPROBold', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--suzuki-blue, #00368F);
    color: #fff;
    border: 2px solid var(--suzuki-blue, #00368F);
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.suzuki-hero-panel__btn:hover {
    background: #fff;
    color: var(--suzuki-blue, #00368F);
    border-color: var(--suzuki-blue, #00368F);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991.98px) {
    
    .suzuki-hero-panel__title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .suzuki-hero-panel__content {
        padding: 30px 15px 40px;
    }
}

@media (max-width: 767.98px) {
    .suzuki-hero-split {
        flex-direction: column;
        height: auto;
        min-height: auto;
        max-height: none;
    }
    
    /* Hide center bar on mobile (stacked layout) */
    .suzuki-hero-split::after {
        display: none;
    }
    
    
    .suzuki-hero-panel__title {
        font-size: 2rem;
    }
    
    .suzuki-hero-panel__content {
        padding: 25px 15px 35px;
    }
    
    .suzuki-hero-panel__btn {
        padding: 10px 24px;
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    
    .suzuki-hero-panel__title {
        font-size: 1.75rem;
    }
    
    .suzuki-hero-panel__content {
        padding: 20px 10px 30px;
    }
    
    .suzuki-hero-panel__btn {
        padding: 8px 20px;
        font-size: 11px;
    }
}

/* ============================================
   ANIMATION ON LOAD
   ============================================ */

@keyframes heroSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroSlideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.suzuki-hero-panel--left .suzuki-hero-panel__content {
    animation: heroSlideInLeft 0.8s ease-out;
}

.suzuki-hero-panel--right .suzuki-hero-panel__content {
    animation: heroSlideInRight 0.8s ease-out 0.1s both;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .suzuki-hero-panel__image,
    .suzuki-hero-panel {
        transition: none;
    }
    
    .suzuki-hero-panel--left .suzuki-hero-panel__content,
    .suzuki-hero-panel--right .suzuki-hero-panel__content {
        animation: none;
    }
}
