/* ===== CF7 Modern Style — 57ce543e ===== */

/* Wrapper */
.wpcf7 {
    width: 100%;
    font-family: inherit;
}

/* Form rows */
.wpcf7 .wpcf7-form p {
    margin-bottom: 18px;
}

/* Labels */
.wpcf7 .wpcf7-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #444444;
    letter-spacing: 0.3px;
}

/* All text inputs, email, tel, textarea, select */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e6ef;
    border-radius: 8px;
    background: #ffffff;
    color: #444444;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

/* Focus state */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: #034C8C;
    box-shadow: 0 0 0 4px rgba(3, 76, 140, 0.12);
}

/* Submit Button */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
    display: inline-block;
    padding: 13px 36px;
    background: #034C8C;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(3, 76, 140, 0.3);
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
    background: #023a6b;
    box-shadow: 0 6px 18px rgba(3, 76, 140, 0.4);
    transform: translateY(-1px);
}

.wpcf7 input[type="submit"]:active,
.wpcf7 .wpcf7-submit:active {
    transform: translateY(0);
}

/* Validation error */
.wpcf7 .wpcf7-not-valid {
    border-color: #BF3617 !important;
    box-shadow: 0 0 0 4px rgba(191, 54, 23, 0.10) !important;
}

.wpcf7 .wpcf7-not-valid-tip {
    color: #BF3617;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Response messages */
.wpcf7 .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none !important;
}

.wpcf7 .wpcf7-mail-sent-ok {
    background: #e8f5e9;
    color: #2e7d32;
}

.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-aborted {
    background: #fdecea;
    color: #BF3617;
}

.wpcf7 .wpcf7-spam-blocked {
    background: #fff8e1;
    color: #F29F05;
}

.wpcf7 .wpcf7-validation-errors {
    background: #fff8e1;
    color: #b36f00;
}

/* Spinner */
.wpcf7 .wpcf7-spinner {
    vertical-align: middle;
    margin-inline-start: 10px;
}

/* Acceptance checkbox */
.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #034C8C;
    margin-inline-end: 8px;
    vertical-align: middle;
}

/* Radio & Checkbox lists */
.wpcf7 .wpcf7-radio span,
.wpcf7 .wpcf7-checkbox span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-inline-end: 16px;
    font-size: 14px;
    color: #444444;
}

.wpcf7 .wpcf7-radio input[type="radio"],
.wpcf7 .wpcf7-checkbox input[type="checkbox"] {
    accent-color: #034C8C;
    width: 16px;
    height: 16px;
}

/* Placeholder color */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #aab4c4;
    opacity: 1;
}
