.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-label {
    color: #4b5563;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 500;
}

.contact-button {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background: white;
    border: 1px solid #e5e7eb;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #D4AF37;
}

.contact-button .icon {
    font-size: 1.5rem;
    margin-left: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 50%;
}

.contact-button .text {
    display: flex;
    flex-direction: column;
}

.contact-button .title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-button .subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

.phone-button:hover {
    background: #f0fdf4;
}

.whatsapp-button:hover {
    background: #dcfce7;
}

.email-button:hover {
    background: #f1f5f9;
}
