/* ============================================
   Bottom-of-Page Booking CTA Animation
   ============================================ */

/* STRONG Heartbeat - Distinct and Visible */
@keyframes cta-heartbeat-strong {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 94, 63, 0.9);
        transform: scale(1);
    }

    15% {
        /* The "Beat" - strong expansion of solid ring like before */
        box-shadow: 0 0 0 10px rgba(45, 94, 63, 0.5);
        transform: scale(1.05);
    }

    30% {
        /* Echo/Rest */
        box-shadow: 0 0 0 5px rgba(45, 94, 63, 0.7);
        transform: scale(1.02);
    }

    45% {
        box-shadow: 0 0 0 0 rgba(45, 94, 63, 0.9);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(45, 94, 63, 0.9);
        transform: scale(1);
    }
}

@keyframes cta-glow {
    0% {
        box-shadow: 0 0 10px rgba(45, 94, 63, 0.5), 0 0 20px rgba(45, 94, 63, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(45, 94, 63, 0.9), 0 0 45px rgba(63, 122, 86, 0.6);
    }

    100% {
        box-shadow: 0 0 10px rgba(45, 94, 63, 0.5), 0 0 20px rgba(45, 94, 63, 0.3);
    }
}

.nav-btn.cta-pulse {
    /* Combine heartbeat and glow */
    animation: cta-heartbeat-strong 1.8s ease-in-out infinite, cta-glow 3s ease-in-out infinite;
    background-color: var(--primary-green-dark) !important;
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

/* Mobile specific styling */
@media (max-width: 768px) {
    .header.scrolled-mobile .nav-btn.cta-pulse {
        animation: cta-heartbeat-strong 1.8s ease-in-out infinite, cta-glow 3s ease-in-out infinite !important;
        background-color: var(--primary-green-dark) !important;
        transform-origin: center;
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
    }
}

/* ============================================
   Minimalist Aura for Service Buttons (Static)
   ============================================ */

.service-order-btn {
    position: relative;
    /* Static aura matching the pulse visual - reduced opacity for elegance */
    box-shadow: 0 0 0 4px rgba(45, 94, 63, 0.25);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle inner definition */
}

.service-order-btn:hover {
    /* Slightly stronger/darker visual on hover */
    box-shadow: 0 0 0 6px rgba(45, 94, 63, 0.4), 0 6px 16px rgba(0, 0, 0, 0.15);
    background-color: #1f4530;
    /* Darker green on hover */
    transform: translateY(-2px);
}