/* =====================================================
   HERO SLIDER - EXACT TARGET LAYOUT FIX (COLOR & SIZE FIXED)
===================================================== */

/* Container Setup */
.vv-hero-slider {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 40px 20px 60px 0;
    min-height: 480px;
}

/* 1. LAYOUT ORDER: Left Content, Right Image */
.vv-slide.hero_item {
    display: none;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    flex-direction: row !important; /* Left text, Right image */
    padding: 0;
    box-sizing: border-box;
}

.vv-slide.hero_item.active {
    display: flex !important;
}

/* 2. LEFT CONTENT BLOCK STYLING */
.vv-left {
    width: 50% !important;
    z-index: 4;
    text-align: left !important;
}

/* Title Styling - Size exactly 80px */
.vv-left .vehicle-main-heading,
.vv-left h1, 
.vv-left h2 {
    font-size: 80px !important;
    line-height: 85px !important;
    font-weight: 800 !important;
    color: #0d0b33; /* Fallback color (Backend Picker can override now) */
    margin: 0 !important;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: -0.5px;
}

/* Red Highlighted Text (span tag ke liye) */
.vv-left .red,
.vv-left .vh-red,
.vv-left span.red {
    color: #A2001D !important;
    font-size: 80px !important;
    line-height: 85px !important;
    font-weight: 900 !important;
}

/* Subtitle Styling - Size 80px retained */
.vv-left .vv-subtitle {
    font-size: 80px !important;
    line-height: 85px !important;
    font-weight: 900 !important;
    display: block;
    margin-top: 0 !important;
    text-transform: uppercase;
}

/* Subtitle ka default color agar Backend Picker na ho */
.vv-left .vv-subtitle:not([style*="color"]) {
    color: #A2001D;
}

/* Description Text */
.vv-left .description_content p,
.vv-left p {
    margin-top: 20px !important;
    font-size: 14px !important;
    line-height: 20px !important;
    color: #484747 !important;
    font-weight: 400 !important;
    font-family: 'Jost', sans-serif !important;
}

/* Button Styling (Backend Color Picker Support + Custom Arrow Image) */
body.material .nectar-button.vv-btn,
.vv-btn {
    margin-top: 25px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #A2001D; /* Default background, backend picker overrides this */
    color: #ffffff !important;
    padding: 12px 48px 12px 30px !important; /* Image ke liye right padding */
    border-radius: 30px !important;
    font-size: 14px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
    border: none !important;
    position: relative !important;
    background-image: url('/wp-content/uploads/2026/07/to-right.png') !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 20px) center !important;
    background-size: 10px auto !important;
}

.vv-btn::after {
    content: none !important; /* Standard text arrow removed */
}

/* 3. RIGHT CAR IMAGE BLOCK */
.vv-right.fetured_img {
    width: 60% !important;
    z-index: 3;
    text-align: right !important;
    position: relative;
    top: 40px;
}

.vv-right img.hero_banner,
.vv-right img {
    max-width: 100% !important;
    height: auto !important;
    display: inline-block !important;
}

/* =====================================================
   OVERLAY TEXT DYNAMIC POSITIONING & SIZE FIX
===================================================== */

/* 1. CHOTE WORDS KE LIYE (AUDI, BMW, etc. - < 5 Letters) */
.overlay_text {
    position: absolute !important;
    left: 48% !important;
    top: 30% !important;
    transform: translate(-50%, -50%) !important;
    font-size: clamp(80px, 16vw, 250px) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    z-index: 1 !important;
    text-transform: uppercase !important;
    font-family: 'Poppins', sans-serif !important;
    background: linear-gradient(360deg, #FFFFFF 0%, #DADADA 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    pointer-events: none !important;
    white-space: nowrap !important;
    max-width: 90% !important;
}

/* 2. BADE WORDS KE LIYE (TRIUMPH, MERCEDES, etc. - >= 5 Letters) */
.overlay_text.long-text {
    left: 57% !important;
    top: 23% !important;
    font-size: clamp(80px, 16vw, 166px) !important;
}

/* 5. RIGHT DOTS PAGINATION */
.vv-pagination.slick-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
    margin: 0;
    padding: 0;
}

.vv-pagination.slick-dots li.vv-dot {
    list-style: none;
    width: 8px;
    height: 8px;
    background-color: #D3D5E0;
    border-radius: 50%;
    cursor: pointer;
    margin: 0;
}

.vv-pagination.slick-dots li.vv-dot button {
    display: none !important;
}

.vv-pagination.slick-dots li.vv-dot.active,
.vv-pagination.slick-dots li.vv-dot.slick-active {
    background-color: #A2001D !important;
}

/* 6. BOTTOM ARROW BUTTONS */
.vv-arrows {
    position: absolute;
    right: 50px;
    bottom: 30px;
    display: flex;
    gap: 12px;
    z-index: 5;
}

.vv-prev.slick-arrow,
.vv-next.slick-arrow {
    position: relative !important;
    inset: auto !important;
    width: 38px !important;
    height: 38px !important;
    background-color: #fff !important;
    border-radius: 50% !important;
    border: none !important;
    box-shadow: 0px 0px 7px 0px #00000040 !important;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    padding: 0 !important;
}

.vv-prev.slick-arrow::before {
    content: '‹' !important;
    font-size: 22px !important;
    color: #555 !important;
    font-family: sans-serif !important;
    line-height: 1 !important;
}

.vv-next.slick-arrow::before {
    content: '›' !important;
    font-size: 22px !important;
    color: #555 !important;
    font-family: sans-serif !important;
    line-height: 1 !important;
}

.vv-prev.slick-arrow:hover,
.vv-next.slick-arrow:hover {
    background-color: #fff !important;
}

/* RESPONSIVE FIX */
@media (max-width: 991px) {
    .overlay_text {
        font-size: 140px !important;
        left: 50% !important;
    }
    .vv-left .vehicle-main-heading,
    .vv-left h1, 
    .vv-left h2,
    .vv-left .vv-subtitle {
        font-size: 42px !important;
        line-height: 48px !important;
    }
}

@media (max-width: 768px) {
    .vv-slide.hero_item {
        flex-direction: column-reverse !important;
    }
    .vv-left, .vv-right.fetured_img {
        width: 100% !important;
        text-align: center !important;
    }
}