:root {
  --gold: #C4A262;
  --gold-dark: #b39250;
  --white: #ffffff;
  --light: #f8f8f8;
  --dark: #2c2c2c;
  --gray: #666;
  --border: #e6e6e6;
}

.excursions-page {
  background: var(--white);
  overflow-x: hidden;
}

/* HERO */
.exc-hero {
  position: relative;
  height: 58vh;
  min-height: 420px;
  background: url('../images/hero/carousel-slide1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.exc-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.48);
}

.exc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 20px;
}

.exc-hero-content span {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
}

.exc-hero h1 {
  font-size: 52px;
  margin: 12px 0;
}

.exc-hero p {
  font-size: 18px;
}

/* STOP */
.exc-stop-section {
  padding: 80px 20px;
  background: #f8f8f8;
}

.exc-stop-card {
  max-width: 560px;
  margin: auto;
  background: #fff;
  border-radius: 18px;
  padding: 45px 35px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.exc-stop-icon {
  font-size: 52px;
  margin-bottom: 15px;
}

/* LAYOUT */
.exc-list-section {
  padding: 70px 20px;
}

.exc-container {
  max-width: 1180px;
  margin: auto;
}

.exc-stack {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.exc-empty {
  text-align: center;
  padding: 50px;
  color: var(--gray);
}

/* FULL CARD */
.exc-full-card {
  display: grid;
  grid-template-columns: 45% 55%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,.07);
}

.exc-full-content {
  padding: 34px 34px 32px;
  position: relative;
  z-index: 2;
}

.exc-card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.exc-full-content h2 {
  font-size: 30px;
  margin: 0 0 18px;
  color: var(--dark);
  line-height: 1.25;
}

.exc-long-desc {
  color: var(--gray);
  line-height: 1.8;
  font-size: 14px;
  margin: 0 0 20px;
}

/* SLIDER */
.exc-slider {
  background:none;
  position: relative;
  min-width: 0;
}

.exc-slider-main {
  position: relative;
  height: 520px;
  min-height: 520px;
  max-height: 520px;
  overflow: hidden;
  background: none;
}

.exc-slider-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  display: block;
}

.exc-slider-main img.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.exc-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.exc-slide-btn.prev { left: 14px; }
.exc-slide-btn.next { right: 14px; }

.exc-slider-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  background:none;
  max-width: 100%;
  scrollbar-width: thin;
}

.exc-slider-thumbs button {
  width: 72px;
  height: 54px;
  min-width: 72px;
  border: 2px solid transparent;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  flex: 0 0 72px;
  background: transparent;
}

.exc-slider-thumbs button.active {
  border-color: var(--gold);
}

.exc-slider-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DETAILS */
.exc-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.exc-highlights span {
  background: #f6f1e8;
  color: #7a5e2c;
  border: 1px solid #eadbbf;
  padding: 7px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.exc-prices-box,
.exc-activities-box,
.exc-note {
  margin-top: 24px;
  padding: 18px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid var(--border);
}

.exc-prices-box h3,
.exc-activities-box h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.exc-price-category {
  margin-top: 12px;
}

.exc-price-category h4 {
  margin: 0 0 10px;
  color: var(--gold);
}

.exc-price-subtitle {
  font-size: 13px;
  color: var(--gray);
  margin: 12px 0 7px;
}

.exc-price-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
}

.exc-price-row:last-child {
  border-bottom: 0;
}

.exc-price-row small {
  display: block;
  color: var(--gray);
  font-size: 12px;
  margin-top: 3px;
}

