body {
  font-family: "Inter", sans-serif;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.bundle-glow {
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
  border-color: rgba(245, 158, 11, 0.5);
}

/* --- DRAG & SCROLL ANIMATION (Proses Kami) --- */
.journey-card {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  flex: 0 0 300px; /* Fixed width for scrolling consistency */
  user-select: none; /* Prevent text selection while dragging */
}

/* Parent hover state: dim siblings */
.journey-container:hover .journey-card {
  opacity: 0.4;
  transform: scale(0.95);
  filter: grayscale(0.6);
}

/* Active hover state: highlight current */
.journey-container .journey-card:hover {
  opacity: 1;
  transform: scale(1.05) translateY(-10px);
  filter: grayscale(0);
  z-index: 10;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Draggable Container Styles */
.journey-container {
  cursor: grab;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.journey-container.active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

/* --- BUTTON RING ANIMATION --- */
.btn-ring-animate {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 9999px;
}

/* Keyframe Rotasi Stabil */
@keyframes spin-perfect {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.btn-ring-animate::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;

  /* Gradient Garis Tegas Biru ke Merah */
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 270deg,
    /* Area transparan */ #0ea5e9 270deg,
    /* Mulai Biru */ #eb0b16 360deg /* Akhir Merah */
  );

  transform: translate(-50%, -50%);
  /* Animasi Linear 4 detik */
  animation: spin-perfect 4s linear infinite;
  z-index: -2;
}

.btn-ring-animate::after {
  content: "";
  position: absolute;
  inset: 3px; /* Ketebalan garis ring */
  background: #111827; /* Warna tengah tombol */
  border-radius: inherit;
  z-index: -1;
}

.btn-ring-animate:hover::before {
  animation-duration: 3s; /* Kecepatan 3 detik saat hover */
  /* Warna lebih terang saat hover */
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 270deg,
    #38bdf8 270deg,
    /* Lighter Blue */ #ef4444 360deg /* Lighter Red */
  );
}

/* --- NAVBAR HAMBURGER ANIMATION --- */
/* Menggunakan transition-all dengan kurva bezier yang smooth */
.hamburger-line {
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    opacity 0.2s ease-in-out, background-color 0.3s;
}

/* --- CALENDAR STYLES (Dark Mode) --- */
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 9999px;
  transition: all 0.2s;
  font-size: 0.875rem;
  color: #e5e7eb;
}
.calendar-day:hover:not(.disabled):not(.selected) {
  background-color: #374151;
  color: #ffffff;
}
.calendar-day.selected {
  background-color: #dc2626;
  color: white;
  font-weight: 600;
}
.calendar-day.disabled {
  color: #4b5563;
  cursor: not-allowed;
}
.time-slot {
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  color: #d1d5db;
  background-color: #1f2937;
}
.time-slot:hover {
  border-color: #dc2626;
  color: #fca5a5;
  background-color: rgba(220, 38, 38, 0.1);
}
