/* ========================================
   ZESTGAH MAP - COMPLETE CSS
   ======================================== */

:root {
    --primary-color: #6adf43;
    --secondary-color: #FFA500;
    --danger-color: #FF4500;
    --success-color: #00D084;
    --info-color: #00A8FF;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.95);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}



.nav-link {
    color: #e6e6e6 !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
    right: 0%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    color: #ffd700 !important;
    background: rgba(255, 215, 0, 0.1);
}

/* ========================================
   HERO SECTION
   ======================================== */
.map-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    overflow: hidden;
}

#particles-map {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.map-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 2rem 0;
}

.hero-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Journey Stats */
.journey-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    min-width: 120px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Journey Progress */
.journey-progress-container {
    margin: 2rem 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.progress-percentage {
    color: var(--primary-color);
}

.journey-progress {
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.journey-progress .progress-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.progress-cities {
    text-align: center;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Gate Animation */
.map-gate-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gate-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
    perspective: 1000px;
}

.gate-door {
    position: absolute;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #2c1810, #1a0f08);
    border: 3px solid var(--primary-color);
    transition: transform 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 3;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.gate-left {
    left: 0;
    border-radius: 20px 0 0 20px;
    transform-origin: left center;
}

.gate-right {
    right: 0;
    border-radius: 0 20px 20px 0;
    transform-origin: right center;
}

.gate-ornament {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.gate-left .gate-ornament {
    right: 10px;
}

.gate-right .gate-ornament {
    left: 10px;
}

.gate-light {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 2;
}

.gate-wrapper:hover .gate-left {
    transform: rotateY(-120deg);
}

.gate-wrapper:hover .gate-right {
    transform: rotateY(120deg);
}

.gate-wrapper:hover .gate-light {
    opacity: 1;
}

.map-preview {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    object-fit: cover;
    border-radius: 15px;
    z-index: 1;
    filter: brightness(0.8);
    transition: filter 1s ease;
}

.gate-wrapper:hover .map-preview {
    filter: brightness(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-20px);
    }

    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ========================================
   INTERACTIVE MAP SECTION
   ======================================== */
.interactive-map-section {
    padding: 3rem 0;
    background: var(--dark-bg);
}


.control-btn {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Filters Panel */
.filters-panel {
    position: fixed;
    top: 120px;
    right: -350px;
    width: 320px;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    z-index: 999;
    transition: right 0.5s ease;
    max-height: 80vh;
    overflow-y: auto;
}

.filters-panel.active {
    right: 20px;
}

.filters-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.filter-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-btn {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: right;
}

.filter-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateX(-5px);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
}

.filter-btn i {
    margin-left: 10px;
}

/* Map Canvas */
.map-canvas {
    position: relative;
    width: 100%;
    height: 800px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.map-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

/* Journey Path SVG */
.journey-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.5s ease;
}

#journeyLine {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    animation: pathGlow 3s ease-in-out infinite;
}

@keyframes pathGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(255, 165, 0, 1));
    }
}

/* Location Markers */
.location-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.marker-icon {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.marker-label {
    margin-top: 8px;
    background: var(--card-bg);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-marker:hover {
    transform: translate(-50%, -50%) scale(1.15);
    z-index: 100;
}

.location-marker:hover .marker-icon {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.location-marker:hover .marker-label {
    opacity: 1;
}

/* Marker Pulse Animation */
.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    opacity: 0.3;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
}

/* Marker States */
.location-marker.visited .marker-icon {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.location-marker.visited .marker-pulse {
    background: var(--success-color);
}

.location-marker.current .marker-icon {
    background: var(--info-color);
    border-color: var(--info-color);
    color: white;
    animation: currentBlink 1.5s infinite;
}

@keyframes currentBlink {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 168, 255, 0.8);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 168, 255, 1);
    }
}

.location-marker.upcoming .marker-icon {
    background: rgba(255, 193, 7, 0.2);
    border-color: #FFC107;
    color: #FFC107;
}

.location-marker.danger .marker-icon {
    background: rgba(255, 69, 0, 0.3);
    border-color: var(--danger-color);
    color: var(--danger-color);
}

.danger-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    background: var(--danger-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: dangerPulse 1s infinite;
    opacity: 0.5;
    z-index: 1;
}

@keyframes dangerPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.location-marker.locked .marker-icon {
    background: rgba(128, 128, 128, 0.3);
    border-color: #808080;
    color: #808080;
}

.location-marker.mystery .marker-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
}

.mystery-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.6), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: mysteryGlow 2s infinite;
    z-index: 0;
}

@keyframes mysteryGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* ========================================
   LOCATION PANEL
   ======================================== */
.location-panel {
    position: fixed;
    top: 0;
    right: -600px;
    width: 550px;
    height: 100vh;
    background: var(--card-bg);
    border-left: 3px solid var(--primary-color);
    z-index: 10000;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
}

.location-panel.active {
    right: 0;
}

