.row{
display: flex;
}
/* top number and mail */
.top-contact-bar {
    width: 100%;
    background-color: transparent; /* stays transparent */
    color: #000000;
    font-size: 0.8rem;
    padding: 10px 20px;
    z-index: 1030; /* higher than navbar */
    position: absolute; /* stays in flow, but above navbar visually */
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
}

.contact-container span {
    cursor: pointer;
    transition: color 0.3s ease;
}

.contact-container span:hover {
    color: gray;
}

.contact-container span i {
    margin-right: 5px;
}




/* hero button */
.whatsapp-btn {
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1DA851; /* Darker green */
    color: white;
}


.whatsapp-cta-btn {
    display: block;
    padding: 12px 20px;
    background-color: #25D366; /* WhatsApp green */
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background-color 0.3s ease;
}

.whatsapp-cta-btn i {
    margin-right: 8px;
}

.whatsapp-cta-btn:hover {
    background-color: #128C4F; /* dark green */
    color: #ffffff !important;
}
