/* Book Online CTA Button - f29ba517 */

.bocta-f29ba517-wrap {
    display: block;
}

.bocta-f29ba517-btn {
    --bocta-grad-1: #6366f1;
    --bocta-grad-2: #a855f7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--bocta-grad-1), var(--bocta-grad-2));
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px -5px rgba(99, 102, 241, 0.5);
    transform: translateY(0);
}

.bocta-f29ba517-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px -5px rgba(99, 102, 241, 0.6);
    color: #ffffff;
    text-decoration: none;
}

.bocta-f29ba517-btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* Shine sweep effect */
.bocta-f29ba517-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 70%,
        transparent 100%
    );
    transition: left 0.6s ease;
    pointer-events: none;
}

.bocta-f29ba517-shine:hover::before {
    left: 100%;
}

/* Pulse animation */
.bocta-f29ba517-pulse {
    animation: bocta-f29ba517-pulse-anim 2.5s ease-in-out infinite;
}

.bocta-f29ba517-pulse:hover {
    animation: none;
}

@keyframes bocta-f29ba517-pulse-anim {
    0%, 100% {
        box-shadow: 0 8px 25px -5px rgba(99, 102, 241, 0.5);
    }
    50% {
        box-shadow: 0 8px 35px -2px rgba(99, 102, 241, 0.7), 0 0 0 8px rgba(99, 102, 241, 0.1);
    }
}

/* Icon */
.bocta-f29ba517-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.bocta-f29ba517-btn:hover .bocta-f29ba517-icon {
    transform: scale(1.15);
}

/* Text */
.bocta-f29ba517-text {
    position: relative;
    z-index: 1;
}

.bocta-f29ba517-icon {
    position: relative;
    z-index: 1;
}
