*/ /* --- PREMIUM ITINERARY (Timeline & Accordion) --- */
#tdItinerary {
  position: relative;
  margin-top: 30px;
}

#tdItinerary::before {
  content: "";
  position: absolute;
  left: 21px; /* Center of the 42px circle */
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--border) 100%);
  z-index: 0;
  opacity: 0.4;
}

.itin-day {
  position: relative;
  margin-bottom: 16px;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.itin-day:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.itin-day.open {
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.itin-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
}

.itin-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
}

.itin-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 31, 46, 0.2);
  transition: transform 0.3s ease;
}

.itin-day.open .itin-num {
  transform: scale(1.1);
  background: var(--gold);
  color: var(--navy);
}

.itin-info {
  flex: 1;
}

.itin-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
  font-family: "Playfair Display", serif;
}

.itin-sub {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.itin-icon {
  font-size: 18px;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.itin-day.open .itin-icon {
  transform: rotate(180deg);
}

.itin-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fcfdfe;
}

.itin-day.open .itin-content {
  max-height: 1000px; /* Large enough to fit content */
}

.itin-body {
  padding: 0 20px 24px 78px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
}

.itin-body ul {
  list-style: none;
  padding: 0;
}

.itin-body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.itin-body ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

@media (max-width: 600px) {
  #tdItinerary::before {
    display: none;
  }
  .itin-body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .itin-head {
    padding: 12px 15px;
    gap: 12px;
  }
  .itin-num {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .itin-title {
    font-size: 14px;
  }
  .itin-sub {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .itin-head {
    padding: 10px 12px;
    gap: 10px;
  }
  .itin-num {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }
  .itin-title {
    font-size: 13px;
    line-height: 1.3;
  }
  .itin-body {
    padding: 0 15px 18px 15px;
    font-size: 13.5px;
  }
  .itin-icon {
    font-size: 16px;
  }
}

/* inc/exc */
.ie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .ie-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.ie-box {
  border-radius: 10px;
  padding: 18px;
}
.ie-inc {
  background: #f0faf4;
  border: 1px solid #b8dfc8;
}
.ie-exc {
  background: #fdf0f0;
  border: 1px solid #f0c0c0;
}
.ie-box h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.ie-inc h4 {
  color: #1a7a3c;
}
.ie-exc h4 {
  color: var(--red);
}
.ie-list {
  list-style: none;
}
.ie-list li {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 8px;
  line-height: 1.5;
}
.ie-list li:last-child {
  border-bottom: none;
}
/* photos */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .photos-grid {
    grid-template-columns: 1fr;
  }
}

.photo-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.photo-item:hover img {
  transform: scale(1.08);
}
/* video testimonials */
.vt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

@media (max-width: 900px) {
  .vt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .vt-grid {
    grid-template-columns: 1fr;
  }
}

.vt-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.vt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 31, 46, 0.9) 50%,
    transparent 100%
  );
}
.vt-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
}
.vt-badge {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.vt-name-big {
  font-size: 15px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}
.vt-name-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}
.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 0, 0, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
}
/* reviews */
.reviews-summary {
  display: flex;
  gap: 24px;
  background: var(--light);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .reviews-summary {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .rs-score {
    margin-bottom: 15px;
  }
}

.rs-score {
  text-align: center;
  min-width: 100px;
}
.rs-num {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--navy);
}
.rs-stars {
  color: var(--gold);
  font-size: 20px;
}
.rs-cnt {
  font-size: 12px;
  color: var(--muted);
}
.rs-bars {
  flex: 1;
}

@media (max-width: 640px) {
  .rs-bars {
    width: 100%;
  }
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.bar-lbl {
  font-size: 12px;
  color: var(--muted);
  width: 28px;
}
.bar-track {
  flex: 1;
  height: 8px;
  background: #dde3ea;
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
}
.bar-pct {
  font-size: 12px;
  color: var(--muted);
  width: 28px;
  text-align: right;
}
.rev-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 14px;
}
.ri-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

@media (max-width: 480px) {
  .ri-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.ri-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ri-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.ri-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.ri-loc {
  font-size: 12px;
  color: var(--muted);
}
.ri-stars {
  color: var(--gold);
  font-size: 13px;
}
.ri-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
/* must read articles */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
}

@media (max-width: 900px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

.article-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.3s;
}
.article-card:hover {
  transform: translateY(-3px);
}
.ac-img {
  height: 160px;
  overflow: hidden;
}
.ac-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.article-card:hover .ac-img img {
  transform: scale(1.06);
}
.ac-body {
  padding: 14px;
}
.ac-date {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}
.ac-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.ac-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
}
