.eg-contact-form {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

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

.eg-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #222;
}

.eg-required {
    color: #e11d48;
}

.eg-field input,
.eg-field textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    background: #fff;
}

.eg-field input:focus,
.eg-field textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.eg-field textarea {
    resize: vertical;
    min-height: 160px;
}

.eg-contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.eg-turnstile {
    margin: 6px 0 20px;
}

.eg-turnstile .cf-turnstile {
    display: inline-block;
}

.eg-submit {
    background: #e58a3d;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.05s ease;
    display: inline-block;
}

.eg-submit:hover {
    background: #fc9c41;
}

.eg-submit:active {
    transform: scale(0.98);
}

.eg-contact-alert {
    max-width: 760px;
    margin: 0 auto 16px;
    padding: 14px;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.eg-contact-success {
    background: #ecfdf3;
    border: 1px solid #22c55e;
    color: #166534;
}

.eg-contact-error {
    background: #fef2f2;
    border: 1px solid #f97373;
    color: #991b1b;
}

@media (max-width: 640px) {
    .eg-contact-form {
        padding: 18px;
    }

    .eg-submit,
    .eg-turnstile .cf-turnstile {
        width: 100%;
    }
}
