.service-form .form-section-card {
    border: 1px solid #dfe6eb;
    border-radius: 14px;
    padding: 24px;
    margin: 22px 0;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
}

.service-form .form-section-title {
    margin: 0 0 18px;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.service-form .label--over {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.service-form .form-control,
.service-form select,
.service-form input[type="text"],
.service-form input[type="email"],
.service-form input[type="tel"],
.service-form textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid #d5dde5;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    background: #fff;
    transition: all .2s ease;
    box-sizing: border-box;
}

.service-form textarea {
    min-height: 130px;
    resize: vertical;
}

.service-form .form-control:focus,
.service-form select:focus,
.service-form input:focus,
.service-form textarea:focus {
    border-color: #13c5f3;
    box-shadow: 0 0 0 3px rgba(19, 197, 243, .12);
    outline: none;
}

.service-form .form-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 28px 0;
}

.service-form .appointment-preference .wpcf7-list-item {
    display: inline-block;
    width: calc(50% - 10px);
    margin: 0 10px 10px 0;
}

.service-form .appointment-preference .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid #d5dde5;
    border-radius: 14px;
    padding: 18px;
    cursor: pointer;
    transition: all .2s ease;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

.service-form .appointment-preference input[type="radio"] {
    margin-top: 3px;
}

.service-form .appointment-preference .wpcf7-list-item-label {
    display: inline-block;
    font-weight: 600;
}

.service-form .btn {
    border: 0;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 700;
    background: #13c5f3;
    color: #fff;
    cursor: pointer;
    transition: all .2s ease;
}

.service-form .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(19, 197, 243, .25);
}

.service-form .form-submit-wrap {
    margin-top: 20px;
}

.service-form .upload {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px dashed #c7d2da;
    background: #f8fafc;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.service-form .upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.service-form .upload-path {
    background: #fff !important;
}

.service-form .dflex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-form .input-full {
    width: 100%;
}

@media (max-width: 767px) {
    .service-form .appointment-preference .wpcf7-list-item {
        width: 100%;
        margin-right: 0;
    }

    .service-form .dflex {
        flex-direction: column;
        align-items: stretch;
    }
}