/**
 * Routes Listing Pages Stylesheet
 * File: assets/css/routes-listing.css
 */

/* ============================================
   Routes Hero Section - Crystal Clear
   ============================================ */
.routes-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.routes-container {
    max-width: 1200px;
    margin: 0 auto;
}

.routes-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: white;
}

.routes-subtitle {
    font-size: 18px;
    margin: 0 0 40px 0;
    color: white;
}

.routes-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    min-width: 160px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .routes-stats {
        gap: 24px;
    }
    
    .stat-box {
        padding: 24px 32px;
        min-width: 140px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 15px;
    }
}



/* ============================================
   City Routes Hero
   ============================================ */
.city-routes-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.city-routes-hero h1 {
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.city-description {
    font-size: 17px;
    opacity: 0.95;
    margin: 0 0 24px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.routes-count-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ============================================
   Popular Routes Section
   ============================================ */
.popular-routes-section {
    padding: 80px 20px;
    background: white;
}

.popular-routes-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 40px 0;
    text-align: center;
}

/* ============================================
   Routes Grid
   ============================================ */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.route-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.route-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

.route-card.popular {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
}

.route-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #667eea !important;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.route-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
}

.route-info {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
}

.info-item svg {
    color: #667eea;
    flex-shrink: 0;
}

.route-highlights {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.route-cta {
    color: #667eea;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.route-card:hover .route-cta {
    gap: 12px;
}

/* ============================================
   Routes Listing Section
   ============================================ */
.routes-listing-section {
    padding: 60px 20px;
    background: #f7fafc;
}

/* ============================================
   Routes by City Section
   ============================================ */
.routes-by-city-section {
    padding: 80px 20px;
    background: #f7fafc;
}

.routes-by-city-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 40px 0;
    text-align: center;
}

.city-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.city-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.city-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

.city-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #667eea;
}

.city-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.city-card p {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 20px 0;
}

.city-cta {
    color: #667eea;
    font-weight: 600;
    font-size: 15px;
}

/* ============================================
   CTA Sections
   ============================================ */
.routes-cta-section {
    padding: 80px 20px;
    background: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
}

.cta-content p {
    font-size: 17px;
    color: #6b7280;
    margin: 0 0 32px 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp-cta,
.btn-booking-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp-cta {
    background: #25D366;
    color: white;
}

.btn-whatsapp-cta:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-booking-cta {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-booking-cta:hover {
    background: #667eea;
    color: white;
}

/* ============================================
   Quick Contact Section
   ============================================ */
.quick-contact-section {
    padding: 60px 20px;
    background: #f7fafc;
}

.quick-contact-box {
    background: white;
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    border: 2px solid #e2e8f0;
}

.quick-contact-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.quick-contact-box p {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 30px 0;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp-large:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .routes-hero h1 {
        font-size: 32px;
    }
    
    .city-routes-hero h1 {
        font-size: 28px;
    }
    
    .routes-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .routes-grid,
    .city-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .popular-routes-section h2,
    .routes-by-city-section h2 {
        font-size: 26px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quick-contact-box {
        padding: 40px 24px;
    }
}