.close-panel {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--danger-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-panel:hover {
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.8);
}

.panel-content {
    padding: 2rem;
}

.location-header {
    margin-bottom: 2rem;
}

.location-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.chapter-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 5px;
}

.status-badge.visited {
    background: var(--success-color);
    color: white;
}

.status-badge.current {
    background: var(--info-color);
    color: white;
}

.status-badge.upcoming {
    background: #FFC107;
    color: var(--dark-bg);
}

.status-badge.danger {
    background: var(--danger-color);
    color: white;
}

.status-badge.locked {
    background: #808080;
    color: white;
}

.location-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item i {
    color: var(--primary-color);
    margin-left: 15px;
    font-size: 1.2rem;
    min-width: 25px;
}

.info-item strong {
    color: var(--primary-color);
    margin-left: 10px;
}

.location-description,
.location-story {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.location-description h4,
.location-story h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-description p,
.location-story p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.locked-message {
    text-align: center;
    padding: 3rem 2rem;
}

.locked-message i {
    color: #808080;
    margin-bottom: 1rem;
}

.locked-message h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.locked-message p {
    color: var(--text-secondary);
}

/* ========================================
   REGIONS SECTION
   ======================================== */
.regions-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
}

.region-card {
    background: var(--card-bg);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.region-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.region-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-bg);
    margin: 0 auto 1.5rem;
}

.region-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.region-cities {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.region-stats {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   CHAPTERS TIMELINE
   ======================================== */
.chapters-timeline-section {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.timeline-wrapper {
    position: relative;
    padding: 2rem 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom,
            transparent,
            var(--primary-color) 10%,
            var(--primary-color) 90%,
            transparent);
}

.chapter-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.chapter-item::before {
    content: '';
    position: absolute;
    right: 50%;
    width: 20px;
    height: 20px;
    background: var(--card-bg);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    transform: translateX(50%);
    z-index: 10;
}

.chapter-item.completed::before {
    background: var(--success-color);
    border-color: var(--success-color);
    box-shadow: 0 0 20px rgba(0, 208, 132, 0.8);
}

.chapter-item.current::before {
    background: var(--info-color);
    border-color: var(--info-color);
    animation: currentPulse 2s infinite;
}

@keyframes currentPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 168, 255, 0.8);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 168, 255, 1);
    }
}

.chapter-item.danger::before {
    background: var(--danger-color);
    border-color: var(--danger-color);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.8);
}

.chapter-item.locked::before {
    background: #808080;
    border-color: #808080;
}

.chapter-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark-bg);
    margin-left: 2rem;
    flex-shrink: 0;
}

.chapter-details {
    flex: 1;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    margin-right: 2rem;
    transition: all 0.3s ease;
}

.chapter-item:hover .chapter-details {
    border-color: var(--primary-color);
    transform: translateX(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.chapter-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.chapter-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.chapter-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.chapter-status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.chapter-status.completed {
    background: var(--success-color);
    color: white;
}

.chapter-status.current {
    background: var(--info-color);
    color: white;
}

.chapter-status.danger {
    background: var(--danger-color);
    color: white;
}

.chapter-status.locked {
    background: #808080;
    color: white;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.footer-title {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.footer-contact {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .location-panel {
        width: 100%;
        right: -100%;
    }

    .map-canvas {
        height: 600px;
    }

    .chapter-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .chapter-number {
        margin-bottom: 1rem;
    }

    .timeline-wrapper::before {
        right: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .journey-stats {
        gap: 1rem;
    }

    .stat-item {
        min-width: 100px;
    }

    .map-controls {
        top: 80px;
        left: 10px;
    }

    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .filters-panel {
        width: 280px;
    }

    .marker-label {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}
@media (max-width: 992px) {
    .map-canvas {
        overflow-x: auto;
        overflow-y: auto;
    }
    
    .location-marker {
        transform: scale(0.8);
    }
    
    .marker-label {
        font-size: 0.7rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Hide labels on mobile to prevent overlap */
    .marker-label {
        display: none;
    }
    
    /* Show labels only on hover/active */
    .location-marker:hover .marker-label,
    .location-marker.active .marker-label {
        display: block;
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.9);
        padding: 4px 8px;
        border-radius: 4px;
        white-space: nowrap;
        z-index: 1000;
    }
    
    /* Smaller markers */
    .location-marker {
        transform: scale(0.6);
    }
    
    .marker-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    /* Make map scrollable horizontally */
    .map-canvas {
        min-width: 1000px;
        height: 600px;
    }
    
    .interactive-map-section {
        overflow-x: auto;
        overflow-y: hidden;
    }
}

/* Small mobile */
@media (max-width: 576px) {
    .journey-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .map-controls {
        bottom: 10px;
        right: 10px;
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    .map-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 900;
}

/* Mobile - move controls lower to avoid navbar */

    @media (max-width: 768px) {
        .map-controls {
            display: none;
        }
    }
}