/* Faraldi Contact Form */

.faraldi-contact-form-wrap {
    max-width: 760px;
    margin: 0 auto;
    color: rgb(120, 120, 120);
}

.faraldi-contact-form {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    color: rgb(120, 120, 120);
    font-family: inherit;
}

.faraldi-field {
    margin-bottom: 18px;
}

.faraldi-field label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: rgb(120, 120, 120);
    font-family: inherit;
}

.faraldi-field label span {
    color: #E67E22;
}

.faraldi-field input[type="text"],
.faraldi-field input[type="email"],
.faraldi-field input[type="file"],
.faraldi-field select,
.faraldi-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    padding: 12px 14px;
    font: inherit;
    color: rgb(120, 120, 120);
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faraldi-field input::placeholder,
.faraldi-field textarea::placeholder {
    color: rgb(145, 145, 145);
}

.faraldi-field input:focus,
.faraldi-field select:focus,
.faraldi-field textarea:focus {
    outline: none;
    border-color: #E67E22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.14);
}

.faraldi-field textarea {
    resize: vertical;
    min-height: 180px;
}

.faraldi-field small {
    display: block;
    margin-top: 6px;
    color: rgb(120, 120, 120);
    font-size: 0.88em;
    font-family: inherit;
}

.faraldi-privacy label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 400;
    line-height: 1.4;
}

.faraldi-privacy input {
    margin-top: 4px;
}

.faraldi-submit {
    display: inline-block;
    border: none;
    border-radius: 8px;
    background: #E67E22;
    color: #ffffff;
    padding: 13px 24px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease;
}

.faraldi-submit:hover,
.faraldi-submit:focus {
    background: #cf6f1e;
    transform: translateY(-1px);
}

.faraldi-form-alert {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-family: inherit;
}

.faraldi-form-success {
    color: #1f5d2f;
    background: #e9f7ec;
    border: 1px solid #bfe5c7;
}

.faraldi-form-error {
    color: #7b1e1e;
    background: #fdecec;
    border: 1px solid #f3bcbc;
}

.faraldi-hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .faraldi-contact-form {
        padding: 0;
    }

    .faraldi-submit {
        width: 100%;
    }
}
