/* ─── TRIP HERO ── */
.trip-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.trip-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.trip-hero-bg.loaded { transform: scale(1.04); }
.trip-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,12,0,.9) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.15) 100%);
}
.trip-hero-content { position: relative; z-index: 2; padding: 2.5rem 0 3rem; width: 100%; }

.breadcrumb { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.6); font-size: .78rem; margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: .85rem; height: .85rem; }

.hero-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.hero-tag {
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  background: rgba(168,135,74,.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
  padding: .3rem .8rem;
  border-radius: 9999px;
}
.trip-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero-meta { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: 9999px;
}
.hero-chip svg { width: .9rem; height: .9rem; }
.hero-chip.spots { background: rgba(168,135,74,.4); border-color: rgba(168,135,74,.5); }

/* ─── LAYOUT ── */
.trip-body { padding: 3rem 0 5rem; background: var(--gold-bg); }
.trip-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
@media (max-width: 960px) { .trip-layout { grid-template-columns: 1fr; } }

/* ─── CONTENT CARDS ── */
.content-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 2.25rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  margin-bottom: 1.5rem;
}
.content-card h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.content-card h2 svg { width: 1.1rem; height: 1.1rem; color: var(--primary); }
.about-text { color: var(--gray-500); line-height: 1.8; font-size: .92rem; }

