/* =====================================================
   SCHEDULE PAGE - INDIGENOUS LIGHT THEME
===================================================== */

/* =====================================================
   RESET & BASE
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Earth Tones - Inspired by Natural Landscapes */
    --primary-earth: #1f1410;
    --secondary-earth: #2d1e16;
    --accent-earth: #3d2618;
    
    /* Indigenous Orange Palette - Warm & Natural */
    --primary-orange: #e86b2e;
    --secondary-orange: #f39450;
    --light-orange: #ffa872;
    --dark-orange: #c75520;
    --pale-orange: #ffd4b3;
    
    /* Complementary Natural Colors */
    --clay-red: #b84d32;
    --sage-green: #7a9168;
    --stone-gray: #8a7568;
    --warm-cream: #fff8f0;
    --sand: #f5e5d0;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #faf7f2;
    --medium-gray: #8a7d70;
    --dark-gray: #3d2f25;
    
    /* Natural Gradients */
    --gradient-primary: linear-gradient(135deg, #e86b2e 0%, #f39450 100%);
    --gradient-earth: linear-gradient(135deg, #1f1410 0%, #2d1e16 100%);
    --gradient-subtle: linear-gradient(135deg, #fff8f0 0%, #f5e5d0 100%);
    
    /* Subtle Effects */
    --shadow-sm: 0 2px 8px rgba(31, 20, 16, 0.2);
    --shadow-md: 0 4px 20px rgba(31, 20, 16, 0.25);
    --shadow-lg: 0 10px 40px rgba(31, 20, 16, 0.3);
    --shadow-xl: 0 20px 60px rgba(31, 20, 16, 0.35);
    --shadow-orange: 0 8px 32px rgba(232, 107, 46, 0.3);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background: var(--warm-cream);
    overflow-x: hidden;
}

.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   QUICK INFO BAR
===================================================== */
.quick-info-bar {
    padding: 40px 0;
    background: var(--sand);
    border-bottom: 2px solid rgba(232, 107, 46, 0.15);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--warm-cream);
    border-radius: 12px;
    border: 2px solid rgba(232, 107, 46, 0.15);
    transition: var(--transition);
}

.info-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 4px;
}

.info-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-earth);
}

/* =====================================================
   SECTION HEADERS
===================================================== */
.section-header {
    margin-bottom: 50px;
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(232, 107, 46, 0.12);
    color: var(--dark-orange);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 2px solid rgba(232, 107, 46, 0.2);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-earth);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* =====================================================
   ROUTE SELECTOR
===================================================== */
.route-selector-section {
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

/* Hero Background Image */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

/* Light overlay to preserve readability */
.route-selector-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 248, 240, 0.95) 0%, rgba(245, 229, 208, 0.9) 100%);
    z-index: -1;
}

/* Ensure content is above the image and overlay */
.route-selector-section .container {
    position: relative;
    z-index: 1;
}

.route-tabs {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.route-tab {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background: var(--sand);
    border: 2px solid rgba(232, 107, 46, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    min-width: 320px;
}

.route-tab:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.route-tab.active {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-orange);
}

.tab-icon {
    width: 50px;
    height: 50px;
    background: rgba(232, 107, 46, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-earth);
}

.route-tab.active .tab-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.tab-content {
    flex: 1;
}

.tab-route {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-earth);
    margin-bottom: 6px;
}

.route-tab.active .tab-route {
    color: var(--white);
}

.tab-schedule {
    font-size: 14px;
    color: var(--dark-gray);
}

.route-tab.active .tab-schedule {
    color: rgba(255, 255, 255, 0.9);
}

/* =====================================================
   SCHEDULE DETAILS
===================================================== */
.schedule-details-section {
    padding: 80px 0;
    background: var(--sand);
}

.schedule-content {
    display: none;
}

