/* --------------------------------------------------------------
   Golden Circle Tour Page
-------------------------------------------------------------- */

body:has(.gc-tour) {
  background: #edf1f5 !important;
}

.gc-tour {
  color: var(--gc-text);
  font-family: var(--gc-font-body);
}

.gc-tour__container {
  width: calc(100% - 40px);
  max-width: var(--gc-container);
  margin-inline: auto;
}

.gc-tour__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 22px auto 16px;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.82rem;
  font-weight: 700;
}

.gc-tour__breadcrumb a {
  color: var(--gc-muted);
  text-decoration: none;
}

.gc-tour__breadcrumb a:hover {
  color: var(--gc-blue);
}

.gc-tour__breadcrumb span[aria-hidden] {
  color: rgba(0, 37, 94, 0.3);
}

.gc-tour__breadcrumb .is-current {
  color: var(--gc-text);
}

/* ---------------- Hero ---------------- */

.gc-tour-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--gc-radius-lg);
  height: 560px;
  background: var(--gc-blue-deep);
}

.gc-tour-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.25s ease;
}

.gc-tour-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 17, 38, 0.05) 0%, rgba(0, 17, 38, 0.35) 55%, rgba(0, 17, 38, 0.86) 100%);
  pointer-events: none;
}

.gc-tour-hero__inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 48px clamp(24px, 4vw, 56px) 40px;
  color: var(--gc-white);
}

.gc-tour-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.gc-tour-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--gc-font-body);
  font-size: 0.86rem;
  font-weight: 800;
}

.gc-tour-hero__meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--gc-gold);
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.gc-tour-hero__title {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--gc-white);
  font-family: var(--gc-font-heading);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.08;
}

.gc-tour-hero__text {
  max-width: 640px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--gc-font-body);
  font-size: 1.02rem;
  line-height: 1.6;
}

.gc-tour-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 26px;
}

.gc-tour-hero__actions .gc-btn {
  min-height: 48px;
  padding: 0 26px;
}

/* Hero gallery thumbnails */

.gc-tour-hero__gallery {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.gc-tour-hero__gallery-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(0, 17, 38, 0.35);
  color: var(--gc-white);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.gc-tour-hero__gallery-arrow svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.gc-tour-hero__gallery-arrow:hover {
  border-color: var(--gc-gold);
  background: rgba(0, 17, 38, 0.6);
}

.gc-tour-hero__gallery-arrow--prev svg {
  transform: rotate(90deg);
}

.gc-tour-hero__gallery-arrow--next svg {
  transform: rotate(-90deg);
}

.gc-tour-hero__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px;
}

.gc-tour-hero__thumbs::-webkit-scrollbar {
  display: none;
}

.gc-tour-hero__thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 48px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 9px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.72;
  transition: border-color 0.18s ease, opacity 0.18s ease;
}

.gc-tour-hero__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-tour-hero__thumb:hover {
  opacity: 1;
}

.gc-tour-hero__thumb.is-active {
  border-color: var(--gc-gold);
  opacity: 1;
}

/* ---------------- Stats row ---------------- */

.gc-tour-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
}

.gc-tour-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-md);
  background: var(--gc-white);
}

.gc-tour-stat__icon {
  display: inline-flex;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gc-gold);
}

.gc-tour-stat__icon svg {
  width: 18px;
  height: 18px;
}

.gc-tour-stat__body {
  min-width: 0;
}

.gc-tour-stat__label {
  display: block;
  margin: 0 0 3px;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gc-tour-stat__value {
  display: block;
  color: var(--gc-text);
  font-family: var(--gc-font-body);
  font-size: 0.96rem;
  font-weight: 900;
}

.gc-tour-stat__bars {
  display: flex;
  gap: 4px;
  margin-top: 5px;
}

.gc-tour-stat__bar {
  width: 16px;
  height: 5px;
  border-radius: 999px;
  background: var(--gc-border);
}

.gc-tour-stat__bar.is-filled {
  background: var(--gc-gold);
}

/* ---------------- Main layout ---------------- */

.gc-tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 440px);
  gap: 32px;
  align-items: start;
  margin: 32px 0 56px;
}

