/* Global */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      min-height: 80vh;
      background-image: url('slide1.jpg');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      font-family: 'Lucida Sans', sans-serif;
    }

    nav.nav {
      background-color: white;
      box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
      padding: 0 20px;
    }

    nav ul {
      list-style: none;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 0;
    }

    nav li {
      height: 50px;
      display: flex;
      align-items: center;
    }

    nav a {
      padding: 0 20px;
      text-decoration: none;
      color: black;
      display: flex;
      align-items: center;
      height: 100%;
    }

    nav a:hover {
      background-color: #f0f0f0;
    }

    nav li:first-child {
      margin-right: auto;
    }

    .sidebar {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 250px;
      background-color: white;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      display: none;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding-top: 20px;
      z-index: 999;
    }

    .sidebar li {
      width: 100%;
    }

    .sidebar a {
      width: 100%;
      padding: 15px 20px;
      color: black;
    }

    .hideOnMobile {
      display: block;
    }

    .menu-button {
      display: none;
      cursor: pointer;
    }

    @media(max-width: 768px) {
      .hideOnMobile {
        display: none;
      }

      .menu-button {
        display: block;
      }

      .sidebar {
        display: none;
      }
    }

  /* Hero Section */
  .hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
  }

  .hero-section {
    position: relative;
    background-size: cover;
    background-position: center center;
    background: url('img/Slider3.jpeg') no-repeat center center/cover;
    height: 50vh;
  }
  
  .hero-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 80%;
    height: 80%;
    background: rgb(252, 251, 251); /* transparansi hitam */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
  }
  
  
  .hero-text {
    text-align: center;
    color: #000000;
    padding: 10px;
  }
  
  .hero-text h1 {
    font-size: 35px;
    color: #000000;
    margin-bottom: 10px;
  }
  
  .hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
  }
  
  .cta-button {
    padding: 12px 24px;
    background-color: #f97316;
    color: #fffefe;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
  }
  
  /* Tentang Kami */
.tentang-kami {
    background-color: #f9f9f9;
    padding: 60px 40px;
    color: #222;
  }
  
  .tentang-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .tentang-kiri {
    flex: 1;
    max-width: 300px;
  }
  
  .alamat-web {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
  }
  
  .judul {
    font-size: 26px;
    margin: 0 0 10px;
    color: #222;
  }
  
  .subjudul {
    color: #1746b0;
    font-weight: 500;
    text-decoration: none;
    display: block;
    margin-bottom: 25px;
  }
  
  .btn-selengkapnya {
    padding: 10px 24px;
    border: 2px solid #555;
    border-radius: 25px;
    background: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-selengkapnya:hover {
    background-color: #eee;
  }
  
  .tentang-tengah img {
    background: url('img/Avanza Fecelif.png') no-repeat center center/cover;
    max-width: 320px;
    height: auto;
  }
  
  .tentang-kanan {
    flex: 2;
    max-width: 500px;
  }
  
  .tentang-kanan h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .tentang-kanan p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  /* Section Rute Perjalanan */
.rute {
    background-color: #f9f9f9;
    padding: 80px 40px;
    text-align: center;
  }
  
  .rute-title {
    font-size: 32px;
    color: #0a1e5e;
    margin-bottom: 10px;
  }
  
  .rute-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
  }
  
  .rute-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .rute-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    text-align: left;
  }
  
  .rute-card:hover {
    transform: translateY(-5px);
  }
  
  .rute-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff7700;
  }
  
  .rute-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 1;
    column-gap: 20px;
  }
  
  .rute-card ul.multi-column {
    column-count: 2;
  }
  
  .rute-card li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
  }

 
/* Section Layanan Kami */
.layanan {
    padding: 80px 40px;
    background-color: #fff;
    text-align: center;
  }
  
  .layanan-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #0a1e5e;
  }
  
  .layanan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .layanan-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .layanan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }
  
  .layanan-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .layanan-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
  }
  
  .layanan-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
  }
  
  .armada-modern {
    padding: 80px 20px;
    background: linear-gradient(to right, #f3f4f6, #e5e7eb);
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .title {
    font-size: 38px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 10px;
  }
  
  .subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 50px;
  }
  
  .armada-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .armada-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
  }
  
  .armada-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  }
  
  .armada-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .armada-card:hover img {
    transform: scale(1.05);
  }
  
  .card-info {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
  }
  
  .card-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #111827;
  }
  
  .card-info p {
    font-size: 14px;
    color: #4b5563;
  }

  .testimoni-section {
    padding: 4rem 1rem;
    background: #f9f9f9;
    text-align: center;
  }
  
  .testimoni-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
  }
  
  .testimoni-card p {
    font-style: italic;
    color: #333;
  }
  
  .testimoni-card .author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
    justify-content: center;
  }
  
  .testimoni-card img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  @media (max-width: 600px) {
    .hero-text h1 {
      font-size: 26px;
    }
    .hero-text p {
      font-size: 16px;
    }
  }
  
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
      padding: 10px 20px;
    }
  
    .navbar ul {
      flex-direction: column;
      width: 100%;
      gap: 10px;
      margin-top: 10px;
    }
  
    .navbar a {
      padding: 10px 0;
      width: 100%;
      display: block;
    }
  
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .cta-button {
      padding: 10px 20px;
      font-size: 0.95rem;
    }
  
    .section {
      padding: 60px 20px;
    }
  }
  
  
