/* Pay-Per-Call Sticky Button */
.call-cta-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ef4444;
    /* Urgent Red */
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: pulse-red 2s infinite;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.call-cta-sticky:hover {
    transform: scale(1.05);
}

.call-icon {
    font-size: 1.5rem;
}

.call-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.call-sub {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: normal;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* Sponsored "Featured" Carrier Highlight */
.carrier-card.sponsored {
    border: 2px solid #fbbf24;
    /* Gold */
    position: relative;
    background: linear-gradient(to bottom, #fffbeb, #ffffff);
}

.carrier-card.sponsored::before {
    content: "EDITOR'S CHOICE";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #92400e;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .call-cta-sticky {
        bottom: 80px;
        /* Above the Ad Anchor */
        right: 50%;
        transform: translateX(50%);
        width: 90%;
        justify-content: center;
    }

    .call-cta-sticky:hover {
        transform: translateX(50%) scale(1.05);
        /* Maintain center on hover */
    }
}