.schedule-content.active {
    display: block;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Schedule Card */
.schedule-card {
    background: var(--warm-cream);
    border-radius: 16px;
    border: 2px solid rgba(232, 107, 46, 0.15);
    overflow: hidden;
}

.card-header {
    padding: 30px;
    background: var(--gradient-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.route-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.route-badge i {
    font-size: 24px;
}

.schedule-days {
    display: flex;
    gap: 10px;
}

.schedule-days .day {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.card-body {
    padding: 40px;
}

/* Journey Timeline */
.journey-timeline {
    margin-bottom: 40px;
}

.timeline-item {
    display: flex;
    gap: 20px;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: var(--white);
}

.timeline-icon.departure {
    background: var(--gradient-primary);
}

.timeline-icon.arrival {
    background: var(--gradient-primary);
}

.timeline-content {
    flex: 1;
}

.timeline-time {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-earth);
    margin-bottom: 8px;
}

.timeline-location {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-earth);
    margin-bottom: 4px;
}

.timeline-address {
    font-size: 14px;
    color: var(--dark-gray);
}

.timeline-connector {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    margin-left: 20px;
}

.connector-line {
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-orange), transparent);
    flex-shrink: 0;
}

.connector-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--sand);
    border-radius: 6px;
    color: var(--dark-gray);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(232, 107, 46, 0.15);
}

.connector-duration i {
    color: var(--primary-orange);
}

/* Stops Info */
.stops-info {
    padding: 30px;
    background: var(--sand);
    border-radius: 12px;
    border: 2px solid rgba(232, 107, 46, 0.15);
}

.stops-info h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-earth);
    margin-bottom: 20px;
}

.stops-info h4 i {
    color: var(--primary-orange);
}

.stops-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stop-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--warm-cream);
    border-radius: 10px;
    border: 1px solid rgba(232, 107, 46, 0.1);
}

.stop-name {
    font-weight: 600;
    color: var(--primary-earth);
}

.stop-time {
    color: var(--dark-gray);
    font-size: 14px;
}

.card-footer {
    padding: 30px;
    background: var(--sand);
    display: flex;
    gap: 15px;
    border-top: 2px solid rgba(232, 107, 46, 0.15);
}

.btn-details,
.btn-book {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-details {
    background: transparent;
    border: 2px solid rgba(232, 107, 46, 0.3);
    color: var(--primary-earth);
}

.btn-details:hover {
    border-color: var(--primary-orange);
    background: rgba(232, 107, 46, 0.1);
}

.btn-book {
    background: var(--gradient-primary);
    border: 2px solid transparent;
    color: var(--white);
    box-shadow: var(--shadow-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-book:hover {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.1);
}

/* Fare Card */
.fare-card {
    background: var(--warm-cream);
    border-radius: 16px;
    border: 2px solid rgba(232, 107, 46, 0.15);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.fare-header {
    padding: 30px;
    background: var(--sand);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(232, 107, 46, 0.15);
}

.fare-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-earth);
}

.fare-badge {
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.fare-options {
    padding: 30px;
}

.fare-option {
    padding: 24px;
    background: var(--sand);
    border-radius: 12px;
    border: 2px solid rgba(232, 107, 46, 0.15);
    margin-bottom: 16px;
    transition: var(--transition);
}

.fare-option:hover {
    border-color: var(--primary-orange);
    transform: translateX(5px);
}

.fare-option.featured {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
    padding: 18px 20px;
}

.fare-type {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.fare-type i {
    color: var(--primary-earth);
    font-size: 18px;
}

.fare-option.featured .fare-type i {
    color: var(--white);
}

.fare-type span {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-earth);
}

.fare-option.featured .fare-type span {
    color: var(--white);
}

.fare-pricing {
    margin-bottom: 2px;
}

.fare-promo {
    display: flex;
    flex-direction: column;
    margin-bottom: 6px;
}

.promo-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-price {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
}

.fare-regular {
    display: flex;
    flex-direction: column;
}

.regular-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.regular-price {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.fare-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-earth);
}

.fare-price.free {
    color: var(--clay-red);
}

.fare-note {
    font-size: 13px;
    color: var(--dark-gray);
}

.fare-option.featured .fare-note {
    color: rgba(255, 255, 255, 0.7);
}

.fare-option:not(.featured) .fare-type i,
.fare-option:not(.featured) .fare-price {
    color: var(--primary-orange);
}

.fare-info {
    padding: 30px;
    background: var(--sand);
    border-top: 2px solid rgba(232, 107, 46, 0.15);
}

.fare-info h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-earth);
    margin-bottom: 16px;
}

