/**
 * Route Landing Page Stylesheet
 * File: assets/css/route.css
 * Styles for individual route pages
 */

/* ============================================
   Route Hero Section
   ============================================ */
.route-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px 80px;
    position: relative;
    overflow: hidden;
}

.route-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.route-hero-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.route-hero-content {
    text-align: center;
}

.route-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.route-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.route-hero-subtitle {
    font-size: 20px;
    margin: 0 0 40px 0;
    opacity: 0.95;
}

/* Quick Info Items */
.route-quick-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.quick-info-item svg {
    flex-shrink: 0;
}

/* Hero Buttons */
.route-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-whatsapp,
.btn-booking {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-booking {
    background: white;
    color: #667eea;
    border: 2px solid white;
}

.btn-booking:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   Container
   ============================================ */
.route-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Section Header
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

/* ============================================
   Route Details Section
   ============================================ */
.route-details-section {
    padding: 80px 20px;
    background: white;
}

.route-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    background: #f7fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 10px 0;
}

.info-card p {
    font-size: 16px;
    color: #667eea;
    margin: 0;
    font-weight: 600;
}

.route-note {
    background: #edf2f7;
    padding: 20px 30px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    text-align: center;
}

.route-note p {
    margin: 0;
    color: #2d3748;
    font-size: 16px;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-section {
    padding: 80px 20px;
    background: #f7fafc;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.pricing-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0 0 30px 0;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #2d3748;
}

.pricing-feature svg {
    color: #25D366;
    flex-shrink: 0;
}

.pricing-cta {
    background: #edf2f7;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.pricing-cta p {
    font-size: 16px;
    color: #4b5563;
    margin: 0 0 20px 0;
}

.btn-whatsapp-inline {
    display: inline-block;
    padding: 14px 32px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-whatsapp-inline:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* ============================================
   Why Choose Section
   ============================================ */
.why-choose-section {
    padding: 80px 20px;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-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 20px;
    color: #667eea;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.feature-card p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   Route CTA Banner
   ============================================ */
.route-cta-banner {
    padding: 80px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: white;
}

.cta-banner-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.cta-banner-content > p {
    font-size: 18px;
    margin: 0 0 40px 0;
    opacity: 0.95;
}

.cta-banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.btn-whatsapp-large,
.btn-booking-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
}

.btn-whatsapp-large {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-whatsapp-large:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-booking-large {
    background: white;
    color: #6366f1;
    border: 2px solid white;
}

.btn-booking-large:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   Final CTA Section
   ============================================ */
.final-cta-section {
    padding: 80px 20px;
    background: #f7fafc;
}

.final-cta-card {
    background: white;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-card h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
}

.final-cta-card > p {
    font-size: 18px;
    color: #6b7280;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.btn-primary-cta,
.btn-secondary-cta {
    display: inline-block;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    max-width: 400px;
    width: 100%;
}

.btn-primary-cta {
    background: #25D366;
    color: white;
}

.btn-primary-cta:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.btn-secondary-cta {
    background: #667eea;
    color: white;
}

.btn-secondary-cta:hover {
    background: #764ba2;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .route-hero h1 {
        font-size: 42px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .pricing-card {
        padding: 40px 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    .route-hero {
        padding: 80px 20px 60px;
    }
    
    .route-hero h1 {
        font-size: 32px;
    }
    
    .route-hero-subtitle {
        font-size: 16px;
    }
    
    .route-quick-info {
        gap: 20px;
    }
    
    .quick-info-item {
        font-size: 14px;
    }
    
    .route-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-whatsapp,
    .btn-booking {
        width: 100%;
        justify-content: center;
        max-width: 350px;
    }
    
    .route-details-section,
    .pricing-section,
    .why-choose-section,
    .route-cta-banner,
    .final-cta-section {
        padding: 60px 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .route-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-content h2,
    .cta-banner-content h2,
    .final-cta-card h2 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-card {
        padding: 40px 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .route-hero h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .pricing-content h2,
    .cta-banner-content h2,
    .final-cta-card h2 {
        font-size: 24px;
    }
}



/* ============================================
   About Destination Section
   ============================================ */
.about-destination-section {
    padding: 80px 20px;
    background: #f7fafc;
}

.destination-content {
    max-width: 1000px;
    margin: 0 auto;
}

.destination-text {
    margin-bottom: 40px;
}

.destination-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.destination-highlights {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.destination-highlights h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 20px 0;
}

.destination-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.destination-highlights li {
    font-size: 16px;
    color: #2d3748;
    padding: 12px 16px;
    background: #f7fafc;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.destination-highlights li:hover {
    background: #edf2f7;
    transform: translateX(5px);
}

/* ============================================
   Safari Information Section
   ============================================ */
.safari-info-section {
    padding: 80px 20px;
    background: white;
}

.safari-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.safari-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.safari-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.safari-card p {
    font-size: 15px;
    margin: 8px 0;
    opacity: 0.95;
}

.safari-card strong {
    font-weight: 600;
}

.safari-note {
    background: #fff7ed;
    padding: 24px 30px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.safari-note p {
    margin: 0;
    color: #78350f;
    font-size: 15px;
    line-height: 1.7;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .about-destination-section,
    .safari-info-section {
        padding: 60px 20px;
    }
    
    .destination-highlights {
        padding: 30px 20px;
    }
    
    .destination-highlights ul {
        grid-template-columns: 1fr;
    }
    
    .safari-info-grid {
        grid-template-columns: 1fr;
    }
    
    .safari-card {
        padding: 30px 24px;
    }
}


/* ============================================
   Travel Requirements Section
   ============================================ */
.travel-requirements-section {
    padding: 80px 20px;
    background: white;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.requirement-card {
    background: #f7fafc;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
}

.requirement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.requirement-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    text-align: center;
}

.requirement-card p {
    font-size: 15px;
    color: #4b5563;
    margin: 8px 0;
    line-height: 1.6;
}

.requirement-card strong {
    color: #1f2937;
    font-weight: 600;
}

.requirement-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.requirement-card a:hover {
    text-decoration: underline;
}

.permit-note {
    background: #fef3c7;
    padding: 24px 30px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.permit-note p {
    margin: 0;
    color: #78350f;
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   Journey Highlights Section
   ============================================ */
.journey-highlights-section {
    padding: 80px 20px;
    background: #f7fafc;
}

.journey-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.timeline-content {
    background: white;
    padding: 24px 30px;
    border-radius: 12px;
    flex: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 3px solid #667eea;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.timeline-content p {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 12px 0;
}

.timeline-distance {
    display: inline-block;
    background: #edf2f7;
    color: #667eea;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .travel-requirements-section,
    .journey-highlights-section {
        padding: 60px 20px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .requirement-card {
        padding: 30px 24px;
    }
    
    .journey-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }
    
    .timeline-item {
        gap: 20px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
}

/* ============================================
   Drop-off Options Section
   ============================================ */
.dropoff-options-section {
    padding: 80px 20px;
    background: white;
}

.dropoff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dropoff-card {
    background: #f7fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.dropoff-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
}

.dropoff-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 20px;
    color: #667eea;
}

.dropoff-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.dropoff-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.dropoff-time {
    display: inline-block;
    background: #edf2f7;
    color: #667eea;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .dropoff-options-section {
        padding: 60px 20px;
    }
    
    .dropoff-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Route Comparison Section
   ============================================ */
.route-comparison-section {
    padding: 80px 20px;
    background: #f7fafc;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.highlight-card {
    border-color: #667eea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.route-label {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.route-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 2px solid #edf2f7;
    border-bottom: 2px solid #edf2f7;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.route-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.route-benefits li {
    font-size: 15px;
    color: #2d3748;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
}

.route-benefits li:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .route-comparison-section {
        padding: 60px 20px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-value {
        font-size: 24px;
    }
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumbs {
    /* background: #f7fafc; */
    padding: 5px 20px;
    /* border-bottom: 1px solid #e2e8f0; */
}

.breadcrumbs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-item a {
    color: #ececec;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #4b5563;
    font-weight: 500;
}

.breadcrumb-separator {
    color: #d8dc69;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 12px 16px;
    }
    
    .breadcrumb-item {
        font-size: 13px;
    }
}


/* ============================================
   Fare Table Section
   ============================================ */
.fare-table-section {
    background: #fff;
    padding: 60px 0;
}

.section-subheading {
    font-size: 1rem;
    color: #6b7280;
    margin-top: 6px;
}

.fare-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.fare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: #fff;
}

.fare-table thead tr {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.fare-table th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.fare-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f5;
    color: #374151;
    vertical-align: middle;
}

.fare-table tbody tr:last-child td {
    border-bottom: none;
}

.fare-table tbody tr:hover {
    background: #f8f7ff;
}

.fare-highlight {
    font-size: 1.05rem;
    font-weight: 700;
    color: #667eea;
}

.vehicle-type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.vehicle-type-badge.hatchback { background: #e0f2fe; color: #0369a1; }
.vehicle-type-badge.sedan     { background: #dcfce7; color: #15803d; }
.vehicle-type-badge.suv       { background: #fef9c3; color: #a16207; }
.vehicle-type-badge.premium   { background: #fce7f3; color: #9d174d; }

.fare-book-btn {
    display: inline-block;
    padding: 6px 16px;
    background: #25d366;
    color: #fff;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.fare-book-btn:hover {
    background: #1ebe5d;
}

.fare-table-note {
    margin-top: 16px;
    padding: 14px 20px;
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: #374151;
}

.fare-table-note a {
    color: #667eea;
    text-decoration: underline;
}

/* Mobile: Fare Table Stack */
@media (max-width: 768px) {
    .fare-table thead {
        display: none;
    }

    .fare-table,
    .fare-table tbody,
    .fare-table tr,
    .fare-table td {
        display: block;
        width: 100%;
    }

    .fare-table tbody tr {
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        margin-bottom: 14px;
        padding: 12px;
        background: #fff;
        box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    }

    .fare-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 4px;
        border-bottom: 1px solid #f3f4f6;
        font-size: 0.9rem;
    }

    .fare-table td:last-child {
        border-bottom: none;
    }

    .fare-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #6b7280;
        font-size: 0.8rem;
        flex-shrink: 0;
        margin-right: 12px;
    }
}

/* ============================================
   Body Content Section
   ============================================ */
.route-body-content-section {
    background: #f9fafb;
    padding: 60px 0;
}

.route-body-content {
    max-width: 860px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e5e7eb;
}

.content-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.content-block h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

.content-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin: 24px 0 10px 0;
}

.content-block p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 14px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block a {
    color: #667eea;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .route-body-content-section {
        padding: 40px 0;
    }

    .content-block h2 {
        font-size: 1.2rem;
    }

    .content-block {
        margin-bottom: 36px;
        padding-bottom: 36px;
    }
}
