/* Contact page specific styles */
.contact-card {
    border-radius: 20px;
}
.contact-title {
    color: #ff6600;
    font-weight: bold;
}
.contact-section {
    border-radius: 16px;
}
.contact-service-title {
    color: #ff6600;
}
.contact-btn-call {
    background-color: #ff6600;
    color: white;
    border-radius: 10px;
    width: 80%;
}
.contact-btn-whatsapp {
    background-color: #25d366;
    color: white;
    border-radius: 10px;
    width: 80%;
}
.contact-note {
    font-size: 1rem;
}
.contact-muted {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Responsive flex layout */
.contact-flex {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: stretch;
}
.contact-flex .contact-card-item {
    flex: 1 1 280px;
    min-width: 240px;
}

@media (max-width: 600px) {
    .contact-card { padding: 1rem; }
    .contact-service-title { font-size: 1.1rem; }
    .contact-btn-call, .contact-btn-whatsapp { width: 100%; }
}
