
.contact-buttons {
    display: flex;
    gap: 14px;
    margin: 18px 0;
    justify-content: left;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    /*border-radius: 999px;*/
    border: 1px solid rgba(0,0,0,.15);
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    transition: all .25s ease;
}

.contact-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* Colors */
.btn-phone { color: #000; }
.btn-sms { color: #000; }
.btn-whatsapp { color: #000; }

@media (max-width: 600px) {
    .contact-btn {
        flex: 1 1 100%;
        justify-content: center;
    }
}
