.contact-form .d-flex-center-wrap {
    margin-bottom: 30px;
}

.contact-form .wpcf7 form p {
    margin: 0;
}

.contact-form .wpcf7 input.wpcf7-form-control:not([type="submit"]),
.contact-form .wpcf7 select.wpcf7-form-control,
.contact-form .wpcf7 textarea.wpcf7-form-control {
    height: auto;
    background-color: var(--color-input);
    border-color: var(--color-input);
    color: var(--color-black);
    text-transform: uppercase;
    border-radius: 0;
    padding-top: 15px;
    padding-bottom: 15px;
}

.contact-form .wpcf7 input.wpcf7-form-control:not([type="submit"]):-webkit-autofill,
.contact-form .wpcf7 input.wpcf7-form-control:not([type="submit"]):-webkit-autofill:hover, 
.contact-form .wpcf7 input.wpcf7-form-control:not([type="submit"]):-webkit-autofill:focus, 
.contact-form .wpcf7 input.wpcf7-form-control:not([type="submit"]):-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px var(--color-input) inset !important;
}

.contact-form .wpcf7 select.wpcf7-form-control {
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
    background-image: url("/wp-content/uploads/2025/04/down-arrow.png");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position-x: calc(100% - 16px);
    background-position-y: calc(50% - 2px);
    padding-left: 16px;
    padding-right: 16px;
    cursor: pointer;
}

.contact-form .wpcf7 input.wpcf7-form-control:not([type="submit"])::placeholder,
.contact-form .wpcf7 textarea.wpcf7-form-control::placeholder {
    color: var(--color-black);
}

.contact-form .wpcf7 label {
    display: block;
    font-size: var(--font-lg);
    line-height: 1.25;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-form .wpcf7 .wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 10px;
}

.contact-form .wpcf7 .wpcf7-checkbox .wpcf7-list-item {
    width: calc(33.33% - 10px);
    margin: 0;
}

.contact-form .wpcf7 .wpcf7-checkbox input[type="checkbox"] {
    accent-color: var(--color-primary);
}

.contact-form .wpcf7 .wpcf7-checkbox .wpcf7-list-item-label {
    font-size: var(--font-md);
}

.contact-form .wpcf7 input.wpcf7-form-control[type="submit"] {
    font-size: var(--font-md);
    text-transform: uppercase;
    padding-left: 30px;
    padding-right: 30px;
    -webkit-transition: background-color 100ms linear;
    -ms-transition: background-color 100ms linear;
    transition: background-color 100ms linear;
}

.contact-form .wpcf7 input.wpcf7-form-control[type="submit"]:hover {
	background-color: var(--color-black);
}

.contact-form .wpcf7 input.wpcf7-form-control:not([type="submit"]):-webkit-autofill,
.contact-form .wpcf7 input.wpcf7-form-control:not([type="submit"]):-webkit-autofill:hover,
.contact-form .wpcf7 input.wpcf7-form-control:not([type="submit"]):-webkit-autofill:focus,
.contact-form .wpcf7 input.wpcf7-form-control:not([type="submit"]):-webkit-autofill:active {
    -webkit-animation: autofill 0s forwards;
    animation: autofill 0s forwards;
}

.contact-form .wpcf7 form .wpcf7-response-output {
    padding: 12px 15px;
    margin: 30px 0 0;
}

@media (max-width: 768px) {
    .contact-form .wpcf7 .wpcf7-checkbox .wpcf7-list-item {
        width: calc(50% - 8px);
    }
}

@media (max-width: 544px) {
    .contact-form .d-flex-center-wrap > .d-col-50 {
        max-width: 100%;
        width: 100%;
    }
}