/* ==========================================================================
   LANDING PAGE STYLES (landing.css)
   ========================================================================== */

/* Hero Section */
.landing-hero {
    position: relative;
    background: var(--bg-dark, #0d1117);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    color: #ffffff;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
    opacity: 0.75;
    filter: brightness(0.85);
}

.landing-hero-overlay {
    display: none;
}

.landing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.landing-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.landing-title .highlight-text {
    background: linear-gradient(135deg, #ff9e64 0%, #e65c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.landing-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    color: #ecf0f2;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Dynamic Stats Highlight */
.stats-highlight {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.stats-badge {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 32px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
}

.stats-badge:hover {
    border-color: rgba(255, 117, 26, 0.5);
    box-shadow: 0 15px 35px rgba(230, 92, 0, 0.25);
}

.stats-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ff9e64;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 158, 100, 0.2);
}

.stats-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Call to Action Buttons */
.landing-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
    box-shadow: 0 8px 24px rgba(230, 92, 0, 0.35);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 12px 32px rgba(230, 92, 0, 0.5);
    filter: brightness(1.08);
}

.btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--accent-orange-dark);
    border-color: #ffffff;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Explanation Section */
.explanation-section {
    padding: 80px 20px;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-wrapper h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-teal);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.section-title-wrapper p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.explanation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.explanation-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.explanation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--primary-teal) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.explanation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-floating);
    border-color: rgba(230, 92, 0, 0.2);
}

.explanation-card:hover::before {
    opacity: 1;
}

.card-icon {
    background: rgba(230, 92, 0, 0.08);
    color: var(--primary-teal);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.explanation-card:hover .card-icon {
    transform: rotateY(180deg);
}

.explanation-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.explanation-card p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Categories Highlight Section */
.categories-section {
    background: linear-gradient(180deg, rgba(230, 92, 0, 0.02) 0%, rgba(27, 77, 62, 0.03) 100%);
    padding: 60px 20px 10px 20px;
    border-top: 1px solid var(--border-color);
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.category-promo-card {
    position: relative;
    border-radius: 24px;
    padding: 35px 30px;
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-promo-card.kuliner {
    background: linear-gradient(135deg, #e65c00 0%, #ff8c42 100%);
    box-shadow: 0 10px 30px rgba(230, 92, 0, 0.15);
}

.category-promo-card.kerajinan {
    background: linear-gradient(135deg, #1b4d3e 0%, #2f7e67 100%);
    box-shadow: 0 10px 30px rgba(27, 77, 62, 0.15);
}

.category-promo-card.jasa {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
}

.card-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.22) 0%, transparent 60%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

.category-card-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.category-icon {
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.category-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.15));
}

.category-promo-card:hover .category-icon {
    transform: scale(1.1) rotate(6deg);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.category-promo-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-promo-card p {
    font-size: 0.95rem;
    opacity: 0.92;
    margin-bottom: 25px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.category-cta {
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 22px;
    border-radius: 50px;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-promo-card:hover .category-cta {
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    gap: 12px;
}

.category-promo-card.kuliner:hover .category-cta { color: #e65c00; }
.category-promo-card.kerajinan:hover .category-cta { color: #1b4d3e; }
.category-promo-card.jasa:hover .category-cta { color: #1e40af; }

.category-promo-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.35);
}

.category-promo-card.kuliner:hover {
    box-shadow: 0 20px 40px rgba(230, 92, 0, 0.3);
}
.category-promo-card.kerajinan:hover {
    box-shadow: 0 20px 40px rgba(27, 77, 62, 0.3);
}
.category-promo-card.jasa:hover {
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .landing-title {
        font-size: 2.5rem;
    }
    .landing-subtitle {
        font-size: 1.15rem;
    }
    .landing-hero {
        min-height: 70vh;
    }
    .section-title-wrapper h2 {
        font-size: 2rem;
    }
}

/* Theme Adaptations */
:root[data-theme="dark"] .btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Search Bar */
.hero-search-container {
    max-width: 600px;
    margin: 0 auto 30px auto;
    width: 100%;
}

.hero-search-form {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-search-form:focus-within {
    background: rgba(255, 255, 255, 0.22);
    border-color: var(--primary-teal);
    box-shadow: 0 10px 30px rgba(230, 92, 0, 0.25);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
    padding-left: 16px;
}

.search-input-wrapper .search-icon {
    color: #ecf0f2;
    flex-shrink: 0;
}

.hero-search-form input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    width: 100%;
}

.hero-search-form input::placeholder {
    color: #d1dce2;
    font-weight: 400;
}

.btn-search-hero {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(230, 92, 0, 0.25);
    transition: all 0.3s ease;
}

.btn-search-hero:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(230, 92, 0, 0.4);
}

@media (max-width: 576px) {
    .hero-search-form {
        flex-direction: column;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 12px;
    }
    
    .search-input-wrapper {
        padding-left: 8px;
        margin-bottom: 10px;
    }
    
    .btn-search-hero {
        width: 100%;
        text-align: center;
    }
}

/* Spotlight Section */
.spotlight-section {
    padding: 80px 20px;
}

.spotlight-more {
    text-align: center;
    margin-top: 45px;
}

.spotlight-more .btn-primary {
    padding: 14px 35px;
    font-size: 1rem;
}

/* Scroll Reveal Animations */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Background Orbs */
.floating-orbs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
    top: 15%;
    left: 8%;
    width: 320px;
    height: 320px;
    background: #e65c00; /* Terracotta Orange */
    animation-duration: 25s;
}

.orb-2 {
    bottom: 15%;
    right: 10%;
    width: 450px;
    height: 450px;
    background: #1b4d3e; /* Forest Emerald Green */
    animation-duration: 35s;
    animation-delay: -5s;
}

.orb-3 {
    top: 55%;
    left: 45%;
    width: 280px;
    height: 280px;
    background: #3b82f6; /* Accent Blue */
    animation-duration: 30s;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(60px, 90px) scale(1.18);
    }
    100% {
        transform: translate(-40px, 40px) scale(0.9);
    }
}

:root[data-theme="dark"] .orb {
    opacity: 0.05;
}

/* Scroll-Triggered Pop-up Card (Rekomendasi Hari Ini) */
.scroll-modal {
    position: fixed;
    bottom: -220px; /* Sembunyi di awal */
    right: 30px;
    width: 330px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 16px 40px rgba(27, 77, 62, 0.12);
    z-index: 1001;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.scroll-modal.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}

.scroll-modal:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-floating);
    border-color: rgba(230, 92, 0, 0.2);
}

.scroll-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1;
    padding: 2px;
}