.gc-tour-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gc-tour-card {
  min-width: 0;
  padding: 28px clamp(20px, 3vw, 32px);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-lg);
  background: var(--gc-white);
}

.gc-tour-card__title {
  margin: 0 0 16px;
  color: var(--gc-text);
  font-family: var(--gc-font-heading);
  font-size: 1.5rem;
  font-weight: 600;
}

/* Overview */

.gc-tour-overview p {
  margin: 0 0 14px;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.96rem;
  line-height: 1.72;
}

.gc-tour-overview p:last-child {
  margin-bottom: 0;
}

.gc-tour-overview strong {
  color: var(--gc-text);
  font-weight: 800;
}

/* Highlights */

.gc-tour-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gc-tour-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gc-tour-highlight__icon {
  display: inline-flex;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--gc-gold);
}

.gc-tour-highlight__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.gc-tour-highlight__label {
  color: var(--gc-text);
  font-family: var(--gc-font-body);
  font-size: 0.92rem;
  font-weight: 800;
}

/* Itinerary */

.gc-tour-itinerary {
  display: flex;
  flex-direction: column;
}

.gc-tour-itinerary-item {
  position: relative;
  padding: 0 0 24px 40px;
  border-left: 2px solid var(--gc-border);
  margin-left: 15px;
}

.gc-tour-itinerary-item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.gc-tour-itinerary-item__dot {
  position: absolute;
  top: 2px;
  left: -17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--gc-blue);
  color: var(--gc-white);
}

.gc-tour-itinerary-item__dot svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.gc-tour-itinerary-item__header {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 14px;
  padding: 4px 0 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.gc-tour-itinerary-item__thumb {
  display: block;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: var(--gc-radius-sm);
  overflow: hidden;
}

.gc-tour-itinerary-item__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-tour-itinerary-item__text {
  flex: 1 1 auto;
  min-width: 0;
}

.gc-tour-itinerary-item__time {
  display: block;
  margin: 0 0 2px;
  color: var(--gc-gold);
  font-family: var(--gc-font-body);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gc-tour-itinerary-item__title {
  display: block;
  margin: 0;
  color: var(--gc-text);
  font-family: var(--gc-font-body);
  font-size: 1rem;
  font-weight: 800;
}

.gc-tour-itinerary-item__chevron {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--gc-muted);
  transition: transform 0.2s ease;
}

.gc-tour-itinerary-item__chevron svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.gc-tour-itinerary-item.is-open .gc-tour-itinerary-item__chevron {
  transform: rotate(180deg);
}

.gc-tour-itinerary-item__body {
  display: none;
  margin-top: 10px;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.9rem;
  line-height: 1.65;
}

.gc-tour-itinerary-item.is-open .gc-tour-itinerary-item__body {
  display: block;
}

/* Accordion sections (Included / What to bring / FAQ) */

.gc-tour-accordion {
  border-top: 1px solid var(--gc-border);
}

.gc-tour-accordion-item {
  border-bottom: 1px solid var(--gc-border);
}

.gc-tour-accordion-item__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 2px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--gc-text);
}

.gc-tour-accordion-item__trigger-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--gc-font-body);
  font-size: 1rem;
  font-weight: 800;
}

.gc-tour-accordion-item__trigger-title svg {
  width: 18px;
  height: 18px;
  color: var(--gc-gold);
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.gc-tour-accordion-item__chevron {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--gc-muted);
  transition: transform 0.2s ease;
}

.gc-tour-accordion-item__chevron svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.gc-tour-accordion-item.is-open .gc-tour-accordion-item__chevron {
  transform: rotate(180deg);
}

.gc-tour-accordion-item__panel {
  display: none;
  padding: 0 2px 20px;
}

.gc-tour-accordion-item.is-open .gc-tour-accordion-item__panel {
  display: block;
}

.gc-tour-accordion-item__panel p {
  margin: 0;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.92rem;
  line-height: 1.65;
}

