/* Package detail — day-by-day itinerary */
.pkg-itinerary {
  margin-top: 8px;
  margin-bottom: 28px;
}

.pkg-itinerary .togo-tour-details-title {
  margin-bottom: 18px;
}

.pkg-itinerary__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pkg-itinerary__day {
  display: grid;
  grid-template-columns: 200px 76px 1fr;
  align-items: center;
  gap: 0 18px;
  padding: 14px 18px 14px 14px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(17, 17, 17, 0.05);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.pkg-itinerary__day:hover {
  border-color: rgba(58, 61, 43, 0.2);
  box-shadow: 0 8px 24px rgba(58, 61, 43, 0.1);
}

.pkg-itinerary__media {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
  line-height: 0;
}

.pkg-itinerary__media img {
  width: 200px;
  height: 130px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.pkg-itinerary__badge {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid var(--togo-theme-primary);
  background: linear-gradient(180deg, #fafaf8 0%, #fff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(58, 61, 43, 0.06);
}

.pkg-itinerary__badge-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--togo-theme-primary);
  line-height: 1;
  margin-bottom: 2px;
  font-family: var(--togo-ff-body);
}

.pkg-itinerary__badge-num {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: var(--togo-theme-primary);
  font-family: var(--togo-ff-marcellus);
}

.pkg-itinerary__body {
  min-width: 0;
  padding-right: 4px;
}

.pkg-itinerary__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--togo-common-black);
  font-family: var(--togo-ff-marcellus);
}

.pkg-itinerary__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--togo-text-body);
  font-family: var(--togo-ff-body);
}

@media (max-width: 991.98px) {
  .pkg-itinerary__day {
    grid-template-columns: 170px 64px 1fr;
    gap: 0 14px;
    padding: 12px 14px 12px 12px;
  }

  .pkg-itinerary__media img {
    width: 170px;
    height: 112px;
  }

  .pkg-itinerary__badge {
    width: 56px;
    height: 56px;
  }

  .pkg-itinerary__badge-num {
    font-size: 20px;
  }

  .pkg-itinerary__title {
    font-size: 16px;
  }

  .pkg-itinerary__desc {
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .pkg-itinerary__day {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
    text-align: center;
    padding: 14px;
  }

  .pkg-itinerary__media {
    width: 100%;
  }

  .pkg-itinerary__media img {
    width: 100%;
    height: 200px;
  }

  .pkg-itinerary__body {
    text-align: left;
    padding-right: 0;
  }
}

/* Inclusion / Exclusion — 50/50 columns */
.pkg-inc-exc {
  margin-bottom: 8px;
}

.pkg-inc-exc__col {
  height: 100%;
  padding: 4px 8px 4px 4px;
}

.pkg-inc-exc__title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--togo-common-black);
  font-family: var(--togo-ff-marcellus);
}

.pkg-inc-exc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pkg-inc-exc__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--togo-text-body);
  font-family: var(--togo-ff-body);
}

.pkg-inc-exc__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
}

.pkg-inc-exc__icon--yes {
  color: #fff;
  background: #2e9e4a;
  box-shadow: 0 2px 8px rgba(46, 158, 74, 0.28);
}

.pkg-inc-exc__icon--no {
  color: #fff;
  background: #e53935;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.22);
}

.pkg-inc-exc__col--exclude .pkg-inc-exc__title {
  padding-left: 2px;
}

@media (max-width: 767.98px) {
  .pkg-inc-exc__col--exclude {
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }

  .pkg-inc-exc__title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .pkg-inc-exc__list {
    gap: 10px;
  }

  .pkg-inc-exc__list li {
    font-size: 13px;
  }
}

/* Terms & conditions */
.pkg-terms {
  margin-bottom: 4px;
}

.pkg-terms__title {
  margin-bottom: 18px !important;
}

.pkg-terms__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-terms__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--togo-text-body);
  font-family: var(--togo-ff-body);
}

.pkg-terms__icon {
  flex: 0 0 auto;
  width: 18px;
  margin-top: 3px;
  color: #e53935;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

.pkg-cancel__intro {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--togo-text-body);
  font-family: var(--togo-ff-body);
}

.pkg-cancel .pkg-terms__list li strong {
  color: var(--togo-common-black);
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .pkg-terms__list li {
    font-size: 13px;
    gap: 8px;
  }

  .pkg-terms__icon {
    font-size: 14px;
  }

  .pkg-cancel__intro {
    font-size: 13px;
    margin-bottom: 12px;
  }
}

