/* Contact Form 7 Inline Form */
.inline-form > p {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 0;
}

.inline-form > p > br {
    display: none;
}

.inline-form .wpcf7-form-control-wrap {
    flex: 1;
    display: block;
}

.inline-form input[type="text"],
.inline-form input[type="email"] {
    width: 100%;
    height: 52px;
    margin: 0;
    box-sizing: border-box;
}

.inline-form input[type="submit"] {
    height: 52px;
    padding: 0 28px;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.inline-form .wpcf7-spinner {
    margin-left: 10px;
}

@media (max-width: 767px) {
    .inline-form > p {
        flex-direction: column;
        align-items: stretch;
    }

    .inline-form .wpcf7-form-control-wrap,
    .inline-form input[type="submit"] {
        width: 100%;
    }
}











.custom-contact-form {
    width: 100%;
}

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

.custom-contact-form br {
    display: none;
}

.custom-contact-form .form-row {
    display: flex;
    gap: 18px;
}

.custom-contact-form .form-row .form-field {
    flex: 1;
    min-width: 0;
}

.custom-contact-form .form-field {
    margin-bottom: 17px;
}

.custom-contact-form label {
    display: block;
    margin-bottom: 7px;
    color: #000;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.custom-contact-form label span {
    margin-left: 2px;
    color: #b99c92;
}

.custom-contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form textarea {
    display: block;
    width: 100%;
    margin: 0;
    padding: 10px 14px;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: #fff;
    color: #000;
    box-shadow: none;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 14px;
}

.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"] {
    height: 31px;
}

.custom-contact-form textarea {
    height: 93px;
    min-height: 93px;
    resize: vertical;
}

.custom-contact-form input[type="text"]:focus,
.custom-contact-form input[type="email"]:focus,
.custom-contact-form textarea:focus {
    outline: 1px solid #c0aaa1;
    box-shadow: none;
}

.custom-contact-form .form-submit {
    position: relative;
}

.custom-contact-form input[type="submit"] {
    display: block;
    width: 100%;
    height: 38px;
    margin: 0;
    padding: 0 20px;
    border: 0;
    border-radius: 0;
    background: #bca399;
    color: #fff;
    box-shadow: none;
    font-family: inherit;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
}

.custom-contact-form input[type="submit"]:hover {
    background: #a98f85;
}

.custom-contact-form .wpcf7-spinner {
    position: absolute;
    top: 50%;
    right: 14px;
    margin: 0;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .custom-contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}



