/* STICKY MOBILE CTA */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: linear-gradient(45deg, #D4AF37, #FFDF73);
    color: #000;
    text-align: center;
    padding: 15px 0;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    z-index: 9998;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulseGold 2s infinite;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: block;
    }
    footer {
        padding-bottom: 80px !important; /* Space for the floating button */
    }
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* TESTIMONIAL CAROUSEL */
.testimonials {
    padding: 60px 20px;
    background: #050505;
    border-top: 1px solid #1a1a1a;
}

.review-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.review-carousel::-webkit-scrollbar {
    display: none; /* Safari/Chrome */
}

.review-card {
    min-width: 300px;
    background: #111;
    border: 1px solid #222;
    padding: 25px;
    border-radius: 10px;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}

.stars {
    color: #D4AF37;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-card p {
    color: #ddd;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.review-card .author {
    display: block;
    color: #777;
    font-size: 0.85rem;
    font-weight: 600;
}
