/* Container positioned fixed at the bottom left (Common for Arabic UI) */
.floating-cta-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* Change to right: 30px if you prefer it on the right side */
    display: flex;
    flex-direction: row;
    /* Horizontal alignment matching the image */
    align-items: center;
    gap: 15px;
    z-index: 9999;
    /* Ensure it stays above all other content */
}

/* Base Button Styles */
.cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    /* Default background */
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    /* Slight bounce effect on hover */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Icon Sizing */
.cta-btn svg {
    width: 28px;
    height: 28px;
}

/* Specific Colors exactly matching the request and image style */

/* Facebook (Blue Outline Style) */
.fb-btn {
    color: #3b5998;
    /* Facebook Blue */
    border: 2.5px solid #3b5998;
}

/* WhatsApp (Solid Green Style) */
.wa-btn {
    background-color: #25D366;
    /* WhatsApp Green */
    color: #ffffff;
    border: 2.5px solid #25D366;
}

/* Phone (Red/Pink Outline Style) */
.phone-btn {
    color: #ff4b5a;
    /* Red/Pink color from your 3rd icon */
    border: 2.5px solid #ff4b5a;
}

/* Responsive adjust for smaller mobile screens */
@media (max-width: 768px) {
    .floating-cta-wrapper {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }

    .cta-btn {
        width: 48px;
        height: 48px;
    }

    .cta-btn svg {
        width: 24px;
        height: 24px;
    }
}