/* Payment policy — alert / card */
.pkg-payment-alert {
  margin: 8px 0 24px;
}

.pkg-payment-alert__card {
  padding: 20px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f6f7f3 0%, #eef0ea 100%);
  border: 1px solid rgba(58, 61, 43, 0.12);
  border-left: 4px solid var(--togo-theme-primary);
  box-shadow: 0 6px 22px rgba(58, 61, 43, 0.08);
}

.pkg-payment-alert__title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--togo-common-black);
  font-family: var(--togo-ff-marcellus);
}

.pkg-payment-alert__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-payment-alert__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--togo-text-body);
  font-family: var(--togo-ff-body);
}

.pkg-payment-alert__icon {
  flex: 0 0 auto;
  width: 18px;
  margin-top: 3px;
  color: #e53935;
  font-size: 16px;
  line-height: 1;
}

.pkg-payment-alert__list a {
  color: var(--togo-theme-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}

.pkg-payment-alert__list a:hover {
  color: var(--togo-common-orange);
}

@media (max-width: 767.98px) {
  .pkg-payment-alert__card {
    padding: 16px 18px;
  }

  .pkg-payment-alert__title {
    font-size: 18px;
  }

  .pkg-payment-alert__list li {
    font-size: 13px;
  }
}

/* Sidebar — How it works (colorful light card) */
.pkg-how-works {
  margin-top: 16px;
}

.pkg-how-works__card {
  padding: 24px 22px 22px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fafbf7 0%, #eef2e4 45%, #f5f0e6 100%);
  border: 1px solid rgba(58, 61, 43, 0.14);
  box-shadow: 0 8px 28px rgba(58, 61, 43, 0.1);
  position: relative;
  overflow: hidden;
}

.pkg-how-works__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3a3d2b 0%, #5a7a4a 50%, #c9a227 100%);
}

.pkg-how-works__title {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--togo-common-black);
  font-family: var(--togo-ff-marcellus);
  position: relative;
  padding-bottom: 10px;
}

.pkg-how-works__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--togo-theme-primary), #6b8f5e);
}

.pkg-how-works__steps {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-how-works__step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pkg-how-works__step:hover {
  transform: translateX(3px);
}

.pkg-how-works__step--1 {
  background: rgba(58, 61, 43, 0.06);
  border-left: 3px solid var(--togo-theme-primary);
}

.pkg-how-works__step--2 {
  background: rgba(13, 148, 136, 0.08);
  border-left: 3px solid #0d9488;
}

.pkg-how-works__step--3 {
  background: rgba(201, 162, 39, 0.1);
  border-left: 3px solid #c9a227;
}

.pkg-how-works__steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
  color: #2d2d2d;
  font-family: var(--togo-ff-body);
}

.pkg-how-works__num {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-top: 1px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.pkg-how-works__step--1 .pkg-how-works__num {
  background: linear-gradient(135deg, #3a3d2b, #5c6240);
}

.pkg-how-works__step--2 .pkg-how-works__num {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.pkg-how-works__step--3 .pkg-how-works__num {
  background: linear-gradient(135deg, #c9a227, #e6b82e);
}

.pkg-how-works__contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 14px;
  margin-top: 4px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(58, 61, 43, 0.06) 100%);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.pkg-how-works__call-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45);
  animation: pkg-call-pulse 2.5s ease-in-out infinite;
}

@keyframes pkg-call-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45); }
  50% { box-shadow: 0 6px 28px rgba(34, 197, 94, 0.65); }
}

.pkg-how-works__call-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #5a6b52;
  margin-bottom: 4px;
  font-family: var(--togo-ff-body);
}

.pkg-how-works__phone {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--togo-theme-primary) !important;
  text-decoration: none;
  font-family: var(--togo-ff-marcellus);
  letter-spacing: 0.02em;
}

.pkg-how-works__phone:hover {
  color: #16a34a !important;
}

@media (max-width: 767.98px) {
  .pkg-how-works__card {
    padding: 20px 18px 18px;
  }

  .pkg-how-works__title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .pkg-how-works__steps p {
    font-size: 13px;
  }

  .pkg-how-works__phone {
    font-size: 20px;
  }
}

/* Sidebar booking form */
.pkg-booking-form {
  margin-bottom: 0;
}

.pkg-booking-form .row.g-2 {
  --bs-gutter-y: 10px;
  --bs-gutter-x: 10px;
}

