:root {
      --yellow: #FFD400;
      --blue: #009BDE;
      --dark: #0a0a0a;
    }
    body {
      font-family: 'Poppins', sans-serif;
    }
    .navbar {
      background: white;
      box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    }
    .navbar-brand, .nav-link {
      color: var(--dark) !important;
      font-weight: 500;
    }
    .btn-yellow {
      background: var(--yellow);
      color: #000;
      font-weight: 600;
      border-radius: 8px;
    }
    .btn-yellow:hover {
      background: #ffcf33;
      color: #000;
    }
    .hero {
      position: relative;
      display: flex;
      min-height: 100vh;
      align-items: center;
      color: white;
      text-shadow: 0 2px 5px rgba(0,0,0,0.6);
      padding: 0;
      overflow: hidden;
      background: #000;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("../src/travfix.webp") center/cover no-repeat;
      filter: blur(18px);
      transform: scale(1.12);
      z-index: 0;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 1;
    }

    @media (min-width: 992px) {
      .hero {
        min-height: auto;
        aspect-ratio: 16 / 5;
        max-height: 100vh;
      }

      .hero-bg {
        object-fit: contain;
        object-position: center;
      }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
    }

    .hero-headline {
      font-weight: 900;
      font-size: 44px;
      line-height: 1.05;
      margin: 0 0 10px;
      max-width: 520px;
    }

    .hero-tagline {
      font-size: 14px;
      margin: 0 0 18px;
      opacity: 0.95;
    }

    @media (max-width: 768px) {
      .hero-headline {
        font-size: 34px;
      }
    }

    @media (max-width: 576px) {
      .hero-headline {
        font-size: 28px;
      }
      .hero-tagline {
        font-size: 13px;
      }
    }

    .hero h1 span {
      color: var(--yellow);
    }
    .section-title {
      font-weight: 700;
      color: var(--dark);
    }
    #rute .section-title {
      font-weight: 900;
      font-size: 34px;
      line-height: 1.15;
      letter-spacing: -0.3px;
      margin-bottom: 10px;
    }

    #rute p {
      font-size: 15px;
      line-height: 1.5;
      margin-bottom: 26px !important;
      color: #334155;
    }

    @media (max-width: 768px) {
      #rute .section-title {
        font-size: 28px;
      }
      #rute p {
        font-size: 14px;
        margin-bottom: 22px !important;
      }
    }

    .service-section {
      background: #fbf7ef;
    }

    .service-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      transition: transform 220ms ease;
      will-change: transform;
    }

    .service-img {
      width: 120px;
      height: 120px;
      border-radius: 999px;
      object-fit: cover;
      border: 6px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
      transition: transform 220ms ease, box-shadow 220ms ease;
      will-change: transform;
    }

    .service-label {
      font-weight: 700;
      color: #0f172a;
      font-size: 14px;
      transition: transform 220ms ease, color 220ms ease;
    }

    .service-item:hover {
      transform: translateY(-6px);
    }

    .service-item:hover .service-img {
      transform: scale(1.06);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    }

    .service-item:hover .service-label {
      transform: translateY(1px);
      color: #0b1220;
    }

    .why-section {
      position: relative;
      padding: 80px 0 0;
      background: #fbf1d6 url('../src/orange-bg.png') no-repeat center center;
      background-size: cover;
      overflow: hidden;
    }

    .why-section > .container {
      position: relative;
      z-index: 1;
    }

    .why-pill {
      background: #fff;
      border-radius: 22px;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
      padding: 22px 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      max-width: 860px;
      margin: 0 auto 46px;
    }

    .why-pill-item {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .why-pill-icon {
      width: 64px;
      height: 64px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .why-pill-text {
      font-weight: 900;
      color: #f97316;
      line-height: 1.1;
      letter-spacing: -0.2px;
      font-size: 18px;
      text-align: left;
      white-space: nowrap;
    }

    .why-pill-divider {
      width: 1px;
      height: 46px;
      background: #e5e7eb;
      flex: 0 0 auto;
    }

    .why-content {
      padding-bottom: 70px;
    }

    .why-app-image {
      width: 100%;
      max-width: 520px;
      display: block;
      margin: 0 auto;
    }

    .why-copy {
      max-width: 420px;
      margin-left: auto;
    }

    .why-title {
      font-weight: 900;
      color: #f59e0b;
      font-size: 44px;
      line-height: 1.05;
      letter-spacing: -0.6px;
      margin: 0 0 14px;
    }

    .why-desc {
      color: #6b7280;
      font-size: 14px;
      line-height: 1.7;
      margin: 0 0 18px;
      max-width: 380px;
    }

    .why-store {
      display: inline-block;
      text-decoration: none;
    }

    .why-store img {
      height: 100px;
      width: auto;
      display: block;
    }

    @media (max-width: 992px) {
      .why-section {
        padding-top: 64px;
      }

      .why-copy {
        margin: 26px auto 0;
        text-align: center;
      }

      .why-desc {
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 576px) {
      .why-pill {
        padding: 14px 12px;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 10px;
        row-gap: 0;
        align-items: center;
      }

      .why-pill-divider {
        display: none;
      }

      .why-pill-item {
        min-width: 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
      }

      .why-pill-icon {
        width: 42px;
        height: 42px;
      }

      .why-pill-text {
        font-size: 12px;
        white-space: normal;
        text-align: center;
      }

      .why-title {
        font-size: 34px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .service-item,
      .service-img,
      .service-label {
        transition: none;
      }
    }

    .testimonial-card {
      background: #fff;
      border: 1px solid #eef2f7;
      border-radius: 14px;
      padding: 16px;
      text-align: left;
      height: 100%;
      box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    }

    .testimonial-carousel {
      position: relative;
    }

    .testimonial-track {
      display: flex;
      gap: 18px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 10px 56px;
      width: 100%;
    }

    .testimonial-track::-webkit-scrollbar {
      height: 0;
    }

    .testimonial-item {
      flex: 0 0 calc((100% - 36px) / 3);
      scroll-snap-align: start;
      min-width: 260px;
    }

    .testimonial-empty {
      padding: 18px 0;
    }

    .testimonial-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid #e2e8f0;
      background: #fff;
      color: #0f172a;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
      z-index: 2;
    }

    .testimonial-nav.prev {
      left: 8px;
    }

    .testimonial-nav.next {
      right: 8px;
    }

    @media (max-width: 992px) {
      .testimonial-item {
        flex: 0 0 calc((100% - 18px) / 2);
      }
    }

    @media (max-width: 576px) {
      .testimonial-track {
        padding: 10px 44px;
      }
      .testimonial-item {
        flex: 0 0 100%;
        min-width: 240px;
      }
      .testimonial-nav {
        width: 34px;
        height: 34px;
      }
    }

    .testimonial-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 999px;
      object-fit: cover;
      flex: 0 0 auto;
    }

    .testimonial-avatar.placeholder {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: #0f172a;
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
    }

    .testimonial-name {
      font-weight: 800;
      color: #0f172a;
      line-height: 1.2;
    }

    .testimonial-stars {
      color: #f59e0b;
      font-size: 14px;
      line-height: 1;
      letter-spacing: 1px;
    }

    .testimonial-message {
      color: #334155;
      line-height: 1.5;
    }

    .banner-carousel {
      position: relative;
    }

    .banner-track {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 6px 52px;
      width: 100%;
    }

    .banner-track::-webkit-scrollbar {
      height: 0;
    }

    .banner-item {
      flex: 0 0 100%;
      scroll-snap-align: start;
    }

    .banner-link {
      display: block;
      color: inherit;
      text-decoration: none;
    }

    .banner-slide {
      border-radius: 16px;
      overflow: hidden;
      background: #e5e7eb;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
      aspect-ratio: 16 / 5;
      width: 100%;
    }

    .banner-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .banner-placeholder {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: #0f172a;
    }

    .banner-empty {
      padding: 18px 0;
    }

    .banner-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid #e2e8f0;
      background: #fff;
      color: #0f172a;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
      z-index: 2;
    }

    .banner-nav.prev {
      left: 8px;
    }

    .banner-nav.next {
      right: 8px;
    }

    @media (max-width: 576px) {
      .banner-track {
        padding: 6px 44px;
      }
      .banner-slide {
        aspect-ratio: 16 / 7;
      }
      .banner-nav {
        width: 34px;
        height: 34px;
      }
    }

    .news-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .news-carousel {
      position: relative;
    }

    .news-track {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 6px 52px;
      width: 100%;
    }

    .news-track::-webkit-scrollbar {
      height: 0;
    }

    .news-item {
      flex: 0 0 360px;
      min-width: 280px;
      scroll-snap-align: start;
    }

    .news-empty {
      padding: 18px 0;
      width: 100%;
    }

    .news-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid #e2e8f0;
      background: #fff;
      color: #0f172a;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
      z-index: 2;
      cursor: pointer;
    }

    .news-nav.prev {
      left: 8px;
    }

    .news-nav.next {
      right: 8px;
    }

    @media (max-width: 768px) {
      .news-track {
        padding: 6px 44px;
      }

      .news-item {
        flex: 0 0 85%;
        min-width: 240px;
      }

      .news-nav {
        width: 34px;
        height: 34px;
      }
    }

    .news-card {
      background: #fff;
      border: 3px solid var(--yellow);
      border-radius: 16px;
      overflow: hidden;
      height: 100%;
      box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    }

    .news-thumb {
      background: #e5e7eb;
      aspect-ratio: 16 / 9;
      width: 100%;
      overflow: hidden;
    }

    .news-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .news-thumb-placeholder {
      width: 100%;
      height: 100%;
      background: #e5e7eb;
    }

    .news-body {
      padding: 16px;
      text-align: left;
    }

    .news-date {
      font-size: 12px;
      color: #64748b;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .news-title {
      font-weight: 900;
      font-size: 20px;
      line-height: 1.2;
      color: #0f172a;
      margin-bottom: 10px;
    }

    .news-excerpt {
      color: #475569;
      font-size: 13px;
      line-height: 1.55;
      margin-bottom: 14px;
      min-height: 44px;
    }

    .cta-section {
      background:
        radial-gradient(120% 140% at 50% 35%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 55%),
        radial-gradient(120% 140% at 50% 40%, #ffd766 0%, #ffc400 46%, #f0a800 100%);
      padding: 100px 0;
    }

    .cta-inner {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }

    .cta-title {
      margin: 0;
      color: #fff;
      font-weight: 900;
      font-size: 32px;
      line-height: 1.15;
      text-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
    }

    .cta-btn {
      background: #f97316;
      color: #fff;
      border: none;
      font-weight: 800;
      font-size: 12px;
      padding: 10px 18px;
      border-radius: 8px;
      box-shadow: 0 12px 26px rgba(249, 115, 22, 0.32);
    }

    .cta-btn:hover {
      background: #ea580c;
      color: #fff;
    }

    @media (max-width: 768px) {
      .cta-section {
        padding: 30px 0;
      }
      .cta-title {
        font-size: 22px;
      }
    }

    .route-card {
      border: 1px solid #eef2f7;
      border-radius: 14px;
      padding: 14px;
      transition: all .3s;
      background: white;
      box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    }
    .route-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .route-card-header {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #f8fafc;
      border-radius: 10px;
      padding: 10px 12px;
      margin-bottom: 12px;
    }

    .route-badge {
      background: #1d4ed8;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 999px;
    }

    .route-title {
      color: #f59e0b;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.2px;
    }

    .route-main {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .route-point {
      min-width: 0;
    }

    .route-city {
      font-weight: 800;
      color: #0f172a;
      font-size: 14px;
      line-height: 1.1;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .route-sub {
      font-size: 11px;
      color: #64748b;
      margin-top: 3px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .route-line {
      position: relative;
      display: grid;
      grid-template-columns: auto 70px auto;
      align-items: center;
      justify-items: center;
      gap: 8px;
      min-width: 120px;
    }

    .route-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #f59e0b;
      box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
    }

    .route-track {
      height: 2px;
      width: 100%;
      background: #e2e8f0;
      border-radius: 999px;
    }

    .route-time {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 10px;
      color: #64748b;
      background: #fff;
      padding: 0 6px;
      line-height: 1.2;
    }

    .route-meta {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 12px;
      margin-bottom: 10px;
    }

    .route-seats {
      color: #0f172a;
      font-weight: 700;
      font-size: 12px;
    }

    .route-seats i {
      color: #64748b;
      margin-right: 6px;
    }

    .route-price {
      text-align: right;
    }

    .route-price-label {
      font-size: 10px;
      color: #64748b;
      line-height: 1.1;
    }

    .route-price-value {
      font-weight: 900;
      color: #0f172a;
      font-size: 14px;
      line-height: 1.2;
    }

    .route-btn {
      width: 100%;
      border-radius: 10px;
      padding: 10px 12px;
      font-weight: 800;
    }

    .jastip-carousel {
      position: relative;
    }

    .jastip-track {
      display: flex;
      gap: 18px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 10px 56px;
      width: 100%;
    }

    .jastip-track::-webkit-scrollbar {
      height: 0;
    }

    .jastip-item {
      flex: 0 0 calc((100% - 18px) / 2);
      scroll-snap-align: start;
      min-width: 260px;
    }

    .jastip-card {
      border-radius: 14px;
      overflow: hidden;
      background: #fff;
      border: 1px solid #eef2f7;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      height: 100%;
    }

    .jastip-thumb {
      background: #e5e7eb;
      aspect-ratio: 16 / 9;
      width: 100%;
      overflow: hidden;
    }

    .jastip-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .jastip-body {
      padding: 14px;
    }

    .jastip-title {
      font-weight: 900;
      color: #0f172a;
      font-size: 16px;
      line-height: 1.2;
      margin-bottom: 6px;
      text-transform: capitalize;
    }

    .jastip-sub {
      color: #64748b;
      font-size: 12px;
      margin-bottom: 10px;
    }

    .jastip-price {
      font-weight: 900;
      color: #0f172a;
      font-size: 14px;
      margin-bottom: 12px;
    }

    .jastip-btn {
      width: 100%;
      border-radius: 10px;
      padding: 10px 12px;
      font-weight: 800;
    }

    .jastip-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: none;
      background: var(--yellow);
      color: #000;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
      z-index: 2;
      cursor: pointer;
    }

    .jastip-nav.prev {
      left: 0;
    }

    .jastip-nav.next {
      right: 0;
    }

.jastip-nav:hover {
  background: #ffcf33;
}

@media (min-width: 992px) {
  .jastip-track {
    padding: 10px 64px;
    gap: 14px;
  }

  .jastip-item {
    flex: 0 0 420px;
    min-width: 360px;
  }

  .jastip-body {
    padding: 12px;
  }

  .jastip-title {
    font-size: 15px;
  }

  .jastip-price {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .jastip-btn {
    padding: 9px 12px;
  }
}

@media (max-width: 768px) {
  .jastip-track {
    padding: 10px 44px;
  }

  .jastip-item {
    flex: 0 0 85%;
    min-width: 240px;
  }

  .jastip-nav {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .route-main {
    grid-template-columns: 1fr 92px 1fr;
    gap: 8px;
    align-items: start;
  }

  .route-line {
    justify-content: center;
    min-width: 0;
  }

  .route-time {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 6px;
  }
}

.service-card {
  border-radius: 10px;
  background: white;
  border: 1px solid #eee;
  transition: all .3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.icon-round {
  width: 70px;
  height: 70px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  margin: 0 auto 15px;
}

.feature-icon {
  font-size: 35px;
  color: var(--yellow);
}

footer {
  background: #FEFAF1;
  color: black;
  padding: 50px 0;
}

footer a {
  color: var(--yellow);
  text-decoration: none;
}