/* Clean Form Styling (Matching User's Screenshot) */

#exampleModal .modal-content,
.hdr-form {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 30px;
}

#exampleModal .modal-header {
    border-bottom: none;
    padding: 0 0 20px 0;
    display: block;
    text-align: center;
}

#exampleModal .modal-header h3,
.hdr-form h3 {
    color: #1e807f;
    font-size: 28px;
    font-weight: 800 !important;
    margin-bottom: 10px;
    text-align: center;
}

#exampleModal .modal-header h6 {
    color: #1e807f;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

#exampleModal .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

#exampleModal .modal-body {
    padding: 0;
}

#exampleModal .modal-body select,
#exampleModal .modal-body input,
.hdr-form form select,
.hdr-form form input {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid #717171;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    background: #fff;
}

#exampleModal .modal-body select:focus,
#exampleModal .modal-body input:focus,
.hdr-form form select:focus,
.hdr-form form input:focus {
    border-color: #1e807f;
    outline: none;
}

.serv-looking h4 {
    font-size: 18px;
    color: #042a3d;
    font-weight: 700;
    margin-bottom: 15px;
}

.serv-looking .checkbox-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.serv-looking label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 400;
    cursor: pointer;
    margin: 0 !important;
}

.serv-looking input[type="checkbox"] {
    width: 11px !important;
    height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer;
    accent-color: #1e807f;
}

.serv-looking span {
    font-size: 13px;
    color: #333;
}

/* Row for side-by-side inputs */
.form-row {
    display: flex;
    gap: 15px;
}

.form-row .col-half {
    flex: 1;
}

/* Button Styling */
#exampleModal button[type="submit"],
.hdr-form form button[type="submit"] {
    background-color: #1e807f !important;
    color: #fff !important;
    border: none !important;
    /* padding: 12px 0 !important; */
    border-radius: 8px !important;
    width: 100% !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
    margin-top: 10px !important;
}

#exampleModal button[type="submit"]:hover,
.hdr-form form button[type="submit"]:hover {
    background-color: #166a69 !important;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .serv-looking .checkbox-list {
        grid-template-columns: repeat(2, 1fr);
    }
}