/* Hero Search Layout */
.hero-search {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

/* All form groups */
.hero-search .form-group {
    flex: 1 1 180px;
    min-width: 160px;
}

/* Radio button row */
.hero-search .form-group:first-child {
    flex: 1 1 100%;
}

/* Radio buttons inline */
.hero-search .form-group .col-12 {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Radio input spacing */
.hero-search input[type="radio"] {
    margin-right: 6px;
}

/* Inputs & Selects full width */
.hero-search input[type="text"],
.hero-search input[type="date"],
.hero-search select {
    width: 100%;
    height: 45px;
    padding: 8px 12px;
    border-radius: 6px;
}

/* Button styling fix */
.hero-search .form-button {
    flex: 0 0 auto;
}

.hero-search .submit-btn {
    height: 45px;
    padding: 0 30px;
    white-space: nowrap;
}

/* Tablet */
@media (max-width: 991px) {
    .hero-search .form-group {
        flex: 1 1 45%;
    }

    .hero-search .form-group:first-child {
        flex: 1 1 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-search .form-group {
        flex: 1 1 100%;
    }

    .hero-search .submit-btn {
        width: 100%;
    }
}

.hide-my-boader{
    border: none;
}