/* Contact Ribbon */
.contact-ribbon {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
}

.contact-ribbon h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #333;
}

.contact-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Unified contact button style */
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    background: #2b7cff;
    color: #fff;
    transition: all 0.25s ease;
    min-width: 180px;
    width: 180px; /* Fixed width to make them equal */
    text-align: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.12);
}

/* Icon styling */
.contact-btn img {
    width: 18px;
    height: 18px;
    display: inline-block;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

/* Hover effect */
.contact-btn:hover {
    background: #1f61cc;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 12px rgba(0,0,0,0.18);
}

/* Call button - Orange color */
.contact-btn:first-child {
    background: #ff6b35; /* Orange for phone calls */
}

.contact-btn:first-child:hover {
    background: #e55a2b;
}

/* WhatsApp button - Green color */
.contact-btn.whatsapp {
    background: #25D366; /* WhatsApp green */
}

.contact-btn.whatsapp:hover {
    background: #1da851;
}