/* Itinerary Timeline */
.itin-day {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 40px;
  animation: itinReveal 0.6s ease forwards;
  opacity: 0;
}

@keyframes itinReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.itin-day::before {
  content: "";
  position: absolute;
  left: 21px; /* Center of itin-num */
  top: 42px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--border));
  z-index: 1;
}

.itin-day:last-child {
  padding-bottom: 0;
}

.itin-day:last-child::before {
  display: none;
}

.itin-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.itin-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(15, 31, 46, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--gold);
}

.itin-day:hover .itin-num {
  transform: scale(1.15) rotate(5deg);
  background: var(--gold);
  color: var(--navy);
}

.itin-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.itin-sub {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.itin-sub::before {
  content: "📍";
  font-size: 14px;
}

.itin-body {
  padding-left: 64px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  opacity: 0.9;
}

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

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

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

.itin-day:hover .itin-body {
  opacity: 1;
}

/* Delay for staggered reveal - can be handled by JS or just keep it simple */
.itin-day:nth-child(1) { animation-delay: 0.1s; }
.itin-day:nth-child(2) { animation-delay: 0.2s; }
.itin-day:nth-child(3) { animation-delay: 0.3s; }
.itin-day:nth-child(4) { animation-delay: 0.4s; }
.itin-day:nth-child(5) { animation-delay: 0.5s; }
/* inc/exc */
.ie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

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

.ie-box {
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ie-box:hover {
  transform: translateY(-5px);
}

.ie-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.ie-inc {
  background: #f8fff9;
  border: 1px solid #e2f5e9;
}

.ie-inc::before {
  background: #34a853;
}

.ie-exc {
  background: #fffcfc;
  border: 1px solid #f9eaea;
}

.ie-exc::before {
  background: var(--red);
}

.ie-box h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ie-inc h4 {
  color: #1a7a3c;
}

.ie-exc h4 {
  color: #c0392b;
}

.ie-list {
  list-style: none;
  padding: 0;
}

.ie-list li {
  font-size: 14px;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
  opacity: 0.9;
}

.ie-list li:last-child {
  border-bottom: none;
}

.ie-list li span {
  font-size: 16px;
  flex-shrink: 0;
}

.ie-inc li span {
  color: #34a853;
}

.ie-exc li span {
  color: #ea4335;
}
/* photos */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}
.photo-item {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.photo-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.photo-item:hover img {
  transform: scale(1.1);
}
/* video testimonials */
.vt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.vt-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.vt-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.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.95) 30%,
    transparent 80%
  );
}
.vt-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}
.vt-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.vt-name-big {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.vt-name-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
}
.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--navy);
  box-shadow: 0 0 30px rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}
.vt-card:hover .yt-play {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}
/* reviews */
.reviews-summary {
  display: flex;
  gap: 24px;
  background: var(--light);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.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;
}
.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;
}
.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;
}
.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;
}
