:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-05b4b37 *//* 🌑 Base */
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(145deg, #000000, #121212);
  color: #fff;
  margin: 0;
  padding: 0;
}

/* 🌑 Container */
.itinerary-page {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

.itinerary-page h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
}
.subtitle {
  text-align: center;
  font-size: 15px;
  color: #bbb;
  margin-bottom: 30px;
}

/* 🌑 Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.tab {
  background: #222;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.tab.active {
  background: linear-gradient(135deg, #111, #555);
}
.tab:hover {
  background: #333;
}

/* 🌑 Timeline */
.day-block {
  display: none;
}
.day-block.active {
  display: block;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(15px);}
  to {opacity: 1; transform: translateY(0);}
}

.timeline {
  border-left: 3px solid #888;
  padding-left: 25px;
  margin-left: 20px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #777, #444);
}

/* 🌑 Session Card */
.session-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 22px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  transition: 0.3s;
}
.session-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 22px rgba(255,255,255,0.15);
}

/* Dots */
.session-card::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 20px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #000;
  box-shadow: 0 0 0 3px #444;
}

/* Text + Icons */
.icon {
  font-size: 22px;
  min-width: 32px;
}
.info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.info .time {
  font-size: 13px;
  font-weight: 600;
  color: #ccc;
  margin-bottom: 4px;
}
.info p {
  font-size: 14px;
  color: #bbb;
}

/* 🌑 Responsive */
@media (max-width: 600px) {
  .session-card {
    flex-direction: column;
    gap: 8px;
  }
  .session-card .icon {
    font-size: 20px;
  }
}/* End custom CSS */