/* Stijlen voor de Rent a CISO promo cirkel */
.rent-a-ciso-circle-promo {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 180px;
    height: 180px;
    background-color: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    z-index: 10; /* Zorgt dat het boven de overlay zweeft */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-glow 2.5s infinite ease-in-out;
    border: 3px solid var(--white);
}

.rent-a-ciso-circle-promo:hover,
.rent-a-ciso-circle-promo:focus {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation-play-state: paused; /* Stopt de animatie bij hover/focus */
    outline: none;
}

.rent-a-ciso-circle-promo img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.rent-a-ciso-circle-promo span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

.rent-a-ciso-circle-promo span strong {
    font-size: 1.2rem;
    display: block;
    font-weight: 700;
}

/* Animatie voor een subtiele gloed */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 107, 0, 0.4), 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.7), 0 5px 25px rgba(0, 0, 0, 0.4);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 107, 0, 0.4), 0 5px 20px rgba(0, 0, 0, 0.3);
    }
}

/* Aanpassing voor kleinere schermen (mobiel) */
@media (max-width: 768px) {
    .rent-a-ciso-circle-promo {
        width: 140px;
        height: 140px;
        bottom: 20px;
        right: 20px;
    }
    .rent-a-ciso-circle-promo img {
        width: 45px;
        margin-bottom: 5px;
    }
    .rent-a-ciso-circle-promo span {
        font-size: 0.8rem;
    }
    .rent-a-ciso-circle-promo span strong {
        font-size: 1rem;
    }
}