/* =========================================================
   TOTAL TRADE TRANSPORTATION LLC — ANIMATION ENHANCEMENTS
   Phase 2: Premium Effects System
   ========================================================= */

/* ═══════════════════════════════════════════════════════
   PAGE LOADER / ENTRY SCREEN
═══════════════════════════════════════════════════════ */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--color-navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: opacity 0.6s var(--ease-cinema), visibility 0.6s;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeIn 0.5s both;
}

.loader-hexagon {
    width: 72px;
    height: 72px;
    background: var(--color-red);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: hexPulse 1.2s ease-in-out infinite;
}

.loader-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    color: var(--color-white);
    text-transform: uppercase;
}

.loader-sub {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    color: var(--color-gold);
    text-transform: uppercase;
}

.loader-track {
    width: 280px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-red), var(--color-gold));
    border-radius: 2px;
    transition: width 0.8s var(--ease-cinema);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}

@keyframes hexPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(178, 34, 34, 0.4);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 30px 10px rgba(178, 34, 34, 0.15);
    }
}

/* ═══════════════════════════════════════════════════════
   CUSTOM CURSOR / SPOTLIGHT
═══════════════════════════════════════════════════════ */
#cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.3s;
    will-change: transform;
}

#cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(201, 168, 76, 0.6);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    will-change: transform;
}

body.cursor-hover #cursor-dot {
    width: 12px;
    height: 12px;
    background: var(--color-red);
}

body.cursor-hover #cursor-ring {
    width: 52px;
    height: 52px;
    border-color: rgba(178, 34, 34, 0.5);
}

@media (max-width: 768px) {

    #cursor-dot,
    #cursor-ring {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════
   HERO CANVAS (Road Lines)
═══════════════════════════════════════════════════════ */
#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   PARTICLE CANVAS (Background Dots)
═══════════════════════════════════════════════════════ */
#particle-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════
   ENHANCED ANIMATION KEYFRAMES
═══════════════════════════════════════════════════════ */

/* CHAR REVEAL */
@keyframes charReveal {
    from {
        opacity: 0;
        transform: translateY(120%) rotate(6deg);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
        filter: blur(0);
    }
}

/* SCALE BURST */
@keyframes scaleBurst {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }

    60% {
        transform: scale(1.04);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* GLOW BORDER PULSE */
@keyframes glowBorderPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(178, 34, 34, 0.0), inset 0 0 0 0 rgba(178, 34, 34, 0);
    }

    50% {
        box-shadow: 0 0 30px 6px rgba(178, 34, 34, 0.4), inset 0 0 20px 2px rgba(178, 34, 34, 0.06);
    }
}

/* TRUCK DRIVE-IN */
@keyframes truckDriveIn {
    from {
        opacity: 0;
        transform: translateX(-140px) scale(0.92);
        filter: blur(6px);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

/* FLOAT */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* SCAN LINE */
@keyframes scanLine {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 100vh;
    }
}

/* WIPE IN */
@keyframes wipeIn {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0% 0 0);
    }
}

/* BORDER TRACE */
@keyframes borderTrace {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }

    25% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    50% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
    }

    75% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* SCROLL INDICATOR */
@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.4;
    }
}

/* ═══════════════════════════════════════════════════════
   ENHANCED REVEAL CLASSES
═══════════════════════════════════════════════════════ */
.reveal-scale {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.9s var(--ease-cinema), transform 0.9s var(--ease-cinema);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: opacity 0.9s ease, filter 0.9s ease, transform 0.9s var(--ease-cinema);
}

.reveal-blur.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.reveal-clip {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s var(--ease-cinema);
}

.reveal-clip.visible {
    clip-path: inset(0 0% 0 0);
}

/* ═══════════════════════════════════════════════════════
   HERO SCROLL INDICATOR
═══════════════════════════════════════════════════════ */
.hero-scroll-hint {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1s 2s both;
}

.hero-scroll-hint span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.5);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--color-gold), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   MAGNETIC BUTTON WRAPPER
═══════════════════════════════════════════════════════ */
.magnetic-wrap {
    display: inline-block;
    transition: transform 0.3s var(--ease-bounce);
}

