/* Route Page Styles */
.sticky-maps-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--pay-yellow);
    color: #1f2937;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sticky-maps-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 193, 7, 0.5);
}

.sticky-maps-btn svg {
    flex-shrink: 0;
}

/* Route Summary Page Styles */
.route-subtitle {
    color: var(--clarity-white);
    opacity: 0.9;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.overview-widget {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.route-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--clarity-white);
}

.stat-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--pay-yellow);
}

.stat-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

.stops-summary-widget {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--clarity-white);
}

.stops-summary-widget h2 {
    color: var(--clarity-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.stops-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stop-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.stop-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.stop-number {
    width: 40px;
    height: 40px;
    background: var(--pay-yellow);
    color: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.stop-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stop-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.stop-image:hover img {
    transform: scale(1.05);
}

.stop-info h3 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    color: var(--clarity-white);
}

.stop-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--clarity-white);
    line-height: 1.4;
}

.features-widget {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--clarity-white);
}

.features-widget h2 {
    color: var(--clarity-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.feature-item i {
    color: var(--pay-yellow);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--clarity-white);
}

.info-widget {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--clarity-white);
}

.info-widget h2 {
    color: var(--clarity-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.info-item i {
    color: var(--pay-yellow);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--clarity-white);
    line-height: 1.4;
}

.start-route-widget {
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

.start-route-btn {
    background: var(--pay-yellow);
    color: #1f2937;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0.5rem;
}

.start-route-btn:hover {
    background: var(--pay-yellow-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5);
}

.start-route-btn:active {
    transform: translateY(-1px);
}

.start-route-btn i {
    font-size: 1.1rem;
}

.start-now-btn {
    background: linear-gradient(135deg, var(--pay-yellow) 0%, var(--pay-yellow-hover) 100%);
    color: #1f2937;
    border: none;
    padding: 1.5rem 3.5rem;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.start-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.start-now-btn:hover::before {
    left: 100%;
}

.start-now-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 193, 7, 0.6);
}

.start-now-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.start-now-btn i {
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.view-stops-btn {
    background: var(--sea-blue);
    color: var(--clarity-white);
    border: 2px solid var(--clarity-white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 119, 190, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.5rem;
}

.view-stops-btn:hover {
    background: var(--clarity-white);
    color: var(--sea-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.view-stops-btn:active {
    transform: translateY(0);
}

.view-stops-btn i {
    font-size: 1rem;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clarity-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.3rem;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.secondary-btn:active {
    transform: translateY(0);
}

.secondary-btn i {
    font-size: 0.9rem;
}

.start-note {
    margin-top: 1rem;
    color: var(--clarity-white);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Route Summary Widgets */
.overview-widget,
.stops-summary-widget,
.features-widget,
.info-widget,
.timer-widget {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.overview-widget::before,
.stops-summary-widget::before,
.features-widget::before,
.info-widget::before,
.timer-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Route Preview Widget */
.route-preview-widget {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.route-preview-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.route-preview-widget h2 {
    color: var(--clarity-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.map-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-container {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.route-path {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

.route-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    border: 2px solid #FFA000;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.route-point:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.route-point i {
    font-size: 1rem;
    color: #1f2937;
}

.route-point span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
}

.route-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.3), rgba(255, 193, 7, 0.6), rgba(255, 193, 7, 0.3));
    position: relative;
    margin: 0 0.5rem;
    border-radius: 1px;
}

.route-line::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.map-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 1rem;
}

.map-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.map-stat:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.map-stat i {
    font-size: 0.9rem;
    color: #FFC107;
}

.map-stat span {
    font-size: 0.8rem;
    color: var(--clarity-white);
    font-weight: 500;
}

.timer-widget h2 {
    color: var(--clarity-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.timer-display {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-bottom: 1rem;
}

.timer-info {
    text-align: center;
    flex: 1;
}

.timer-label {
    color: var(--clarity-white);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.timer-value {
    color: var(--pay-yellow);
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.timer-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.timer-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--clarity-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timer-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.timer-btn:active {
    transform: translateY(0);
}

.timer-btn i {
    font-size: 0.8rem;
}

/* Compact Layout for No-Scroll Design */
.route-container {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.route-column {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    max-width: 100%;
    margin: 0 auto;
}

/* Compact Widget Sizes */
.route-header {
    margin-bottom: 0.5rem;
}

.route-header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.route-subtitle {
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.overview-widget {
    margin-bottom: 0.5rem;
}

.route-stats {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: space-around;
}

.stat-item {
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
}

.stops-summary-widget {
    margin-bottom: 0.5rem;
    padding: 1rem;
}

.stops-summary-widget h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.stops-list {
    gap: 0.3rem;
    max-height: 40vh;
    overflow-y: auto;
}

.stop-item {
    padding: 0.5rem;
    gap: 0.8rem;
    align-items: center;
}

.stop-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    margin-top: 0;
}

.stop-info h3 {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.stop-info p {
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.2;
}

.features-widget {
    margin-bottom: 0.5rem;
    padding: 0.8rem;
}

.features-widget h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: space-around;
}

.feature-item {
    padding: 0.5rem;
    font-size: 0.75rem;
    text-align: center;
}

.feature-item i {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.info-widget {
    margin-bottom: 0.5rem;
    padding: 0.8rem;
}

.info-widget h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-list {
    gap: 0.3rem;
}

.info-item {
    padding: 0.3rem;
    font-size: 0.75rem;
}

.info-item i {
    font-size: 0.8rem;
}

.timer-widget {
    margin-bottom: 0.5rem;
    padding: 0.8rem;
}

.timer-widget h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timer-display {
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.timer-value {
    font-size: 1.2rem;
}

.timer-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.start-route-widget {
    margin-bottom: 0;
    padding: 0.5rem;
    text-align: center;
}

.start-now-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin: 0.5rem auto;
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    border: 3px solid #FFA000;
    box-shadow: 
        0 8px 25px rgba(255, 193, 7, 0.3),
        0 4px 15px rgba(255, 193, 7, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.start-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.start-now-btn:hover::before {
    left: 100%;
}

.start-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(255, 193, 7, 0.4),
        0 6px 20px rgba(255, 193, 7, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.start-now-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 4px 15px rgba(255, 193, 7, 0.3),
        0 2px 8px rgba(255, 193, 7, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.view-stops-btn,
.secondary-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    margin: 0.3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.view-stops-btn::before,
.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.view-stops-btn:hover::before,
.secondary-btn:hover::before {
    left: 100%;
}

.view-stops-btn:hover,
.secondary-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        0 3px 10px rgba(0, 0, 0, 0.08),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.view-stops-btn:active,
.secondary-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        0 1px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.start-note {
    font-size: 0.7rem;
    margin-top: 0.3rem;
}

/* Mobile Responsive for Route Summary */
@media (max-width: 480px) {
    .route-column {
        padding: 0.5rem;
    }
    
    .route-header h1 {
        font-size: 1.3rem;
    }
    
    .route-stats {
        flex-direction: column;
        gap: 0.3rem;
        align-items: center;
    }
    
    .route-stats-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        border-radius: 12px;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 1rem;
    }
    
    .mobile-stat {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        flex: 1;
        text-align: center;
    }
    
    .mobile-stat i {
        font-size: 0.9rem;
        color: #FFC107;
        margin-bottom: 0.2rem;
    }
    
    .mobile-stat span {
        font-size: 0.75rem;
        color: var(--clarity-white);
        font-weight: 500;
    }
    
    /* Simple Summary Widget */
    .simple-summary-widget {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        border-radius: 16px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        position: relative;
        overflow: hidden;
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            0 4px 16px rgba(0, 0, 0, 0.05),
            inset 0 1px 2px rgba(255, 255, 255, 0.1);
    }
    
    .simple-summary-widget::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 3s ease-in-out infinite;
    }
    
    .simple-stat {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        flex: 1;
        text-align: center;
    }
    
    .simple-stat i {
        font-size: 1.2rem;
        color: #FFC107;
        margin-right: 0.5rem;
    }
    
    .simple-stat span {
        font-size: 1rem;
        color: var(--clarity-white);
        font-weight: 600;
        margin: 0 0.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stops-list {
        max-height: 35vh;
    }
    
    .stop-item {
        flex-direction: row;
        text-align: left;
    }
    
    .start-now-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-height: 600px) {
    .stops-list {
        max-height: 30vh;
    }
    
    .route-header h1 {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Modern Route Page Structure - Mobile Optimized */
.route-container {
    max-width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%);
    position: relative;
}

.route-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.route-column {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    height: 100vh;
    overflow: hidden;
}

.route-header {
    background: linear-gradient(135deg, var(--sea-blue) 0%, var(--nature-green) 100%);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.route-header h1 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: var(--clarity-white);
}

/* Modern Widget Styles - Mobile Optimized */
.image-widget {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    flex: 1;
    max-height: 35vh;
    flex-shrink: 0;
    position: relative;
}

.image-widget img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.image-widget::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    border-radius: 12px;
    pointer-events: none;
}

.description-widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.description-widget h3 {
    color: var(--clarity-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.description-widget p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.action-buttons-widget {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    flex-shrink: 0;
    align-items: center;
}

.action-btn {
    flex: 1;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
    min-height: 44px;
    white-space: nowrap;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.action-btn svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-btn:hover svg {
    transform: scale(1.1);
}

.action-btn.primary {
    background: var(--pay-yellow);
    color: var(--sea-blue);
    position: relative;
    overflow: hidden;
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 193, 7, 0.4);
}

.action-btn.primary:disabled {
    background: rgba(255, 193, 7, 0.5);
    color: rgba(0, 119, 190, 0.7);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.action-btn.primary:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Progress bar overlay */
.action-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--progress-width, 0%);
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.1s ease;
    pointer-events: none;
}

/* Loading animation */
.action-btn.primary.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(0, 119, 190, 0.3);
    border-top: 2px solid var(--sea-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    pointer-events: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ripple effect for clicks */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--clarity-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.note-widget {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 0.75rem;
    flex-shrink: 0;
}

.note-widget p {
    color: var(--pay-yellow);
    font-size: 0.75rem;
    margin: 0;
    text-align: center;
    line-height: 1.3;
}

.bottom-nav-widget {
    padding: 0.75rem 1rem;
    flex-shrink: 0;
}

.next-stop-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    background: transparent;
    color: var(--clarity-white);
    border: 2px solid var(--clarity-white);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    min-height: 44px;
    white-space: nowrap;
}

.next-stop-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.next-stop-btn:hover::before {
    width: 400px;
    height: 400px;
}

.next-stop-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px) scale(1.02);
    border-color: var(--pay-yellow);
    color: var(--pay-yellow);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.next-stop-btn svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.next-stop-btn:hover svg {
    transform: translateX(3px);
}

/* Footer Navigation Styles */
.footer-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    position: relative;
}

.footer-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    min-width: 60px;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.footer-nav-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.footer-nav-item:hover::before {
    width: 100px;
    height: 100px;
}

.footer-nav-item svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    position: relative;
}

.footer-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    position: relative;
}

.footer-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px) scale(1.05);
}

.footer-nav-item:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.footer-nav-item:hover span {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.footer-nav-item.active svg {
    color: var(--pay-yellow);
    transform: scale(1.1);
}

.footer-nav-item.active span {
    color: var(--pay-yellow);
    font-weight: 600;
}

.footer-nav-item.active {
    background: rgba(255, 193, 7, 0.1);
}

.route-hero {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--clarity-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.route-logo {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px solid var(--pay-yellow);
}

.route-icon-large {
    width: 80px;
    height: 80px;
    background: var(--pay-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    flex-shrink: 0;
}

.route-icon-large svg {
    color: #1f2937;
}

.route-title-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--clarity-white);
}

.route-critical {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--pay-yellow);
    margin: 0;
}

.current-stop {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clarity-white);
    margin: 0.5rem 0 1rem 0;
    background: rgba(255, 193, 7, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    border: 2px solid var(--pay-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stop-image-container {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--pay-yellow);
    max-width: 300px;
}

.stop-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.stop-image:hover {
    transform: scale(1.05);
}

.stop-description-box {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 300px;
}

.stop-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--clarity-white);
    margin: 0;
    font-weight: 500;
}

.route-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--clarity-white);
    text-align: center;
    opacity: 0.9;
}

.route-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.route-overview {
    text-align: center;
    margin-bottom: 4rem;
}

.route-overview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--sea-blue);
}

.route-overview p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #4b5563;
}

.maps-action {
    text-align: center;
    margin: 2rem 0 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 2px solid var(--pay-yellow);
}

.start-route-btn {
    background: var(--nature-green);
    color: var(--clarity-white);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.start-route-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(45, 106, 79, 0.5);
}

.start-route-btn svg {
    flex-shrink: 0;
}

.maps-route-btn {
    background: var(--pay-yellow);
    color: #1f2937;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.maps-route-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 193, 7, 0.4);
}

.maps-route-btn svg {
    flex-shrink: 0;
}

.maps-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    font-style: italic;
}

.route-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: var(--clarity-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--pay-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.highlight-icon svg {
    color: #1f2937;
}

.highlight-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--sea-blue);
}

.highlight-card p {
    color: #6b7280;
    line-height: 1.6;
}

.route-stops {
    margin-bottom: 4rem;
}

.route-stops h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--sea-blue);
}

.stops-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.stops-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--pay-yellow);
    border-radius: 2px;
}

