/* ==========================================================================
   MODERN SPLIT HERO - DOLCE VITA
   ========================================================================== */

.hero-split {
    min-height: 80vh;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    overflow: hidden;
}

.hero-video-col {
    position: relative;
    flex: 1 0 50%;
    min-height: 400px;
}

.hero-video-col video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

/* FLOATING TRUST BADGE */
.hero-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    color: #26155E;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-badge::before {
    content: "♥";
    color: #5B41FF;
}

.hero-form-col {
    position: relative;
    /* Base for pseudo-element */
    flex: 1 0 50%;
    padding: 40px 40px;
    background: #e6ebff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

/* Background image in the WHOLE right 50% */
.hero-form-col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero/hero-form.png');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    /* Clean transparency */
    z-index: 1;
}

.hero-form-content {
    position: relative;
    z-index: 2;
    /* Keep content above background image */
    max-width: 500px;
    width: 100%;
}

.hero-form-content h1 {
    font-size: 1.8rem;
    line-height: 1.1;
    font-weight: 700;
    color: #26155E;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.service-query {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    opacity: 0.8;
}

.form-instruction {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
    opacity: 0.8;
}

/* SERVICE SELECTOR CHIPS */
.service-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.service-option {
    position: relative;
    cursor: pointer;
}

.service-option input {
    position: absolute;
    opacity: 0;
}

.service-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #fff;
    border: 2px solid #e1e8dc;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    white-space: nowrap;
}

.service-option input:checked+.service-label {
    background: #5B41FF;
    border-color: #5B41FF;
    color: white;
    box-shadow: 0 10px 20px rgba(91, 65, 255, 0.2);
}

/* SEARCH-LIKE FORM */
.modern-hero-form {
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.form-group-modern {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.form-group-modern input {
    border: none;
    padding: 15px 20px;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
}

.btn-hero-submit {
    background: #26155E;
    color: white !important;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    transition: 0.3s;
    margin-top: 25px;
    display: inline-block;
}

.btn-hero-submit:hover {
    background: #5B41FF;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(38, 21, 94, 0.2);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-form-col {
        padding: 60px 40px;
    }

    .hero-form-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-split {
        min-height: auto;
    }

    .hero-video-col,
    .hero-form-col {
        flex: 1 0 100%;
    }

    .hero-video-col {
        min-height: 250px;
    }

    .hero-badge {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: fit-content;
        font-size: 12px;
        padding: 8px 15px;
    }

    .hero-form-col {
        padding: 50px 20px;
        align-items: center;
        text-align: center;
    }

    .hero-form-content h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .service-selector {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-label {
        font-size: 13px;
        padding: 6px 14px;
    }

    .modern-hero-form {
        flex-direction: column;
        width: 100%;
        padding: 15px;
    }

    .form-group-modern {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .form-group-modern:last-child {
        border-bottom: none;
    }

    .btn-hero-submit {
        width: 100%;
        margin-top: 15px;
    }
}