.fare-info h4 i {
    color: var(--primary-orange);
}

.fare-info ul {
    list-style: none;
}

.fare-info ul li {
    padding: 8px 0;
    padding-left: 24px;
    color: var(--dark-gray);
    font-size: 14px;
    position: relative;
}

.fare-info ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary-orange);
}

/* =====================================================
   BOOKING TIPS SECTION
===================================================== */
.booking-tips-section {
    padding: 80px 0;
    background: var(--warm-cream);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tip-card {
    padding: 32px;
    background: var(--sand);
    border-radius: 12px;
    border: 2px solid rgba(232, 107, 46, 0.15);
    text-align: center;
    transition: var(--transition);
}

.tip-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tip-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.tip-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-earth);
    margin-bottom: 12px;
}

.tip-card p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* =====================================================
   CTA SECTION
===================================================== */
.schedule-cta {
    padding: 80px 0;
    background: var(--sand);
    border-top: 2px solid rgba(232, 107, 46, 0.15);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 60px;
    background: var(--gradient-subtle);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(232, 107, 46, 0.15);
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(232, 107, 46, 0.1) 0%, transparent 50%);
}

.cta-text {
    position: relative;
    z-index: 2;
    flex: 1;
}

.cta-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-earth);
    margin-bottom: 16px;
}

.cta-text p {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.7;
}

.cta-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 16px;
}

.btn-primary,
.btn-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(232, 107, 46, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-earth);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
}

/* =====================================================
   WHY CHOOSE GREYWOLF SECTION
===================================================== */
.why-choose-section {
    padding: 80px 0;
    background: var(--warm-cream);
    border-top: 2px solid rgba(232, 107, 46, 0.15);
}

.why-choose-section .container {
    max-width: 1200px;
}

.why-choose-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: black;
    line-height: 1.3;
    margin-bottom: 32px;
    text-align: center;
}

.why-choose-section p {
    font-size: 17px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: left;
}

