/* ===== PAGE HERO ===== */
.page-hero {
  background: #1e2a4a;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.page-hero__title { font-size: 2rem; font-weight: 800; margin-bottom: 0.75rem; }
.page-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(232, 160, 32, 0.15);
  color: #f0c060;
  font-size: 0.9rem;
  font-weight: 600;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color .2s; }
.breadcrumb a:hover { color: #e8a020; }
.breadcrumb__sep { font-size: 0.65rem; color: rgba(255,255,255,0.4); }
[dir="ltr"] .breadcrumb__sep { transform: scaleX(-1); }
.breadcrumb span[aria-current] { color: #fff; font-weight: 600; }

/* ===== DETAILS WRAPPER ===== */
.pkg-details { background: #fff; padding-top: 2.5rem; }

/* ===== DOWNLOAD & SECTION ACTIONS ===== */
.pkg-details__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  justify-content: flex-end;
}

.pkg-details__download {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: flex-end;
}

.pkg-sections-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 2px solid #1e2a4a;
  border-radius: 8px;
  background: #1e2a4a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(30, 42, 74, 0.2);
}

.pkg-sections-btn i {
  color: #f0c060;
  font-size: 1rem;
}

.pkg-sections-btn:hover {
  background: #263556;
  border-color: #263556;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(30, 42, 74, 0.28);
}

@media (min-width: 1024px) {
  .pkg-sections-btn {
    display: none;
  }
}
.pkg-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, #e8a020, #d4911c);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(232,160,32,0.3);
}
.pkg-download-btn:hover {
  background: linear-gradient(135deg, #d4911c, #c0820f);
  box-shadow: 0 4px 14px rgba(232,160,32,0.45);
  transform: translateY(-1px);
}
.pkg-download-btn i {
  font-size: 1.1rem;
}

.pkg-details__actions--dock {
  display: none;
}

/* ===== HERO IMAGE ===== */
.pkg-details__hero-img {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  isolation: isolate;
  transform: translateZ(0);
  background: #eef1f6;
}
.pkg-details__hero-img img {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  transition: opacity .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ===== THUMBNAILS ===== */
.pkg-details__thumbs {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}
.pkg-thumb {
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  padding: 0;
  background: none;
  isolation: isolate;
  transform: translateZ(0);
}
.pkg-thumb img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  object-position: center;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pkg-thumb:hover { transform: translateY(-2px); border-color: #e8a020; }
.pkg-thumb--active { border-color: #e8a020; }

/* ===== BODY SECTIONS ===== */
.pkg-details__body {
  width: 100%;
  max-width: 100%;
}

.pkg-section { margin-bottom: 0; }

.pkg-details__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 5.5rem;
}

[id^="pkg-sec-"] {
  scroll-margin-top: 5.5rem;
  scroll-margin-bottom: 7rem;
}

.pkg-section--plain {
  padding: 0.35rem 0 0.5rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.pkg-section--plain .pkg-section__divider {
  margin-bottom: 1.15rem;
}

/* ===== LIST SECTIONS (apps, tips, safety) ===== */
.pkg-list-section {
  margin-bottom: 1.5rem;
}
.pkg-list-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.15rem;
}
.pkg-list-section__head-main {
  flex: 1;
  min-width: 0;
}
.pkg-list-section__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  margin-inline-end: 0.55rem;
  vertical-align: middle;
  background: rgba(232, 160, 32, 0.12);
  color: #e8a020;
  font-size: 0.95rem;
}
.pkg-list-section__count {
  flex-shrink: 0;
  min-width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(30, 42, 74, 0.06);
  color: #1e2a4a;
  font-size: 0.78rem;
  font-weight: 800;
}
.pkg-list-cards {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pkg-list-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.85rem;
  border: 1px solid #e8edf3;
  background: #fff;
  box-shadow: 0 1px 4px rgba(30, 42, 74, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pkg-list-card:hover {
  border-color: rgba(232, 160, 32, 0.35);
  box-shadow: 0 4px 14px rgba(30, 42, 74, 0.06);
}
.pkg-list-card__icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.pkg-list-card--app .pkg-list-card__icon {
  background: rgba(232, 160, 32, 0.12);
  color: #c8860a;
}
.pkg-list-card--tip .pkg-list-card__icon {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}
.pkg-list-card--safety .pkg-list-card__icon {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}
.pkg-list-card__body {
  flex: 1;
  min-width: 0;
}
.pkg-list-card__title-row {
  margin-bottom: 0.2rem;
}
.pkg-list-card__link,
.pkg-list-card__name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e2a4a;
  text-decoration: none;
  line-height: 1.45;
}
.pkg-list-card__link {
  color: #c8860a;
}
.pkg-list-card__link:hover {
  color: #a66a08;
  text-decoration: underline;
}
.pkg-list-card__ext {
  font-size: 0.68rem;
  margin-inline-start: 0.35rem;
  opacity: 0.85;
}
.pkg-list-card__desc,
.pkg-list-card__text {
  margin: 0;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
}
.pkg-list-section--apps .pkg-list-card__desc {
  color: #64748b;
}

.pkg-section__lead {
  font-size: 0.9rem;
  color: #6b7280;
  margin: -0.15rem 0 0.5rem;
  line-height: 1.5;
}

.pkg-section__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e2a4a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.pkg-section__icon { font-size: 1.1rem; }
.pkg-section__icon--gold { color: #e8a020; }

.pkg-section__divider {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 1.25rem;
}
.pkg-section__divider span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
}
.pkg-section__divider span.active {
  width: 26px; border-radius: 4px;
  background: #e8a020;
}

.pkg-section__text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.85;
}
.pkg-section__text h1,
.pkg-section__text h2,
.pkg-section__text h3,
.pkg-section__text h4 {
  color: #1a2a44;
  margin: 1rem 0 0.5rem;
  font-weight: 700;
}
.pkg-section__text p {
  margin-bottom: 0.75rem;
}
.pkg-section__text ul,
.pkg-section__text ol {
  padding-inline-start: 1.5rem;
  margin-bottom: 0.75rem;
}
.pkg-section__text li {
  margin-bottom: 0.35rem;
}
.pkg-section__text a {
  color: #e8a020;
  text-decoration: underline;
}

/* ===== EXECUTIVE SUMMARY ===== */
.pkg-section--executive {
  background:
    radial-gradient(ellipse 120% 70% at 100% 0%, rgba(232, 160, 32, 0.07) 0%, transparent 58%),
    radial-gradient(ellipse 90% 60% at 0% 100%, rgba(30, 42, 74, 0.05) 0%, transparent 52%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: none;
  border-radius: 20px;
  padding: 1.65rem 1.45rem 1.45rem;
  box-shadow: 0 18px 48px rgba(30, 42, 74, 0.07);
  position: relative;
  overflow: hidden;
}

.pkg-section--executive::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e8a020 20%, #f0c060 50%, #e8a020 80%, transparent);
  opacity: 0.75;
}

.pkg-exec__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.pkg-exec__header-main {
  flex: 1;
  min-width: 0;
}

.pkg-exec__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(30, 42, 74, 0.06);
  color: #1e2a4a;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}

.pkg-exec__badge i {
  color: #e8a020;
  font-size: 0.74rem;
}

.pkg-section--executive .pkg-section__title {
  margin-bottom: 0.15rem;
}

.pkg-section--executive .pkg-section__divider {
  margin-top: 0.35rem;
  margin-bottom: 1.35rem;
}

.pkg-exec__lead {
  margin-top: 0;
  margin-bottom: 1.35rem;
  max-width: 40rem;
}

.pkg-exec__intro {
  margin-bottom: 1.85rem;
  margin-top: 0.15rem;
  padding: 0.15rem 0 0.15rem 0;
  padding-inline-start: 1rem;
  border-inline-start: 3px solid #e8a020;
  background: transparent;
  color: #374151;
  font-size: 0.96rem;
  line-height: 1.9;
}

.pkg-exec__intro p:last-child {
  margin-bottom: 0;
}

.pkg-exec__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  align-items: stretch;
  width: 100%;
}

@media (min-width: 768px) {
  .pkg-exec__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pkg-exec__grid:has(.pkg-exec-block:only-child) {
    grid-template-columns: 1fr;
  }

  .pkg-exec-block--trip_route,
  .pkg-exec__grid:has(.pkg-exec-block:only-child) .pkg-exec-block {
    grid-column: 1 / -1;
  }
}

.pkg-exec-block {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: none;
  border-radius: 16px;
  padding: 1.2rem 1.15rem 1.15rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 1px 2px rgba(30, 42, 74, 0.03),
    0 10px 28px rgba(30, 42, 74, 0.06);
}

.pkg-exec-block::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 1.1rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #e8a020, #f0c060);
  opacity: 0.85;
}