.gc-tour-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gc-tour-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.9rem;
  line-height: 1.5;
}

.gc-tour-check-list li svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--gc-gold);
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Map */

.gc-tour-map {
  overflow: hidden;
  padding: 0;
}

.gc-tour-map__frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 62%;
  border-radius: var(--gc-radius-md);
  overflow: hidden;
}

.gc-tour-map__frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ */

.gc-tour-faq .gc-tour-accordion-item__trigger-title {
  font-size: 0.94rem;
}

/* ---------------- Sidebar / booking ---------------- */

.gc-tour-sidebar {
  position: sticky;
  top: 24px;
  min-width: 0;
}

.gc-tour-booking-card {
  padding: 22px;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-lg);
  background: var(--gc-white);
  box-shadow: var(--gc-shadow-card);
}

.gc-booking-engine {
  min-height: 320px;
}

.gc-booking-engine noscript {
  display: block;
  padding: 16px;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.86rem;
  text-align: center;
}

.gc-tour-booking-card--inquiry {
  border: 2px solid var(--gc-gold);
}

.gc-tour-booking-card__title {
  margin: 0 0 8px;
  color: var(--gc-blue-deep);
  font-family: var(--gc-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}

.gc-tour-booking-card__text {
  margin: 0 0 20px;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.9rem;
  line-height: 1.55;
}

.gc-tour-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0 0 56px;
}

.gc-tour-help {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 24px;
  padding: 44px clamp(28px, 4vw, 52px);
  border-radius: var(--gc-radius-lg);
  background: var(--gc-blue-deep);
}

.gc-tour-help__copy {
  min-width: 0;
}

.gc-tour-help__title {
  margin: 0 0 8px;
  color: var(--gc-white);
  font-family: var(--gc-font-heading);
  font-size: 1.7rem;
  font-weight: 600;
}

.gc-tour-help__text {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--gc-font-body);
  font-size: 0.98rem;
  line-height: 1.55;
}

.gc-tour-help .gc-btn {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 28px;
  white-space: nowrap;
}

.gc-tour-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gc-tour-trust-item__icon {
  display: inline-flex;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--gc-gold);
}

.gc-tour-trust-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.gc-tour-trust-item__title {
  display: block;
  margin: 0 0 2px;
  color: var(--gc-text);
  font-family: var(--gc-font-body);
  font-size: 0.86rem;
  font-weight: 900;
}

.gc-tour-trust-item__text {
  display: block;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.78rem;
  line-height: 1.4;
}

/* ---------------- Mobile sticky booking CTA ---------------- */

.gc-tour-mobile-cta {
  display: none;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 1024px) {
  .gc-tour-layout {
    grid-template-columns: 1fr;
  }

  .gc-tour-sidebar {
    position: static;
  }

  .gc-tour-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gc-tour {
    padding-bottom: 78px;
  }

  .gc-tour-mobile-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
    background: var(--gc-white);
    border-top: 1px solid var(--gc-border);
    box-shadow: 0 -8px 24px rgba(0, 37, 94, 0.1);
  }

  .gc-tour-mobile-cta .gc-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
}

@media (max-width: 720px) {
  .gc-tour-hero {
    height: 620px;
  }

  .gc-tour-hero__inner {
    padding: 32px 20px 28px;
  }

  .gc-tour-hero__actions {
    flex-direction: column;
  }

  .gc-tour-hero__actions .gc-btn {
    width: 100%;
    text-align: center;
  }

  .gc-tour-highlights,
  .gc-tour-check-list {
    grid-template-columns: 1fr;
  }

  .gc-tour-map__frame-wrap {
    padding-top: 115%;
  }

  .gc-tour-help {
    flex-direction: column;
    text-align: center;
  }

  .gc-tour-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .gc-tour-hero {
    height: 660px;
  }

  .gc-tour-stats {
    grid-template-columns: 1fr;
  }

  .gc-tour-trust {
    grid-template-columns: 1fr;
  }
}
