/* ============================================================ */
/* CONTACT-US.HTML — PAGE-SPECIFIC STYLES                        */
/* Shared styles (header/nav/footer/cta-strip/consult-section/   */
/* inquiry-form-container) already live in assets/css/style.css  */
/* ============================================================ */

/* ---------------- AUTO-SCROLL SHOWCASE ---------------- */
@keyframes infiniteScrollEffect {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}

@media (min-width: 769px) {
    .hero-scroll-container:hover .hero-scroll-track {
        animation-play-state: paused;
    }
}

.hero-scroll-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: calc(50vw - 25px);
    max-width: 650px;
    height: 520px;
    background: #111;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .hero-scroll-item {
        width: calc(85vw - 15px);
        height: 380px;
    }
}

/* ---------------- AI CHAT LAUNCHER (Botpress) ---------------- */
#preciousCustomAiLauncher {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #004B23;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

#preciousCustomAiLauncher span {
    font-size: 28px;
    color: #ffffff;
    line-height: 1;
}