/* Shared page components used across the service and landing pages.
   Same visual language as the school and corporate outing pages:
   warm #fff8f1 surfaces, #FF7400 / #F79320 accents, 16px radii. */

/* ---------- Not-included callout ---------- */
.vx-not-included {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 20px 24px;
  background: #fff5f5;
  border: 2px dashed #e04b4b;
  border-radius: 16px;
}

.vx-not-included__tag {
  flex-shrink: 0;
  padding: 9px 16px;
  background: #e04b4b;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.vx-not-included p {
  margin: 0;
  line-height: 1.6;
}

/* ---------- Note box ---------- */
.vx-note {
  margin-top: 24px;
  padding: 20px 24px;
  background: #fff8f1;
  border: 1px solid #ffe0c2;
  border-left: 4px solid #F79320;
  border-radius: 14px;
}

.vx-note p {
  margin: 0;
  line-height: 1.65;
}

.vx-note p + p {
  margin-top: 10px;
}

/* ---------- Trust badges ---------- */
.vx-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.vx-badges--center {
  justify-content: center;
}

.vx-service-card-copy {
  color: #5f5f5f;
  line-height: 1.6;
}

.vx-badges li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  background: #fff8f1;
  border: 1px solid #ffe0c2;
  border-radius: 999px;
  color: #222;
  font-size: 15px;
  font-weight: 500;
}

.vx-badges li i {
  color: #FF7400;
  font-size: 15px;
}

/* ---------- Feature / highlight cards ---------- */
.vx-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.vx-feature-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vx-feature-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.vx-feature {
  height: 100%;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vx-feature:hover {
  border-color: #ffd2a8;
  box-shadow: 0 10px 26px rgba(23, 23, 17, 0.07);
  transform: translateY(-2px);
}

.vx-feature__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vx-feature__head i {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff8f1;
  border-radius: 10px;
  color: #FF7400;
  font-size: 15px;
}

.vx-feature__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #171711;
}

.vx-feature__title a {
  color: inherit;
}

.vx-feature p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: #4a4a4a;
}

/* Compact variant: icon tile + label only, no body copy. */
.vx-feature--chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #fff8f1;
  border: 1px solid #ffe0c2;
  border-radius: 14px;
}

.vx-feature--chip:hover {
  border-color: #FF7400;
  box-shadow: 0 8px 20px rgba(255, 116, 0, 0.12);
}

.vx-feature--chip i {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  color: #FF7400;
  font-size: 16px;
}

.vx-feature--chip span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: #171711;
}

/* ---------- Numbered steps ---------- */
.vx-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: vx-step;
}

.vx-steps li {
  position: relative;
  padding: 22px 24px 22px 68px;
  background: #fff8f1;
  border: 1px solid #ffe0c2;
  border-radius: 16px;
  line-height: 1.6;
  counter-increment: vx-step;
}

.vx-steps li::before {
  content: counter(vx-step);
  position: absolute;
  top: 22px;
  left: 22px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF7400;
  border-radius: 9px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.vx-steps strong {
  display: block;
  margin-bottom: 5px;
  color: #171711;
}

/* ---------- Bulleted chip list ---------- */
.vx-chip-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.vx-chip-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.55;
  color: #333;
}

.vx-chip-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F79320;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .vx-feature-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .vx-feature-grid,
  .vx-chip-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .vx-feature-grid,
  .vx-feature-grid--2,
  .vx-feature-grid--4,
  .vx-steps,
  .vx-chip-list {
    grid-template-columns: 1fr;
  }

  .vx-feature {
    padding: 20px;
  }

  .vx-not-included {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 18px 20px;
  }
}

/* ---------- Photo gallery grid ---------- */
.vx-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.vx-photo-grid li {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}

.vx-photo-grid li:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.vx-photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.vx-photo-grid li:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .vx-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .vx-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .vx-photo-grid li:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  .vx-photo-grid img {
    min-height: 120px;
  }
}

