/* ========== Routes Page Styles ========== */

/* Hero */
.routes-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0B1D3A 0%, #132b4f 50%, #0B1D3A 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.routes-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C9A84C, #E8D5A0, #C9A84C);
}
.routes-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(45deg, rgba(201,168,76,0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(201,168,76,0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(201,168,76,0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(201,168,76,0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0;
}
.routes-hero-content {
    position: relative;
    z-index: 1;
}
.routes-hero h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.routes-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
}

/* Route Sections - alternating backgrounds */
.route-section {
    padding: 80px 0;
    position: relative;
}
.route-section--navy {
    background: linear-gradient(180deg, #f5f6fa 0%, #eef0f5 100%);
}
.route-section--white {
    background: #fff;
}
.route-section + .route-section {
    border-top: 1px solid rgba(11,29,58,0.06);
}

/* Section Header */
.route-section-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
}
.route-flag-large {
    font-size: 3.2rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 4px;
}
.route-section-title h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0B1D3A;
    margin-bottom: 8px;
}
.route-section-title p {
    font-size: 1.05rem;
    color: #5a6577;
    line-height: 1.6;
    max-width: 600px;
}

/* Method Grid - horizontal layout */
.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* Method Tile */
.method-tile {
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: 16px;
    padding: 32px 28px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.method-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0B1D3A, #1a3460);
    transition: background 0.3s ease;
}
.method-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11,29,58,0.1);
    border-color: transparent;
}
.method-tile:hover::before {
    background: linear-gradient(90deg, #C9A84C, #E8D5A0);
}

/* Featured tile - gold accent */
.method-tile--featured {
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 4px 20px rgba(201,168,76,0.08);
}
.method-tile--featured::before {
    background: linear-gradient(90deg, #C9A84C, #E8D5A0, #C9A84C);
}

/* Navy bg section tiles get white bg with subtle shadow */
.route-section--navy .method-tile {
    box-shadow: 0 2px 16px rgba(11,29,58,0.06);
}

/* Method Icon */
.method-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    line-height: 1;
}

/* Method Title */
.method-tile h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0B1D3A;
    margin-bottom: 20px;
}

/* Method Stats - key numbers */
.method-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f2f5;
}
.stat {
    flex: 1;
}
.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0B1D3A;
    line-height: 1.2;
}
.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #8a95a5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Method Description */
.method-desc {
    font-size: 0.92rem;
    color: #5a6577;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Method Badge */
.method-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    background: #f0f3f8;
    color: #0B1D3A;
}
.method-badge--gold {
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.22));
    color: #8a6d1b;
}

/* Route CTA */
.route-cta {
    text-align: center;
    padding-top: 8px;
}

/* ========== Mobile Responsive ========== */
@media (max-width: 768px) {
    .routes-hero {
        padding: 120px 0 60px;
    }
    .routes-hero h1 {
        font-size: 2rem;
    }
    .route-section {
        padding: 56px 0;
    }
    .route-section-header {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 36px;
    }
    .route-flag-large {
        font-size: 2.6rem;
    }
    .route-section-title h2 {
        font-size: 1.6rem;
    }
    .method-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .method-tile {
        padding: 24px 20px 20px;
    }
    .method-stats {
        gap: 16px;
    }
    .stat-value {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .routes-hero h1 {
        font-size: 1.7rem;
    }
    .routes-hero p {
        font-size: 1rem;
    }
    .route-section-title h2 {
        font-size: 1.35rem;
    }
}
