.contact-section {
    background: #d4d2ca;
    min-height: 100vh;
    padding: 5.5rem 2rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #191919;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.contact-form-wrap {
    width: 100%;
    max-width: 820px;
}

.contact-success {
    background: #eaf2e6;
    border: 1px solid #9ea894;
    border-radius: 3px;
    padding: 1rem 1.25rem;
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.9rem;
    color: #2f431f;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-error {
    background: #fdecea;
    border: 1px solid #e57373;
    border-radius: 3px;
    padding: 1rem 1.25rem;
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.9rem;
    color: #b71c1c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-input,
.contact-textarea {
    width: 100%;
    background: #e8e8e0;
    border: none;
    border-bottom: 1.5px solid transparent;
    padding: 0.85rem 1rem;
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.9rem;
    color: #191919;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    border-radius: 2px;
    appearance: none;
    -webkit-appearance: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #888;
}

.contact-input:focus,
.contact-textarea:focus {
    border-bottom-color: #9ea894;
    background: #deded6;
}

.contact-textarea {
    width: 100%;
    height: 400px;
    resize: none;
    margin-bottom: 1rem;
    display: block;
    line-height: 1.6;
}

.contact-submit-btn {
    width: 100%;
    padding: 1rem;
    background: #9ea894;
    color: white;
    border: none;
    font-family: "Source Sans 3", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s;
    margin-bottom: 1.25rem;
}

.contact-submit-btn:hover { background: #8a9480; }

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: fit-content;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    background: #9ea894;
    color: white;
    text-decoration: none;
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: background 0.2s, transform 0.1s;
}

.whatsapp-btn:hover {
    background: #8a9480;
    transform: scale(1.02);
}

.whatsapp-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .contact-top-row { grid-template-columns: 1fr; }
    .contact-title   { font-size: 2.2rem; }
    .contact-textarea { height: 280px; }
    .contact-section  { padding: 7rem 1.25rem 4rem; }
}