.contact-page {
    max-width: 800px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contact-page h1 {
    text-align: center;
    margin-bottom: 30px;
}

.form-errors {
    background: #fdecea;
    color: #611a15;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.form-errors ul {
    margin: 0;
    padding-left: 18px;
}

.form-success {
    background: #e6ffed;
    color: #0a6020;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.contact-form .form-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-form .form-label {
    width: 160px;
    text-align: right;
    padding-right: 12px;
    font-weight: 600;
    color: #333;
}

.contact-form .form-field {
    flex: 1;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

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

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    border-color: #66a3ff;
    box-shadow: 0 6px 18px rgba(30, 100, 255, 0.08);
    outline: none;
}

.contact-info {
    margin-top: 20px;
    color: #555;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form .form-label {
        width: auto;
        text-align: left;
        padding-right: 0;
        margin-bottom: 6px;
    }

    .contact-form textarea {
        min-height: 120px;
    }
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
}

.contact-extra-section {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.contact-demo-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}