/* Clickable photos: each tile opens in the GLightbox viewer (js-gallery). */
.vx-photo-grid a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.vx-photo-grid a::after {
  content: "\f00e"; /* font-awesome magnifying glass */
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(30, 30, 30, 0.55);
  border-radius: 50%;
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.vx-photo-grid a:hover::after,
.vx-photo-grid a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.vx-photo-grid a:focus-visible {
  outline: 3px solid #FF7400;
  outline-offset: 2px;
}

/* Touch devices have no hover, so keep the cue permanently visible. */
@media (hover: none) {
  .vx-photo-grid a::after {
    opacity: 0.9;
    transform: none;
  }
}

/* ---------- Data tables ---------- */
.vx-table-wrap {
  margin-top: 24px;
  border: 1px solid #ffe0c2;
  border-radius: 14px;
  background: #fff;
}

.vx-table-wrap .vx-table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  vertical-align: middle;
}

.vx-table-wrap .vx-table > thead > tr > th {
  padding: 14px 16px;
  background: #fff8f1;
  border: 0;
  border-bottom: 1px solid #ffe0c2;
  box-shadow: none;
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  vertical-align: middle;
  white-space: normal;
}

.vx-table-wrap .vx-table > thead > tr > th + th {
  border-left: 1px solid #ffe0c2;
}

.vx-table-wrap .vx-table > tbody > tr > td {
  padding: 13px 16px;
  background: transparent;
  border: 0;
  border-top: 1px solid #f2e7db;
  box-shadow: none;
  color: #3b3b3b;
  line-height: 1.6;
  vertical-align: top;
}

.vx-table-wrap .vx-table > tbody > tr > td + td {
  border-left: 1px solid #f2e7db;
}

.vx-table-wrap .vx-table > tbody > tr:first-child > td {
  border-top: 0;
}

.vx-table-wrap .vx-table > tbody > tr > td:first-child {
  color: #1e1e1e;
  font-weight: 600;
}

.vx-table-wrap .vx-table a {
  color: #FF7400;
  text-decoration: none;
}

.vx-table-wrap .vx-table a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .vx-table-wrap .vx-table {
    font-size: 14px;
  }

  .vx-table-wrap .vx-table > thead > tr > th,
  .vx-table-wrap .vx-table > tbody > tr > td {
    padding: 11px 12px;
  }
}

@media (max-width: 767px) {
  /* Two-column tables stay tabular; just give the label column a fixed share. */
  .vx-table-wrap .vx-table:not(.vx-table--stack) > tbody > tr > td:first-child {
    width: 40%;
  }

  /* Three-plus columns become one card per row, each cell labelled by its header. */
  .vx-table-wrap.table-responsive {
    overflow: visible;
  }

  .vx-table-wrap:has(.vx-table--stack) {
    border: 0;
    background: transparent;
  }

  .vx-table-wrap .vx-table--stack {
    border: 0;
    background: transparent;
  }

  .vx-table-wrap .vx-table--stack > thead {
    display: none;
  }

  .vx-table-wrap .vx-table--stack,
  .vx-table-wrap .vx-table--stack > tbody,
  .vx-table-wrap .vx-table--stack > tbody > tr,
  .vx-table-wrap .vx-table--stack > tbody > tr > td {
    display: block;
    width: 100%;
  }

  .vx-table-wrap .vx-table--stack > tbody > tr {
    overflow: hidden;
    margin-bottom: 14px;
    background: #fff;
    border: 1px solid #ffe0c2;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(30, 30, 30, 0.05);
  }

  .vx-table-wrap .vx-table--stack > tbody > tr:last-child {
    margin-bottom: 0;
  }

  .vx-table-wrap .vx-table--stack > tbody > tr > td,
  .vx-table-wrap .vx-table--stack > tbody > tr:first-child > td {
    width: 100%;
    padding: 12px 16px;
    border: 0;
    border-top: 1px solid #f6ece1;
    border-left: 0;
    background: transparent;
    box-shadow: none;
  }

  .vx-table-wrap .vx-table--stack > tbody > tr > td:first-child {
    padding: 14px 16px;
    background: #fff8f1;
    border-top: 0;
    border-bottom: 1px solid #ffe0c2;
    font-size: 16px;
    font-weight: 700;
  }

  .vx-table-wrap .vx-table--stack > tbody > tr > td:empty {
    display: none;
  }

  .vx-table-wrap .vx-table--stack > tbody > tr > td[data-label]::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: #a97a48;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    line-height: 1.3;
    text-transform: uppercase;
  }
}