.stop-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.stop-number {
    width: 60px;
    height: 60px;
    background: var(--sea-blue);
    color: var(--clarity-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 2rem;
    position: relative;
    z-index: 2;
}

.stop-content {
    background: var(--clarity-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
    position: relative;
}

.stop-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 25px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--clarity-white);
}

.stop-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--sea-blue);
}

.stop-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.stop-time {
    background: var(--pay-yellow);
    color: #1f2937;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.route-includes {
    margin-bottom: 4rem;
}

.route-includes h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--sea-blue);
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--clarity-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.include-item:hover {
    transform: translateY(-3px);
}

.include-item svg {
    color: var(--sea-blue);
    flex-shrink: 0;
}

.include-item span {
    font-weight: 600;
    color: #374151;
}

.route-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 2rem;
    border-radius: 24px;
    text-align: center;
    margin-bottom: 4rem;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.route-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--sea-blue);
}

.route-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.price-box {
    background: var(--clarity-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 2px solid var(--pay-yellow);
}

.price-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--sea-blue);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #6b7280;
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 1rem 3rem;
    margin-bottom: 1.5rem;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.guarantee svg {
    color: var(--pay-yellow);
}

.route-footer {
    background: var(--sea-blue);
    color: var(--clarity-white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--clarity-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-maps-btn {
        top: 15px;
        right: 15px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .route-logo {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .route-title-info h1 {
        font-size: 2rem;
    }
    
    .route-critical {
        font-size: 1.1rem;
    }
    
    .route-subtitle {
        font-size: 1.2rem;
    }
    
    .route-overview h2,
    .route-stops h2,
    .route-includes h2,
    .route-cta h2 {
        font-size: 2rem;
    }
    
    .route-highlights {
        grid-template-columns: 1fr;
    }
    
    .stops-timeline::before {
        left: 15px;
    }
    
    .stop-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 1.5rem;
    }
    
    .stop-content::before {
        left: -8px;
        border-right-width: 8px;
        border-top-width: 8px;
        border-bottom-width: 8px;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .route-cta {
        padding: 3rem 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .route-hero {
        padding: 0 1rem;
    }
    
    .route-main {
        padding: 2rem 1rem;
    }
    
    .route-header h1 {
        font-size: 2rem;
    }
    
    .route-subtitle {
        font-size: 1.1rem;
    }
    
    .stop-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .stop-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .stop-content::before {
        display: none;
    }
    
    .stops-timeline::before {
        display: none;
    }
}
