/* Start custom CSS *//* --- Pegasus Contact Form Wrapper --- */
.pegasus-contact-form {
    width: 100%;
    box-sizing: border-box;
}

/* --- Field Containers --- */
.pegasus-contact-form .pegasus-form-field {
    margin-bottom: 20px;
}

/* --- Input Styling --- */
.pegasus-contact-form input[type="text"],
.pegasus-contact-form input[type="email"],
.pegasus-contact-form input[type="tel"],
.pegasus-contact-form input.wpcf7-form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #dcd8d1; /* Subtle, warm border to match the background */
    border-radius: px;
    background-color: #ffffff; /* Bright white inputs stand out cleanly against #f2eee7 */
    color: #222222;
    font-size: 16px;
    font-family: inherit;0
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* --- Pseudo-Textarea (for the short description field) --- */
.pegasus-form-textarea input {
    height: 120px;
    padding-top: 15px;
}

/* --- Focus States --- */
.pegasus-contact-form input:focus {
    outline: none;
    border-color: #222222; /* Crisp dark border on focus */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Soft shadow to lift off the beige background */
}

/* --- Placeholder Text --- */
.pegasus-contact-form ::placeholder {
    color: #888888;
    opacity: 1;
}

/* --- Submit Button Styling --- */
.pegasus-contact-form .pegasus-form-submit {
    margin-top: 25px;
}

.pegasus-contact-form .pegasus-form-submit input[type="submit"] {
    background-color: #222222; /* High contrast dark button */
    color: #ffffff;
    border: none;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.pegasus-contact-form .pegasus-form-submit input[type="submit"]:hover {
    background-color: #000000;
    transform: translateY(-2px); /* Slight lift effect on hover */
}

/* --- CF7 Error & Success Messages --- */
.pegasus-contact-form .wpcf7-not-valid-tip {
    color: #d12a2a; /* Slightly muted red to blend better with warm tones */
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

.pegasus-contact-form div.wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 15px;
    border-radius: 0px;
    background-color: #ffffff;
    border: 1px solid #dcd8d1 !important;
    color: #222222;
    font-size: 15px;
    font-weight: 500;
}/* End custom CSS */