.pkg-field {
  position: relative;
  margin-bottom: 0;
}

.pkg-field__label {
  position: absolute;
  top: -8px;
  left: 10px;
  z-index: 2;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  color: #5c5c5c;
  background: var(--togo-common-white);
  font-family: var(--togo-ff-body);
  pointer-events: none;
}

.pkg-field__control {
  width: 100%;
  height: 42px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 400;
  color: var(--togo-common-black);
  background: var(--togo-common-white);
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  font-family: var(--togo-ff-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pkg-field__control:focus {
  outline: none;
  border-color: var(--togo-theme-primary);
  box-shadow: 0 0 0 2px rgba(58, 61, 43, 0.12);
}

.pkg-field--date .pkg-field__control {
  padding-right: 34px;
  color-scheme: light;
}

.pkg-field--date::after {
  content: "\f073";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 14px;
  color: #888;
  pointer-events: none;
}

.pkg-field__select {
  width: 100%;
}

.pkg-field__select-native,
.pkg-field__select .nice-select {
  width: 100%;
  height: 42px;
  padding: 8px 32px 8px 12px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--togo-common-black);
  background-color: var(--togo-common-white);
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  font-family: var(--togo-ff-body);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%235c5c5c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pkg-field__select-native:focus,
.pkg-field__select .nice-select:hover,
.pkg-field__select .nice-select.open {
  outline: none;
  border-color: var(--togo-theme-primary);
  box-shadow: 0 0 0 2px rgba(58, 61, 43, 0.12);
}

.pkg-field__select .nice-select {
  display: flex;
  align-items: center;
  line-height: 40px !important;
  padding-top: 0;
  padding-bottom: 0;
}

.pkg-field__select .nice-select::after {
  right: 12px;
  margin-top: -2px;
  border-color: #5c5c5c transparent transparent;
}

.pkg-field__select .nice-select .current {
  font-size: 13px;
  color: var(--togo-text-body);
}

.kz-enquiry-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.kz-enquiry-status {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
  font-family: var(--togo-ff-body);
}

.kz-enquiry-status.is-success {
  color: #1b7f3b;
}

.kz-enquiry-status.is-error {
  color: #c0392b;
}

.pkg-booking-form__submit {
  width: 100%;
  height: 42px;
  margin: 0;
  padding: 0 16px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--togo-theme-primary);
  font-family: var(--togo-ff-body);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.pkg-booking-form__submit:hover {
  background: var(--togo-common-orange);
}

/* Why travel with us — colorful */
.pkg-why-travel {
  margin-top: 18px;
  padding: 18px 14px 14px;
  border-radius: 14px;
  background: linear-gradient(160deg, #f9fbf6 0%, #f2f5ec 50%, #faf6ee 100%);
  border: 1px solid rgba(58, 61, 43, 0.1);
  box-shadow: 0 4px 18px rgba(58, 61, 43, 0.06);
}

.pkg-why-travel__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--togo-theme-primary);
  font-family: var(--togo-ff-marcellus);
  text-align: center;
}

.pkg-why-travel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: stretch;
}

.pkg-why-travel__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 12px 6px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(58, 61, 43, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pkg-why-travel__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(58, 61, 43, 0.12);
}

.pkg-why-travel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 20px;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.pkg-why-travel__item--price .pkg-why-travel__icon {
  background: linear-gradient(145deg, #e6a817, #f5c842);
}

.pkg-why-travel__item--custom .pkg-why-travel__icon {
  background: linear-gradient(145deg, #3a3d2b, #5a7a4a);
}

.pkg-why-travel__item--support .pkg-why-travel__icon {
  background: linear-gradient(145deg, #0d9488, #2dd4bf);
}

.pkg-why-travel__item--price .pkg-why-travel__text {
  color: #9a6700;
}

.pkg-why-travel__item--custom .pkg-why-travel__text {
  color: var(--togo-theme-primary);
}

.pkg-why-travel__item--support .pkg-why-travel__text {
  color: #0f766e;
}

.pkg-why-travel__text {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  font-family: var(--togo-ff-body);
}

.togo-tour-details-booking-item-contact .pkg-booking-form + .pkg-why-travel {
  margin-top: 16px;
}

@media (max-width: 767.98px) {
  .pkg-why-travel {
    padding: 14px 10px 10px;
  }

  .pkg-why-travel__text {
    font-size: 10px;
  }

  .pkg-why-travel__icon {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .pkg-why-travel__item {
    padding: 10px 4px;
  }
}