.pkg-exec-block:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 4px rgba(30, 42, 74, 0.04),
    0 16px 36px rgba(30, 42, 74, 0.1);
}

.pkg-exec-block__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0;
  border-bottom: none;
}

.pkg-exec-block__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, #fdf6e8 0%, #f9edd5 100%);
  color: #c8860a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(232, 160, 32, 0.16);
}

.pkg-exec-block__icon i {
  font-size: 0.95rem;
}

.pkg-exec-block__title {
  font-size: 1rem;
  font-weight: 800;
  color: #1e2a4a;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
}

.pkg-exec-block__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-exec-block__rich {
  font-size: 0.88rem;
  color: #5b6472;
  line-height: 1.85;
}

.pkg-exec-block__rich p:last-child {
  margin-bottom: 0;
}

.pkg-exec-block__lines {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pkg-exec-block__line {
  margin: 0;
  font-size: 0.875rem;
  color: #5b6472;
  line-height: 1.7;
  padding: 0;
  border-bottom: none;
}

.pkg-exec-block__line--single {
  padding: 0;
}

/* Destinations — soft pill rows */
.pkg-exec-block--destinations {
  background: linear-gradient(155deg, rgba(239, 246, 255, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.pkg-exec-block--destinations::before {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.pkg-exec-block--destinations .pkg-exec-block__lines {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pkg-exec-block--destinations .pkg-exec-block__line {
  font-weight: 700;
  color: #1e2a4a;
  padding: 0.48rem 0.82rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.82);
  border: none;
  border-radius: 999px;
  line-height: 1.45;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.pkg-exec-block--destinations .pkg-exec-block__icon {
  background: linear-gradient(145deg, #eef6ff 0%, #dcecff 100%);
  color: #2563eb;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.14);
}

/* Trip style — lead band + dot list */
.pkg-exec-block--trip_style {
  background: linear-gradient(155deg, rgba(255, 251, 240, 0.96) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.pkg-exec-block--trip_style .pkg-exec-block__lines {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
}

@media (min-width: 640px) {
  .pkg-exec-block--trip_style .pkg-exec-block__lines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
  }

  .pkg-exec-block--trip_style .pkg-exec-block__line--lead,
  .pkg-exec-block--trip_style .pkg-exec-block__line:first-child {
    grid-column: 1 / -1;
  }
}

.pkg-exec-block--trip_style .pkg-exec-block__line--lead,
.pkg-exec-block--trip_style .pkg-exec-block__line:first-child {
  font-weight: 700;
  color: #1e2a4a;
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.15rem;
  background: rgba(232, 160, 32, 0.08);
  border-radius: 12px;
  border-bottom: none;
}

.pkg-exec-block--trip_style .pkg-exec-block__line:not(:first-child) {
  position: relative;
  padding-inline-start: 1rem;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}

.pkg-exec-block--trip_style .pkg-exec-block__line:not(:first-child)::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0.72rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e8a020;
}

/* Trip route — flow legs */
.pkg-exec-route-arrow {
  color: #e8a020;
  font-weight: 800;
  padding: 0 0.35rem;
}

.pkg-exec-block--trip_route {
  background: linear-gradient(155deg, rgba(240, 253, 244, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.pkg-exec-block--trip_route::before {
  background: linear-gradient(90deg, #15803d, #4ade80);
}

.pkg-exec-block--trip_route .pkg-exec-block__lines {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

@media (min-width: 768px) {
  .pkg-exec-block--trip_route .pkg-exec-block__lines {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .pkg-exec-block--trip_route .pkg-exec-block__line {
    flex: 1 1 calc(33.333% - 0.35rem);
    min-width: 180px;
  }
}

.pkg-exec-block--trip_route .pkg-exec-block__line {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e2a4a;
  padding: 0.62rem 0.85rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.78);
  border: none;
  border-radius: 12px;
  line-height: 1.55;
  box-shadow: 0 2px 10px rgba(21, 128, 61, 0.07);
}

.pkg-exec-block--trip_route .pkg-exec-block__line--single {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.pkg-exec-block--trip_route .pkg-exec-block__icon {
  background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
  color: #15803d;
  box-shadow: 0 6px 16px rgba(21, 128, 61, 0.12);
}

@media (max-width: 767px) {
  .pkg-exec-block--destinations .pkg-exec-block__lines {
    flex-direction: column;
  }

  .pkg-exec-block--trip_route .pkg-exec-block__lines {
    flex-direction: column;
  }
}

/* ===== TRIP DESCRIPTION (وصف الرحلة يوم بيوم) ===== */
.pkg-section--trip-desc {
  background:
    radial-gradient(ellipse 100% 70% at 0% 0%, rgba(30, 42, 74, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(232, 160, 32, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: none;
  border-radius: 20px;
  padding: 1.65rem 1.45rem 1.35rem;
  box-shadow: 0 18px 48px rgba(30, 42, 74, 0.07);
  position: relative;
  overflow: hidden;
}

.pkg-section--trip-desc::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1e2a4a 25%, #3d4f73 50%, #1e2a4a 75%, transparent);
  opacity: 0.7;
}

.pkg-trip-desc__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.pkg-trip-desc__header-main {
  flex: 1;
  min-width: 0;
}

.pkg-trip-desc__lead {
  margin-top: 0.15rem;
  margin-bottom: 0;
  max-width: 42rem;
}

.pkg-trip-desc__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(30, 42, 74, 0.06);
  color: #1e2a4a;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}

.pkg-trip-desc__badge i {
  color: #e8a020;
  font-size: 0.74rem;
}

.pkg-section--trip-desc .pkg-section__divider {
  margin-bottom: 1rem;
}

.pkg-trip-days {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 0.25rem;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.pkg-trip-day {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 1px 2px rgba(30, 42, 74, 0.03),
    0 10px 28px rgba(30, 42, 74, 0.06);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pkg-trip-day:hover {
  transform: translateY(-1px);
  box-shadow:
    0 2px 4px rgba(30, 42, 74, 0.04),
    0 14px 34px rgba(30, 42, 74, 0.09);
}

.pkg-trip-day:last-child {
  border-bottom: none;
}

.pkg-trip-day::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: background 0.25s ease;
}

.pkg-trip-day[open]::before {
  background: linear-gradient(180deg, #e8a020 0%, #f0c060 100%);
}

.pkg-trip-day[open] {
  background: linear-gradient(180deg, rgba(255, 251, 240, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.pkg-trip-day__trigger {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.15rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.pkg-trip-day__trigger::-webkit-details-marker {
  display: none;
}

.pkg-trip-day__trigger::marker {
  content: '';
}

.pkg-trip-day__trigger:hover {
  background: rgba(248, 250, 252, 0.65);
}

.pkg-trip-day__trigger:hover .pkg-trip-day__title {
  color: #c8860a;
}

.pkg-trip-day__num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(232, 160, 32, 0.12);
  border: none;
  color: #c8860a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: none;
}

.pkg-trip-day[open] .pkg-trip-day__num {
  background: linear-gradient(135deg, #e8a020 0%, #f0c060 100%);
  color: #1e2a4a;
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(232, 160, 32, 0.22);
}

.pkg-trip-day__meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pkg-trip-day__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #c8860a;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.pkg-trip-day__title {
  display: block;
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  color: #1e2a4a;
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.pkg-trip-day__preview {
  display: block;
  font-size: 0.82rem;
  color: #8b939f;
  line-height: 1.55;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pkg-trip-day[open] .pkg-trip-day__preview {
  display: none;
}

.pkg-trip-day__chevron {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(30, 42, 74, 0.05);
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.pkg-trip-day[open] .pkg-trip-day__chevron {
  transform: rotate(180deg);
  background: rgba(232, 160, 32, 0.15);
  color: #c8860a;
}

.pkg-trip-day__panel {
  padding: 0 1.15rem 1.25rem;
  animation: pkgTripDayReveal 0.28s ease;
}

@keyframes pkgTripDayReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pkg-trip-day__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding-top: 0.15rem;
  padding-inline-start: calc(40px + 0.85rem);
}

.pkg-trip-day__section {
  background: rgba(255, 255, 255, 0.72);
  border: none;
  border-radius: 14px;
  padding: 0.9rem 0.95rem;
  min-height: 100%;
  box-shadow: 0 4px 16px rgba(30, 42, 74, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pkg-trip-day__section:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(30, 42, 74, 0.07);
}

.pkg-trip-day__section--wide {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.85);
}

.pkg-trip-day__section-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  padding-bottom: 0;
  border-bottom: none;
}

.pkg-trip-day__section-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #fdf6e8;
  color: #c8860a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  flex-shrink: 0;
}

.pkg-trip-day__section--effort_level_id .pkg-trip-day__section-icon {
  background: #fef3c7;
  color: #b45309;
}

.pkg-trip-day__section--why_this_day .pkg-trip-day__section-icon {
  background: #eef6ff;
  color: #2563eb;
}

.pkg-trip-day__section--logistics_notes .pkg-trip-day__section-icon {
  background: #f0fdf4;
  color: #15803d;
}

.pkg-trip-day__section--apps .pkg-trip-day__section-icon,
.pkg-trip-day__section--restaurants .pkg-trip-day__section-icon {
  background: #faf5ff;
  color: #7c3aed;
}

.pkg-trip-day__section--alternative_plan .pkg-trip-day__section-icon {
  background: #fff7ed;
  color: #ea580c;
}

.pkg-trip-day__section-title {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 800;
  color: #1e2a4a;
  line-height: 1.35;
}

.pkg-trip-day__text {
  margin: 0;
  font-size: 0.86rem;
  color: #5b6472;
  line-height: 1.8;
}

.pkg-trip-day__effort {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.pkg-trip-day__effort--compact {
  padding: 0.28rem 0.65rem;
  font-size: 0.72rem;
  flex-shrink: 0;
  display: none;
}

@media (min-width: 640px) {
  .pkg-trip-day__effort--compact {
    display: inline-flex;
  }
}

.pkg-trip-day__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pkg-trip-day__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(30, 42, 74, 0.04);
  border: none;
  font-size: 0.78rem;
  color: #374151;
  line-height: 1.4;
}

.pkg-trip-day__list {
  margin: 0.35rem 0 0;
  padding: 0 1.15rem 0 0;
  list-style: disc;
}

.pkg-trip-day__list-item {
  font-size: 0.84rem;
  color: #374151;
  line-height: 1.65;
  margin-bottom: 0.25rem;
}

.pkg-trip-day__section--alternative_plan .pkg-trip-day__text {
  margin-bottom: 0.35rem;
}

@media (max-width: 767px) {
  .pkg-section--trip-desc {
    padding: 1.35rem 1.1rem 1.15rem;
    border-radius: 14px;
  }

  .pkg-trip-desc__header {
    flex-direction: column;
    align-items: stretch;
  }

  .pkg-trip-desc__badge {
    align-self: flex-start;
  }

  .pkg-trip-day__trigger {
    padding: 0.95rem 0.85rem;
    gap: 0.7rem;
  }

  .pkg-trip-day__grid {
    grid-template-columns: 1fr;
    padding-inline-start: 0;
  }

  .pkg-trip-day__panel {
    padding-inline: 0.85rem;
  }

  .pkg-trip-day__preview {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

/* ===== HOTELS & RESORTS ===== */
.pkg-section--hotels {
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(232, 160, 32, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: none;
  border-radius: 20px;
  padding: 1.65rem 1.45rem 1.35rem;
  box-shadow: 0 18px 48px rgba(30, 42, 74, 0.07);
  position: relative;
  overflow: hidden;
}

.pkg-section--hotels::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e8a020 25%, #f0c060 50%, #e8a020 75%, transparent);
  opacity: 0.75;
}

.pkg-hotels__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pkg-hotels__header-main {
  flex: 1;
  min-width: 0;
}

.pkg-section--hotels .pkg-section__divider {
  margin: 0.65rem 0 0.85rem;
}

.pkg-hotels__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0 1.1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 249, 235, 0.85);
  border: none;
  color: #6b5a2e;
  font-size: 0.82rem;
  line-height: 1.65;
  border-inline-start: 3px solid #e8a020;
}

.pkg-hotels__disclaimer i {
  color: #e8a020;
  margin-top: 0.12rem;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.pkg-hotels__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(30, 42, 74, 0.06);
  border: none;
  color: #1e2a4a;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.pkg-hotels__badge i {
  color: #2563eb;
  font-size: 0.74rem;
}

.pkg-hotels {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pkg-hotel-city-block {
  border: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(30, 42, 74, 0.03),
    0 10px 28px rgba(30, 42, 74, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pkg-hotel-city-block:hover {
  transform: translateY(-1px);
}

.pkg-hotel-city-block[open] {
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 2px 4px rgba(30, 42, 74, 0.04),
    0 14px 34px rgba(30, 42, 74, 0.09);
}

.pkg-hotel-city {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.pkg-hotel-city::-webkit-details-marker {
  display: none;
}

.pkg-hotel-city__chevron {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(232, 160, 32, 0.12);
  color: #c8860a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.pkg-hotel-city-block[open] .pkg-hotel-city__chevron {
  transform: rotate(180deg);
}

.pkg-hotel-city__title {
  flex: 1;
  font-size: 1rem;
  font-weight: 800;
  color: #1e2a4a;
  line-height: 1.35;
}

.pkg-hotel-city__count {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  background: rgba(30, 42, 74, 0.05);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.pkg-hotel-city__body {
  padding: 0 0.85rem 0.85rem;
}

.pkg-hotel-tier + .pkg-hotel-tier {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: none;
  background: linear-gradient(90deg, transparent, rgba(30, 42, 74, 0.06), transparent);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: top;
}

.pkg-hotel-tier__head {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(232, 160, 32, 0.1);
  border: none;
}

.pkg-hotel-tier--luxury .pkg-hotel-tier__head {
  background: rgba(232, 160, 32, 0.16);
}

.pkg-hotel-tier__stars {
  display: inline-flex;
  gap: 0.06rem;
  color: #e8a020;
  font-size: 0.58rem;
}

.pkg-hotel-tier__label {
  font-size: 0.78rem;
  font-weight: 800;
  color: #1e2a4a;
}

.pkg-hotel-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: none;
  box-shadow: 0 6px 20px rgba(30, 42, 74, 0.06);
  -webkit-overflow-scrolling: touch;
}

.pkg-hotel-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  table-layout: fixed;
}

.pkg-hotel-table thead th {
  padding: 0.55rem 0.65rem;
  text-align: start;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, #243456 0%, #1e2a4a 100%);
  border-bottom: 2px solid #e8a020;
  white-space: nowrap;
}

.pkg-hotel-table__th--name,
.pkg-hotel-table__td--name {
  width: 24%;
}

.pkg-hotel-table__th--style,
.pkg-hotel-table__td--style {
  width: 17%;
}

.pkg-hotel-table__th--area,
.pkg-hotel-table__td--area {
  width: 19%;
}

.pkg-hotel-table__th--reason,
.pkg-hotel-table__td--reason {
  width: 40%;
}

.pkg-hotel-table tbody td {
  padding: 0.55rem 0.65rem;
  font-size: 0.78rem;
  color: #374151;
  line-height: 1.55;
  vertical-align: top;
  border-bottom: none;
  background: #fff;
  text-align: start;
}

.pkg-hotel-table tbody tr:nth-child(even) td {
  background: rgba(248, 250, 252, 0.85);
}

.pkg-hotel-table__td--name,
.pkg-hotel-table__th--name {
  text-align: start;
}

.pkg-hotel-table__latin {
  display: inline-block;
  max-width: 100%;
  unicode-bidi: isolate;
  text-align: start;
}

.pkg-hotel-table__td--name {
  font-weight: 700;
  color: #1e2a4a;
}

.pkg-hotel-table__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #2563eb;
  text-decoration: none;
  direction: ltr;
  unicode-bidi: isolate;
}

.pkg-hotel-table__link-text {
  text-align: left;
}

.pkg-hotel-table tbody tr:last-child td {
  border-bottom: none;
}

.pkg-hotel-table tbody tr:hover td {
  background: #f8fafc;
}

.pkg-hotel-table__link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.pkg-hotel-table__link i {
  font-size: 0.62rem;
  opacity: 0.75;
}

.pkg-hotel-table__name-text {
  color: #1e2a4a;
}

@media (max-width: 767px) {
  .pkg-section--hotels {
    padding: 1.1rem 0.9rem 0.95rem;
    border-radius: 12px;
  }

  .pkg-hotels__header {
    flex-direction: column;
    align-items: stretch;
  }

  .pkg-hotels__badge {
    align-self: flex-start;
  }

  .pkg-hotel-city__body {
    padding: 0 0.55rem 0.55rem;
  }

  .pkg-hotel-table {
    min-width: 520px;
  }

  .pkg-hotel-table tbody td,
  .pkg-hotel-table thead th {
    padding: 0.45rem 0.5rem;
    font-size: 0.72rem;
  }
}

/* ===== ACTIVITIES LIST ===== */
.pkg-activities {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pkg-activity {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.6;
}
.pkg-activity--sub { padding-inline-start: 1.5rem; }

.pkg-activity__icon {
  color: #aaa;
  font-size: 0.85rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.pkg-activity__icon--gold { color: #e8a020; }

.pkg-smart-app__body {
  display: inline;
  line-height: 1.65;
}
.pkg-smart-app__name {
  font-weight: 700;
  color: #1a2a44;
  text-decoration: none;
}
a.pkg-smart-app__name {
  color: #c8860a;
}
a.pkg-smart-app__name:hover {
  color: #a66a08;
  text-decoration: underline;
}
.pkg-smart-app__link-icon {
  font-size: 0.72rem;
  margin-inline-start: 0.35rem;
  opacity: 0.85;
}
.pkg-smart-app__sep {
  color: #94a3b8;
}
.pkg-smart-app__desc {
  color: #555;
}

/* ===== SAFETY LIST ===== */
.pkg-safety {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pkg-safety li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.7;
}
.pkg-safety__bullet {
  color: #e8a020;
  font-size: 0.6rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.pkg-safety li strong {
  color: #1e2a4a;
  font-weight: 700;
  margin-inline-end: 0.3rem;
}

/* ===== ITINERARY TIMELINE ===== */
.pkg-section--itinerary .pkg-section__divider {
  margin-bottom: 1.75rem;
}

.pkg-itinerary {
  --itinerary-line: #e5e7eb;
  --itinerary-gold: #e8a020;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.5rem;
  padding-inline-start: 0.25rem;
}

.pkg-itinerary__day {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 0 1.25rem;
  align-items: stretch;
  position: relative;
  padding-bottom: 1.5rem;
}

.pkg-itinerary__day:last-child {
  padding-bottom: 0;
}

.pkg-itinerary__day:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 3.25rem;
  bottom: 0;
  inset-inline-start: 1.6rem;
  width: 2px;
  background: linear-gradient(180deg, var(--itinerary-gold) 0%, var(--itinerary-line) 85%);
  border-radius: 2px;
  z-index: 0;
}

.pkg-itinerary__marker {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-top: 0.35rem;
}

.pkg-itinerary__marker-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e2a4a 0%, #2d3f66 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow:
    0 4px 14px rgba(30, 42, 74, 0.22),
    0 0 0 4px #fff,
    0 0 0 5px rgba(232, 160, 32, 0.35);
}

.pkg-itinerary__day:first-child .pkg-itinerary__marker-num {
  background: linear-gradient(145deg, #e8a020 0%, #d4911c 100%);
  color: #1e2a4a;
  box-shadow:
    0 4px 16px rgba(232, 160, 32, 0.4),
    0 0 0 4px #fff;
}

.pkg-itinerary__card {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 16px;
  padding: 1.25rem 1.35rem 1.3rem;
  box-shadow:
    0 1px 3px rgba(30, 42, 74, 0.04),
    0 8px 24px rgba(30, 42, 74, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  border-inline-start: 3px solid transparent;
}

.pkg-itinerary__day:hover .pkg-itinerary__card {
  border-color: rgba(232, 160, 32, 0.35);
  border-inline-start-color: var(--itinerary-gold);
  box-shadow:
    0 4px 12px rgba(30, 42, 74, 0.08),
    0 12px 32px rgba(232, 160, 32, 0.1);
  transform: translateY(-2px);
}

.pkg-itinerary__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.85rem;
  margin-bottom: 0.85rem;
}

.pkg-itinerary__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(232, 160, 32, 0.12);
  color: #b87a10;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(232, 160, 32, 0.25);
  white-space: nowrap;
}

.pkg-itinerary__title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #1e2a4a;
  margin: 0;
  line-height: 1.45;
  flex: 1 1 12rem;
}

.pkg-itinerary__items {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pkg-itinerary__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.65;
  padding: 0.55rem 0.65rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #f1f5f9;
}

.pkg-itinerary__bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8a020, #d4911c);
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.2);
}

.pkg-itinerary__text {
  flex: 1;
}

/* Footer contact-list, contact-icon, tagline — now in css/components/footer.css */

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
  .pkg-details {
    padding-top: 2rem;
  }

  .pkg-thumb img {
    width: 120px;
    height: 80px;
  }

  .pkg-section {
    margin-bottom: 2rem;
  }

  .pkg-section__title {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .page-hero {
    padding: 2rem 0;
  }

  .page-hero__title {
    font-size: 1.35rem;
    line-height: 1.4;
    padding-inline: 0.5rem;
  }

  .breadcrumb {
    font-size: 0.78rem;
    gap: 0.35rem;
  }

  .pkg-details {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
  }

  .pkg-details .container {
    padding-inline: 1rem;
  }

  .pkg-details__hero-img {
    border-radius: 10px;
    margin-bottom: 0.75rem;
  }

  .pkg-details__hero-img img {
    max-height: none;
  }

  .pkg-details__thumbs {
    gap: 0.5rem;
    margin-bottom: 1.75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
  }

  .pkg-thumb {
    scroll-snap-align: start;
  }

  .pkg-thumb img {
    width: 100px;
    height: 68px;
  }

  .pkg-details__download {
    justify-content: stretch;
    margin-bottom: 1.25rem;
  }

  .pkg-details__actions {
    margin-bottom: 1.25rem;
  }

  .pkg-details__actions:not(.pkg-details__actions--dock) .pkg-download-btn {
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .pkg-details__actions:not(.pkg-details__actions--dock) .pkg-sections-btn {
    display: inline-flex;
    flex: 1 1 0;
    min-width: 0;
    min-height: 44px;
  }

  .pkg-details__actions:not(.pkg-details__actions--dock):has(.pkg-download-btn) .pkg-download-btn {
    flex: 1 1 0;
  }

  .pkg-section {
    margin-bottom: 1.75rem;
  }

  .pkg-section__title {
    font-size: 1.1rem;
    gap: 0.4rem;
  }

  .pkg-section__divider {
    margin-bottom: 1.1rem;
  }

  .pkg-section--itinerary .pkg-section__divider {
    margin-bottom: 1.35rem;
  }

  .pkg-section__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }

  .pkg-section--executive {
    padding: 1.35rem 1rem 1.2rem;
    border-radius: 16px;
  }

  .pkg-exec__header {
    flex-direction: column;
    align-items: stretch;
  }

  .pkg-exec__badge {
    align-self: flex-start;
  }

  .pkg-exec__intro {
    padding-inline-start: 0.85rem;
    font-size: 0.9rem;
  }

  .pkg-exec__grid {
    gap: 0.85rem;
  }

  .pkg-exec-block {
    padding: 1.05rem 0.95rem 1rem;
  }

  .pkg-exec-block__head {
    margin-bottom: 0.8rem;
  }

  .pkg-exec-block__icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .pkg-exec-block__title {
    font-size: 0.96rem;
  }

  .pkg-exec-block__line {
    font-size: 0.84rem;
  }

  .pkg-activities,
  .pkg-safety {
    gap: 0.75rem;
  }

  .pkg-activity,
  .pkg-safety li {
    font-size: 0.85rem;
    padding: 0.65rem 0.75rem;
    background: rgba(30, 42, 74, 0.03);
    border-radius: 12px;
    border: none;
  }

  .pkg-activity {
    align-items: flex-start;
  }

  .pkg-section__lead {
    font-size: 0.85rem;
  }

  .pkg-itinerary {
    padding-inline-start: 0;
  }

  .pkg-itinerary__day {
    grid-template-columns: 2.75rem 1fr;
    gap: 0 0.85rem;
    padding-bottom: 1.25rem;
  }

  .pkg-itinerary__day:not(:last-child)::after {
    inset-inline-start: 1.35rem;
    top: 2.85rem;
  }

  .pkg-itinerary__marker-num {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 0.9rem;
  }

  .pkg-itinerary__card {
    padding: 1rem 1rem 1.05rem;
    border-radius: 14px;
  }

  .pkg-itinerary__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.7rem;
  }

  .pkg-itinerary__title {
    font-size: 1rem;
  }

  .pkg-itinerary__item {
    font-size: 0.85rem;
    padding: 0.5rem 0.55rem;
  }

  .pkg-itinerary__day:hover .pkg-itinerary__card {
    transform: none;
  }
}

@media (max-width: 380px) {
  .pkg-itinerary__badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.7rem;
  }
}

/* ===== IN-PAGE SECTION NAV ===== */
.pkg-section-nav-root {
  position: fixed;
  inset-inline: 0;
  bottom: 1.15rem;
  z-index: 850;
  display: flex;
  justify-content: center;
  padding: 0 0.75rem;
  pointer-events: none;
}

.pkg-section-nav {
  width: auto;
  max-width: calc(100vw - 1.5rem);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pkg-section-nav-root.is-visible .pkg-section-nav {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pkg-section-nav__bar {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 0.4rem 0.55rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  box-shadow:
    0 4px 6px rgba(30, 42, 74, 0.04),
    0 18px 40px rgba(30, 42, 74, 0.14);
  overflow-x: auto;
  scrollbar-width: none;
}

.pkg-section-nav__bar::-webkit-scrollbar {
  display: none;
}

.pkg-section-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pkg-section-nav__link i {
  font-size: 0.72rem;
  opacity: 0.85;
}

.pkg-section-nav__link:hover {
  color: #1e2a4a;
  background: rgba(30, 42, 74, 0.05);
}

.pkg-section-nav__link.is-active {
  background: #1e2a4a;
  color: #fff;
}

.pkg-section-nav__link.is-active i {
  color: #f0c060;
  opacity: 1;
}

.pkg-section-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 900;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: auto;
}

.pkg-section-nav__backdrop:not([hidden]) {
  opacity: 1;
}

.pkg-section-nav__drawer {
  position: fixed;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: min(20rem, 88vw);
  background: #fff;
  z-index: 910;
  transform: translateX(-108%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 8px 0 32px rgba(30, 42, 74, 0.16);
  display: flex;
  flex-direction: column;
  pointer-events: auto;
}

[dir="rtl"] .pkg-section-nav__drawer {
  transform: translateX(108%);
  box-shadow: -8px 0 32px rgba(30, 42, 74, 0.16);
}

.pkg-section-nav__drawer.is-open {
  transform: translateX(0);
}

.pkg-section-nav__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.85rem;
  border-bottom: none;
  background: linear-gradient(180deg, rgba(30, 42, 74, 0.04) 0%, transparent 100%);
}

.pkg-section-nav__drawer-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #1e2a4a;
}

.pkg-section-nav__drawer-close {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 10px;
  background: rgba(30, 42, 74, 0.06);
  color: #64748b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pkg-section-nav__drawer-list {
  list-style: none;
  margin: 0;
  padding: 0.65rem 0.75rem 1.25rem;
  overflow-y: auto;
}

.pkg-section-nav__drawer-list li + li {
  margin-top: 0.35rem;
}

.pkg-section-nav__drawer-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.8rem;
  border-radius: 12px;
  text-decoration: none;
  color: #374151;
  font-size: 0.86rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.pkg-section-nav__drawer-link:hover {
  background: rgba(30, 42, 74, 0.05);
  color: #1e2a4a;
}

.pkg-section-nav__drawer-link.is-active {
  background: rgba(232, 160, 32, 0.12);
  color: #1e2a4a;
}

.pkg-section-nav__drawer-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(30, 42, 74, 0.06);
  color: #e8a020;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.82rem;
}

.pkg-section-nav__drawer-link.is-active .pkg-section-nav__drawer-icon {
  background: #1e2a4a;
  color: #f0c060;
}

body.pkg-nav-drawer-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .pkg-section-nav-root {
    justify-content: center;
  }

  .pkg-section-nav__bar {
    display: inline-flex;
    justify-content: center;
  }

  .pkg-section-nav__backdrop,
  .pkg-section-nav__drawer {
    display: none;
  }
}

@media (max-width: 1023px) {
  .pkg-details__actions:not(.pkg-details__actions--dock) {
    display: flex;
    margin-bottom: 1.25rem;
  }

  .pkg-details__actions:not(.pkg-details__actions--dock) .pkg-sections-btn {
    display: inline-flex;
    flex: 1 1 0;
    min-width: 0;
  }

  .pkg-details__actions:not(.pkg-details__actions--dock):has(.pkg-download-btn) .pkg-download-btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .pkg-details__actions--dock {
    display: flex;
    position: fixed;
    inset-inline-end: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 840;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    margin: 0;
    padding: 0.35rem;
    padding-inline-end: 0;
    width: auto;
    pointer-events: none;
  }

  .pkg-details__actions--dock > * {
    pointer-events: auto;
  }

  .pkg-details__actions--dock .pkg-sections-btn {
    display: inline-flex;
    flex: none;
    width: 3.15rem;
    height: 3.15rem;
    min-height: 3.15rem;
    padding: 0;
    justify-content: center;
    border-inline-end: none;
    border-start-start-radius: 999px;
    border-end-start-radius: 999px;
    border-start-end-radius: 0;
    border-end-end-radius: 0;
    box-shadow:
      -4px 2px 12px rgba(30, 42, 74, 0.18),
      0 2px 8px rgba(30, 42, 74, 0.12);
  }

  .pkg-details__actions--dock .pkg-sections-btn span {
    display: none;
  }

  .pkg-details__actions--dock .pkg-download-btn {
    flex: none;
    width: 3.15rem;
    height: 3.15rem;
    min-height: 3.15rem;
    padding: 0;
    justify-content: center;
    border-start-start-radius: 999px;
    border-end-start-radius: 999px;
    border-start-end-radius: 0;
    border-end-end-radius: 0;
    box-shadow:
      -4px 2px 12px rgba(232, 160, 32, 0.28),
      0 2px 8px rgba(232, 160, 32, 0.18);
  }

  .pkg-details__actions--dock .pkg-download-btn__label {
    display: none;
  }

  .pkg-details__actions--dock .pkg-download-btn i {
    margin: 0;
    font-size: 1.15rem;
  }

  .pkg-details__body {
    padding-bottom: 2rem;
  }

  [id^="pkg-sec-"] {
    scroll-margin-top: 1rem;
    scroll-margin-bottom: 1.5rem;
  }

  .pkg-section-nav-root {
    position: static;
    padding: 0;
    pointer-events: none;
  }

  .pkg-section-nav {
    display: none;
  }
}

/* ===== ACTIVITIES ===== */
.pkg-section--activities {
  background:
    radial-gradient(ellipse 90% 70% at 0% 0%, rgba(21, 128, 61, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(232, 160, 32, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: none;
  border-radius: 20px;
  padding: 1.65rem 1.45rem 1.35rem;
  box-shadow: 0 18px 48px rgba(30, 42, 74, 0.07);
  position: relative;
  overflow: hidden;
}

.pkg-section--activities::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #15803d 25%, #e8a020 50%, #15803d 75%, transparent);
  opacity: 0.75;
}

.pkg-act__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.pkg-act__header-main {
  flex: 1;
  min-width: 0;
}

.pkg-act__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(30, 42, 74, 0.06);
  color: #1e2a4a;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.pkg-act__badge i {
  color: #15803d;
  font-size: 0.74rem;
}

.pkg-act__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

@media (min-width: 768px) {
  .pkg-act-block--top_experiences,
  .pkg-act-block--custom,
  .pkg-act-block--shopping,
  .pkg-act-block--city {
    grid-column: 1 / -1;
  }

  .pkg-act-list--numbered {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 1.25rem;
  }
}

.pkg-act-block {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 16px;
  padding: 1.15rem 1.1rem;
  box-shadow: 0 10px 28px rgba(30, 42, 74, 0.06);
  position: relative;
  overflow: hidden;
}

.pkg-act-block::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 1rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #15803d, #e8a020);
  opacity: 0.85;
}

.pkg-act-block--shopping::before {
  background: linear-gradient(90deg, #e8a020, #f0c060);
}

.pkg-act-block--city::before {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.pkg-act-block__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.pkg-act-block__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(21, 128, 61, 0.1);
  color: #15803d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.pkg-act-block--shopping .pkg-act-block__icon {
  background: rgba(232, 160, 32, 0.12);
  color: #c8860a;
}

.pkg-act-block--city .pkg-act-block__icon {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.pkg-act-block__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #1e2a4a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pkg-act-block__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: rgba(232, 160, 32, 0.15);
  color: #c8860a;
  font-size: 0.72rem;
  font-weight: 800;
}

.pkg-act-list--numbered .pkg-act-list__item {
  align-items: flex-start;
  gap: 0.65rem;
}

.pkg-act-list__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.pkg-act-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.pkg-act-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: #374151;
  line-height: 1.65;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  background: rgba(30, 42, 74, 0.03);
}

.pkg-act-list__icon {
  color: #e8a020;
  font-size: 0.72rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.pkg-act-list__icon--star {
  color: #f59e0b;
}

.pkg-act-shopping {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pkg-act-shopping__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.45rem;
  font-size: 0.86rem;
  line-height: 1.75;
  color: #374151;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  background: rgba(255, 251, 240, 0.85);
}

.pkg-act-shopping__flag {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.pkg-act-shopping__city {
  color: #1e2a4a;
  font-weight: 800;
  margin-inline-end: 0.25rem;
}

.pkg-act-shopping__paren {
  color: #64748b;
}

.pkg-act-shopping__sep {
  color: #cbd5e1;
  padding: 0 0.25rem;
}

.pkg-act-shopping__link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.pkg-act-shopping__link:hover {
  text-decoration: underline;
}

.pkg-act-shopping__latin {
  unicode-bidi: isolate;
}

.pkg-act-cities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .pkg-act-cities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pkg-act-cities {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pkg-act-city {
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(239, 246, 255, 0.7);
}

.pkg-act-city__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
}

.pkg-act-city__name {
  font-size: 0.92rem;
  font-weight: 800;
  color: #1e2a4a;
}

.pkg-act-city__name--link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #2563eb;
  text-decoration: none;
  font-weight: 800;
}

.pkg-act-city__name--link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.pkg-act-city__name--link i {
  font-size: 0.62rem;
  opacity: 0.8;
  flex-shrink: 0;
}

.pkg-act-city__location {
  font-size: 0.78rem;
  color: #64748b;
}

.pkg-act-city__desc {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  color: #5b6472;
  line-height: 1.7;
}