.scroll-modal-close:hover {
    color: var(--primary-teal);
    transform: scale(1.1) rotate(90deg);
}

.scroll-modal-badge {
    display: inline-block;
    background: rgba(230, 92, 0, 0.08);
    color: var(--primary-teal);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

:root[data-theme="dark"] .scroll-modal-badge {
    background: rgba(255, 117, 26, 0.15);
    color: #ff8533;
}

/* Modal Content Styles */
.modal-recom-card {
    display: flex;
    gap: 15px;
    align-items: center;
}

.modal-recom-img {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.modal-recom-info {
    flex-grow: 1;
    overflow: hidden;
}

.modal-recom-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.modal-recom-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
    line-height: 1.4;
}

.modal-recom-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary-teal);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.modal-recom-action:hover {
    gap: 8px;
}

@media (max-width: 480px) {
    .scroll-modal {
        right: 15px;
        left: 15px;
        width: calc(100% - 30px);
    }
}

/* ==========================================================================
   3D INTERACTIVE LANDING PAGE ENHANCEMENTS
   ========================================================================== */
#hero-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.landing-hero {
    perspective: 1200px;
    transform-style: preserve-3d;
}

.landing-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 77, 62, 0.75) 0%, rgba(13, 18, 21, 0.88) 100%);
    z-index: 1;
    pointer-events: none;
}

.landing-hero-content {
    position: relative;
    z-index: 3;
}

/* Floating 3D Category Badges */
.floating-3d-badges-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    z-index: 4;
    position: relative;
}

.floating-3d-badge {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    animation: float3D 4s ease-in-out infinite alternate;
}

.floating-3d-badge img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.25s ease;
}

.floating-3d-badge:hover img {
    transform: scale(1.18) rotate(6deg);
}

.floating-3d-badge:nth-child(1) { animation-delay: 0s; }
.floating-3d-badge:nth-child(2) { animation-delay: 1.3s; }
.floating-3d-badge:nth-child(3) { animation-delay: 2.6s; }

.floating-3d-badge:hover {
    transform: translateY(-8px) scale(1.08) translateZ(30px) rotateX(10deg);
    background: rgba(230, 92, 0, 0.35);
    border-color: rgba(255, 158, 100, 0.8);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(230, 92, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

@keyframes float3D {
    0% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: translateY(-10px) rotateX(6deg) rotateY(-4deg);
    }
    100% {
        transform: translateY(4px) rotateX(-4deg) rotateY(6deg);
    }
}

/* 3D Card Perspective Styling */
.explanation-card,
.spotlight-section .card-umkm,
.stats-badge,
.recommendation-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

.explanation-card .card-icon,
.explanation-card h3,
.explanation-card p {
    transform: translateZ(25px);
    transition: transform 0.3s ease;
}

.explanation-card:hover .card-icon {
    transform: translateZ(45px) scale(1.1);
}

/* ==========================================================================
   3D INFINITE MARQUEE SHOWCASE WALL STYLES
   ========================================================================== */
.marquee-3d-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.marquee-3d-wrapper {
    position: absolute;
    top: -18%;
    left: -15%;
    width: 130%;
    height: 136%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: perspective(1200px) rotateY(-12deg) rotateX(6deg);
    transform-style: preserve-3d;
    opacity: 1;
    pointer-events: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.marquee-3d-track-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    pointer-events: none;
}

.marquee-3d-track {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
    width: max-content;
    will-change: transform;
    pointer-events: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.marquee-3d-track.scroll-left {
    animation: marqueeScrollLeft 38s linear infinite;
}

.marquee-3d-track.scroll-right {
    animation: marqueeScrollRight 42s linear infinite;
}

@keyframes marqueeScrollLeft {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes marqueeScrollRight {
    0% { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

/* 3D Vertical Rounded Cards */
.marquee-3d-card {
    position: relative;
    width: 220px;
    height: 310px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    background-color: var(--card-bg, #1a2228);
    text-decoration: none;
    color: #ffffff;
    pointer-events: none;
    user-select: none;
}

.marquee-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.marquee-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(13,18,21,0.92) 100%);
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    z-index: 2;
    pointer-events: none;
}

.marquee-badge {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.marquee-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.marquee-card-location {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.marquee-card-cta {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ff9e64;
    margin-top: 4px;
    opacity: 0.85;
}

/* Glassmorphism Backdrop for Hero Content Text */
.landing-hero-content {
    background: rgba(13, 18, 21, 0.68);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 48px 38px;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}