/* ─── TIMELINE ── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 1.25rem; position: relative; }
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 1.35rem;
  top: 2.8rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  z-index: 0;
}
.timeline-num {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 12px rgba(168,135,74,.4);
}
.timeline-content { flex: 1; padding-bottom: 2rem; }
.timeline-content h3 { font-size: .98rem; font-weight: 700; color: var(--gray-900); margin-bottom: .5rem; }
.timeline-content p { color: var(--gray-500); font-size: .85rem; line-height: 1.75; }
.timeline-img { width: 100%; border-radius: .75rem; overflow: hidden; margin-top: .9rem; aspect-ratio: 16/7; }
.timeline-img-bg { width: 100%; height: 100%; background-size: cover; background-position: center; }
.day-note { font-size: .78rem; color: var(--primary); font-weight: 600; font-style: italic; margin-top: .4rem; }

/* ─── INCLUDES ── */
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 560px) { .includes-grid { grid-template-columns: 1fr; } }
.includes-col h4 { font-size: .85rem; font-weight: 700; color: var(--gray-900); margin-bottom: .75rem; display: flex; align-items: center; gap: .4rem; }
.includes-col h4 svg { width: .9rem; height: .9rem; }
.includes-col.yes h4 svg { color: #22c55e; }
.includes-col.no h4 svg { color: #ef4444; }
.includes-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.includes-col ul li { font-size: .82rem; color: var(--gray-500); display: flex; align-items: flex-start; gap: .5rem; line-height: 1.5; }
.includes-col ul li::before { content: ''; width: .4rem; height: .4rem; border-radius: 50%; background: var(--primary); margin-top: .45rem; flex-shrink: 0; }

/* ─── LOGISTICS ── */
.logistics-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; }
.logistics-item { background: var(--gold-bg); border-radius: .75rem; padding: .9rem 1rem; }
.logistics-label { font-size: .68rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .3rem; }
.logistics-value { font-size: .85rem; font-weight: 700; color: var(--gray-900); }

/* ─── FAQ ── */
.faq-item { border-bottom: 1px solid var(--gray-100); padding: .9rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-q svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { font-size: .85rem; color: var(--gray-500); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 200px; padding-top: .6rem; }

/* ─── SIDEBAR ── */
.sidebar { position: sticky; top: 5.5rem; }
.price-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  margin-bottom: 1.25rem;
  border: 1.5px solid var(--gold-light);
}
.price-main { text-align: center; padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--gray-100); }
.price-label-sm { font-size: .72rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .1em; }
.price-big { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.spots-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--gold-light);
  color: var(--primary-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 9999px;
  margin-top: .6rem;
}
.spots-badge svg { width: .8rem; height: .8rem; }
.price-details { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.5rem; }
.price-row { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; }
.price-row-label { color: var(--gray-400); }
.price-row-val { font-weight: 700; color: var(--gray-900); }
.btn-upit {
  width: 100%;
  height: 3rem;
  background: var(--primary);
  color: #fff;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-bottom: .75rem;
}
.btn-upit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.messenger-btns { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: .75rem; }
.btn-whatsapp, .btn-viber {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  height: 2.75rem; border-radius: 9999px;
  font-family: inherit; font-size: .85rem; font-weight: 700;
  text-decoration: none; transition: opacity .2s, transform .15s;
}
.btn-whatsapp:hover, .btn-viber:hover { opacity: .85; transform: translateY(-1px); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-viber { background: #7360F2; color: #fff; }
.payment-note { font-size: .72rem; color: var(--gray-400); text-align: center; line-height: 1.5; }

/* ─── FORM CARD ── */
.form-card { background: #fff; border-radius: 1.25rem; padding: 1.75rem; box-shadow: 0 2px 16px rgba(0,0,0,.07); }
.form-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 1.25rem; color: var(--gray-900); }
.form-group { margin-bottom: .9rem; }
.form-group label { display: block; font-size: .75rem; font-weight: 700; color: #374151; margin-bottom: .35rem; }
.form-group label span { color: #ef4444; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: .6rem;
  padding: .65rem .9rem;
  font-family: inherit;
  font-size: .83rem;
  color: var(--gray-900);
  outline: none;
  transition: border-color .2s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); }
.form-group textarea { resize: none; min-height: 5rem; }
.btn-submit {
  width: 100%;
  height: 2.9rem;
  background: var(--primary);
  color: #fff;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background .2s;
}
.btn-submit:hover { background: var(--primary-dark); }
.form-note { font-size: .7rem; color: var(--gray-400); text-align: center; margin-top: .6rem; }
.form-success { display: none; text-align: center; padding: 1.5rem .5rem; }
.form-success .check { font-size: 2.5rem; color: var(--primary); margin-bottom: .5rem; }
.form-success strong { display: block; font-size: .95rem; margin-bottom: .3rem; }
.form-success p { font-size: .82rem; color: var(--gray-400); }

/* ─── RELATED ── */
.related-section { padding: 3rem 0 5rem; background: #fff; }
.related-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.related-header h2 { font-size: 1.4rem; font-weight: 800; }
.related-link { font-size: .85rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: .35rem; }
.related-link svg { width: .9rem; height: .9rem; transition: transform .2s; }
.related-link:hover svg { transform: translateX(3px); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

.rel-card { border-radius: 1rem; overflow: hidden; background: #fff; box-shadow: 0 2px 14px rgba(0,0,0,.08); transition: transform .3s, box-shadow .3s; display: block; }
.rel-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.13); }
.rel-img { aspect-ratio: 3/2; background-size: cover; background-position: center; transition: transform .5s; display: block; }
.rel-card:hover .rel-img-wrap .rel-img { transform: scale(1.07); }
.rel-img-wrap { overflow: hidden; }
.rel-body { padding: .9rem 1rem; }
.rel-dest { font-size: .7rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: .25rem; margin-bottom: .35rem; }
.rel-dest svg { width: .75rem; height: .75rem; }
.rel-title { font-size: .9rem; font-weight: 700; color: var(--gray-900); margin-bottom: .5rem; transition: color .2s; }
.rel-card:hover .rel-title { color: var(--primary); }
.rel-meta { display: flex; gap: .75rem; font-size: .75rem; color: var(--gray-400); margin-bottom: .6rem; }
.rel-meta span { display: flex; align-items: center; gap: .25rem; }
.rel-meta svg { width: .78rem; height: .78rem; color: var(--primary); }
.rel-price { font-size: 1rem; font-weight: 800; color: var(--secondary); }
