body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fefefe;
  color: #222;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #0055aa;
  color: #fff;
}

.logo {
  height: 50px;
}

.nav a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.slide.active {
  opacity: 1;
  position: relative; /* supaya slide aktif ikut mengatur tinggi slider */
  z-index: 2;
}

.overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 20px;
  max-width: 400px;
  border-radius: 8px;
  user-select: none;
  box-sizing: border-box;
  font-size: 1rem;
}

/* Responsive untuk mobile */
@media (max-width: 600px) {
  .overlay {
    max-width: 40vw;     /* Maks lebar 90% viewport */
    padding: 5px 7px;
    bottom: 5px;
    left: 5%;
    font-size: 0.5rem;
    border-radius: 6px;
  }
}


.video-section {
  padding: 30px;
  text-align: center;
  background: #f0f0f0;
}

video {
  width: 80%;
  max-width: 700px;
  border-radius: 10px;
}

.produk {
  padding: 40px 20px;
  text-align: center;
}

.produk-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.produk-item {
  width: 250px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.produk-item img {
  width: 100%;
}

.produk-item h3 {
  margin: 10px 0 5px;
}

.produk-item p {
  color: #007700;
}

.produk-item button {
  background: #0055aa;
  color: #fff;
  border: none;
  padding: 10px;
  width: 100%;
  cursor: pointer;
}

.sosial {
  background: #fff;
  padding: 30px;
  text-align: center;
}

.sosial-icons a {
  display: inline-block;
  margin: 10px;
  color: #0055aa;
  text-decoration: none;
  font-weight: bold;
}

.footer {
  text-align: center;
  background: #eee;
  padding: 20px;
}
.produk-unggulan {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 0 10px;
}

.produk-item {
  width: 346px;
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  padding-bottom: 10px;
  font-family: Arial, sans-serif;
}

.produk-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 8px 0 0;
}

.travel-results-result-like,
.travel-results-result-flags {
  position: absolute;
  top: 10px;
  z-index: 10;
}

.travel-results-result-like {
  right: 10px;
}

.travel-results-result-flags {
  left: 10px;
}

.travel-pill {
  background: #e91e63;
  color: white;
  padding: 4px 8px;
  font-weight: 700;
  border-radius: 4px;
  font-size: 12px;
}

.h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 12px 15px 6px;
}

.h6 {
  font-size: 1rem;
  color: #555;
  margin: 0 15px;
}

.travel-results-result-stars {
  color: #28a745; /* hijau */
  font-weight: 700;
}

.travel-results-result-subtext {
  margin-left: 10px;
  vertical-align: middle;
  font-size: 0.9rem;
  color: #444;
}

.inline-block {
  display: inline-block;
}

.m1 {
  margin: 8px;
}
.mt3 {
  margin-top: 24px;
}
.mb2 {
  margin-bottom: 16px;
}
.sosial-icons a {
    color: #444;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
  }
  
  /* Warna sesuai brand */
  .fb { color: #4267B2; }
  .ig { color: #C13584; }
  .tt { color: #000000; }
  .yt { color: #FF0000; }
  .wa { color: #25D366; }
  
  /* Pulse animasi sederhana */
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
      filter: drop-shadow(0 0 3px currentColor);
    }
    50% {
      transform: scale(1.2);
      filter: drop-shadow(0 0 10px currentColor);
    }
  }

  .sosial-icons a:hover {
    color: #000;
    transform: scale(1.3);
    filter: drop-shadow(0 0 12px currentColor);
  }
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
  }
  .whatsapp-float:hover {
    background-color: #1ebe57;
  }
  .whatsapp-float img {
    width: 35px;
    height: 35px;
  }
  /* Header desktop styles */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0055aa;
    padding: 10px 20px;
    color: white;
    position: relative;
    z-index: 1001;
  }
  .logo {
    height: 50px;
  }
  .nav {
    display: flex;
    gap: 20px;
  }
  .nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-size: 1rem;
  }
  .nav a svg {
    margin-right: 6px;
  }
  .nav a:hover {
    color: #ffcc00;
  }
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
  }

  /* Sidebar styles */
  .sidebar-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
  }
  .sidebar {
    position: fixed;
    top: 0; left: -250px;
    width: 250px;
    height: 100vh;
    background: #0055aa;
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    transition: left 0.3s ease;
    z-index: 1001;
  }
  .sidebar a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
  }
  .sidebar a svg {
    margin-right: 10px;
  }

  /* Show sidebar when active */
  .sidebar-active .sidebar {
    left: 0;
  }
  .sidebar-active .sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* Mobile only */
  @media (max-width: 768px) {
    .nav {
      display: none;
    }
    .menu-toggle {
      display: block;
      color: white;
    }
  }
  
  .telegram-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
  }
  .telegram-float:hover {
    background-color: #1ebe57;
  }
  .telegram-float img {
    width: 35px;
    height: 35px;
  }