/* =============================================
   Replix3D — Animation Layer v2.0 (Industrial Light)
   Тонкие, производительные эффекты. Без неона,
   глитча, частиц и тяжёлых hover-шейдеров.
   ============================================= */

/* =============================================
   SCROLL PROGRESS LINE (top edge)
   ============================================= */
#r3d-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent-blue, #D9480F);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s linear;
}

/* =============================================
   CARD HOVER — лёгкий подъём (transform задан в styles.css)
   ============================================= */
.service-card,
.glass-card,
.price-card,
.detail-card {
    will-change: transform;
}

/* =============================================
   LOCATION BADGE — pulse dot
   ============================================= */
.location-badge .dot {
    position: relative;
}

.location-badge .dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(217, 72, 15, 0.3);
    animation: dot-ping 1.8s ease-out infinite;
}

@keyframes dot-ping {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2.4); opacity: 0; }
}

/* =============================================
   MARQUEE CHIP — hover lift
   ============================================= */
.format-chip {
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.format-chip:hover {
    transform: translateY(-2px);
}

/* =============================================
   REDUCED MOTION — accessibility
   ============================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