.why-choose-section p:last-child {
    margin-bottom: 0;
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */
@media (max-width: 1200px) {
    .section-title {
        font-size: 42px;
    }
    
    .schedule-grid {
        gap: 30px;
    }
    
    .cta-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .fare-card {
        position: static;
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .why-choose-section {
        padding: 70px 0;
    }
    
    .why-choose-section h2 {
        font-size: 36px;
        margin-bottom: 28px;
    }
    
    .why-choose-section p {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .quick-info-bar {
        padding: 20px 0;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .info-item {
        padding: 12px;
        gap: 10px;
        flex-direction: row;
        align-items: center;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .info-content {
        flex: 1;
        min-width: 0;
    }
    
    .info-label {
        font-size: 11px;
        margin-bottom: 2px;
    }
    
    .info-value {
        font-size: 16px;
        line-height: 1.2;
    }
    
    .route-selector-section {
        padding: 60px 0 40px;
    }
    
    .route-tabs {
        flex-direction: column;
    }
    
    .route-tab {
        min-width: 100%;
        gap: 0px;
    }
    
    .schedule-details-section {
        padding: 30px 0;
    }
    
    .card-header {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .card-body {
        padding: 30px;
    }
    
    .timeline-time {
        font-size: 24px;
    }
    
    .timeline-location {
        font-size: 16px;
    }
    
    .card-footer {
        flex-direction: column;
        padding: 24px;
    }
    
    .fare-header {
        padding: 24px;
    }
    
    .fare-options {
        padding: 24px;
    }
    
    .fare-info {
        padding: 24px;
    }
    
    .booking-tips-section {
        padding: 60px 0;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-cta {
        padding: 60px 0;
    }
    
    .cta-content {
        padding: 40px 30px;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
    
    .cta-text p {
        font-size: 16px;
    }
    .container {
        padding: 0 20px;
    }
    /* Make cards wider and more elegant */
    .schedule-card,
    .fare-card {
        border-radius: 16px;
    }
    
    .card-header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .route-badge {
        font-size: 16px;
    }
    
    .route-badge i {
        font-size: 18px;
    }
    
    .schedule-days .day {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .timeline-time {
        font-size: 20px;
    }
    
    .timeline-location {
        font-size: 15px;
    }
    
    .timeline-address {
        font-size: 13px;
    }
    
    .timeline-icon {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .connector-duration {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .stops-info {
        padding: 20px;
    }
    
    .stops-info h4 {
        font-size: 16px;
    }
    
    .stop-item {
        padding: 10px 14px;
    }
    
    .stop-name {
        font-size: 14px;
    }
    
    .stop-time {
        font-size: 13px;
    }
    
    .card-footer {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
    }
    
    .btn-details,
    .btn-book {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .fare-header {
        padding: 20px;
    }
    
    .fare-header h3 {
        font-size: 18px;
    }
    
    .fare-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .fare-options {
        padding: 20px;
    }
    
    .fare-option {
        padding: 18px;
        margin-bottom: 12px;
    }
    
    .fare-type span {
        font-size: 14px;
    }
    
    .fare-type i {
        font-size: 16px;
    }
    
    .promo-price {
        font-size: 28px;
    }
    
    .fare-price {
        font-size: 26px;
    }
    
    .regular-price {
        font-size: 16px;
    }
    
    .fare-note {
        font-size: 12px;
    }
    
    .fare-info {
        padding: 20px;
    }
    
    .fare-info h4 {
        font-size: 15px;
    }
    
    .fare-info ul li {
        font-size: 13px;
    }
    
    .booking-tips-section {
        padding: 60px 0;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-cta {
        padding: 60px 0;
    }
    
    .cta-content {
        padding: 40px 30px;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
    
    .cta-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .info-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .info-value {
        font-size: 14px;
    }
    
    .info-label {
        font-size: 10px;
    }
    
    .route-tab {
        padding: 20px 24px;
        gap: 0px;
    }
    
    .tab-route {
        font-size: 16px;
    }
    
    .card-header {
        padding: 20px;
    }
    
    .route-badge {
        font-size: 16px;
    }
    
    .card-body {
        padding: 24px;
    }
    
    .timeline-time {
        font-size: 20px;
    }
    
    .stops-info {
        padding: 20px;
    }
    
    .card-footer {
        padding: 20px;
    }
    
    .btn-details,
    .btn-book {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .fare-header {
        padding: 20px;
    }
    
    .fare-header h3 {
        font-size: 20px;
    }
    
    .fare-options {
        padding: 20px;
    }
    
    .fare-option {
        padding: 20px;
    }
    
    .promo-price,
    .fare-price {
        font-size: 28px;
    }
    
    .fare-info {
        padding: 20px;
    }
    
    .tip-card {
        padding: 24px;
    }
    
    .tip-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .tip-card h3 {
        font-size: 18px;
    }
    
    .tip-card p {
        font-size: 14px;
    }
    
    .cta-content {
        padding: 30px 24px;
    }
    
    .cta-text h2 {
        font-size: 24px;
    }
    
    .cta-text p {
        font-size: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */
.btn-details:focus,
.btn-book:focus,
.btn-primary:focus,
.btn-secondary:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* =====================================================
   PRINT STYLES
===================================================== */
@media print {
    .quick-info-bar,
    .route-selector-section,
    .booking-tips-section,
    .schedule-cta {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    .section-title,
    .card-header h3 {
        color: black;
    }
}
/* =====================================================
   WHY CHOOSE GREYWOLF SECTION
===================================================== */
.why-choose-section {
    padding: 80px 0;
    background: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.why-choose-section .container {
    max-width: 1200px;
}

.why-choose-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: black;
    line-height: 1.3;
    margin-bottom: 32px;
    text-align: center;
}

.why-choose-section p {
    font-size: 17px;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: left;
}

.why-choose-section p:last-child {
    margin-bottom: 0;
}

/* =====================================================
   RESPONSIVE - WHY CHOOSE SECTION
===================================================== */
@media (max-width: 992px) {
    .why-choose-section {
        padding: 70px 0;
    }
    
    .why-choose-section h2 {
        font-size: 36px;
        margin-bottom: 28px;
    }
    
    .why-choose-section p {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-section h2 {
        font-size: 28px;
        margin-bottom: 24px;
        text-align: left;
    }
    
    .why-choose-section p {
        font-size: 15px;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 50px 0;
    }
    
    .why-choose-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .why-choose-section p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 16px;
    }
}