/* ═══════════════════════════════════════════════════════
   3D TILT CARDS
═══════════════════════════════════════════════════════ */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.1s ease;
}

.tilt-card-inner {
    transform: translateZ(0);
    transition: transform 0.3s var(--ease-smooth);
}

/* ═══════════════════════════════════════════════════════
   ENHANCED SERVICE CARDS
═══════════════════════════════════════════════════════ */
.service-card {
    transition: background 0.4s ease, transform 0.4s var(--ease-bounce), box-shadow 0.4s ease !important;
}

.service-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
}

/* ═══════════════════════════════════════════════════════
   BTN GLOW on PRIMARY
═══════════════════════════════════════════════════════ */
.btn-primary {
    animation: glowBorderPulse 3s ease-in-out infinite;
}

.btn-primary:hover {
    animation: none;
}

/* ═══════════════════════════════════════════════════════
   TEXT SPLIT (Chars)
═══════════════════════════════════════════════════════ */
.split-text .char {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.split-text .char-inner {
    display: inline-block;
    opacity: 0;
    transform: translateY(110%);
    transition: opacity 0.6s var(--ease-cinema), transform 0.6s var(--ease-cinema);
}

.split-text.visible .char-inner {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   FLOATING BADGE
═══════════════════════════════════════════════════════ */
.float-badge {
    animation: float 4s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   RIBBON / MARQUEE TICKER
═══════════════════════════════════════════════════════ */
.marquee-wrap {
    overflow: hidden;
    background: var(--color-red-dark);
    padding: 0.6rem 0;
    position: relative;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    will-change: transform;
    animation: marqueeScroll 28s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 244, 244, 0.85);
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    background: var(--color-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════════════════
   GALLERY PAGE SPECIFIC STYLES
═══════════════════════════════════════════════════════ */

/* Gallery Hero */
.gallery-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/fleet-night.png');
    background-size: cover;
    background-position: center;
    animation: heroPan 20s var(--ease-smooth) infinite alternate;
}

.gallery-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 26, 47, 0.5) 0%,
            rgba(10, 26, 47, 0.7) 60%,
            rgba(10, 26, 47, 1) 100%);
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--space-md);
}

/* Gallery masonry grid */
.gallery-section {
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-navy);
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 2px;
    background: transparent;
    color: rgba(216, 195, 165, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    border-color: var(--color-red);
    color: var(--color-white);
    background: rgba(178, 34, 34, 0.12);
}

.gallery-masonry {
    columns: 3;
    column-gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .gallery-masonry {
        columns: 2;
    }
}

@media (max-width: 600px) {
    .gallery-masonry {
        columns: 1;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: block;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.8s var(--ease-cinema), filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.8);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 26, 47, 0.9) 0%,
            rgba(10, 26, 47, 0.4) 40%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-caption {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-white);
    text-transform: uppercase;
    transform: translateY(10px);
    transition: transform 0.4s var(--ease-cinema);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-expand-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(10, 26, 47, 0.7);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-gold);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s var(--ease-bounce);
}

.gallery-item:hover .gallery-expand-icon {
    opacity: 1;
    transform: scale(1);
}

/* ═══════════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════════ */
#lightbox {
    position: fixed;
    inset: 0;
    z-index: 99990;
    background: rgba(5, 13, 26, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    padding: 2rem;
}

#lightbox.open {
    opacity: 1;
    visibility: visible;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.4s var(--ease-cinema);
}

#lightbox.open #lightbox-img {
    transform: scale(1);
}

#lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(216, 195, 165, 0.7);
    white-space: nowrap;
}

#lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(178, 34, 34, 0.2);
    border: 1px solid rgba(178, 34, 34, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-white);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

#lightbox-close:hover {
    background: var(--color-red);
    transform: rotate(90deg);
}

#lightbox-prev,
#lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-white);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s var(--ease-bounce);
}

#lightbox-prev {
    left: 1.5rem;
}

#lightbox-next {
    right: 1.5rem;
}

#lightbox-prev:hover {
    background: rgba(178, 34, 34, 0.4);
    transform: translateY(-50%) scale(1.1);
}

