/* ============================================
   DISCOVER MPVS - HERO SECTION
   Add this CSS to your theme via WPCode/Additional CSS
   ============================================ */

.mpv-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* Background image */
.mpv-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mpv-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark overlay for text readability */
.mpv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 24, 42, 0.82) 0%,
        rgba(8, 24, 42, 0.65) 30%,
        rgba(8, 24, 42, 0.25) 55%,
        rgba(8, 24, 42, 0.0) 75%
    );
    z-index: 1;
}

/* Container */
.mpv-hero-container {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 70px 40px 80px;
    display: flex;
    align-items: center;
    min-height: 520px;
}

/* Content area */
.mpv-hero-content {
    max-width: 580px;
}

/* Badge */
.mpv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #94CA21;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mpv-hero-badge svg {
    width: 16px;
    height: 16px;
    fill: #94CA21;
}

/* H1 */
.mpv-banner-heading-wrapper .title {
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

/* Accent subtitle */
.mpv-hero-accent {
    font-size: 26px;
    font-weight: 600;
    color: #94CA21;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

/* Description */
.mpv-hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    margin: 0 0 32px 0;
    max-width: 500px;
}

/* CTA Button */
.mpv-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF6B35;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}

.mpv-hero-cta:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 107, 53, 0.5);
    color: #ffffff;
    text-decoration: none;
}

.mpv-hero-cta svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    transition: transform 0.3s ease;
}

.mpv-hero-cta:hover svg {
    transform: translateX(3px);
}

/* Trust strip */
.mpv-hero-trust {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.mpv-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.mpv-hero-trust-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Supplier logos bar */
.mpv-hero-suppliers {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mpv-hero-suppliers-inner {
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.mpv-hero-suppliers-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.mpv-hero-suppliers-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.mpv-hero-suppliers-logos img {
    height: 22px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.mpv-hero-suppliers-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Tooltip */
.mpv-has-tooltip {
    position: relative;
    cursor: pointer;
}

.mpv-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    background: #ffffff;
    color: #333;
    font-size: 12px;
    line-height: 1.5;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    width: 260px;
    z-index: 10;
}

.mpv-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 20px;
    border: 6px solid transparent;
    border-top-color: #ffffff;
}

.mpv-has-tooltip:hover .mpv-tooltip,
.mpv-has-tooltip:focus .mpv-tooltip {
    display: block;
}

/* Trustpilot bar with logos */
.mpv-hero-trustpilot {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 8px;
    max-width: 780px;
}

.mpv-tp-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.mpv-tp-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.mpv-tp-right img {
    height: 26px;
    opacity: 0.9;
    background: white;
    padding: 4px 8px;
    border-radius: 4px;
}

.mpv-tp-rated {
    font-size: 13px;
    color: #ffffff;
}

.mpv-tp-rated strong {
    color: #ffffff;
}

.mpv-tp-stars {
    font-size: 16px;
    color: #00b67a;
    letter-spacing: 2px;
}

.mpv-tp-reviews {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.mpv-tp-logo {
    font-size: 13px;
    font-weight: 700;
    color: #00b67a;
}

.mpv-tp-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

.mpv-tp-brands {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.mpv-tp-brands strong {
    color: #ffffff;
}

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

@media (max-width: 768px) {
    .mpv-hero {
        min-height: 480px;
        background: linear-gradient(135deg, #08182a 0%, #0f2b4a 100%);
    }

    .mpv-hero-bg {
        display: none;
    }

    .mpv-hero-overlay {
        display: none;
    }

    .mpv-hero-container {
        padding: 50px 16px 60px;
        min-height: 480px;
    }

   .mpv-banner-heading-wrapper .title{
        font-size: 32px !important;
        color: #fff !important;
    }

    .mpv-hero-accent {
        font-size: 20px;
    }

    .mpv-hero-desc {
        font-size: 15px;
    }

    .mpv-hero-cta {
        font-size: 15px;
        padding: 14px 28px;
        width: 100%;
        justify-content: center;
    }

    .mpv-hero-trust {
        gap: 16px;
    }

    .mpv-hero-trust-item {
        font-size: 13px;
    }

    .mpv-hero-trustpilot {
        gap: 4px;
        padding: 8px 12px;
        max-width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .mpv-tp-left {
        flex-wrap: wrap;
        gap: 5px;
    }

    .mpv-tp-right {
        display: none;
    }

    .mpv-tp-divider {
        display: none;
    }

    .mpv-tp-rated,
    .mpv-tp-reviews,
    .mpv-tp-logo,
    .mpv-tp-brands {
        font-size: 11px;
    }

    .mpv-tp-stars {
        font-size: 14px;
    }

    .mpv-hero-suppliers-inner {
        padding: 14px 20px;
        gap: 16px;
    }

    .mpv-hero-suppliers-logos {
        gap: 18px;
    }

    .mpv-hero-suppliers-logos img {
        height: 18px;
    }
}