/* Container */
.floating-cta {
    position: fixed;
    right: 30px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Icon Button */
.cta-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Colors */
.cta-icon.whatsapp {
    background: #25D366;
}

.cta-icon.consultation {
    background: var(--theme-color);
}

.cta-icon.support {
    background: #ff4d4d;
}

/* Hover Effect */
.cta-icon:hover {
    transform: translateY(-4px) scale(1.05);
}

/* Tooltip */
.cta-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%);
    top: 50%;
    transition: all 0.3s ease;
}

/* Tooltip Arrow */
.cta-icon::before {
    content: "";
    position: absolute;
    right: 62px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #000;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Show Tooltip on Hover */
.cta-icon:hover::after,
.cta-icon:hover::before {
    opacity: 1;
    right: 75px;
}
.cta-wrap3 .checklist li {
    color: #ffffff;
    font-weight: 500;
}

.cta-wrap3 .checklist li strong {
    color: #ffffff;
    font-weight: 700;
}

.cta-wrap3 .checklist .icon {
    filter: brightness(0) invert(1); /* makes icon white */
}

.price-card3 .checklist li {
    margin-bottom: 10px;
}
.fs-100{
    font-size: 100px !important;
}
.color-white{
   color: #ffffff; 
}