/* --- Routes Section --- */
.routes-section {
    padding: 80px 20px;
    background: #050505;
    position: relative;
    overflow: hidden;
}

/* Subtle animated background pattern */
.routes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, 
            rgba(206,254,70,0.01) 0px, 
            transparent 1px, 
            transparent 80px, 
            rgba(206,254,70,0.01) 81px
        ),
        repeating-linear-gradient(0deg, 
            rgba(206,254,70,0.01) 0px, 
            transparent 1px, 
            transparent 80px, 
            rgba(206,254,70,0.01) 81px
        );
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.routes-header {
    max-width: var(--container-width);
    margin: 0 auto 48px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.routes-label {
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.routes-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 12px;
}

.routes-divider {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 0 auto;
}

.route-stories {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    text-align: left;
    position: relative;
    z-index: 1;
}
@media (min-width: 900px) {
    .route-stories { grid-template-columns: 1fr 1fr; }
}

.route-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Decorative corner */
.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-top: 2px solid rgba(206, 254, 70, 0.1);
    border-right: 2px solid rgba(206, 254, 70, 0.1);
    opacity: 0;
    transition: all 0.4s ease;
}

.route-card:hover::before {
    opacity: 1;
    width: 60px;
    height: 60px;
}

.route-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.route-card:hover::after {
    width: 100%;
}

.route-card:hover {
    border-color: rgba(206, 254, 70, 0.25);
    background: rgba(206, 254, 70, 0.03);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.route-meta {
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.12em;
    position: relative;
    padding-left: 12px;
}

.route-meta::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: rotateMarker 3s linear infinite;
}

@keyframes rotateMarker {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.route-card h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s ease;
}

.route-card:hover h3 {
    color: var(--accent);
}

.route-card p {
    font-family: 'Montserrat', sans-serif;
    max-width: 100%;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Video with poster */
.route-video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.route-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Compact play button */
.route-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    padding-left: 3px;
    opacity: 0.9;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.route-video-wrapper:hover .route-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
    border-color: rgba(206, 254, 70, 0.5);
    color: var(--accent);
}

/* Duration badge */
.route-video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 4px 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

footer {
    padding: 48px 0 0; background-color: var(--bg-card);
    border-top: 1px solid #333;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

/* Left column: Logo + CTA */