#lightbox-next:hover {
    background: rgba(178, 34, 34, 0.4);
    transform: translateY(-50%) scale(1.1);
}

/* ═══════════════════════════════════════════════════════
   UPLOAD GALLERY SECTION
═══════════════════════════════════════════════════════ */
.upload-section {
    padding: var(--space-lg) var(--space-lg);
    background: var(--color-navy-mid);
    position: relative;
    overflow: hidden;
}

.upload-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 30px,
            rgba(201, 168, 76, 0.015) 30px,
            rgba(201, 168, 76, 0.015) 32px);
}

.upload-drop-zone {
    max-width: 700px;
    margin: 0 auto;
    border: 2px dashed rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-lg);
    padding: 4rem var(--space-lg);
    text-align: center;
    position: relative;
    transition: border-color 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.upload-drop-zone:hover,
.upload-drop-zone.dragover {
    border-color: var(--color-gold);
    background: rgba(201, 168, 76, 0.04);
}

.upload-drop-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    user-select: text;
    -webkit-user-select: text;
}

.upload-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.upload-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.upload-subtitle {
    font-size: 0.9rem;
    color: rgba(216, 195, 165, 0.55);
    line-height: 1.6;
}

.upload-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    max-width: 700px;
    margin: 2rem auto 0;
}

.upload-preview-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    animation: scaleBurst 0.4s var(--ease-bounce) both;
}

.upload-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-preview-remove {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    width: 24px;
    height: 24px;
    background: rgba(178, 34, 34, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.upload-preview-remove:hover {
    transform: scale(1.2);
}

/* ═══════════════════════════════════════════════════════
   ENHANCED HERO – SCAN LINE OVERLAY
═══════════════════════════════════════════════════════ */
.hero-scanlines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(to bottom,
            transparent 0px,
            transparent 3px,
            rgba(0, 0, 0, 0.05) 3px,
            rgba(0, 0, 0, 0.05) 4px);
    opacity: 0.3;
}

/* ═══════════════════════════════════════════════════════
   ENHANCED STATS NUMBERS — GLOW
═══════════════════════════════════════════════════════ */
.stat-number {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    transition: text-shadow 0.4s ease;
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════
   SECTION TRANSITION OVERLAY (Page Fade)
═══════════════════════════════════════════════════════ */
#page-transition {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-navy);
    transform: translateY(100%);
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   FLOATING TEXAS STAR PARTICLES
═══════════════════════════════════════════════════════ */
.star-particle {
    position: fixed;
    width: 2px;
    height: 2px;
    background: rgba(201, 168, 76, 0.6);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle linear infinite;
    will-change: transform, opacity;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-20vh) translateX(var(--drift, 40px)) scale(1.5);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════════════════
   ENHANCED NAVIGATION — ACTIVE GLOW
═══════════════════════════════════════════════════════ */
.nav-links a.active {
    color: var(--color-white);
}

.nav-links a.active::after {
    width: 100%;
    background: linear-gradient(90deg, var(--color-red), var(--color-gold));
}

/* ═══════════════════════════════════════════════════════
   GLASSMORPHISM CARD
═══════════════════════════════════════════════════════ */
.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

/* ═══════════════════════════════════════════════════════
   CINEMATIC FULL-WIDTH IMAGE BAND
═══════════════════════════════════════════════════════ */
.cinema-band {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.cinema-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 12s linear;
}

.cinema-band:hover img {
    transform: scale(1.06);
    transition: transform 8s linear;
}

.cinema-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 26, 47, 0.8) 0%,
            rgba(178, 34, 34, 0.15) 50%,
            rgba(10, 26, 47, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cinema-band-text {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(244, 244, 244, 0.12);
    text-align: center;
    line-height: 1;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   MARQUEE CTA
═══════════════════════════════════════════════════════ */
.marquee-wrap:hover .marquee-track {
    animation-play-state: paused;
}
/* ═══════════════════════════════════════════════════
   PHASE 4 ADVANCED ANIMATIONS
═══════════════════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--color-gold);
  z-index: 999999;
  width: 0%;
  transition: width 0.1s;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.6);
}

body.page-exit {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-cinema), transform 0.4s var(--ease-cinema);
}
