/* ─── DESIGN TOKENS (inherited from parent) ─── */
    :root {
      --brand:       #1A6B4A;
      --brand-dark:  #124D36;
      --brand-light: #E8F5EE;
      --brand-mid:   #2E8B62;
      --accent:      #F5A623;
      --accent-light:#FEF3DC;
      --text-primary:#1C1C1E;
      --text-muted:  #5C5C6B;
      --text-light:  #8E8E9A;
      --bg:          #FAFAFA;
      --surface:     #FFFFFF;
      --border:      #E4E4E9;
      --radius-sm:   8px;
      --radius-md:   14px;
      --radius-lg:   20px;
      --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
      --shadow-md:   0 4px 20px rgba(0,0,0,0.08);
      --ff-display:  'Sora', sans-serif;
      --ff-body:     'Inter', sans-serif;
    }

    /* ─── RESET ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--ff-body); background: var(--bg); color: var(--text-primary); line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    h1,h2,h3,h4 { font-family: var(--ff-display); line-height: 1.25; }

    /* ─── LAYOUT ─── */
    .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
    section { padding: 72px 0; }
    .section-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
    .section-heading { font-size: clamp(26px, 4vw, 36px); font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
    .section-sub { font-size: 17px; color: var(--text-muted); max-width: 640px; line-height: 1.7; }
    

/* ─── HERO ─── */
    .hero { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 55%, #2E9E6F 100%); color: #fff; padding: 0; overflow: hidden; }
    .hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 520px; gap: 48px; }
    .hero-content { padding: 72px 0; }
    .hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); border-radius: 100px; padding: 5px 14px; font-size: 13px; font-weight: 500; margin-bottom: 24px; }
    .hero-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
    .hero h1 { font-size: clamp(30px, 4.5vw, 46px); font-weight: 700; line-height: 1.15; margin-bottom: 18px; color:#ffffff !important;  }
    .hero h1 span { color: var(--accent); }
    .hero-desc { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #1C1C1E; font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: var(--radius-sm); transition: transform 0.15s, box-shadow 0.15s; }
    .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,166,35,0.4); }
    .btn-outline { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.35); color: #fff; font-weight: 600; font-size: 15px; padding: 14px 28px; border-radius: var(--radius-sm); transition: background 0.2s; }
    .btn-outline:hover { background: rgba(255,255,255,0.2); }
    .hero-trust { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px; }
    .trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.8); }
    .trust-check { width: 18px; height: 18px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

    /* Hero route card */
    .hero-visual { display: flex; align-items: center; justify-content: center; padding: 40px 0; }
    .route-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg); padding: 32px; width: 100%; max-width: 360px; backdrop-filter: blur(8px); }
    .route-card-title { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
    .route-stop { display: flex; align-items: flex-start; gap: 14px; }
    .route-dot { display: flex; flex-direction: column; align-items: center; gap: 0; }
    .route-dot-circle { width: 14px; height: 14px; border-radius: 50%; border: 2.5px solid var(--accent); background: transparent; flex-shrink: 0; margin-top: 4px; }
    .route-dot-circle.filled { background: var(--accent); }
    .route-dot-line { width: 2px; height: 52px; background: repeating-linear-gradient(180deg, rgba(255,255,255,0.3) 0, rgba(255,255,255,0.3) 4px, transparent 4px, transparent 8px); margin: 4px 0; }
    .route-label { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500; }
    .route-name { font-family: var(--ff-display); font-size: 17px; font-weight: 700; color: #fff; margin-top: 2px; }
    .route-sub { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 3px; }
    .route-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; }
    .route-stat-val { font-family: var(--ff-display); font-size: 18px; font-weight: 700; color: #fff; }
    .route-stat-label { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 2px; }

    /* ─── INTRO / ABOUT ROUTE ─── */
    .intro-section { background: var(--surface); border-bottom: 1px solid var(--border); padding: 52px 0; }
    .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
    .intro-text p { font-size: 17px; color: var(--text-muted); line-height: 1.8; }
    .intro-text p + p { margin-top: 16px; }
    .intro-stats { display: grid; /*grid-template-columns: 1fr 1fr;*/ gap: 16px; }
    .stat-box { background: var(--brand-light); border-radius: var(--radius-md); padding: 24px; }
    .stat-num { font-family: var(--ff-display); font-size: 28px; font-weight: 700; color: var(--brand-dark); }
    .stat-label { font-size: 13px; color: var(--brand); font-weight: 500; margin-top: 4px; }

    /* ─── FARE TABLE ─── */
    .fare-section { background: var(--bg); }
    .fare-table-wrap { margin-top: 48px; overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
    table { width: 100%; border-collapse: collapse; background: var(--surface) !important; }
    thead { background: var(--brand-dark); }
    thead th { font-family: var(--ff-display); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9) ; text-align: left; padding: 16px 20px; letter-spacing: 0.04em; background-color: #124d36 !important; }
    tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
    tbody tr:last-child { border-bottom: none; }
    tbody tr:hover { background: var(--brand-light); }
    tbody td { padding: 16px 20px; font-size: 15px; color: var(--text-primary); vertical-align: middle; }
    tbody td:first-child { font-family: var(--ff-display); font-weight: 700; background-color: #ffffff !important;
    color: #000000 !important; }
    .badge-pop { background: var(--accent); color: #1C1C1E; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 100px; margin-left: 8px; vertical-align: middle; }
    .fare-note { font-size: 13px; color: var(--text-muted); margin-top: 16px; display: flex; align-items: flex-start; gap: 8px; }
    .fare-note svg { flex-shrink: 0; margin-top: 2px; color: var(--brand); }

    /* ─── JOURNEY HIGHLIGHTS ─── */
    .journey-section { background: var(--surface); }
    .journey-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
    .journey-card { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; transition: border-color 0.2s, box-shadow 0.2s; }
    .journey-card:hover { border-color: var(--brand); box-shadow: 0 4px 16px rgba(26,107,74,0.08); }
    .journey-icon { width: 48px; height: 48px; background: var(--brand-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--brand); }
    .journey-card h3 { font-family: var(--ff-display); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
    .journey-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

    /* ─── ROUTE STOPS ─── */
    .stops-section { background: var(--brand-dark); color: #fff; }
    .stops-section .section-label { color: var(--accent); }
    .stops-section .section-heading { color: #fff; }
    .stops-section .section-sub { color: rgba(255,255,255,0.7); }
    .stops-timeline { margin-top: 48px; display: grid; grid-template-columns: 1fr; gap: 0; max-width: 720px; }
    .stop-item { display: flex; gap: 24px; position: relative; }
    .stop-item:not(:last-child) .stop-line-col::after {
      content: '';
      position: absolute;
      left: 19px;
      top: 44px;
      bottom: -4px;
      width: 2px;
      background: rgba(255,255,255,0.15);
    }
    .stop-line-col { position: relative; display: flex; flex-direction: column; align-items: center; flex-shrink: 0; padding-bottom: 40px; }
    .stop-num { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.3); font-family: var(--ff-display); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
    .stop-num.highlight { background: var(--accent); border-color: var(--accent); color: #1C1C1E; }
    .stop-body { padding-bottom: 40px; }
    .stop-body h3 { font-family: var(--ff-display); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
    .stop-body p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; }
    .stop-km { display: inline-block; font-size: 12px; font-weight: 600; color: var(--accent); margin-top: 6px; }

    /* ─── FLEET ─── */
    .fleet-section { background: var(--bg); }
    .fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
    .car-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
    .car-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .car-img { height: 160px; background: var(--brand-light); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
    .car-badge { position: absolute; top: 12px; left: 12px; background: var(--brand); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; }
    .car-badge-pop { position: absolute; top: 12px; right: 12px; background: var(--accent); color: #1C1C1E; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
    .car-img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--brand); opacity: 0.45; font-size: 13px; }
    .car-info { padding: 20px; }
    .car-name { font-family: var(--ff-display); font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
    .car-ideal { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
    .car-specs { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
    .car-spec { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-muted); }
    .car-spec svg { color: var(--brand); flex-shrink: 0; }
    .car-cta { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
    .car-price { font-size: 13px; color: var(--text-muted); }
    .car-price strong { font-size: 17px; color: var(--brand-dark); font-family: var(--ff-display); }
    .btn-sm { background: var(--brand); color: #fff; font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: var(--radius-sm); transition: background 0.2s; display: inline-block; }
    .btn-sm:hover { background: var(--brand-dark); }

    /* ─── TIPS ─── */
    .tips-section { background: var(--surface); }
    .tips-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 48px; }
    .tip-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start; }
    .tip-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--accent-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; }
    .tip-card h4 { font-family: var(--ff-display); font-size: 14px; font-weight: 700; margin-bottom: 5px; }
    .tip-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

    /* ─── REVIEWS ─── */
    .reviews-section { background: var(--bg); }
    .reviews-top { display: flex; align-items: center; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
    .rating-big { display: flex; flex-direction: column; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px 32px; }
    .rating-num { font-family: var(--ff-display); font-size: 52px; font-weight: 700; color: var(--brand-dark); line-height: 1; }
    .stars { display: flex; gap: 4px; margin: 8px 0; }
    .star { color: var(--accent); font-size: 18px; }
    .rating-count { font-size: 13px; color: var(--text-muted); }
    .reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
    .review-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; }
    .review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
    .reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; font-family: var(--ff-display); font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .reviewer-name { font-weight: 600; font-size: 15px; }
    .reviewer-trip { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
    .review-stars { display: flex; gap: 3px; margin-bottom: 10px; }
    .review-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

    /* ─── FAQ ─── */
    .faq-section { background: var(--surface); }
    .faq-list { max-width: 760px; margin: 48px auto 0; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--ff-display); font-size: 16px; font-weight: 600; color: var(--text-primary); }
    .faq-q:hover { color: var(--brand); }
    .faq-icon { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
    .faq-item.open .faq-icon { background: var(--brand); border-color: var(--brand); transform: rotate(45deg); }
    .faq-icon svg { color: var(--text-muted); }
    .faq-item.open .faq-icon svg { color: #fff; }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
    .faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
    .faq-a p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

    /* ─── BOOKING FORM ─── */
    .booking-section { background: var(--brand-dark); color: #fff; }
    .booking-section .section-label { color: var(--accent); }
    .booking-section .section-heading { color: #fff; }
    .booking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 48px; }
    .contact-ways { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
    .contact-item { display: flex; align-items: center; gap: 14px; }
    .contact-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .contact-label { font-size: 12px; color: rgba(255,255,255,0.6); }
    .contact-val { font-size: 15px; font-weight: 600; }
    .booking-form { background: var(--surface); border-radius: var(--radius-lg); padding: 36px; }
    .booking-form h3 { font-family: var(--ff-display); font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { margin-bottom: 16px; }
    .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
    .form-group input,
    .form-group select,
    .form-group textarea { width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 11px 14px; font-size: 15px; font-family: var(--ff-body); color: var(--text-primary); background: var(--bg); transition: border-color 0.2s; outline: none; }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--brand); background: var(--surface); }
    .form-group textarea { resize: vertical; min-height: 80px; }
    .btn-submit { width: 100%; background: var(--brand); color: #fff; font-size: 16px; font-weight: 700; font-family: var(--ff-display); padding: 15px; border: none; border-radius: var(--radius-sm); cursor: pointer; transition: background 0.2s; }
    .btn-submit:hover { background: var(--brand-dark); }
    .form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; }

    /* ─── RELATED ROUTES ─── */
    .related-section { background: var(--bg); }
    .related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-top: 48px; }
    .related-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; display: flex; align-items: center; gap: 16px; transition: border-color 0.2s, background 0.2s; }
    .related-card:hover { border-color: var(--brand); background: var(--brand-light); }
    .related-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--brand-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 22px; }
    .related-name { font-family: var(--ff-display); font-size: 15px; font-weight: 700; }
    .related-info { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

    /* ─── FOOTER ─── */
    .footer { background: #0F2E1F; color: rgba(255,255,255,0.6); text-align: center; padding: 32px 24px; font-size: 13px; }
    .footer a { color: rgba(255,255,255,0.8); }
    .footer a:hover { color: #fff; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-visual { padding: 0 0 40px; }
      .route-card { max-width: 100%; }
      .intro-grid { grid-template-columns: 1fr; }
      .booking-inner { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .nav-breadcrumb { display: none; }
      section { padding: 52px 0; }
      .nav-cta { padding: 8px 16px; font-size: 13px; }
      .stop-item:not(:last-child) .stop-line-col::after { left: 18px; }
    }
    
    
    
    /* ─── Slider ─── */
    
.slider{
    width:100%;
    max-width:1200px;
    margin:40px auto;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.slides{
    display:flex;
    transition:transform .6s ease-in-out;
}

.slides img{
    width:100%;
    flex-shrink:0;
    display:block;
}

/* Mobile */
@media(max-width:768px){
    .slider{
        margin:20px auto;
        border-radius:8px;
    }
}