/* ==========================================================
   ISOLATED HERO SECTION (hero-v2- prefix)
   ========================================================== */
.hero-v2-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden; /* Forbids horizontal scrolling */
}

.hero-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-v2-content {
    flex: 1.2;
}

.hero-v2-visual {
    flex: 1;
    position: relative; /* Crucial anchor for the absolute badge */
}

/* --- Text Styles --- */
.hero-v2-title {
    color: #002147;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-v2-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* --- Form Styles --- */
.hero-v2-form-box {
    background: #f4f7f9;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid #002147;
}

.hero-v2-form-box h3 {
    margin: 0 0 8px 0;
    color: #002147;
    font-size: 1.4rem;
    font-weight: 700;
}

.hero-v2-form-sub {
    font-size: 0.9rem;
    margin-bottom: 25px;
    color: #666;
}

.hero-v2-form input, 
.hero-v2-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.hero-v2-submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #FF9900;
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.hero-v2-submit-btn:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
}

.hero-v2-trust-tag {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 15px;
    color: #888;
}

/* --- Main Image --- */
.hero-v2-main-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 15px 30px rgba(0,33,71,0.1);
}

/* --- The MOH Trust Badge (Desktop) --- */
.hero-v2-moh-badge {
    position: absolute;
    bottom: 30px;
    left: -30px; /* Overlaps the image slightly */
    background-color: #002147; /* Hardcoded Navy */
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 320px;
    z-index: 10;
    box-sizing: border-box;
}

.hero-v2-moh-icon {
    width: 50px !important; /* Strict lock on icon size */
    height: auto !important;
    flex-shrink: 0 !important; /* Will never squish */
    display: block;
}

.hero-v2-moh-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-v2-moh-text strong {
    color: #FF9900;
    font-size: 0.95rem;
    margin-bottom: 4px;
    line-height: 1.2;
}

.hero-v2-moh-text span {
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* ==========================================================
   MOBILE RESPONSIVENESS (Max-width: 992px)
   ========================================================== */
@media (max-width: 992px) {
    .hero-v2-container {
        flex-direction: column; /* Stacks text/form on top of image */
        gap: 40px;
    }

    .hero-v2-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-v2-subtitle {
        text-align: center;
    }

    /* --- Badge Mobile Override --- */
    .hero-v2-moh-badge {
        position: relative; /* Kills the absolute positioning so it doesn't fly off screen */
        bottom: auto;
        left: auto;
        margin: -20px auto 0 auto; /* Pulls it up slightly to overlap bottom of image, centered */
        width: 90%; /* Keeps it fully on screen */
        max-width: 350px;
    }
}




