.ca-logo {
    width: 200px; /* Set the image width */
    height: 200px; /* Set the image height */
    display: block; /* Ensure block-level display */
    margin: 0 auto; /* Center the image horizontally */
    margin-top: 200px;
  }

/* Standalone WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Sticky contact FAB: Call + Directions, stacked above the WhatsApp button */
.contact-fab {
    position: fixed;
    bottom: 98px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-fab__options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-fab__option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(16px) scale(0.7);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-fab__option svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.contact-fab__option--directions {
    background-color: #ea4335;
}

.contact-fab__option--call {
    background-color: var(--growim-secondary, #219be4);
}

.contact-fab.active .contact-fab__option {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.contact-fab.active .contact-fab__option--directions { transition-delay: 0.05s; }
.contact-fab.active .contact-fab__option--call { transition-delay: 0.1s; }

.contact-fab__toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background-color: var(--growim-primary, #635ad9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out;
}

.contact-fab__toggle:hover {
    transform: scale(1.06);
}

.contact-fab.active .contact-fab__toggle {
    transform: scale(0.94);
}

.contact-fab__toggle svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

@media (max-width: 576px) {
    .contact-fab {
        bottom: 82px;
        right: 16px;
    }

    .contact-fab__toggle {
        width: 44px;
        height: 44px;
    }

    .contact-fab__toggle svg {
        width: 20px;
        height: 20px;
    }

    .contact-fab__option {
        width: 40px;
        height: 40px;
    }

    .contact-fab__option svg {
        width: 18px;
        height: 18px;
    }
}
  