.exc-price-row span {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.exc-activity-mini {
  margin-bottom: 14px;
}

.exc-activity-mini strong {
  display: block;
  margin-bottom: 8px;
}

.exc-activity-mini div {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 3px;
}

.exc-activity-mini img {
  width: 90px;
  min-width: 90px;
  height: 65px;
  object-fit: cover;
  border-radius: 8px;
}

.exc-note {
  color: #7a5e2c;
  background: #fffbf3;
  line-height: 1.7;
  font-size: 13px;
}

/* BUTTONS */
.exc-book-btn,
.exc-btn {
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s;
}

.exc-book-btn {
  width: 100%;
  margin-top: 26px;
  background: var(--gold);
  color: #fff;
}

.exc-book-btn:hover,
.exc-btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.exc-btn-gold {
  background: var(--gold);
  color: #fff;
}

.exc-btn-light {
  background: #eee;
  color: #333;
}

.exc-btn-outline {
  background: #fff;
  color: var(--gold);
  border: 1px solid var(--gold);
}

/* MODAL */
.exc-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.exc-modal.active {
  display: flex;
}

.exc-modal-box {
  width: 96%;
  max-width: 720px;
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  position: relative;
}

.exc-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
}

.exc-modal-head {
  margin-bottom: 24px;
  padding-right: 38px;
}

.exc-modal-head h2 {
  margin: 0 0 10px;
  line-height: 1.25;
}

.exc-modal-head p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

/* STEPS */
.exc-steps-line {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 22px 0 28px;
}

.exc-steps-line span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eee;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.exc-steps-line span.active {
  background: var(--gold);
  color: #fff;
}

.exc-steps-line span.done {
  background: #38a169;
  color: #fff;
}

.exc-step {
  display: none;
}

.exc-step.active {
  display: block;
}

.exc-step h3 {
  margin: 0 0 22px;
}

/* FORM */
.exc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.exc-form-group {
  margin-bottom: 16px;
}

.exc-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
}

.exc-form-group input,
.exc-form-group select,
.exc-form-group textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  outline: none;
  font-size: 14px;
}

.exc-form-group input:focus,
.exc-form-group select:focus,
.exc-form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,162,98,.12);
}

.exc-phone-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
}

.exc-checkbox-line {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  width: auto !important;
  margin-bottom: 10px;
  color: var(--gray);
  cursor: pointer;
}

.exc-checkbox-line input {
  width: 16px !important;
  height: 16px !important;
  accent-color: var(--gold);
}

.exc-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.exc-type-card {
  border: 2px solid var(--border);
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
}

.exc-type-card strong {
  display: block;
  margin-bottom: 5px;
}

.exc-type-card span {
  color: var(--gray);
  font-size: 12px;
}

.exc-type-card.selected {
  border-color: var(--gold);
  background: #fffbf3;
}

.exc-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.exc-result-box,
.exc-confirm-guest,
.exc-alert {
  padding: 13px 15px;
  border-radius: 12px;
  margin-top: 12px;
  font-size: 14px;
}

.exc-result-box.success {
  background: #e6f7ed;
  color: #1c7c45;
}

.exc-result-box.error,
.exc-alert.error {
  background: #fdeaea;
  color: #a33;
}

.exc-confirm-guest {
  background: #fffbf3;
  border: 1px solid #eadbbf;
}

.exc-confirm-guest button {
  margin-right: 8px;
  margin-top: 10px;
}

.exc-success {
  text-align: center;
  padding: 35px 10px;
}

.exc-success div {
  font-size: 46px;
  margin-bottom: 14px;
}

/* TABLET */
@media (max-width: 900px) {
  .exc-full-card {
    grid-template-columns: 1fr;
  }

  .exc-slider-main {
    height: 380px;
    min-height: 380px;
    max-height: 380px;
  }

  .exc-full-content {
    padding: 28px;
  }
}

