﻿/* Container for both buttons */
.fixed-contact-buttons {
    position: fixed;
    bottom: 20px; /* Adjust as needed */
    right: 20px; /* Adjust as needed */
    z-index: 1000;
    display: flex; /* Use Flexbox for side-by-side arrangement */
    gap: 10px; /* Space between the buttons */
    /* You can change flex-direction to 'column' if you want them stacked vertically */
    /* flex-direction: column; */
}

/* Common styles for individual buttons */
.contact-icon-button {
    background-color: #007bff; /* Example blue for Call */
    color: white;
    border-radius: 50%;
    width: 55px; /* Slightly smaller or same size */
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Added transform for a subtle click effect */
}

    .contact-icon-button:hover {
        background-color: #0056b3; /* Darker blue on hover */
        transform: translateY(-2px); /* Subtle lift on hover */
    }

    .contact-icon-button:active {
        transform: translateY(0); /* Return to original position on click */
    }

/* Specific styling for the Message Us button (e.g., WhatsApp green) */
.fixed-contact-buttons .message-us {
    background-color: #25D366; /* WhatsApp Green */
}

    .fixed-contact-buttons .message-us:hover {
        background-color: #1DA851; /* Darker green on hover */
    }


/* Style for the image icons */
.contact-icon {
    width: 28px; /* Adjust size as needed */
    height: 28px;
    filter: invert(100%); /* Makes a black icon white */
}

/* Style for Font Awesome icons (if used) */
.contact-icon-font {
    font-size: 26px; /* Adjust size as needed */
    color: white;
}

/* Optional: Adjust for smaller screens if they become too intrusive */
@media (max-width: 480px) {
    .fixed-contact-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .contact-icon-button {
        width: 50px;
        height: 50px;
    }

    .contact-icon, .contact-icon-font {
        width: 25px;
        height: 25px;
        font-size: 24px;
    }
}
