:root {
  --border-input: #d5dadd;
  --bg-submit: #ffea0b;
  --primary: #125329;
}

.breadscrumb-root {
  width: 100%;
  height: fit-content;
  margin-top: 96px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.breadscrumb-root .breadscrumb-links {
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.breadscrumb-root .breadscrumb-links i.icon-separator {
  font-size: 12px;
}

.breadscrumb-root .breadscrumb-links a {
  color: var(--text-color);
}

.breadscrumb-root .breadscrumb-links a:hover {
  color: var(--text-color);
  opacity: 90%;
}

.breadscrumb-root .breadscrumb-links span.position-now {
  font-weight: 700;
}

.breadscrumbless {
  margin-top: 66px;
}

@media (min-width: 992px) {
  .breadscrumbless {
    margin-top: 90px;
  }
}

button.btn-back {
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 100px;
  padding: 14px 25px 14px 25px;
  border: none;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.btn-back::before {
  display: none;
}

.footer-separator {
  height: 0px;
}

@media (min-width: 992px) {
  .footer-separator {
    height: 140px;
  }
}

.booking-form-root {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: start;
  padding-top: 24px;
  padding-bottom: 100px;
}

.booking-form-root.home {
  padding-bottom: 24px;
}

.booking-form-root.home.left {
  display: flex;
}

.booking-form-root.home.right {
  display: none;
  padding-bottom: 0px;
}

@media (min-width: 960px) {
  .booking-form-root {
    flex-direction: row;
  }

  .booking-form-root.home.left {
    display: none;
  }

  .booking-form-root.home.right {
    display: flex;
  }
}

.booking-form-root .form-overview {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 32px;
}

@media (min-width: 768px) {
  .booking-form-root .form-overview {
    width: 40%;
    max-width: 40%;
  }
}

.form-base {
  width: 100%;
  height: fit-content;
  display: grid;
  grid-column: 1;
  gap: 24px;
}

.form-group {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
}

.form-group .form-input {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 8px;
}

.form-base .form-price {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: solid 1px var(--border-input);
  padding-top: 24px;
  gap: 24px;
}

@media (min-width: 768px) {
  .form-base .form-price {
    flex-direction: row;
  }
}

.form-price p {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.form-price p span {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.form-price span.price {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  text-align: end;
  color: var(--accent-color);
}

.form-base .select-time-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-base .additional-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-base .additional-form .select-time-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  border-radius: 12px;
  border: solid 1px var(--border-input);
  overflow: hidden;
}

.additional-form .form-pax {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: solid 1px var(--border-input);
}

.additional-form .form-pax .input-pax {
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.additional-form .additional-pax-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: solid 1px var(--border-input);
  padding-bottom: 24px;
}

.additional-form .additional-pax-form p {
  font-weight: 700;
}
.additional-form .additional-pax-form p span {
  color: red;
}

.input-pax span {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--accent-color);
}

.additional-form button.btn-inc-dec {
  display: inline-flex;
  aspect-ratio: 1/1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
  background-color: transparent;
  color: var(--accent-color);
  border-radius: 100%;
  padding: 12px;
  border: none;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

button.btn-inc-dec:hover {
  background-color: #e2e8f0;
}

.select-time-item.selected {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #ffed24;
  outline-offset: 1px;
}

.select-time-item span.time {
  background-color: #2a7d2e;
  width: 100%;
  padding: 12px;
  color: white;
  text-align: center;
  font-weight: 500;
}

.select-time-item span.slot {
  width: 100%;
  padding: 12px;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
}

.label-custom {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.input-custom {
  border-radius: 12px;
  border: solid 1px var(--border-input);
  height: 42px;
  padding-left: 12px;
  padding-right: 12px;
}

.input-custom:focus {
  outline-color: #2a7d2e;
  outline-offset: 1px;
}

.images-overview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.images-overview .sub-images-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.image-content {
  position: relative;
  display: flex;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  height: auto;
  width: 100%;
  background-color: #2a7d2e;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

.booking-cards-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 768px) {
  .booking-cards-list {
    grid-template-columns: 1fr;
  }
}

.booking-cards-list-single {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 12px;
}

.booking-card-ticket {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: solid 1px var(--border-input);
  display: flex;
  flex-direction: column;
}

.booking-card-ticket.selected {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #ffea0b;
  outline-offset: 1px;
}

.booking-card-ticket .booking-card-ticket-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  /* background-color: #2a7d2e; */
  align-items: center;
  justify-content: center;
  display: flex;
  flex-shrink: 0;
  /* border-radius: 12px; */
  position: relative;
}

.booking-card-ticket-image img {
  position: relative;
  object-fit: cover;
}

.booking-card-ticket .booking-card-ticket-content {
  width: 100%;
  height: fit-content;
  min-height: 91.2px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  flex: 1 1 0%;
}

.booking-card-ticket-content h5.title {
  width: 100%;
  overflow: hidden;
  /* text-overflow: ellipsis; */
  white-space: wrap;
  font-size: 16px;
}

.booking-card-ticket-content .booking-card-ticket-desc {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
}

.booking-card-ticket-desc p {
  font-size: 12px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  height: fit-content;
  line-height: 16px;
  margin: 0;
}

.booking-card-ticket-content .booking-card-ticket-price {
  width: 100%;
}

@media (min-width: 640px) {
  .booking-card-ticket-content .booking-card-ticket-desc {
    flex-direction: row;
    align-items: center;
  }

  .booking-card-ticket-desc p {
    font-size: 14px;
  }
}

.booking-card-ticket-content .booking-card-ticket-prices {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  align-items: end;
}

.booking-card-ticket-prices span.discount {
  font-size: 12px;
  line-height: 16px;
  text-decoration-line: line-through;
  color: red;
}
.booking-card-ticket-prices span.actual {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #2a7d2e;
}

.our-faq-section .body {
  color: white;
}

.ticket-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-dialog {
  width: min-content;
}

button.btn-normal {
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
  background: #ffea0b;
  color: var(--accent-color);
  border-radius: 8px;
  padding: 14px 25px 14px 25px;
  border: none;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

button.btn-normal:hover {
  opacity: 90%;
}

.btn-normal::before {
  display: none;
}

/* payment */

.booking-form-root .payment-form-base {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.payment-form-base.waiting-payment {
  background-color: white;
  border: solid 1px var(--border-input);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.payment-form-base.waiting-payment.success-payment {
  flex: 1;
  flex-basis: 60%;
}

.payment-order-sum-form.success-payment {
  flex: 1;
  flex-basis: 40%;
}

@media (max-width: 768px) {
  .payment-form-base.waiting-payment.success-payment {
    flex: none;
    flex-basis: none;
  }

  .payment-order-sum-form.success-payment {
    flex: none;
    flex-basis: none;
  }
}

.payment-form-base .payment-form-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-form-header span.title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.payment-form-header p.description {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin: 0;
}

.payment-form-header hr {
  margin-bottom: 0;
}

.booking-form-root .payment-methode-form {
  width: 100%;
}

.payment-form-body {
  display: flex;
  flex-direction: column;
}
.payment-form-body.waiting-payment {
  gap: 12px;
}

.payment-form-body .waiting-payment-method-total {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.waiting-payment-method-total span.label {
  font-weight: 700;
}

.waiting-payment-method-total span.value {
  font-weight: 700;
  color: var(--accent-color);
}

.payment-form-body .payment-form-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-form-item span.title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.payment-form-item .payment-method-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-check-label .label {
  display: flex;
  flex-direction: column;
}

.form-check-label .label span.title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.form-check-label .label span.description {
  font-size: 14px;
  line-height: 20px;
  opacity: 50%;
}

.booking-form-root .payment-order-sum-form {
  width: 100%;
  height: fit-content;
  background-color: white;
  border: solid 1px var(--border-input);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.payment-order-sum-form .order-sum-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-order-sum-form .order-sum-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-sum-list span.order-title {
  font-weight: 600;
}

.order-sum-list .order-item-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.order-item-list .order-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
  align-items: baseline;
}

.order-item span.about {
  font-size: 16px;
  line-height: 24px;
}

.order-item span.value {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.payment-order-sum-form .order-total {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.order-total span.about {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.order-total span.value {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

button.unstyled {
  all: unset; /* Resets all inherited styles */
  display: inline-block; /* Ensure button behaves like an inline element */
  background: none; /* Remove default background */
  border: none; /* Remove default border */
  padding: 0; /* Remove default padding */
  font: inherit; /* Inherit font styles from the parent */
  cursor: pointer; /* Set the cursor to a pointer on hover */
}

.invalid-msg {
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-invalid-color);
}

.loader {
  width: 20px;
  height: 20px;
  border: 3px solid var(--accent-color);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.bg-submit {
  background-color: var(--bg-submit) !important;
  color: var(--primary);
  border: none;
}

.booking-form-alert {
  border-radius: 12px;
}

.booking-ticket-container .booking-ticket-image {
  width: 100px;
  height: 100px;
}

.booking-ticket-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  flex: none;
}

.booking-card-read-more {
  background-color: var(--primary) !important;
  border: none;
}

.modal-body p {
  margin-bottom: 0;
}

[data-today="true"][data-selected="true"] {
  color: white !important;
}

[data-today="true"][data-focused="true"] {
  color: white !important;
}

.booking-pax-container .btn-secondary {
  background-color: var(--primary);
}

.booking-card-ticket-description {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  flex: auto;
}

.booking-card-ticket-description li {
  padding: 0 !important;
  margin: 0 !important;
  color: var(--text-color) !important;
}

.booking-card-ticket-description ul {
  /* margin-bottom: 0; */
  padding-bottom: 0;
}

.badge-per-pax {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
}

.video-wrapper {
  position: absolute;
}

.video-wrapper.expertise-image-box-1 {
  top: -50px;
  left: 0;
}

.video-wrapper.expertise-image-box-2 {
  bottom: -50px;
  right: 0;
}

.expertise-images > video {
  width: 100%;
  border-radius: 10px;
}

.expertise-content p {
  margin-bottom: 0px;
  margin-top: 0px;
}

.expertise-content li {
  margin-top: 0px;
  margin-bottom: 0px;
}

.expertise-content ul {
  padding-left: 2rem;
}

.expertise-faq {
  height: inherit;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.expertise-faq-mobile {
  display: none;
}

@media (max-width: 768px) {
  .expertise-faq {
    display: none;
  }

  .expertise-faq-mobile {
    display: block;
  }
}

/* Skeleton loading styles for Bootstrap */
.skeleton-line {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
  display: inline-block;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
}

@keyframes skeleton-loading {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Dark mode support */
/* @media (prefers-color-scheme: dark) {
  .skeleton-line {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
  }
} */

/* Bootstrap compatibility - ensure skeleton works with Bootstrap grid */
.skeleton-line {
  max-width: 100%;
}

/* Optional: Add Bootstrap-like spacing utilities if needed */
.mb-2 {
  margin-bottom: 8px !important;
}
.mb-3 {
  margin-bottom: 12px !important;
}