/* PHONE */
@media (max-width: 600px) {
  .exc-hero {
    min-height: 340px;
    height: 50vh;
  }

  .exc-hero h1 {
    font-size: 30px;
  }

  .exc-hero p {
    font-size: 14px;
  }

  .exc-list-section {
    padding: 38px 12px;
  }

  .exc-stack {
    gap: 34px;
  }

  .exc-full-card {
    border-radius: 14px;
  }

  .exc-slider-main {
    height: 285px;
    min-height: 285px;
    max-height: 285px;
  }

  .exc-slide-btn {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .exc-slide-btn.prev { left: 8px; }
  .exc-slide-btn.next { right: 8px; }

  .exc-slider-thumbs {
    gap: 6px;
    padding: 8px;
  }

  .exc-slider-thumbs button {
    width: 58px;
    height: 44px;
    min-width: 58px;
    flex-basis: 58px;
  }

  .exc-full-content {
    padding: 24px 18px 22px;
  }

  .exc-card-topline {
    display: block;
    margin-bottom: 16px;
  }

  .exc-card-topline strong {
    display: block;
    margin-top: 8px;
  }

  .exc-full-content h2 {
    font-size: 23px;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .exc-long-desc {
    font-size: 13px;
    line-height: 1.75;
  }

  .exc-prices-box,
  .exc-activities-box,
  .exc-note {
    padding: 15px;
  }

  .exc-price-row {
    flex-direction: column;
    gap: 4px;
  }

  .exc-price-row span {
    white-space: normal;
  }

  .exc-activity-mini img {
    width: 76px;
    min-width: 76px;
    height: 56px;
  }

  .exc-form-grid,
  .exc-type-grid {
    grid-template-columns: 1fr;
  }

  .exc-phone-row {
    grid-template-columns: 92px 1fr;
  }

  .exc-modal {
    padding: 10px;
    align-items: flex-start;
  }

  .exc-modal-box {
    width: 100%;
    max-height: 94vh;
    padding: 24px 16px 18px;
    border-radius: 14px;
    margin-top: 8px;
  }

  .exc-modal-head {
    padding-right: 34px;
    margin-bottom: 20px;
  }

  .exc-modal-head h2 {
    font-size: 20px;
  }

  .exc-modal-head p {
    font-size: 12px;
    line-height: 1.6;
  }

  .exc-steps-line {
    gap: 8px;
    margin: 18px 0 22px;
  }

  .exc-steps-line span {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .exc-nav {
    flex-direction: column;
  }

  .exc-nav .exc-btn {
    width: 100%;
  }
}

/* SMALL PHONES / iPhone 12 Pro Max safe width */
@media (max-width: 430px) {
  .exc-container {
    width: 100%;
    max-width: 100%;
  }

  .exc-list-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .exc-slider-main {
    height: 265px;
    min-height: 265px;
    max-height: 265px;
  }

  .exc-full-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .exc-full-content h2 {
    font-size: 22px;
  }

  .exc-book-btn,
  .exc-btn {
    padding-left: 14px;
    padding-right: 14px;
  }
}



/* FIX MODAL POSITION ON PHONE */
@media (max-width: 600px) {
  .exc-modal {
    align-items: flex-start !important;
    justify-content: center;
    padding: 70px 10px 20px !important;
    overflow-y: auto;
  }

  .exc-modal-box {
    margin-top: 0 !important;
    max-height: calc(100vh - 90px) !important;
  }
}

@media (max-width: 430px) {
  .exc-modal {
    padding-top: 110px !important;
  }

  .exc-modal-box {
    max-height: calc(100vh - 100px) !important;
  }
}



.exc-option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.exc-option-btn {
  border: 1px solid var(--gold);
  background: #fffaf2;
  color: #7a5e2c;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.exc-option-btn:hover {
  background: var(--gold);
  color: #fff;
}

.exc-no-options {
  color: var(--gray);
  font-size: 13px;
}


.exc-options-help {
  background: #fffbf3;
  border: 1px solid #eadbbf;
  color: #7a5e2c;
  padding: 13px 15px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.exc-option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.exc-option-btn {
  border: 1px solid var(--gold);
  background: #fffaf2;
  color: #7a5e2c;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.exc-option-btn:hover,
.exc-option-btn.selected {
  background: var(--gold);
  color: #fff;
}

.exc-no-options {
  color: var(--gray);
  font-size: 13px;
}