/* === Excursions section === */
.exc-section {
  position: relative;
  z-index: 1;
  padding: 72px 24px 96px;
  scroll-margin-top: 84px;
  background: #ffffff;
}

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

.exc-header {
  text-align: center;
  margin-bottom: 28px;
}

.exc-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: var(--font-weight-bold);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 10px;
  text-shadow: 0 18px 46px rgba(124, 198, 230, 0.22);
}

.exc-subtitle {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-muted);
  max-width: 620px;
  margin: 0 auto;
  text-shadow: 0 18px 46px rgba(124, 198, 230, 0.18);
}

.exc-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 28px;
  padding: 6px;
  background: var(--landing-check-bg-color, #f1f5f9);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
}

.exc-tab {
  padding: 10px 18px;
  border: none;
  background: transparent;
  color: var(--c-muted);
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.exc-tab:hover {
  color: var(--c-text);
}

.exc-tabActive {
  background: var(--c-accent);
  color: var(--c-on-accent);
  box-shadow: 0 6px 18px rgba(124, 198, 230, 0.35);
}

.exc-tabActive:hover {
  color: var(--c-on-accent);
}

.exc-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exc-panel[hidden] {
  display: none;
}

.exc-panelSubtitle {
  text-align: center;
  font-size: 14px;
  color: var(--c-muted);
  margin: 0;
}

.exc-empty {
  text-align: center;
  padding: 48px 16px;
  color: var(--c-muted);
  font-size: 15px;
}

.exc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 1280px) {
  .exc-section {
    padding: 64px 18px 84px;
  }
}

@media (max-width: 1100px) {
  .exc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .exc-section {
    padding: 52px 14px 68px;
  }

  .exc-tabs {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    border-radius: 14px;
    -webkit-overflow-scrolling: touch;
  }

  .exc-tab {
    padding: 9px 14px;
    font-size: 13px;
  }

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

@media (max-width: 375px) {
  .exc-section {
    padding: 44px 10px 56px;
  }

  .exc-header {
    margin-bottom: 18px;
  }
}

/* === Excursion card === */
.card-card {
  border-radius: 18px;
  background: var(--c-surface-solid);
  border: 1px solid var(--c-border);
  box-shadow: var(--c-shadow);
  overflow: hidden;
  display: grid;
  grid-template-rows: 190px auto 1fr auto;
}

.card-imageWrap {
  position: relative;
  background:
    radial-gradient(900px 520px at 18% 20%, rgba(124, 198, 230, 0.26), transparent 60%),
    radial-gradient(900px 520px at 84% 30%, rgba(27, 132, 182, 0.14), transparent 58%);
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.card-header {
  padding: 18px 18px 12px;
}

.card-title {
  margin: 0 0 10px;
  color: var(--c-text);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(124, 198, 230, 0.22);
  color: rgba(11, 34, 57, 0.78);
  font-size: 12px;
  white-space: nowrap;
}

.card-price {
  color: rgba(11, 34, 57, 0.92);
  font-weight: var(--font-weight-semi-bold);
  white-space: nowrap;
}

.card-body {
  padding: 0 18px 16px;
}

.card-row {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.card-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 34, 57, 0.6);
}

.card-value {
  color: rgba(11, 34, 57, 0.9);
}

.card-infoLine {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.card-infoIcon {
  width: 18px;
  height: 18px;
  color: rgba(11, 34, 57, 0.62);
  flex-shrink: 0;
}

.card-description {
  margin: 14px 0 0;
  color: var(--c-muted);
  line-height: 1.55;
}

.card-footer {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.card-details {
  width: 100%;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(27, 132, 182, 0.45);
  background: rgba(124, 198, 230, 0.12);
  color: rgba(11, 34, 57, 0.88);
  font-weight: var(--font-weight-semi-bold);
  font-size: inherit;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.card-details:hover {
  transform: translateY(-1px);
  background: rgba(124, 198, 230, 0.2);
  border-color: rgba(27, 132, 182, 0.65);
}

.card-cta {
  width: 100%;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 0;
  background: var(--c-accent);
  color: var(--c-on-accent);
  font-weight: var(--font-weight-semi-bold);
  box-shadow: 0 18px 40px rgba(255, 107, 90, 0.22);
  transition: transform 0.2s, filter 0.2s, opacity 0.2s;
  cursor: pointer;
}

.card-cta:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

@media (max-width: 1280px) {
  .card-card {
    grid-template-rows: 176px auto 1fr auto;
  }
}

@media (max-width: 768px) {
  .card-card {
    grid-template-rows: 200px auto 1fr auto;
  }

  .card-header {
    padding: 16px 14px 10px;
  }

  .card-body {
    padding: 0 14px 14px;
  }

  .card-footer {
    padding: 12px 14px 14px;
  }
}

@media (max-width: 375px) {
  .card-card {
    border-radius: 14px;
    grid-template-rows: 168px auto 1fr auto;
  }

  .card-title {
    font-size: 17px;
  }
}
