@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Roboto+Flex:wght@400;500;600;700&display=swap');

/* ==========================================================================
   Parker Cottage Tours – Design System (Global)
   ========================================================================== */

/* Custom fonts & colours for Parker Cottage Tours */
:root{
  /* Typography */
  --font-heading: "Playfair Display", ui-serif, Georgia, serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;

  /* Brand + Neutrals */
  --pct-primary: #1A2332;           /* Deep navy (Primary text) */
  --pct-accent: #e77b2a;            /* Terracotta (Primary CTA) */
  --pct-ink: #1A2332;               /* Primary text */
  --pct-muted: #5B6575;             /* Secondary text */
  --pct-border: #E2E6EA;            /* Borders/dividers */
  --pct-surface: #FFFFFF;           /* Cards */
  --pct-bg: #fff;                /* Page background */
  --pct-soft: #F8F9FA;              /* Section backgrounds */
  --pct-focus: rgba(26, 35, 50, 0.2);

  /* Compatibility aliases (existing CSS references) */
  --pct-t2-primary: var(--pct-primary);
  --pct-t2-tertiary: var(--pct-primary);
  --pct-t2-secondary: var(--pct-accent);
  --pct-primary-cta-btn: var(--pct-accent);
  --pct-secondary-cta: #C2975B;     /* Warm gold (Accents) */
  --pct-accent-strong: #e77b2a;
  --pct-warm: #C2975B;

  /* Radii + shadow */
  --pct-radius-sm: 30px;
  --pct-radius: 30px;
  --pct-radius-lg: 30px;
  --pct-radius-xlg: 80px;
  --pct-shadow-soft: 0 8px 24px rgba(17, 24, 39, 0.08);
  --pct-shadow-min: 0 2px 10px rgba(17, 24, 39, 0.06);
  --pct-lang-menu-offset: 26px;
}

html { scroll-behavior: smooth; }

h1,h2,h3,h4,h5{
  font-family: var(--font-heading);
  color: var(--pct-ink);
  letter-spacing: -0.01em;
}
h1{ font-weight: 600; line-height: 1.12; }
h2{ font-weight: 600; line-height: 1.18; margin-top: 2.2rem; }
h3{ font-weight: 600; line-height: 1.22; }
p{ max-width: 75ch; }

/* Headings */
h1 { font-family: var(--font-heading); font-weight: 500; font-size: clamp(2.4rem, 4.2vw, 3.4rem); }
h2 { font-family: var(--font-heading); font-weight: 500; font-size: clamp(2rem, 3.6vw, 2.8rem); }
h3 { font-family: var(--font-heading); font-weight: 500; font-size: clamp(1.7rem, 3vw, 2.3rem); }
h4 { font-family: var(--font-heading); font-weight: 500; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h5 { font-family: var(--font-heading); font-weight: 500; font-size: clamp(1.15rem, 1.8vw, 1.5rem); }
h6 { font-family: var(--font-heading); font-weight: 500; font-size: clamp(1rem, 1.5vw, 1.2rem); }

:focus-visible{
  outline: 3px solid var(--pct-focus);
  outline-offset: 2px;
  border-radius: 10px;
}

body{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--pct-ink);
  background: var(--pct-bg);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{
  color: var(--pct-primary);
  text-decoration-color: rgba(13, 58, 72, 0.35);
  text-underline-offset: 3px;
}
a:hover{ color: #111824; }

.border-radius-lg-bottom-bth {
  border-bottom-left-radius: var(--pct-radius-lg);
  border-bottom-right-radius: var(--pct-radius-lg);
}

.heading-accent {
  position: relative;
  display: inline-block;
  font-family: var(--font-heading);
  line-height: inherit;
  margin: 0;
}

.heading-accent .accent-word,
.heading-accent .accent-word-heading {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.heading-accent .accent-word::after,
.heading-accent .accent-word-heading::after {
  content: "";
  position: absolute;
  width: 117%;
  height: 4.2em;
  left: 50%;
  bottom: -2em;
  background: url("/images/site/accents/accent-sun-trail.png?v=2") no-repeat left bottom;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
  transform: rotate(7deg);
  opacity: 80%;
}

.accent-word-heading {color: #C2975B;}

/* Buttons */
.pct-cta-btn,
.btn.pct-cta-btn{
  background: var(--pct-accent);
  border: 1px solid rgba(31, 41, 51, 0.10);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
  box-shadow: var(--pct-shadow-min);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  text-decoration: none;
}
.pct-cta-btn:hover,
.btn.pct-cta-btn:hover{
  background: #cf6d24;
  box-shadow: var(--pct-shadow-soft);
  color: #fff;
}
.pct-cta-btn:active,
.btn.pct-cta-btn:active{ transform: translateY(0); box-shadow: var(--pct-shadow-min); }

/* Secondary CTA (angled right edge) */
.pct-cta-btn--secondary {
  --pct-secondary-cta-bg: #C2975B;
  --pct-secondary-cta-hover: #B68446;
}

.pct-cta-btn--secondary-alt {
  --pct-secondary-cta-bg: #e77b2a;
  --pct-secondary-cta-hover: #cf6d24;
}

.pct-cta-btn--secondary,
.pct-cta-btn--secondary-alt {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  font-weight: 500;
  color: #fff;
  background: var(--pct-secondary-cta-bg);
  border: none;
  text-decoration: none;
  isolation: isolate;
  overflow: visible;
  border-radius: 0 0 10px 0;
  transform: skewX(-12deg);
  transition: background-color 240ms ease, color 240ms ease;
}

.pct-cta-btn--secondary .pct-cta-btn__label,
.pct-cta-btn--secondary-alt .pct-cta-btn__label {
  display: inline-block;
  transform: skewX(12deg);
  position: relative;
  z-index: 2;
}

.pct-cta-btn--secondary::before,
.pct-cta-btn--secondary-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  border-right: 2px solid var(--pct-secondary-cta-bg);
  border-bottom: 2px solid var(--pct-secondary-cta-bg);
  border-bottom-right-radius: 10px;
  transform: translate(5px, 5px);
  clip-path: inset(0 0 0 0);
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
  transition: opacity 300ms ease, border-color 300ms ease, clip-path 600ms ease;
}

.pct-cta-btn--secondary::after,
.pct-cta-btn--secondary-alt::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10px;
  width: 14px;
  background: var(--pct-secondary-cta-bg);
  transform: skewX(12deg);
  z-index: 1;
  transition: background-color 240ms ease;
}

.pct-cta-btn--secondary:hover,
.pct-cta-btn--secondary-alt:hover {
  background: var(--pct-secondary-cta-hover) !important;
  color: #fff !important;
  transform: skewX(-12deg) !important;
  border-radius: 0 0 10px 0 !important;
  border-bottom-right-radius: 10px !important;
  box-shadow: none !important;
}

.pct-cta-btn--secondary:hover::before,
.pct-cta-btn--secondary-alt:hover::before {
  border-color: var(--pct-secondary-cta-hover);
  clip-path: inset(50% 0 0 50%);
}

.pct-cta-btn--secondary:hover::after,
.pct-cta-btn--secondary-alt:hover::after {
  background: var(--pct-secondary-cta-hover);
}

/* Static variant: stable appearance on card hover, clean button hover */
.pct-cta-btn--secondary.pct-cta-btn--static,
.pct-destinations-card:hover .pct-cta-btn--secondary.pct-cta-btn--static,
.pct-cta-btn--secondary.pct-cta-btn--static:focus,
.pct-cta-btn--secondary.pct-cta-btn--static:focus-visible {
  background: var(--pct-secondary-cta-bg) !important;
  color: #fff !important;
  transform: skewX(-12deg) !important;
  transition: none !important;
}

.pct-cta-btn--secondary.pct-cta-btn--static::before {
  border-color: var(--pct-secondary-cta-bg);
  clip-path: inset(0 0 0 0);
  transition: clip-path 600ms ease, border-color 300ms ease;
}

.pct-cta-btn--secondary.pct-cta-btn--static::after {
  background: var(--pct-secondary-cta-bg);
  transition: none;
}

/* Allow hover state only on the button itself (no pseudo shading changes) */
.pct-destinations-card:hover .pct-cta-btn--secondary.pct-cta-btn--static:hover {
  background: var(--pct-secondary-cta-hover) !important;
  color: #fff !important;
  transform: skewX(-12deg) !important;
}

.pct-destinations-card:hover .pct-cta-btn--secondary.pct-cta-btn--static:hover::before {
  border-color: var(--pct-secondary-cta-hover);
  clip-path: inset(50% 0 0 50%);
}

.pct-destinations-card:hover .pct-cta-btn--secondary.pct-cta-btn--static:hover::after {
  background: var(--pct-secondary-cta-hover);
}

/* Angled CTA button style */
.pct-cta-btn--angled,
.pct-cta-btn--angled.btn {
  position: relative;
  overflow: visible;
  isolation: isolate;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e77b2a;
  color: #fff;
  border: none;
  border-radius: 0 0 10px 0 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: none;
  transform: skewX(-12deg);
  transition: background-color 220ms ease, color 220ms ease;
}

.pct-cta-btn--angled .pct-cta-btn__label {
  display: inline-block;
  transform: skewX(12deg);
}

.pct-cta-btn--angled::before,
.pct-cta-btn--angled.btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-right: 2px solid #e77b2a;
  border-bottom: 2px solid #e77b2a;
  transform: translate(5px, 5px);
  clip-path: inset(0 0 0 0);
  opacity: 0.8;
  border-bottom-right-radius: 10px;
  z-index: 0;
  pointer-events: none;
  transition: opacity 300ms ease, border-color 300ms ease, clip-path 600ms ease;
}

.pct-topnav .navbar,
.pct-topnav .navbar-nav,
.pct-topnav .pct-collapse,
.pct-topnav .container,
.pct-topnav .container-fluid {
  overflow: visible;
}

.pct-cta-btn--angled:hover,
.pct-cta-btn--angled.btn:hover {
  background: #cf6d24 !important;
  color: #fff !important;
  transform: skewX(-12deg) !important;
  border-radius: 0 0 10px 0 !important;
  border-bottom-right-radius: 10px !important;
  box-shadow: none !important;
}

.pct-cta-btn--angled:hover::before,
.pct-cta-btn--angled.btn:hover::before {
  border-color: #cf6d24;
  clip-path: inset(50% 0 0 50%);
}

.pct-cta-btn--angled:focus-visible,
.pct-cta-btn--angled.btn:focus-visible {
  outline: 2px solid rgba(210, 112, 76, 0.45);
  outline-offset: 4px;
}

.pct-btn-outline,
.btn.pct-btn-outline{
  background: transparent;
  border: 1px solid var(--pct-border);
  color: var(--pct-ink);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  text-decoration: none;
}
.pct-btn-outline:hover{
  border-color: rgba(13, 58, 72, 0.35);
  color: var(--pct-primary);
}

/* Dashed underline hover for inline text links */
.pct-hover-underline {
  position: relative;
  text-decoration: none;
  padding-bottom: 0.35em;
}

.pct-hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1em;
  height: 1px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--pct-muted) 0 6px,
    transparent 6px 12px
  );
  opacity: 0;
  transition: opacity 600ms ease;
}

.pct-hover-underline:hover,
.pct-hover-underline:focus-visible {
  opacity: 1;
}

.pct-hover-underline:hover::after,
.pct-hover-underline:focus-visible::after {
  opacity: 1;
}

/* Cards / surfaces */
.pct-card{
  background: var(--pct-surface);
  border: 1px solid var(--pct-border);
  border-radius: var(--pct-radius);
  box-shadow: var(--pct-shadow-min);
}

/* GRID */
/* Remove Cassiopeia header gradient/inset line behind custom navbar */
.container-header {
  background-color: var(--pct-bg);
  background-image: none !important;
  box-shadow: none !important;
  overflow: visible;
}

button,
.btn,
.chip,
.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
}

/* NAV - START */
/* nav - TopBar */
.pct-topbar{
  background: var(--pct-primary);
  padding: 8px 0;
}

.pct-topbar-link,
.pct-lang-btn{
  color: #fff;
}

.pct-topbar-link:hover{
  text-decoration: underline;
  color: #fff;
}

.pct-icon{
  display: inline-block;
  color: #fff;
}

.pct-topbar-text{
  font-size: 0.85rem;
  line-height: 1;
}

.pct-wa{
  line-height: 1;
}

.pct-lang-btn{
  background: transparent;
  border: 0;
  padding: 0;
  font-weight: 500;
}

.pct-lang-btn:focus{
  box-shadow: none;
}

.pct-flag{
  display: block;
  border-radius: 2px;
}


/* Navbar shell */
.pct-navbar{
  background: #fff;
  box-shadow: var(--pct-shadow-soft);
  z-index: 50;
  overflow: visible;
}

/* Premium homepage-only sticky nav (glass at top, solid on scroll) */
/* Premium homepage-only sticky nav (glass at top, solid on scroll) */
.pct-topnav{
  position: fixed;
  top: 0;
  left: 50%;
  width: min(1320px, 100%);
  transform: translate3d(-50%, 0, 0);
  z-index: 1020;
  will-change: transform;
  overflow: visible;
  transition: transform 520ms ease, background-color 520ms ease, box-shadow 520ms ease, backdrop-filter 520ms ease;
}

body.pct-home .pct-topnav{
  transition: transform 520ms ease, background-color 520ms ease, box-shadow 520ms ease, border-radius 520ms ease, width 520ms ease;
}

body.pct-secondary .pct-topnav{
  transition: transform 520ms ease, background-color 520ms ease, box-shadow 520ms ease;
}

.pct-topnav.navbar--hidden{
  transform: translate3d(-50%, -110%, 0);
  box-shadow: none !important;
}

body.pct-secondary .pct-topnav.navbar--hidden{
  transform: translate3d(0, -110%, 0);
  box-shadow: none !important;
}

.pct-topnav.navbar--solid{
  background: #fff;
  box-shadow: 0 12px 22px rgba(0,0,0,0.12);
}

body.pct-home .pct-topnav.navbar--home-compact{
  width: min(1320px, 94%);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

body.pct-home .pct-topnav.navbar--solid{
  width: 100%;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

body.pct-home .pct-topnav.pct-nav--glass{
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

body.pct-home .pct-topnav.pct-nav--solid{
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.pct-topnav.pct-nav--hidden{
  transform: translate3d(-50%, -110%, 0);
  box-shadow: none !important;
}

body.navbar--visible .pct-tour-mini-nav{
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

body.mini-nav--active .pct-tour-mini-nav{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.bottom-bar--active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce){
  .pct-topnav{
    transition: none;
  }
}

body.pct-home .pct-topnav .dropdown-menu,
body.pct-home .pct-topnav .pct-lang-menu{
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.06);
}

.pct-lang .pct-lang-menu{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  margin-top: var(--pct-lang-menu-offset, 8px);
  top: 100%;
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}

.pct-lang .dropdown-item{
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pct-lang .dropdown-item.active{
  font-weight: 600;
}

.pct-lang > .nav-link{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.pct-lang-flag{
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 27, 44, 0.15);
}

/* Home hero */
body.pct-home .container-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent !important;
}

body.pct-home .pct-navbar.pct-nav--scrolled {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.pct-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: transparent;
  overflow: hidden;
  border-bottom-left-radius: var(--pct-radius);
  border-bottom-right-radius: var(--pct-radius);
}

.pct-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.pct-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.pct-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: opacity;
}

.pct-hero__video.is-loaded {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .pct-hero__video {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .pct-hero__video {
    display: none;
  }
}

.pct-hero__content {
  position: absolute;
  left: clamp(1.5rem, 6vw, 4.5rem);
  top: 50%;
  transform: translateY(-50%);
  max-width: min(560px, 88vw);
  z-index: 2;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.pct-hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.pct-hero__title {
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  color:#fff;
}

.pct-hero__title span {
  color: #C2975B;
}

.pct-hero__lead {
  font-family: "Roboto Flex", "Inter", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 48ch;
  margin: 0;
  color: #f2f2f2;
}

.pct-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.4rem;
  padding: 0.7rem 1.6rem;
  background: #e77b2a;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 240ms ease-out, color 240ms ease-out, border-color 240ms ease-out;
}

.pct-hero__cta:hover,
.pct-hero__cta:focus-visible {
  background: #c45f3a;
  color: #fff;
}

.pct-hero__video-toggle {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #fff;
  border: none;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
  z-index: 2;
}

.pct-hero__video-toggle::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  border: 2px dashed rgba(15, 23, 42, 0.25);
}

.pct-hero__video-icon {
  display: grid;
  place-items: center;
  color: #0f172a;
  font-size: 30px;
}

.pct-hero__video-icon--pause {
  display: none;
}

.pct-hero__video-toggle.is-playing .pct-hero__video-icon--play {
  display: none;
}

.pct-hero__video-toggle.is-playing .pct-hero__video-icon--pause {
  display: grid;
}

/* Home hero availability bar */
body.pct-home {
  --pct-homebar-overlap: 50%;
  --pct-homebar-placeholder: #6b7280;
}

body.pct-home .pct-home-hero-wrap {
  background: #f6f4f0;
}

body.pct-home .pct-homebar {
  width: fit-content;
  max-width: min(980px, 92vw);
  margin: 0 auto clamp(16px, 2.6vw, 40px);
  /*padding: 10px 12px;*/
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  /*border-radius: 18px;*/
  /*box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);*/
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;  
  position: relative;
  z-index: 30;
  transform: translateY(calc(-1 * var(--pct-homebar-overlap)));
}

body.pct-home .pct-findtour__inner {
  width: auto;
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(8px, 2vw, 20px);
}

body.pct-home .pct-findtour__row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

body.pct-home .pct-findtour__lead {
  flex: 0 0 auto;
  max-width: 170px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

body.pct-home .pct-homebar__title {
  white-space: nowrap;
}

body.pct-home .pct-findtour__select {
  width: 300px;
  max-width: 100%;
  flex: 0 0 auto;
}

body.pct-home .pct-findtour__select .form-select {
  width: 100%;
}

@media (max-width: 991.98px) and (min-width: 768px) {
  body.pct-home .pct-findtour__select {
    width: 280px;
  }
}

body.pct-home .pct-findtour__cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

body.pct-home .pct-findtour__cta .pct-tour-booking__btn {
  min-width: 220px;
  max-width: 260px;
}

@media (max-width: 767.98px) {
  body.pct-home .pct-homebar {
    width: min(100%, 92vw);
  }

  body.pct-home .pct-findtour__row {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  body.pct-home .pct-findtour__lead {
    max-width: 100%;
  }

  body.pct-home .pct-findtour__select {
    width: 100%;
    max-width: 100%;
  }

  body.pct-home .pct-findtour__cta .pct-tour-booking__btn {
    width: 100%;
    max-width: none;
  }
}

body.pct-home .pct-form-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: #667085;
  margin-bottom: 0.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.pct-home .pct-homebar .form-control,
body.pct-home .pct-homebar .form-select,
body.pct-home .pct-home-bottombar .form-control,
body.pct-home .pct-home-bottombar .form-select {
  height: 40px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #C2975B;
  background: transparent;
  box-shadow: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: #1f2937;
  padding-left: 0;
  padding-right: 0;
  outline: none;
  appearance: none;
}

body.pct-home .pct-homebar .pct-select-field {
  border: 0;
}

body.pct-home .pct-homebar .pct-select-field__icon {
  border: 0;
}

body.pct-home .pct-homebar .form-select option,
body.pct-home .pct-home-bottombar .form-select option {
  font-size: 0.9rem;
  font-family: "Inter", var(--font-body, sans-serif);
}

body.pct-home .pct-homebar .form-select option:checked,
body.pct-home .pct-home-bottombar .form-select option:checked,
body.pct-home .pct-homebar .form-select option:hover,
body.pct-home .pct-home-bottombar .form-select option:hover {
  background: #C2975B;
  color: #fff;
}

body.pct-home .pct-homebar .form-select option:checked,
body.pct-home .pct-home-bottombar .form-select option:checked {
  background: transparent;
  color: inherit;
}

body.pct-home .pct-homebar .form-select,
body.pct-home .pct-home-bottombar .form-select {
  outline: none;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #C2975B;
}

body.pct-home .pct-homebar .form-control::placeholder,
body.pct-home .pct-home-bottombar .form-control::placeholder {
  color: var(--pct-homebar-placeholder);
  opacity: 1;
}

body.pct-home .pct-homebar .form-select:required:invalid,
body.pct-home .pct-home-bottombar .form-select:required:invalid {
  color: var(--pct-homebar-placeholder);
}

body.pct-home .pct-homebar .form-control:focus,
body.pct-home .pct-homebar .form-select:focus,
body.pct-home .pct-home-bottombar .form-control:focus,
body.pct-home .pct-home-bottombar .form-select:focus {
  border-color: #C2975B;
  box-shadow: none;
}

body.pct-home .pct-homebar .pct-tour-booking__btn {
  white-space: nowrap;
  line-height: 1;
}

body.pct-home .pct-homebar .md3-btn {
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: var(--pct-shadow-min);
  border: 1px solid transparent;
}

body.pct-home .pct-homebar .pct-cta-btn.md3-btn--filled {
  background: var(--pct-accent);
  color: #fff;
  border-color: rgba(31, 41, 51, 0.12);
}

.pct-or-contact a {
  text-decoration: none;
}

.pct-or-contact a:hover {
  text-decoration: underline;
}

.pct-tour-bottombar__or {
  line-height: 1.2;
  width: auto;
  text-align: left;
  white-space: nowrap;
}

.pct-tour-bottombar__or-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  border: 1px solid #d9d3c9;
  background: #f8f5ef;
  color: #6b655d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pct-tour-bottombar__contact.pct-cta-btn--secondary {
  padding: 0.52rem 0.95rem;
  font-size: 0.84rem;
}

body.pct-home .site-grid {
  padding-top: clamp(20px, 3vw, 48px);
}

/* Full-width content area across all pages */
.site-grid {
  max-width: 100% !important;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  display: block !important;
}

.site-grid .container-component {
  max-width: 100% !important;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.site-grid > [class^="container-"],
.site-grid > [class*=" container-"] {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 767.98px) {
  body.pct-home .pct-homebar {
    padding: 10px;
  }

  body.pct-home .pct-homebar .form-label {
    font-size: 0.68rem;
  }
}

body.pct-home .pct-date-input {
  padding-right: 2.5rem;
  background-color: #f6f7f9;
  cursor: pointer;
}

body.pct-home .pct-date-input::placeholder {
  color: #98a2b3;
  font-weight: 600;
}

body.pct-home .pct-date-field {
  position: relative;
}

body.pct-home .pct-date-field__icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

body.pct-home .pct-select-field {
  position: relative;
}

body.pct-home .pct-select-field .form-select {
  padding-right: 2.5rem;
  appearance: none;
}

body.pct-home .pct-select-field__icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  pointer-events: none;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

body.pct-home .pct-homebar .pct-select-field__icon,
body.pct-home .pct-home-bottombar .pct-select-field__icon {
  right: 0;
}

/* Motion utilities (UIKit v3.25.7-like) */
.pct-animate {
  opacity: 0;
  will-change: opacity, transform;
}

.pct-animate.pct-inview {
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

.pct-animate.pct-fade-in,
.pct-animate.pct-fade {
  transform: none;
}

.pct-animate.pct-fade-in.pct-inview,
.pct-animate.pct-fade.pct-inview {
  animation-name: pct-fade;
  animation-duration: 0.8s;
  animation-timing-function: linear;
}

.pct-animate.pct-scale-up.pct-inview {
  animation-name: pct-scale-up;
}

.pct-animate.pct-scale-down.pct-inview {
  animation-name: pct-scale-down;
}

.pct-animate.pct-slide-in-left,
.pct-animate.pct-slide-left {
  transform: none;
}

.pct-animate.pct-slide-in-right,
.pct-animate.pct-slide-right {
  transform: none;
}

.pct-animate.pct-slide-in-top,
.pct-animate.pct-slide-top {
  transform: none;
}

.pct-animate.pct-slide-in-bottom,
.pct-animate.pct-slide-bottom {
  transform: none;
}

.pct-animate.pct-slide-in-left.pct-inview,
.pct-animate.pct-slide-left.pct-inview {
  animation-name: pct-slide-left;
}

.pct-animate.pct-slide-in-right.pct-inview,
.pct-animate.pct-slide-right.pct-inview {
  animation-name: pct-slide-right;
}

.pct-animate.pct-slide-in-top.pct-inview,
.pct-animate.pct-slide-top.pct-inview {
  animation-name: pct-slide-top;
}

.pct-animate.pct-slide-in-bottom.pct-inview,
.pct-animate.pct-slide-bottom.pct-inview {
  animation-name: pct-slide-bottom;
}

body.pct-home .pct-home-destinations.pct-animate.pct-fade-in,
body.pct-home .pct-home-destinations.pct-animate.pct-fade {
  transform: none;
}

body.pct-home .pct-how__overlay.pct-animate {
  transition-duration: 1.4s;
}

.pct-animate:not(.pct-slide-in-left):not(.pct-slide-left):not(.pct-slide-in-right):not(.pct-slide-right):not(.pct-slide-in-top):not(.pct-slide-top):not(.pct-slide-in-bottom):not(.pct-slide-bottom):not(.pct-unroll-right).pct-inview {
  animation-name: pct-fade;
}

@keyframes pct-fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes pct-scale-up {
  0% { opacity: 0; transform: scale3d(0.9, 0.9, 1); }
  100% { opacity: 1; transform: scale3d(1, 1, 1); }
}

@keyframes pct-scale-down {
  0% { opacity: 0; transform: scale3d(1.1, 1.1, 1); }
  100% { opacity: 1; transform: scale3d(1, 1, 1); }
}

@keyframes pct-slide-left {
  0% { opacity: 0; transform: translateX(-100%); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes pct-slide-right {
  0% { opacity: 0; transform: translateX(100%); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes pct-slide-top {
  0% { opacity: 0; transform: translateY(-100%); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pct-slide-bottom {
  0% { opacity: 0; transform: translateY(100%); }
  100% { opacity: 1; transform: translateY(0); }
}

.pct-animate.pct-unroll-right {
  opacity: 1;
  transform: none;
  transform-origin: right center;
  clip-path: inset(0);
}

.pct-animate.pct-unroll-right.pct-inview {
  animation: pct-unroll-right 1s ease both;
}

@keyframes pct-unroll-right {
  from {
    clip-path: inset(0 0 0 100%);
  }
  to {
    clip-path: inset(0);
  }
}

.pct-delay-1 {
  animation-delay: 0.1s;
}

.pct-delay-2 {
  animation-delay: 0.2s;
}

.pct-delay-3 {
  animation-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .pct-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Home intro section */
body.pct-home .pct-home-intro {
  /*padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(3rem, 5vw, 4.5rem);*/
  background: transparent;
  text-align: center;
  overflow: visible;
}

body.pct-home .pct-home-intro__lead {
  margin: 0.9rem auto 0;
  max-width: 82ch;
  color: var(--pct-muted);
  font-size: 1.02rem;
}

body.pct-home .pct-home-intro__card {
  background: #fff;
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--pct-shadow-soft);
  border: 1px solid var(--pct-border);
}

body.pct-home .pct-home-intro__card .pct-home-intro__grid {
  margin-top: 2rem;
}

@media (max-width: 767.98px) {
  body.pct-home .pct-home-intro__card .pct-home-intro__grid {
    margin-top: 1.5rem;
  }
}

body.pct-home .pct-home-intro__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

body.pct-home .pct-home-intro__item {
  padding: 0 2rem;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--pct-primary);
  position: relative;
}

body.pct-home .pct-home-intro__text {
  display: block;
}

body.pct-home .pct-home-intro__text.pct-animate {
  transition-duration: 1.2s;
}

body.pct-home .pct-home-intro__text.pct-delay-1 {
  transition-delay: 0.6s;
}

body.pct-home .pct-home-intro__text.pct-delay-2 {
  transition-delay: 1.4s;
}

body.pct-home .pct-home-intro__text.pct-delay-3 {
  transition-delay: 2.2s;
}

body.pct-home .pct-home-intro__item + .pct-home-intro__item {
  padding-left: 2.2rem;
}

body.pct-home .pct-home-intro__item + .pct-home-intro__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100px;
  background: rgba(26, 35, 50, 0.35);
}

body.pct-home .pct-home-intro-badge {
  position: relative;
  height: 0;
  z-index: 20;
}

body.pct-home .pct-home-intro__badge {
  position: absolute;
  right: clamp(0.6rem, 1.8vw, 1.8rem);
  top: clamp(-8.2rem, -6.2vw, -4.6rem);
  width: clamp(140px, 18vw, 200px);
  height: clamp(140px, 18vw, 200px);
  z-index: 25;
  pointer-events: none;
}

body.pct-home .pct-home-intro__badge-ring {
  width: 100%;
  height: 100%;
  fill: none;
  color: var(--pct-primary);
}

body.pct-home .pct-home-intro__badge-ring text {
  font-size: 9.4px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  fill: currentColor;
  font-weight: 600;
}

body.pct-home .pct-home-intro__badge-core {
  position: absolute;
  inset: 19%;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

body.pct-home .pct-home-intro__badge-core img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transform: rotate(-40deg);
}

@media (max-width: 767.98px) {
  body.pct-home .pct-home-intro__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  body.pct-home .pct-home-intro__item {
    padding: 0.6rem 0;
  }

  body.pct-home .pct-home-intro__item + .pct-home-intro__item {
    padding-left: 0;
  }

  body.pct-home .pct-home-intro__item + .pct-home-intro__item::before {
    width: 80px;
    height: 2px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  body.pct-home .pct-home-intro__badge {
    right: clamp(0.2rem, 2vw, 1rem);
    top: clamp(-6.8rem, -9vw, -4.4rem);
  }
}

/* Home destinations section */
body.pct-home .pct-home-destinations {
  position: relative;
  /*padding: clamp(3rem, 6vw, 5rem) 0;*/
  background: var(--pct-bg);
  overflow: hidden;
  border-bottom-left-radius: var(--pct-radius-xlg);
  border-bottom-right-radius: var(--pct-radius-xlg);
}

/* Featured tours (editorial grid) */
.pct-featured-tours {
  background: transparent;
}

.pct-featured-tours__head {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pct-featured-tours__grid {
  margin-top: 2.25rem;
  display: grid;
  gap: clamp(1.25rem, 2.6vw, 2rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pct-featured-tours__item {
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 0.85rem;
}

.pct-featured-tours__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

.pct-featured-tours__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.1vw, 1.45rem);
  margin: 0;
}

.pct-featured-tours__region {
  display: block;
  color: var(--pct-muted);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.pct-featured-tours__desc {
  display: block;
  font-size: 0.95rem;
  color: var(--pct-ink);
  margin-top: 0.35rem;
}

.pct-featured-tours__item:hover .pct-featured-tours__title,
.pct-featured-tours__item:focus-visible .pct-featured-tours__title {
  text-decoration: underline;
}

.pct-featured-tours__cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .pct-featured-tours__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .pct-featured-tours__grid {
    grid-template-columns: 1fr;
  }
}

body.pct-home .pct-home-destinations::before {
  content: none;
}

body.pct-home .pct-home-destinations > .container-fluid {
  position: relative;
  z-index: 1;
}

body.pct-home .pct-home-destinations.pct-animate.pct-fade-in,
body.pct-home .pct-home-destinations.pct-animate.pct-fade {
  transform: none;
}

body.pct-home .pct-home-destinations__head {
  display: grid;
  grid-template-columns: calc(50% - 0.75rem) calc(50% - 0.75rem);
  align-items: start;
  gap: 1.5rem;
}

body.pct-home .pct-home-destinations__title h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
}

body.pct-home .pct-home-destinations__title .pct-eyebrow {
  color: #C2975B;
}

body.pct-home .pct-home-destinations__cta {
  display: flex;
  justify-content: flex-end;
}

body.pct-home .pct-home-destinations__editorial {
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  line-height: 1.7;
  color: var(--pct-muted);
  justify-self: end;
}

@media (max-width: 991.98px) {
  body.pct-home .pct-home-destinations__head {
    grid-template-columns: 1fr;
  }

  body.pct-home .pct-home-destinations__editorial {
    justify-self: start;
  }
}

body.pct-home .pct-home-destinations__editorial p {
  margin: 0 0 1.1rem;
}

body.pct-home .pct-home-destinations__editorial p:last-child {
  margin-bottom: 0;
}

body.pct-home .pct-home-destinations__grid {
  margin-top: 2.25rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.pct-home .pct-home-destinations__card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  border-bottom-right-radius: 85px;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-decoration: none;
  color: inherit;
  transition: border-radius 0.35s ease, transform 0.35s ease;
}

body.pct-home .pct-home-destinations__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.55));
  background-size: 100% 45%;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.7;
  z-index: 1;
  transition: opacity 0.35s ease;
}

body.pct-home .pct-home-destinations__card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

body.pct-home .pct-home-destinations__card .pct-eyebrow {
  position: relative;
  z-index: 2;
  padding: 1.2rem 1.3rem 0;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: #fff;
  text-shadow: 0 8px 14px rgba(0, 0, 0, 0.35);
}

body.pct-home .pct-home-destinations__card-label {
  position: relative;
  z-index: 2;
  padding: 0.25rem 1.3rem 0.2rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease;
}

body.pct-home .pct-home-destinations__card-cta {
  position: relative;
  z-index: 2;
  padding: 0 1.3rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

body.pct-home .pct-home-destinations__card:hover,
body.pct-home .pct-home-destinations__card:focus-visible {
  border-bottom-right-radius: 18px;
}

body.pct-home .pct-home-destinations__card:hover .pct-home-destinations__card-label,
body.pct-home .pct-home-destinations__card:focus-visible .pct-home-destinations__card-label {
  transform: translateY(-22px);
}

body.pct-home .pct-home-destinations__card:hover .pct-home-destinations__card-cta,
body.pct-home .pct-home-destinations__card:focus-visible .pct-home-destinations__card-cta {
  opacity: 1;
  transform: translateY(0);
}

body.pct-home .pct-home-destinations__footer {
  margin-top: 2.25rem;
  display: flex;
  justify-content: center;
}

/* Home best-of section */
body.pct-home .pct-home-best {
  position: relative;
  /*padding: clamp(4rem, 7vw, 6rem) 0;*/
  /*background-image: var(--pct-best-bg, url("images/site/backgrounds/background-pattern-1.png"));*/
  background: #f6f4f0;
  background-size: cover;
  background-position: center;
  border-radius: var(--pct-radius);
  overflow: hidden;
}

body.pct-home .pct-home-best::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  opacity: 0;
}

body.pct-home .pct-home-best > .container {
  position: relative;
  z-index: 1;
}

body.pct-home .pct-home-best__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

body.pct-home .pct-home-best__scroller {
  position: relative;
  padding-top: 3rem;
  padding-right: 96px;
  background: transparent;
}

body.pct-home .pct-home-best__scroller::before {
  content: none;
}

body.pct-home .pct-home-best__track {
  background: transparent;
}

body.pct-home .pct-home-best__card {
  width: 100%;
}

body.pct-home .pct-home-best__cta {
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
}

body.pct-home .pct-home-best__progress {
  height: 8px;
  margin: 1.25rem auto 0;
  background: transparent;
  border-radius: 999px;
  width: 100%;
  max-width: none;
  overflow: visible;
  cursor: grab;
  position: relative;
  touch-action: none;
}

body.pct-home .pct-home-best__progress::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(26, 35, 50, 0.15);
  border-radius: 999px;
}

body.pct-home .pct-home-best__progress-fill {
  display: block;
  height: 8px;
  width: 25%;
  background: var(--pct-primary);
  border-radius: 999px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  transition: transform 0.2s ease;
}

body.pct-home .pct-home-best__progress.is-dragging {
  cursor: grabbing;
}

body.pct-home .pct-home-best__cta-btn {
  text-decoration: none;
}

body.pct-home .pct-home-best__card .pct-home-best__eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  margin-bottom: 0.35rem;
}

body.pct-home .pct-home-best__card.pct-animate {
  transition-duration: 0.7s;
}

body.pct-home .pct-home-best__card.pct-animate.pct-delay-1 {
  transition-delay: 0.2s;
}

body.pct-home .pct-home-best__card.pct-animate.pct-delay-2 {
  transition-delay: 0.4s;
}

body.pct-home .pct-home-best__card.pct-animate.pct-delay-3 {
  transition-delay: 0.6s;
}

body.pct-home .pct-home-best__scroller .pct-related__controls {
  position: absolute;
  right: 0;
  top: 3rem;
  transform: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 3;
}

body.pct-home .pct-home-best__scroller .pct-related__control {
  width: 64px;
  height: 64px;
  border: 2px dashed rgba(17, 24, 39, 0.45);
  border-radius: 999px;
  background: transparent;
  color: #4b5563;
  display: grid;
  place-items: center;
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.pct-home .pct-home-best__scroller .pct-related__control:hover,
body.pct-home .pct-home-best__scroller .pct-related__control:focus {
  background: transparent;
  border-color: rgba(17, 24, 39, 0.7);
  color: #111827;
}

body.pct-home .pct-home-best__scroller .pct-related__control span {
  font-size: 2.2rem;
}

body.pct-home .pct-home-best__scroller .pct-related__control.is-disabled {
  opacity: 0.35;
  border-color: rgba(17, 24, 39, 0.2);
  color: rgba(17, 24, 39, 0.35);
  cursor: default;
  pointer-events: none;
}

@media (max-width: 575.98px) {
  body.pct-home .pct-home-best__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

body.pct-home .pct-home-destinations__secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: transparent;
  color: #e77b2a;
  border: 2px solid #e77b2a;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 240ms ease-out;
}

body.pct-home .pct-home-destinations__secondary-btn:hover,
body.pct-home .pct-home-destinations__secondary-btn:focus {
  background: #e77b2a;
  color: #fff;
  border-color: #e77b2a;
  transform: translateY(-1px);
}

body.pct-home .pct-section-recognition {
  background: #f6f4f0;
}

body.pct-home .pct-section-why {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: #fff;
}

body.pct-home .pct-section-why .row {
  align-items: stretch;
}

body.pct-home .pct-section-why .col-lg-6:first-child {
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 3vw, 2.5rem);
}

body.pct-home .pct-section-why .col-lg-6:last-child {
  padding-right: 0;
}

body.pct-home .pct-section-why__image {
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 40vw, 420px);
  aspect-ratio: 16 / 9;
  border-radius: var(--pct-radius);
  overflow: hidden;
}

body.pct-home .pct-section-why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Destinations (All) page */
.pct-destinations-all .pct-destinations-hero {
  position: relative;
  padding: calc(clamp(0.4rem, 1.5vw, 0.9rem) + var(--pct-topnav-height, 72px)) 0 0;
  margin-top: 0;
  overflow: hidden;
  background: #fff;
}

.pct-destinations-all .pct-destinations-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: center;
}

.pct-destinations-all .pct-destinations-hero__media {
  position: relative;
  width: calc(100% + (50vw - 50%));
  margin-left: calc(50% - 50vw);
  margin-top: clamp(0.8rem, 2.2vw, 1.6rem);
  aspect-ratio: 5 / 4;
  max-height: 575px;
  border-radius: 0 22px 22px 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.pct-destinations-all .pct-destinations-hero__media.pct-animate {
  animation-duration: 0.8s;
}

.pct-destinations-all .pct-destinations-hero__content {
  text-shadow: none;
  max-width: 520px;
}

.pct-destinations-all .pct-destinations-breadcrumbs {
  padding: 0.6rem 0 0;
}

.pct-destinations-all .pct-destinations-breadcrumbs {
  position: relative;
  z-index: 3;
}

.pct-destinations-all .pct-destinations-breadcrumbs .breadcrumb {
  background: transparent;
  color: var(--pct-muted);
}

.pct-destinations-all .pct-destinations-breadcrumbs .breadcrumb a {
  color: var(--pct-muted);
  text-decoration: none;
}

.pct-destinations-all .pct-destinations-breadcrumbs .breadcrumb a:hover,
.pct-destinations-all .pct-destinations-breadcrumbs .breadcrumb a:focus-visible {
  color: var(--pct-ink);
  text-decoration: underline;
}

.pct-destinations-all .pct-destinations-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pct-destinations-all .pct-destinations-breadcrumbs .mod-breadcrumbs__wrapper,
.pct-destinations-all .pct-destinations-breadcrumbs .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pct-destinations-all .pct-destinations-hero__content {
  position: relative;
  z-index: 2;
}

.pct-destinations-all .pct-destinations-hero__content {
  color: var(--pct-ink);
}

.pct-destinations-all .pct-destinations-hero__content .pct-eyebrow {
  color: var(--pct-accent);
}

.pct-destinations-all .pct-destinations-hero__content h1 {
  color: var(--pct-ink);
}

.pct-destinations-all .pct-destinations-hero__content p,
.pct-destinations-all .pct-destinations-hero__content .text-muted {
  color: var(--pct-muted) !important;
}

.pct-destinations-all .pct-destinations-hero__scroll {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
}

.pct-destinations-all .pct-destinations-hero__scroll-btn {
  width: 78px;
  height: 78px;
  border: 2px dashed rgba(17, 24, 39, 0.45);
  border-radius: 999px;
  background: transparent;
  color: #4b5563;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 2.6rem;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pct-destinations-all .pct-destinations-hero__scroll-btn:hover,
.pct-destinations-all .pct-destinations-hero__scroll-btn:focus-visible {
  border-color: rgba(17, 24, 39, 0.7);
  color: #111827;
  transform: translateY(2px);
}

@media (max-width: 991.98px) {
  .pct-destinations-all .pct-destinations-hero__grid {
    grid-template-columns: 1fr;
  }

  .pct-destinations-all .pct-destinations-hero__media {
    width: 100%;
    margin-left: 0;
    aspect-ratio: 4 / 3;
    max-height: 575px;
    border-radius: 18px;
  }
}

.pct-destinations-all .pct-destinations-intro,
.pct-destinations-all .pct-destinations-tourday {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.pct-destinations-all .pct-destinations-tourday--highlight {
  background: #f6f4f0;
}

/* Homepage tour of the day (v2) */
.pct-tourday-home {
  background: #f6f4f0;
}

.pct-tourday-home .container {
  padding-left: 0;
  padding-right: 0;
}

.pct-tourday-home__wrap {
  border-radius: 25px;
  overflow: hidden;
  background: transparent;
}

.pct-tourday-home__panel {
  background: #013d48;
  color: #fff;
  position: relative;
}

.pct-tourday-home__panel::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 26px solid #013d48;
  z-index: 2;
}

.pct-tourday-home__panel::after {
  right: -26px;
}

.pct-tourday-home__content {
  padding: clamp(2.25rem, 4.5vw, 3.5rem);
  max-width: 560px;
}

.pct-tourday-home__panel .pct-eyebrow {
  color: #C2975B;
}

.pct-tourday-home__panel h2 {
  color: #fff;
}

.pct-tourday-home__panel p {
  color: rgba(255, 255, 255, 0.9);
}

.pct-tourday-home__image {
  position: relative;
  background: #013d48;
}

.pct-tourday-home__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .pct-tourday-home__panel::after {
    display: none;
  }

  .pct-tourday-home__content {
    max-width: 100%;
  }
}

.pct-destinations-all .pct-destinations-intro__image,
.pct-destinations-all .pct-destinations-tourday .pct-destinations-intro__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--pct-radius);
  overflow: hidden;
}

.pct-destinations-all .pct-destinations-intro .pct-destinations-intro__image {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pct-destinations-all .pct-destinations-intro__image img,
.pct-destinations-all .pct-destinations-tourday .pct-destinations-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pct-destinations-all .pct-destinations-grid {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.pct-destinations-all .pct-destinations-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s ease;
}

@media (min-width: 992px) {
  .pct-destinations-all .pct-destinations-card {
    min-height: 500px;
  }
}

.pct-destinations-all .pct-destinations-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 0.45s ease;
}

.pct-destinations-all .pct-destinations-card .pct-eyebrow,
.pct-destinations-all .pct-destinations-card__title,
.pct-destinations-all .pct-destinations-card__copy {
  position: relative;
  z-index: 2;
  display: block;
  color: #fff;
  transition: transform 0.45s ease, opacity 0.45s ease;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.pct-destinations-all .pct-destinations-card__content {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  display: grid;
  gap: 0.25rem;
  z-index: 2;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
}

.pct-destinations-all .pct-destinations-card__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 22, 32, 0.72);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: -1;
}

.pct-destinations-all .pct-destinations-card .pct-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: #C2975B;
}

.pct-destinations-all .pct-destinations-card__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin: 0;
}

.pct-destinations-all .pct-destinations-card__copy {
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.pct-destinations-all .pct-destinations-card__cta {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  align-self: start;
  justify-self: start;
  width: fit-content;
}

.pct-destinations-all .pct-destinations-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(13, 61, 72, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease, background 0.45s ease, border-color 0.45s ease;
}

.pct-destinations-all .pct-destinations-card:hover img,
.pct-destinations-all .pct-destinations-card:focus-visible img {
  transform: scale(1.05);
}

.pct-destinations-all .pct-destinations-card:hover .pct-destinations-card__content::before,
.pct-destinations-all .pct-destinations-card:focus-visible .pct-destinations-card__content::before {
  opacity: 1;
}
.pct-destinations-all .pct-destinations-card:hover .pct-destinations-card__copy,
.pct-destinations-all .pct-destinations-card:focus-visible .pct-destinations-card__copy {
  opacity: 1;
  transform: translateY(0);
}

.pct-destinations-all .pct-destinations-card:hover .pct-destinations-card__link,
.pct-destinations-all .pct-destinations-card:focus-visible .pct-destinations-card__link {
  opacity: 1;
  transform: translateY(-8px);
  background: rgba(13, 61, 72, 0.95);
  border-color: rgba(255, 255, 255, 0.5);
}

.pct-destinations-all .pct-destinations-card:hover .pct-destinations-card__cta,
.pct-destinations-all .pct-destinations-card:focus-visible .pct-destinations-card__cta {
  opacity: 1;
  transform: translateY(-8px);
}

.pct-destinations-all .pct-destinations-card:hover .pct-destinations-card__title,
.pct-destinations-all .pct-destinations-card:focus-visible .pct-destinations-card__title,
.pct-destinations-all .pct-destinations-card:hover .pct-destinations-card__copy,
.pct-destinations-all .pct-destinations-card:focus-visible .pct-destinations-card__copy {
  transform: translateY(-8px);
}

.pct-destinations-all .pct-destinations-card:hover .pct-destinations-card__title,
.pct-destinations-all .pct-destinations-card:focus-visible .pct-destinations-card__title {
  transform: translateY(-12px);
}

/* Why Choose Parker */
.pct-why-choose {
  background: #fff;
}

.pct-why-choose__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr) minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.pct-why-choose__media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
}

.pct-why-choose__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pct-why-choose__label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.pct-why-choose__label--center {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.pct-why-choose__stack {
  display: grid;
  gap: clamp(1.2rem, 2.4vw, 1.9rem);
}

.pct-why-choose__content {
  max-width: 420px;
}

.pct-why-choose__content h2 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
}

.pct-why-choose__content p {
  margin: 1.1rem 0 1.6rem;
  color: var(--pct-muted);
}

.pct-why-choose__media--right {
  aspect-ratio: 1 / 1;
}

@media (max-width: 991.98px) {
  .pct-why-choose__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pct-why-choose__content {
    order: 1;
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .pct-why-choose__media--right {
    order: 2;
  }
}

@media (max-width: 575.98px) {
  .pct-why-choose__grid {
    grid-template-columns: 1fr;
  }

  .pct-why-choose__media--right,
  .pct-why-choose__media--left {
    aspect-ratio: 4 / 3;
  }
}

.pct-home-parker,
body.pct-home .pct-home-parker {
  background-size: cover;
  background-position: center;
  border-radius: var(--pct-radius);
  position: relative;
  overflow: hidden;
  --pct-parker-media-width: 100%;
}

.pct-home-parker__media::after,
body.pct-home .pct-home-parker__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.05));
}

.pct-home-parker .container,
body.pct-home .pct-home-parker .container {
  position: relative;
  z-index: 1;
}

.pct-home-parker__media,
body.pct-home .pct-home-parker__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  width: var(--pct-parker-media-width);
  margin: 0 auto;
}

.pct-home-parker__media img,
body.pct-home .pct-home-parker__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pct-home-parker__panel,
body.pct-home .pct-home-parker__panel {
  background: #fff;
  border-radius: 22px;
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 460px;
  min-height: clamp(420px, 55vh, 520px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.pct-home-parker.pct-home-parker--revealed .pct-home-parker__panel,
body.pct-home .pct-home-parker.pct-home-parker--revealed .pct-home-parker__panel {
  opacity: 1;
  transform: translateY(0);
}

.pct-home-parker__title,
body.pct-home .pct-home-parker__title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.pct-home-parker__text,
body.pct-home .pct-home-parker__text {
  margin: 0;
  color: var(--pct-muted);
}

.pct-home-parker__cta,
body.pct-home .pct-home-parker__cta {
  align-self: flex-start;
}

@media (max-width: 767.98px) {
  .pct-home-parker,
  body.pct-home .pct-home-parker {
    border-radius: 0;
  }

  .pct-home-parker__panel,
  body.pct-home .pct-home-parker__panel {
    max-width: 100%;
    min-height: auto;
  }
}

.pct-band {
  background: var(--pct-soft);
  border: 1px solid var(--pct-border);
  box-shadow: var(--pct-shadow-min);
}

.pct-bullet {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  display: inline-block;
  margin-top: 0.5rem;
  flex: 0 0 auto;
}

.pct-step-num {
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.pct-how__media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
  height: 100%;
  width: 100%;
}

.pct-how__image {
  width: 100%;
  height: clamp(520px, 70vh, 980px);
  object-fit: cover;
  display: block;
}

body.pct-home .pct-how__hero {
  position: relative;
  width: 100%;
}

body.pct-home .pct-how__overlay {
  position: absolute;
  left: clamp(1.5rem, 6vw, 4.5rem);
  top: 50%;
  max-width: min(520px, 88vw);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-radius: 22px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.2);
  transform: translateY(-50%);
}

.pct-how__steps {
  --pct-how-icon-size: clamp(72px, 11vw, 90px);
  display: grid;
  gap: 1.5rem;
  margin-top: calc(var(--pct-how-icon-size) * -0.5);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 2;
}

.pct-how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.1rem 1.6rem;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

body.pct-home .pct-how__icon-wrap {
  width: var(--pct-how-icon-size);
  height: var(--pct-how-icon-size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1A2332;
  color: #fff;
  font-size: 3rem;
  box-shadow: none;
  margin-top: 0;
}

.pct-how__num {
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--pct-ink);
}

.pct-section-how .row {
  align-items: stretch;
}

.pct-section-how .col-lg-6:first-child {
  display: flex;
}

body.pct-home .pct-how__step-title {
  color: var(--pct-ink);
}

@media (max-width: 991.98px) {
  body.pct-home .pct-how__overlay {
    position: static;
    margin: 1.5rem 1.5rem 0;
    max-width: none;
    transform: none;
  }

  .pct-how__steps {
    --pct-how-icon-size: clamp(72px, 22vw, 90px);
    grid-template-columns: 1fr;
    margin-top: calc(var(--pct-how-icon-size) * -0.5);
  }

  .pct-how__step {
    padding: 1.5rem 1.1rem 1.6rem;
  }

  body.pct-home .pct-how__icon-wrap {
    font-size: 1.4rem;
  }
}

@media (min-width: 992px) {
  .pct-how__image {
    height: 540px;
  }
}

@media (min-width: 992px) {
  .pct-how__steps {
    --pct-how-icon-size: 90px;
  }
}

.pct-cta {
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.25);
}

body.pct-home .pct-cta__image {
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  display: block;
}

body.pct-home .pct-section-cta {
  background: center/cover no-repeat;
}

body.pct-home .pct-section-cta .pct-eyebrow {
  color: #f6efe3;
}

body.pct-home .pct-section-cta h2,
body.pct-home .pct-section-cta .pct-lead {
  color: #fff;
}

.pct-recognition-logo {
  max-height: 90px;
  width: auto;
}

body.pct-home .pct-section-recognition {
  background: #f6f4f0;
}

body.pct-home .pct-recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  justify-items: center;
}

body.pct-home .pct-recognition-grid .pct-recognition-logo {
  display: block;
  max-width: 109px;
  width: 100%;
}

@media (min-width: 992px) {
  .pct-recognition-logo {
    max-height: 110px;
  }
}

@media (max-width: 991.98px) {
  body.pct-home .pct-recognition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: start;
  }
}

.pct-logo-tile {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 1.25rem;
  min-height: 140px;
}

@media (min-width: 992px) {
  .pct-logo-tile {
    min-height: 220px;
    padding: 1.75rem;
  }
}

@media (min-width: 992px) {
  .pct-recognition-lead {
    white-space: nowrap;
  }
}

.pct-eyebrow {
  display: block;
  text-transform: capitalize;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  font-weight: 700;
  color: #C2975B;
  margin-bottom: 0.5rem;
}

.pct-eyebrow + h1,
.pct-eyebrow + h2,
.pct-eyebrow + .pct-h2,
.pct-eyebrow + .pct-home-parker__title {
  margin-top: 0;
}

.pct-section .pct-h2 {
  font-family: var(--font-heading);
  color: var(--pct-ink);
}

.pct-section .pct-lead {
  color: var(--pct-muted);
  max-width: 70ch;
}

.pct-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.pct-choice__content {
  max-width: 640px;
  padding-left: clamp(3rem, 6vw, 6.5rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 3;
}

.pct-choice__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pct-choice__tab {
  border: 1px solid var(--pct-primary);
  background: transparent;
  color: var(--pct-primary);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.pct-choice__tab:hover,
.pct-choice__tab:focus-visible {
  border-color: transparent;
  background: var(--pct-primary);
  color: #fff;
}

.pct-choice__tab.is-active {
  border-color: transparent;
  background: var(--pct-primary);
  color: #fff;
  transform: translateY(-1px);
}

.pct-choice__visual {
  position: relative;
  border-radius: 26px;
  overflow: visible;
  aspect-ratio: 5 / 4;
  min-height: clamp(420px, 60vh, 560px);
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.pct-choice__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}

.pct-choice__panel {
  position: absolute;
  left: -12%;
  bottom: -19%;
  display: grid;
  gap: 1rem;
  width: min(360px, 55%);
  z-index: 2;
  border-radius: 26px;
  overflow: hidden;
}

.pct-choice__inset-block {
  background: #fff;
  border-radius: 26px;
  padding: 0.85rem;
  height: auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pct-choice__descs {
  margin-top: 1rem;
  color:var(--pct-muted);
}

.pct-choice__inset-image {
  padding: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 26px;
  aspect-ratio: 5 / 6;
}

@media (min-width: 992px) {
  .pct-choice__inset-image {
    width: min(300px, 100%);
    height: 360px;
    margin: 0 auto;
  }
}

.pct-choice__inset-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.8rem;
  border: 1px solid var(--pct-border);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.pct-choice__inset-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pct-choice__image.pct-unroll-right.pct-inview ~ .pct-choice__panel.is-active .pct-choice__inset-block {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.05s;
}

.pct-choice__image.pct-unroll-right.pct-inview ~ .pct-choice__panel.is-active .pct-choice__inset-block:nth-child(2) {
  transition-delay: 1.13s;
}

@media (prefers-reduced-motion: reduce) {
  .pct-choice__image.pct-unroll-right.pct-inview ~ .pct-choice__panel.is-active .pct-choice__inset-block {
    transition-delay: 0s;
  }
}

.pct-choice__inset-block .badge {
  font-weight: 600;
  color: var(--pct-primary);
  background: rgba(26, 35, 50, 0.08);
}

@media (max-width: 991.98px) {
  .pct-choice {
    grid-template-columns: 1fr;
  }

  .pct-choice__content {
    padding-left: 0;
  }

  .pct-choice__visual {
    aspect-ratio: 4 / 3;
    max-width: 100%;
  }

  .pct-choice__panel {
    position: static;
    width: 100%;
    margin-top: 1.5rem;
  }

  .pct-choice__inset-block {
    height: auto;
  }
}

.pct-choice__note {
  color: var(--pct-muted);
  margin-top: 0.5rem;
}

.pct-section-faq__inner {
  max-width: 760px;
  margin-inline: auto;
}

.pct-section-faq .accordion-item {
  background: transparent;
  border-color: var(--pct-border);
}

.pct-section-faq .accordion-button {
  font-weight: 600;
  color: var(--pct-ink);
  background: transparent;
}

.pct-section-faq .accordion-button:not(.collapsed) {
  color: var(--pct-ink);
  background: transparent;
  box-shadow: none;
}

.pct-section-faq .accordion-body {
  color: var(--pct-muted);
}

.pct-section-faq .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(26, 35, 50, 0.15);
}

body.pct-home .pct-section-faq .accordion-item {
  border: none !important;
  border-bottom: 1px solid #C2975B !important;
  border-radius: 0;
}

body.pct-home .pct-section-faq .accordion-button {
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.pct-home .pct-section-faq .accordion-item:first-child {
  border-top: none !important;
}

body.pct-home .pct-section-faq .accordion-item.border {
  border: none !important;
  border-bottom: 1px solid #C2975B !important;
}

body.pct-home .pct-section-faq .accordion-item.border.rounded-4 {
  border-radius: 0 !important;
}

.pct-home-bottombar {
  background: #fff;
  border-top: 1px solid var(--pct-primary);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
  z-index: 1040;
}

.pct-home-bottombar--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.pct-home-bottombar__inner {
  display: block;
  padding: 0.45rem 0.4rem;
  max-width: none;
  margin: 0;
  width: min(1100px, 100%);
  grid-column: 2;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.pct-home-bottombar__inner .pct-findtour__inner {
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}

.pct-home-bottombar__inner .pct-findtour__row {
  gap: 1rem;
}

.pct-home-bottombar > .container-fluid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.pct-home-bottombar__label {
  font-weight: 700;
  color: var(--pct-ink);
  letter-spacing: 0.02em;
  min-width: 140px;
}

.pct-home-bottombar__fields {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(110px, 0.55fr) minmax(160px, 0.8fr);
  gap: 3rem;
  flex: 1;
  min-width: 260px;
  max-width: 640px;
}

body.pct-home .pct-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.pct-home-bottombar .form-control,
.pct-home-bottombar .form-select {
  height: 40px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #C2975B;
  background: transparent;
  box-shadow: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: #1f2937;
}

.pct-home-bottombar .form-control::placeholder {
  color: var(--pct-homebar-placeholder);
  opacity: 1;
}

.pct-home-bottombar .form-select:required:invalid {
  color: var(--pct-homebar-placeholder);
}

.pct-home-bottombar .form-control:focus,
.pct-home-bottombar .form-select:focus {
  border-color: rgba(212, 112, 76, 0.45);
  box-shadow: 0 0 0 3px rgba(212, 112, 76, 0.18);
}

.pct-home-bottombar__cta {
  border-radius: 999px;
  padding-inline: 1.6rem;
  white-space: nowrap;
}

.pct-home-bottombar__close {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: transparent;
  border: 2px dashed #C2975B;
  color: #C2975B;
  display: grid;
  place-items: center;
  line-height: 1;
  font-size: 1.1rem;
  position: static;
  grid-column: 3;
  justify-self: end;
  margin-right: 0.75rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.pct-home-bottombar__close:hover,
.pct-home-bottombar__close:focus-visible {
  background: #C2975B;
  border-color: #C2975B;
  color: #fff;
}

.pct-home-bottombar__close span {
  display: inline-block;
  transform: translateY(-1px);
}

.pct-home-bottombar--closing {
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
}

body.has-pct-home-bottombar {
  padding-bottom: 90px;
}

@media (max-width: 767.98px) {
  .pct-home-bottombar__inner {
    padding: 0.55rem 0.2rem;
  }

  .pct-home-bottombar__inner .pct-findtour__inner {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .pct-home-bottombar__fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  body.pct-home .pct-home-destinations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  body.pct-home .pct-home-destinations__head {
    grid-template-columns: 1fr;
  }

  body.pct-home .pct-home-destinations__cta {
    justify-content: flex-start;
  }

  body.pct-home .pct-home-destinations__grid {
    grid-template-columns: 1fr;
  }
}

/* Flatpickr datepicker skin */
.flatpickr-calendar {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
  font-family: var(--font-body);
}

.flatpickr-months .flatpickr-month {
  color: #1f2937;
  font-weight: 700;
}

.flatpickr-current-month {
  font-size: 0.95rem;
}

.flatpickr-current-month .cur-year {
  background: var(--pct-accent);
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-left: 0.35rem;
}

.flatpickr-current-month .cur-year input,
.flatpickr-current-month .cur-year .numInput {
  color: #fff;
  font-weight: 700;
}

.flatpickr-current-month .cur-year:hover,
.flatpickr-current-month .cur-year:focus-within {
  background: #c45f3a;
  color: #fff;
}

.flatpickr-current-month .cur-year:hover input,
.flatpickr-current-month .cur-year:hover .numInput,
.flatpickr-current-month .cur-year:focus-within input,
.flatpickr-current-month .cur-year:focus-within .numInput {
  color: #fff;
}

.flatpickr-current-month .cur-year .numInputWrapper span {
  border: 0;
}

.flatpickr-current-month .cur-year .numInputWrapper span::after {
  color: #fff;
}

.flatpickr-current-month .cur-year .numInputWrapper span:hover::after,
.flatpickr-current-month .cur-year .numInputWrapper span:focus::after {
  color: #fff;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 12px;
  height: 12px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  stroke: #fff;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  background: var(--pct-accent);
  border-radius: 999px;
  top: 6px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
}

.flatpickr-months .flatpickr-prev-month svg polyline,
.flatpickr-months .flatpickr-next-month svg polyline {
  stroke: #fff;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  margin: 0;
  display: block;
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month:hover svg polyline,
.flatpickr-months .flatpickr-next-month:hover svg polyline,
.flatpickr-months .flatpickr-prev-month:focus svg polyline,
.flatpickr-months .flatpickr-next-month:focus svg polyline {
  stroke: #fff;
}

.flatpickr-weekdays {
  background: #f3f4f6;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.flatpickr-weekday {
  color: #6b7280;
  font-weight: 600;
}

.flatpickr-day {
  border-radius: 8px;
  font-weight: 600;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: #cbd5e1;
}

.flatpickr-day.today {
  border-color: rgba(212, 112, 76, 0.55);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--pct-accent);
  border-color: var(--pct-accent);
  color: #fff;
}

.flatpickr-day.inRange {
  background: rgba(212, 112, 76, 0.12);
  border-color: transparent;
  color: #111827;
}

.flatpickr-day:hover {
  background: rgba(212, 112, 76, 0.18);
}


/* Logo */
.pct-logo{
  height: 58px;
  width: auto;
}

body.pct-secondary .container-header {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  z-index: auto;
}

body.pct-secondary .site-grid {
  padding-top: var(--pct-topnav-height, 72px);
}

body.pct-secondary .pct-navbar {
  min-height: 64px;
}

body.pct-secondary .pct-logo {
  height: 60px;
}

body.pct-secondary .pct-topnav {
  width: 100%;
  left: 0;
  transform: none;
  border-radius: 0;
}

body.pct-secondary .pct-topnav.pct-nav--hidden {
  transform: translate3d(0, -110%, 0);
}

/* Center nav */
.pct-nav-center{
  gap: 28px;
}

/* Menu links */
.pct-nav-link{
  color: var(--pct-primary) !important;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  text-decoration: none;
  position: relative;
}

/* Simple underline hover */
.pct-nav-link:hover,
.pct-nav-link:focus{
  color: var(--pct-primary);
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Right side */
.pct-nav-right{
  gap: 12px;
}

.pct-nav-dropdown .dropdown-toggle::after {
  margin-left: 0.45rem;
  vertical-align: 0.12em;
  border-top-width: 0.32em;
  border-right-width: 0.32em;
  border-left-width: 0.32em;
}

.pct-nav-dropdown-menu,
.pct-lang .pct-lang-menu {
  background: #fff;
  border: 1px solid rgba(0, 27, 44, 0.1);
  border-radius: 12px;
  padding: 0.45rem;
  min-width: 220px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.pct-nav-dropdown-menu .dropdown-item {
  border-radius: 9px;
  padding: 0.6rem 0.75rem;
  font-weight: 600;
  color: var(--pct-primary);
}

.pct-nav-dropdown-menu .dropdown-item:hover,
.pct-nav-dropdown-menu .dropdown-item:focus {
  background: rgba(1, 61, 72, 0.08);
  color: var(--pct-primary);
}

/* Final language dropdown alignment with main nav dropdowns */
.pct-lang > .nav-link {
  color: var(--pct-primary) !important;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  text-decoration: none;
}

.pct-lang > .nav-link:hover,
.pct-lang > .nav-link:focus {
  color: var(--pct-primary);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.pct-lang .pct-lang-menu {
  background: #fff;
  border: 1px solid rgba(0, 27, 44, 0.1);
  border-radius: 12px;
  padding: 0.45rem;
  min-width: 220px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.pct-lang .pct-lang-menu .dropdown-item {
  border-radius: 9px;
  padding: 0.6rem 0.75rem;
  font-weight: 600;
  color: var(--pct-primary);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
}

.pct-lang .pct-lang-menu .dropdown-item:hover,
.pct-lang .pct-lang-menu .dropdown-item:focus {
  background: rgba(1, 61, 72, 0.08);
  color: var(--pct-primary);
}

.pct-lang .pct-lang-menu .dropdown-item.active,
.pct-lang .pct-lang-menu .dropdown-item:active {
  background: #fff !important;
  color: var(--pct-primary) !important;
}

.pct-lang .pct-lang-menu .dropdown-item.active:hover,
.pct-lang .pct-lang-menu .dropdown-item.active:focus,
.pct-lang .pct-lang-menu .dropdown-item.active:focus-visible {
  background: #fff !important;
  color: var(--pct-primary) !important;
}

.pct-nav-dropdown-menu .dropdown-item.active,
.pct-nav-dropdown-menu .dropdown-item.active:hover,
.pct-nav-dropdown-menu .dropdown-item.active:focus,
.pct-nav-dropdown-menu .dropdown-item.active:focus-visible {
  background: #fff !important;
  color: var(--pct-primary) !important;
}

.container-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 20;
  overflow: visible;
}

.container-nav > :first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.container-nav > nav,
.container-nav > .mod-menu {
  flex: 1 1 auto;
  min-width: 0;
}

.pct-nav-extras {
  margin-left: 0;
  display: flex !important;
  align-items: center;
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
}

@media (min-width: 992px) {
  .pct-nav-extras {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.pct-lang-switch {
  display: inline-flex !important;
  align-items: center;
}

.pct-nav-extras,
.pct-lang-switch {
  visibility: visible !important;
  opacity: 1 !important;
}

.pct-lang-switch__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(0, 27, 44, 0.25);
  border-radius: 7px;
  padding: 6px 12px;
  color: var(--pct-primary);
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.pct-lang-switch__toggle:hover,
.pct-lang-switch__toggle:focus {
  border-color: rgba(0, 27, 44, 0.3);
  color: var(--pct-primary);
}

.pct-lang-switch__flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 27, 44, 0.15);
}

.pct-lang-switch__caret {
  font-size: 0.7rem;
  margin-left: 2px;
}

.pct-lang-switch .dropdown-menu {
  min-width: 170px;
}

/* Language */
.pct-lang-toggle{
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
}

.pct-lang-toggle:hover{
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Language selector – reset button styling */
.pct-lang-toggle {
  background: transparent;
  border: 0;
  padding: 0;
  color: #fff;
  font: inherit;
  cursor: pointer;
}

/* Optional: keep alignment tidy */
.pct-lang-toggle svg {
  flex-shrink: 0;
}

/* Optional hover affordance (matches your nav style) */
.pct-lang-toggle:hover {
  text-decoration: underline;
}


/* CTA */
.pct-cta-btn{
  background: var(--pct-t2-secondary);
  color: #fff;
  font-weight: 600;
  border-radius: 7px;
  border-bottom-right-radius: 1.6vmax;
  padding: 10px 18px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-radius 0.3s ease, color 0.3s ease;
}

.pct-cta-btn:hover{
  color: #fff;
  background: var(--pct-t2-primary);
  border-bottom-right-radius: 7px;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(14,57,130,0.25);
}

/* Mobile behaviour */
@media (max-width: 991.98px){
  .pct-nav-center{
    gap: 12px;
    padding-top: 12px;
  }

  .pct-nav-extras {
    width: 100%;
    justify-content: flex-end;
  }

  .pct-nav-right{
    width: 100%;
    margin-top: 12px;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 0.75rem;
  }

  .pct-nav-right > .navbar-nav {
    margin-right: 0 !important;
  }

  .pct-nav-right .pct-lang {
    margin-left: 0;
  }

  .pct-cta-btn{
    width: auto;
    text-align: center;
  }

  .pct-nav-right .pct-cta-btn {
    margin-left: auto !important;
  }

  .pct-nav-dropdown-menu {
    min-width: 100%;
    box-shadow: none;
    margin-top: 0.35rem;
  }
}

/* PCT breadcrumbs  - START*/
.pct-breadcrumbs .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 0.8rem;
  padding-inline-start: 0 !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: capitalize;
  letter-spacing: 0.06em;

  /* Joomla/Cassiopeia divider var */
  --breadcrumb-divider: ">";
}

/* Remove leading icon (scoped to your breadcrumbs module only) */
.pct-breadcrumbs .mod-breadcrumbs__divider {
  display: none;
}

/* Divider styling */
.pct-breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
  content: var(--breadcrumb-divider, ">");
  color: #6c757d;
  margin-left: 0.4rem;
  margin-right: 0.4rem;
  float: none;
}

/* Link styling */
.pct-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.pct-breadcrumbs a:hover {
  text-decoration: underline;
}

.pct-breadcrumbs .breadcrumb-item.active {
  color: #C2975B;
  font-weight: 700;
}
/* PCT breadcrumbs  - END*/

/* Tour page (article override: tour.php) */
.pct-tour {
  --pct-tour-radius: 22px;
  --pct-tour-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --pct-tour-muted: #6c757d;
  --pct-tour-border: #e9ecef;
  --pct-tour-mini-nav-height: 48px;
  --pct-header-shadow-overlap: 4px;
}

.pct-tour-hero {
  position: relative;
  border-radius: var(--pct-tour-radius);
  overflow: hidden;
  box-shadow: var(--pct-tour-shadow);
  margin: 0 0 1.25rem;
}

.pct-tour-hero__img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .pct-tour-hero__img {
    height: 440px;
  }
}

.pct-tour-hero__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.pct-tour-hero__title {
  color: #fff;
  margin: 0;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.pct-tour-hero__badges {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pct-tour-benefits {
  background: #fff;
  border: 1px solid var(--pct-tour-border);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}

.pct-tour-benefit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #1f2937;
  font-weight: 600;
  font-size: 0.95rem;
}

.pct-tour-benefit__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(1, 55, 89, 0.08);
  color: var(--pct-primary);
  font-size: 1rem;
}

.pct-tour-intro {
  margin-bottom: 1.25rem;
}

.pct-tour-subtitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin: 0.5rem 0 0.75rem;
}

.pct-tour-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.75rem;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.pct-tour-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 0.75rem 0.9rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.pct-tour-fact--wide {
  grid-column: 1 / -1;
}

.pct-tour-fact__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: #fff;
  color: var(--pct-secondary-cta);
  border: 1px solid rgba(30, 111, 109, 0.2);
}

.pct-tour-fact__icon--duration {
  background: var(--pct-t2-tertiary);
  color: #fff;
  border: none;
  border-radius: 50%;
}

.pct-tour-fact__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  line-height: 1.2;
  font-weight: 600;
}

.pct-tour-fact__value {
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  word-break: break-word;
  font-size: 0.95rem;
}

.pct-tour-fact__subline {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  font-size: 0.82rem;
  color: #374151;
}

.pct-tour-fact__sublabel {
  font-weight: 600;
  color: #6b7280;
}

.pct-tour-fact__subvalue {
  font-weight: 700;
  color: #0f172a;
}

.pct-tour-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 12px;
  font-weight: 600;
}

.pct-tour-lang__flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 27, 44, 0.15);
}

.pct-lang-switch__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.pct-lang-switch__item .pct-lang-switch__flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 27, 44, 0.15);
}

@media (min-width: 768px) {
  .pct-tour-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pct-tour-fact:not(.pct-tour-fact--wide) {
    border-right: 0;
  }

  .pct-tour-fact:not(.pct-tour-fact--wide):nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 767.98px) {
  .pct-tour-fact:not(:last-child) {
    border-bottom: 0;
  }
}

.pct-tour-title-wrap {
  margin: 0 0 0.75rem;
  text-align: center;
}

.pct-tour-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.pct-tour-title-actions {
  display: flex;
  align-items: center;
}

.pct-tour-title-group {
  justify-self: center;
  text-align: center;
}

.pct-tour-title {
  color: var(--pct-primary);
  margin: 0;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
}

.pct-tour-title__badges {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.pct-tour-hero-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  margin: 0.75rem 0 1.5rem;
}

.pct-tour-hero-meta__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  text-align: center;
  justify-self: center;
}

.pct-tour-hero-meta__langs {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-weight: 600;
  color: #111827;
}

.pct-tour-hero-meta__label {
  font-size: 0.9rem;
}

.pct-tour-hero-meta__flags {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pct-tour-hero-meta__divider {
  color: #c0c0c0;
  font-weight: 600;
  margin: 0;
}

.pct-tour-hero-meta__flag {
  width: 26px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 27, 44, 0.15);
}

.pct-tour-hero-meta__hotel {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  color: var(--pct-secondary-cta);
}

.pct-tour-hero-meta__hotel .fa-solid {
  font-size: 1rem;
}

.pct-tour-hero-meta__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.pct-tour-hero-header {
  margin: 0 auto 1.5rem;
}

@media (max-width: 767.98px) {
  .pct-tour-title-row {
    grid-template-columns: 1fr;
  }

  .pct-tour-title-actions {
    justify-content: center;
  }

  .pct-tour-hero-meta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pct-tour-hero-meta__right {
    align-items: center;
  }
}

.pct-tour-share-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--pct-secondary-cta);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.88rem;
  text-decoration: none;
}

.pct-tour-share-link:hover,
.pct-tour-share-link:focus {
  color: var(--pct-secondary-cta);
  text-decoration: underline;
}

.pct-tour-share-link .fa-solid {
  font-size: 1.25rem;
}

.pct-tour-title-actions .pct-tour-share-link {
  font-size: 0.85rem;
}

.pct-tour-hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--pct-warm);
  white-space: nowrap;
}

.pct-tour-hero-price__label,
.pct-tour-hero-price__note {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  font-weight: 700;
}

.pct-tour-hero-price__value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--pct-warm);
}

.a2a_overlay,
.a2a_full {
  background: rgba(0, 0, 0, 0.85) !important;
}

.a2a_menu {
  background: #fff !important;
  color: #0f172a;
}

.a2a_menu a {
  color: inherit !important;
}

.pct-tour-bottombar-trigger {
  height: 1px;
}

.pct-tour-bottombar {
  z-index: 1030;
  background: #fff;
  border-top: 3px solid #c2975b;
  border-top-right-radius: 20px;
  border-top-left-radius: 30px;
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(115%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.pct-tour-bottombar--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.pct-tour-bottombar__meta {
  min-width: 0;
  max-width: 100%;
  flex: 1 1 auto;
  min-inline-size: 0;
}

.pct-tour-bottombar__title {
  max-width: 52ch;
}

.pct-tour-bottombar__iconbtn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.pct-tour-bottombar__cta {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  font-weight: 800;
  justify-self: center;
}

.pct-tour-bottombar__center {
  justify-self: center;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.pct-tour-bottombar__actions {
  justify-self: end;
  flex: 0 0 auto;
  gap: 0.55rem !important;
}

.pct-tour-bottombar__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
}

.pct-tour-bottombar__actions {
  justify-content: flex-end;
  white-space: nowrap;
  flex-wrap: nowrap !important;
}

.pct-btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: transparent;
  color: var(--pct-accent);
  border: 2px solid var(--pct-accent);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background-color 240ms ease-out, color 240ms ease-out, border-color 240ms ease-out;
}

.pct-btn-outline-pill:hover,
.pct-btn-outline-pill:focus {
  background: var(--pct-accent);
  color: #fff;
  border-color: var(--pct-accent);
}

.pct-tour-bottombar .pct-btn-outline-pill:hover,
.pct-tour-bottombar .pct-btn-outline-pill:focus {
  transform: none;
}

.pct-tour-bottombar__secondary {
  font-weight: 700;
}

body.has-pct-tour-bottombar {
  padding-bottom: 96px;
}

@media (prefers-reduced-motion: reduce) {
  .pct-tour-bottombar {
    transition: none;
  }
}

@media (max-width: 991.98px) {
  .pct-tour-bottombar__inner {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .pct-tour-bottombar__meta {
    width: 100%;
  }

  .pct-tour-bottombar__center {
    justify-self: stretch;
  }

  .pct-tour-bottombar__actions {
    justify-self: start;
    justify-content: flex-start;
  }
}

.pct-tour-highlights {
  border: 0;
  background: #fff;
  border-radius: var(--pct-radius);
  padding: 1rem 0 0.75rem;
  margin: 1.5rem 0 1.5rem;
  scroll-margin-top: calc(var(--pct-header-height, 72px) - var(--pct-header-shadow-overlap, 0px) + var(--pct-tour-mini-nav-height, 48px) + 24px);
}

.pct-tour-highlights__title {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.pct-tour-highlights__list {
  margin: 0;
  padding-left: 0;
  color: #374151;
  list-style: none;
}

.pct-tour-highlights__list li {
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.pct-tour-highlights__list li::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--pct-secondary-cta);
  font-size: 0.75rem;
  margin-top: 0.2rem;
}

.pct-tour-highlights__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  align-items: stretch;
}

.pct-tour-highlights__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pct-tour-highlights__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
}

.pct-tour-highlights__media {
  display: flex;
  min-height: 240px;
  height: 100%;
}

.pct-tour-highlights__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--pct-radius);
}

.pct-tour-highlights__image-placeholder {
  width: 100%;
  border-radius: var(--pct-radius);
  background: rgba(15, 23, 42, 0.06);
  color: #6b7280;
  display: grid;
  place-items: center;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
}

@media (max-width: 991.98px) {
  .pct-tour-highlights__grid {
    grid-template-columns: 1fr;
  }

  .pct-tour-highlights__lists {
    grid-template-columns: 1fr;
  }
}

.pct-tour-body {
  margin-top: 1.25rem;
}

.pct-tour-section-title {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin: 0 0 0.75rem;
  color: var(--pct-primary);
}

.pct-tour-section {
  margin: 1.75rem 0;
  scroll-margin-top: calc(var(--pct-header-height, 72px) - var(--pct-header-shadow-overlap, 0px) + var(--pct-tour-mini-nav-height, 48px) + 24px);
  overflow: visible;
}

.pct-tour-section#tour-itinerary,
.pct-tour-section#tour-itinerary .container,
.pct-tour-section#tour-itinerary .row,
.pct-tour-section#tour-itinerary [class*="col-"] {
  overflow: visible;
}

.pct-tour-itinerary-grid {
  align-items: start;
  overflow: visible;
}

.pct-tour-map {
  position: sticky;
  top: calc(var(--pct-tour-mini-nav-height, 48px) + 16px) !important;
  border-radius: var(--pct-radius);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  align-self: flex-start;
  z-index: 5;
  height: fit-content;
}

.pct-tour-section#tour-itinerary .pct-tour-map {
  position: sticky;
}

.pct-tour-map__header {
  font-weight: 700;
  color: var(--pct-primary);
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pct-tour-map__image {
  width: 100%;
  border-radius: var(--pct-radius);
  display: block;
  object-fit: cover;
  min-height: 220px;
}

.pct-related {
  position: relative;
  overflow: hidden;
  border-top-left-radius: var(--pct-radius);
  border-top-right-radius: var(--pct-radius);
}

.pct-related--scroller::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(0px, calc(100vw - 6rem), 1800px);
  height: 55%;
  background: var(--pct-secondary-cta);
  border-radius: var(--pct-radius) var(--pct-radius) 0 0;
  z-index: 0;
}

.pct-related__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.pct-related__intro {
  color: #fff;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.pct-related__title {
  margin: 0 0 0.35rem;
  color: #fff;
}

.pct-related__subtitle {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.pct-related__scroller {
  position: relative;
}

.pct-related__controls {
  position: absolute;
  top: -54px;
  right: 0;
  display: flex;
  gap: 0.75rem;
}

.pct-related__control {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.pct-related__control:hover,
.pct-related__control:focus {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.pct-related__track {
  --pct-related-gap: 1.25rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 33vw, 430px);
  gap: var(--pct-related-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  padding-bottom: 0.5rem;
}

.pct-related__track::-webkit-scrollbar {
  height: 8px;
}

.pct-related__track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.pct-related-card {
  border-radius: 14px;
  overflow: hidden;
  border: 0;
  /*box-shadow: 0 12px 20px -18px rgba(15, 23, 42, 0.35);*/
  background: var(--pct-bg);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.pct-related-card__media {
  position: relative;
  overflow: hidden;
  background: var(--pct-bg);
}

.pct-related-card__media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-bottom-right-radius: 18px;
  transition: border-bottom-right-radius 0.25s ease;
}

body.pct-home .pct-home-best__card:hover .pct-related-card__media img,
body.pct-home .pct-home-best__card:focus-within .pct-related-card__media img {
  border-bottom-right-radius: 85px;
}

body.pct-home .pct-home-best__card {
  position: relative;
  height: 420px;
  border-radius: 18px;
  border-bottom-right-radius: 18px;
  background: transparent;
  overflow: hidden;
  transition: border-bottom-right-radius 0.25s ease;
}

body.pct-home .pct-home-best__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

body.pct-home .pct-home-best__card .pct-related-card__link {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
}

body.pct-home .pct-home-best__card.pct-related-card {
  background: transparent;
}

body.pct-home .pct-home-best__card.pct-related-card,
body.pct-home .pct-home-best__card .pct-related-card__media {
  background: transparent;
}

body.pct-home .pct-home-best__card:hover,
body.pct-home .pct-home-best__card:focus-within {
  border-bottom-right-radius: 85px;
}

body.pct-home .pct-home-best__card .pct-related-card__media {
  height: 100%;
  background: transparent;
  position: relative;
  z-index: 0;
  border-radius: inherit;
  overflow: hidden;
}

body.pct-home .pct-home-best__card .pct-related-card__media img {
  height: 100%;
  border-radius: inherit;
  border-bottom-right-radius: inherit;
}

body.pct-home .pct-home-best__card .pct-related-card__body {
  position: absolute;
  inset: 0;
  padding: 1.2rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  background: none;
  color: #fff;
  z-index: 2;
}

body.pct-home .pct-home-best__card::after {
  content: none;
}

body.pct-home .pct-home-best__card .pct-related-card__media::after {
  content: none;
}

body.pct-home .pct-home-best__card .pct-related-card__title {
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(10, 16, 27, 0.85), 0 6px 18px rgba(10, 16, 27, 0.6);
}

body.pct-home .pct-home-best__card .pct-related-card__title a {
  color: #fff;
  text-shadow: inherit;
}

body.pct-home .pct-home-best__card .pct-related-card__text {
  color: rgba(255, 255, 255, 0.82);
}

body.pct-home .pct-home-best__card .pct-related-card__price {
  color: #fff;
  text-shadow: 0 1px 2px rgba(10, 16, 27, 0.8), 0 6px 14px rgba(10, 16, 27, 0.55);
}

body.pct-home .pct-home-best__card .pct-related-card__cta {
  background: var(--pct-accent);
  color: #fff;
  border: 1px solid transparent;
}

body.pct-home .pct-home-best__card .pct-related-card__cta:hover,
body.pct-home .pct-home-best__card .pct-related-card__cta:focus {
  background: #111827;
  border-color: #111827;
  transform: translateY(-1px);
}

.pct-related-card__tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0f172a;
  z-index: 2;
}

.pct-related-card__type {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0f172a;
  z-index: 2;
}

.pct-related-card__body {
  padding: 0.9rem 1rem 1rem;
  display: grid;
  gap: 0.6rem;
}

.pct-related-card__title {
  margin: 0;
  font-size: 1rem;
}

.pct-related-card__title a {
  color: inherit;
  text-decoration: none;
}

.pct-related-card__title a:hover {
  text-decoration: none;
}

.pct-related-card__text {
  margin: 0;
  color: #374151;
  font-size: 0.85rem;
}

.pct-related-card__price {
  margin: 0;
  font-weight: 700;
  color: var(--pct-primary);
  font-size: 0.92rem;
}

.pct-related-card__cta {
  align-self: flex-start;
  background: var(--pct-primary);
  color: #fff;
  border-radius: 7px;
  border-bottom-right-radius: 1.6vmax;
  padding: 0.45rem 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  width: max-content;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease, border-radius 0.25s ease;
}

.pct-related-card__cta:hover,
.pct-related-card__cta:focus {
  background: #111827;
  color: #fff;
  transform: translateY(-1px);
  border-bottom-right-radius: 7px;
}

@media (min-width: 992px) {
  .pct-related__track {
    grid-auto-columns: calc((100% - 2 * var(--pct-related-gap)) / 3);
  }
}

@media (min-width: 992px) {
  body.pct-home .pct-home-best__track {
    grid-auto-columns: calc((100% - 3 * var(--pct-related-gap)) / 4);
  }
}

@media (max-width: 991.98px) {
  body.pct-home .pct-home-best__track {
    grid-auto-columns: calc((100% - var(--pct-related-gap)) / 2);
  }
}

@media (max-width: 575.98px) {
  body.pct-home .pct-home-best__track {
    grid-auto-columns: minmax(240px, 85%);
  }
}

@media (max-width: 991.98px) {
  .pct-related__layout {
    grid-template-columns: 1fr;
  }

  .pct-related__controls {
    position: static;
    justify-content: flex-end;
    margin-bottom: 0.75rem;
  }

  .pct-related__track {
    grid-auto-columns: minmax(240px, 80%);
  }
}

.pct-rentals {
  padding: 2.75rem 0;
  margin: 2.5rem 0;
  min-height: 260px;
  display: flex;
  align-items: center;
  background-color: #f3f4f6;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--pct-primary);
  text-shadow: none;
}

.pct-rentals__inner {
  border-radius: 0;
  padding: 0;
  background: transparent;
  border: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-direction: column;
  max-width: 560px;
}

.pct-rentals__title {
  margin: 0 0 0.4rem;
  color: var(--pct-primary);
}

.pct-rentals__text {
  margin: 0;
  color: var(--pct-primary);
}

.pct-rentals__cta {
  background: var(--pct-secondary-cta);
  color: #fff;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-weight: 700;
}

.pct-rentals__cta:hover,
.pct-rentals__cta:focus {
  color: #fff;
  background: var(--pct-accent-strong);
}

@media (max-width: 575.98px) {
  .pct-related__intro {
    text-align: left;
  }

  .pct-related-card__media img {
    height: 160px;
  }
}

.pct-pricing-option {
  margin-bottom: 1.25rem;
}

.pct-pricing-option__label {
  font-weight: 700;
  font-size: 0.85rem;
  color: #0f172a;
  margin: 0 0 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pct-pricing-menu {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  padding: 0.7rem 0.85rem;
  background: #fff;
  display: grid;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.pct-pricing-menu::before {
  display: none;
}

.pct-pricing-menu__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.35rem 0.25rem 0.35rem 0.5rem;
}

.pct-pricing-menu__label {
  color: #0f172a;
  letter-spacing: 0.02em;
}

.pct-pricing-menu__dots {
  height: 2px;
  background-image: radial-gradient(circle, rgba(15, 23, 42, 0.22) 1px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: center;
}

.pct-pricing-menu__price {
  color: var(--pct-secondary-cta);
  white-space: nowrap;
  font-size: 0.95rem;
}

.pct-ix-title {
  margin-bottom: 0.75rem;
}

.pct-ix__panel {
  background: #fbfaf4;
  border: 1px solid rgba(225, 217, 180, 0.8);
  border-radius: 14px;
  padding: 1.25rem;
}

.pct-ix-list {
  padding-left: 0;
}

.pct-ix-list li + li {
  margin-top: 0.35rem;
}

.pct-ix-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.pct-ix-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.pct-ix-icon--yes {
  background: #2e7d32;
}

.pct-ix-icon--yes::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 1;
}

.pct-ix-icon--no {
  background: #c62828;
}

.pct-ix-icon--no::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 575.98px) {
  .pct-pricing-menu {
    padding: 0.6rem 0.7rem;
    font-size: 0.82rem;
  }

  .pct-pricing-menu__item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 0.4rem 0.15rem 0.4rem 0.4rem;
  }

  .pct-pricing-menu__dots {
    display: none;
  }

  .pct-pricing-menu__price {
    font-size: 0.88rem;
  }
}

.pct-tour-sections {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: visible;
}

.pct-tour-sections__content {
  overflow: visible;
}

.pct-tour-intro-block {
/*  margin-bottom: 1.25rem;*/
}

body.pct-tour-page .site-grid,
body.pct-tour-page .container-component,
body.pct-tour-page main {
  overflow: visible;
  background: #fff;
}

body.pct-tour-page {
  overflow-x: hidden;
}

.pct-contact-hero {
  margin-left: 10px;
  margin-right: 10px;
}

.pct-contact-hero__img {
  border-radius: 10px;
  display: block;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
}

.pct-contact-panel {
  /* max-width: 520px;*/
}

.pct-contact-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #111827;
}

.pct-contact-intro {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.pct-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pct-contact-icon {
  width: 50px;
  height: 50px;
  border-radius: none;
  background: none;
  color: var(--pct-t2-tertiary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pct-contact-label {
  margin-bottom: 0.4rem;
  font-weight: 700;
  color: #111827;
}

.pct-contact-text {
  color: #4b5563;
}
.pct-contact-section {
  margin: 2.5rem 0;
}
.pct-contact-map #map {
  width: 100%;
  min-height: 500px;
  border-radius: var(--pct-radius);
  box-shadow: var(--pct-shadow-soft);
}

.pct-tour-mini-nav-spacer {
  /* Used as a tiny sentinel for JS to detect when the mini-nav becomes “stuck”. */
  height: 1px;
}

.pct-tour-mini-nav {
  /* Use native CSS sticky to avoid layout jumps caused by switching to position:fixed. */
  position: sticky;
  top: calc(var(--pct-header-height, 0px) - var(--pct-header-shadow-overlap, 0px));
  z-index: 45;
  width: 100%;
  margin: 0 0 1.5rem;
  background: transparent;
  border: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  background: #fafafa;
}

.pct-tour-mini-nav--fixed,
.pct-tour-mini-nav--stuck {
  /* State class toggled by JS when the sticky nav is "stuck" (for styling only). */
  transform: none;
  z-index: 1040;
}

.pct-tour-mini-nav--out {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.pct-tour-mini-nav--in {
  opacity: 0;
  transform: translateY(-8px);
}

.pct-tour-mini-nav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0;
  justify-content: flex-start;
  padding: 0.55rem 1rem;
  width: min(100%, var(--pct-content-width, 1200px));
  margin: 0 auto;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  align-items: center;
}

.pct-tour-mini-nav__link {
  color: var(--pct-primary);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  padding: 0.25rem 0.5rem;
}

.pct-tour-mini-nav__pipe {
  color: #c0c0c0;
  font-weight: 600;
  margin: 0 0.5rem;
  line-height: 1;
}

.pct-tour-mini-nav__price {
  margin-left: auto;
  display: none;
  align-items: baseline;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--pct-warm);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
}

.pct-tour-mini-nav__price-label,
.pct-tour-mini-nav__price-note {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
}

.pct-tour-mini-nav__price-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--pct-warm);
}

.pct-tour-mini-nav__link.is-active {
  color: var(--pct-primary);
}

.pct-tour-mini-nav__indicator {
  position: absolute;
  bottom: 4px;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--pct-secondary-cta);
  border-radius: 999px;
  transform: translateX(0);
  transition: transform 0.28s ease, width 0.28s ease;
  pointer-events: none;
}

.pct-tour-mini-nav__link:hover,
.pct-tour-mini-nav__link:focus {
  text-decoration: none;
}

.pct-tour-mini-nav--fixed .pct-tour-mini-nav__price,
.pct-tour-mini-nav--stuck .pct-tour-mini-nav__price {
  display: inline-flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pct-tour-booking {
  position: sticky;
  top: calc(var(--pct-tour-mini-nav-height, 48px) + 16px);
  background: #fff;
  border-radius: var(--pct-radius);
  padding: 1.25rem;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
  color: #0f172a;
  overflow: visible;
}

@media (max-width: 991.98px) {
  .pct-tour-booking {
    position: static;
  }

  .pct-tour-map {
    position: static;
  }

}

.pct-tour-booking__inner {
  background: transparent;
  color: var(--pct-ink);
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: grid;
  gap: 0.85rem;
}

.pct-tour-booking__placeholder {
  color: #374151;
  font-weight: 600;
}

.pct-tour-booking__btn {
  width: 100%;
  padding: 0.75rem 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pct-tour-booking__btn:hover,
.pct-tour-booking__btn:focus {
  color: #fff;
}

/* 5-image hero section - START */
/* --- Tour Hero Mosaic --- */
.pct-hero-mosaic{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 12px;
}

.pct-tile{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  display: block;
}

.pct-tile--square {
  border-radius: 0;
}

.pct-tile--square img {
  border-radius: 0;
}

.pct-tile--square-right {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pct-tile--square-right img {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pct-tile--square-left {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pct-tile--square-left img {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pct-tile--square-br {
  border-bottom-right-radius: 0;
}

.pct-tile--square-br img {
  border-bottom-right-radius: 0;
}

.pct-tile--square-tr {
  border-top-right-radius: 0;
}

.pct-tile--square-tr img {
  border-top-right-radius: 0;
}

.pct-tile__link{
  display: block;
  height: 100%;
}

.pct-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  transition: transform .35s ease;
}

.pct-tile:hover img{
  transform: scale(1.04);
}

.pct-tile--big{
  grid-column: 1 / 2;
  grid-row: span 2;
}

.pct-tile__cta {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: #fff;
  color: var(--pct-secondary-cta);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.pct-tile__cta:hover,
.pct-tile__cta:focus {
  background: var(--pct-secondary-cta);
  color: #fff;
  transform: translateY(-1px);
}

/* Tablet */
@media (max-width: 991.98px){
  .pct-hero-mosaic{
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .pct-tile--big{
    grid-column: 1 / -1;
    grid-row: span 1;
  }
}

/* Mobile */
@media (max-width: 575.98px){
  .pct-hero-mosaic{
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}
/* 5-image hero section - END */

/* Footer */
.pct-footer {
  background: linear-gradient(90deg, #0c2433 0%, #103646 50%, #0c2433 100%);
  color: #fff;
  font-size: 0.85rem;
  padding: 56px 0 32px;
  border-top: 0;
  border-top-left-radius: var(--pct-radius);
  border-top-right-radius: var(--pct-radius);
  position: relative;
  z-index: 3;
}

.pct-footer__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.pct-footer__brand {
  max-width: 320px;
}

.pct-footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  justify-content: center;
  width: 100%;
}

.pct-footer__logo img {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
}

.pct-footer__blurb {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: inherit;
}

.pct-footer__title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color:#fff;
}

.pct-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.pct-footer__links a {
  color: inherit;
  text-decoration: none;
  font-size: 0.85rem;
}

.pct-footer__links a:hover,
.pct-footer__links a:focus {
  text-decoration: underline;
}

.pct-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pct-footer__social-link {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pct-footer__social-link:focus {
  outline: none;
}

.pct-footer__social-link:hover,
.pct-footer__social-link:focus-visible {
  background: #fff;
  color: var(--pct-t2-tertiary);
  text-decoration: none;
}
.pct-footer__social-link:focus-visible {
  background: #fff;
  color: var(--pct-t2-tertiary);
}

.pct-footer__bar {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* Itinerary */
.pct-itinerary {
  position: relative;
}

.pct-itin-accordion {
  padding-left: 1.8rem;
}

.pct-itin-item {
  position: relative;
  padding: 0.85rem 0;
  border: 0;
  background: transparent;
  --pct-itin-line-color: var(--pct-primary-cta-btn);
  --pct-itin-line-width: 2px;
  --pct-itin-line-left: -2.15rem;
  --pct-itin-marker-size: var(--pct-itin-icon-size);
  --pct-itin-icon-size: 28px;
  --pct-itin-map-offset: 0px;
  --pct-itin-marker-offset: 0px;
  --pct-itin-top: 1.2rem;
}

.pct-itin-item::before,
.pct-itin-item::after {
  content: "";
  position: absolute;
  left: var(--pct-itin-line-left);
  top: var(--pct-itin-top);
  width: var(--pct-itin-line-width);
  height: calc(100% + 1.7rem);
  background: var(--pct-itin-line-color);
  transform-origin: top;
  z-index: 0;
}

.pct-itin-item::after {
  background: var(--pct-itin-line-color);
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.pct-itin-item--open::after {
  transform: scaleY(1);
}

.pct-itin-item--last {
  --pct-itin-marker-size: var(--pct-itin-icon-size);
}

.pct-itin-item--last::before,
.pct-itin-item--last::after {
  height: var(--pct-itin-marker-size);
}

.pct-itin-timeline {
  position: absolute;
  left: calc(var(--pct-itin-line-left) - ((var(--pct-itin-marker-size) - var(--pct-itin-line-width)) / 2));
  top: var(--pct-itin-top);
  width: var(--pct-itin-marker-size);
  height: var(--pct-itin-marker-size);
  background: var(--pct-itin-line-color);
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 1;
  transform: translateX(var(--pct-itin-marker-offset));
  transition: transform 0.2s ease;
}

.pct-itin-item--first .pct-itin-timeline,
.pct-itin-item--last .pct-itin-timeline {
  width: var(--pct-itin-icon-size);
  height: var(--pct-itin-icon-size);
  background: #fff;
  border: 2px solid var(--pct-itin-line-color);
  color: var(--pct-itin-line-color);
}

.pct-itin-item--first {
  --pct-itin-marker-offset: var(--pct-itin-map-offset);
}

.pct-itin-item--first .pct-itin-timeline::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75rem;
  transform: translateX(0);
}

.pct-itin-item--last .pct-itin-timeline::before {
  content: "\f015";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75rem;
}

.pct-itin-item--open .pct-itin-timeline {
  transform: translateX(var(--pct-itin-marker-offset)) scale(1.05);
}

.pct-itin-dot {
  display: none;
}

.pct-itin-step {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.pct-itin-header {
  margin: 0;
}

.pct-itin-button {
  background: transparent;
  border: 0;
  padding: 0.5rem 0.6rem;
  box-shadow: none;
  color: #0f172a;
  font-weight: 600;
  border-radius: 12px;
}

.pct-itin-button:focus {
  box-shadow: none;
}

.pct-itin-button::after {
  margin-left: auto;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  border: 1px dashed rgba(30, 111, 109, 0.7);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.85rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231e6f6d' d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.pct-itin-button:not(.collapsed) {
  background: var(--pct-secondary-cta);
  color: #fff;
}

.pct-itin-button:not(.collapsed)::after {
  border-color: rgba(255, 255, 255, 0.9);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
}

.pct-itin-button:hover::after,
.pct-itin-button:focus-visible::after {
  background-color: var(--pct-secondary-cta);
  border-color: var(--pct-secondary-cta);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
}

.pct-itin-button:not(.collapsed):hover::after,
.pct-itin-button:not(.collapsed):focus-visible::after {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.95);
}

.pct-itin-day {
  font-weight: 700;
  margin-right: 0.35rem;
}

.pct-itin-title {
  font-weight: 600;
}

.pct-itin-body {
  padding: 0.5rem 0 0.9rem;
  color: #374151;
}

@media (max-width: 575.98px) {
  .pct-itin-accordion {
    padding-left: 1.2rem;
  }

  .pct-itin-item {
    --pct-itin-line-left: -1.6rem;
  }
}

/* Palette cleanup and hierarchy polish */
.pct-tour-benefits,
.pct-tour-fact,
.pct-tour-booking,
.pct-tour-map,
.pct-pricing-menu,
.pct-related-card {
  background: var(--pct-surface);
  border-color: var(--pct-border);
  /*box-shadow: var(--pct-shadow-soft);*/
}

.pct-ix__panel {
  background: var(--pct-soft);
  border-color: var(--pct-border);
  box-shadow: var(--pct-shadow-soft);
}

.pct-tour-mini-nav {
  background: var(--pct-surface);
  border-bottom: 1px solid var(--pct-border);
}

.pct-tour-hero-meta__label,
.pct-tour-hero-price__label,
.pct-tour-hero-price__note,
.pct-tour-mini-nav__price-label,
.pct-tour-mini-nav__price-note {
  color: var(--pct-muted);
}



/* ==========================================================================
   Tour Page refinements
   ========================================================================== */

.pct-tour-hero-price__label,
.pct-tour-mini-nav__price-label{
  color: var(--pct-muted) !important;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  font-weight: 700;
}
.pct-tour-hero-price__value,
.pct-tour-mini-nav__price-value{
  color: var(--pct-ink) !important;
  font-weight: 700;
}
.pct-tour-hero-price__note,
.pct-tour-mini-nav__price-note{
  color: var(--pct-muted) !important;
}

.pct-tour-mini-nav{
  border-bottom: 1px solid var(--pct-border);
}
.pct-tour-mini-nav a{
  color: var(--pct-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .06em;
  text-decoration: none;
}
.pct-tour-mini-nav a.active,
.pct-tour-mini-nav a:hover{
  color: var(--pct-primary);
}

.pct-tour-booking{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--pct-radius);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}
.pct-tour-booking__title{
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: .1rem;
}
.pct-tour-booking__price-line{
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .35rem;
}
.pct-tour-booking__price-label{
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 700;
}
.pct-tour-booking__price-value{
  font-family: var(--font-heading);
  color: #0f172a;
  font-weight: 800;
  font-size: 1.6rem;
}
.pct-tour-booking__price-note{
  color: #6b7280;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pct-tour-booking__price-meta{
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.15rem;
}
.pct-tour-booking__divider{
  height: 1px;
  background: #e5e7eb;
  margin: .4rem 0 .1rem;
}
.pct-tour-booking__placeholder{
  color: #1f2937;
  font-weight: 600;
}
.pct-tour-booking__footnote{
  color: #6b7280;
  font-size: .88rem;
  line-height: 1.45;
  margin-top: .1rem;
}
.pct-tour-booking__btn{
  border-radius: var(--pct-radius);
  padding: 0.85rem 1rem;
}
.pct-tour-mini__label{
  font-weight: 600;
}
.pct-tour-mini__hint{
  font-size: 0.85rem;
  color: #6b7280;
}
.pct-enquiry-modal__subtitle{
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 0.15rem;
}
.pct-enquiry-modal{
  border-radius: var(--pct-radius);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.2);
  overflow: hidden;
  background: #fff;
  max-height: 92vh;
  height: min(92vh, 760px);
}
.pct-enquiry-modal .modal-body{
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}
.pct-modal-close{
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}
.modal-backdrop.show{
  background: rgba(0, 0, 0, 0.55);
  opacity: 1;
}
.glightbox-container .goverlay{
  background: rgba(0, 0, 0, 0.55) !important;
}
.pct-enquiry-split{
  display: flex;
  min-height: 0;
  height: 100%;
}
.pct-enquiry-split__media{
  position: relative;
  flex: 0 0 44%;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  border-top-left-radius: var(--pct-radius);
  border-bottom-left-radius: var(--pct-radius);
  overflow: hidden;
}
.pct-enquiry-split__media::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.6));
}
.pct-enquiry-split__caption{
  position: absolute;
  left: 20px;
  bottom: 18px;
  right: 20px;
  color: #f8fafc;
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.pct-enquiry-split__panel{
  flex: 1 1 55%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #fff;
  position: relative;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.pct-enquiry-split__panel::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: rgba(15, 23, 42, 0.08);
}
.pct-enquiry-title{
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
}
.pct-enquiry-subtitle{
  color: #0f172a;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.pct-enquiry-text{
  color: #475569;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.pct-enquiry-list{
  padding-left: 1.1rem;
  color: #475569;
  margin: 0;
}
.pct-enquiry-list li + li{
  margin-top: 0.4rem;
}
.pct-enquiry-form .form-control,
.pct-enquiry-form .form-select,
.pct-enquiry-form textarea{
  width: 100%;
}

/* RSForm - Intrepid form behaviour + floating labels */
.rsform-block-emailaddress{
  display:none;
  visibility:hidden;
}

/* Mobile default: single column */
.pct-rsform-intrepid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

/* Desktop/larger screens: two columns */
@media (min-width: 992px) {
  .pct-rsform-intrepid {
    grid-template-columns: 1fr 1fr;
  }

  /* Full-width rows */
  .pct-rsform-intrepid .rsform-block-tour-date,
  .pct-rsform-intrepid .rsform-block-special-requests,
  .pct-rsform-intrepid .rsform-block-recaptcha,
  .pct-rsform-intrepid .rsform-block-submit {
    grid-column: 1 / -1;
  }
}

/* Honeypot */
.pct-rsform-intrepid .rsform-block-emailaddress{
  display:none !important;
  visibility:hidden !important;
}

/* Remove Bootstrap mb-3 inheritance inside RSForm */
.pct-rsform-intrepid .mb-3{
  margin-bottom: 0 !important;
}

/* Base block spacing */
.pct-rsform-intrepid .pct-field{
  margin: 0;
  position: relative;
}

/* Floating-label block */
.pct-rsform-intrepid .pct-field--float{
  padding-top: 14px;
}

/* Label */
.pct-rsform-intrepid .pct-field--float .pct-label{
  position: absolute;
  left: 0;
  top: 22px;
  font-size: 0.98rem;
  color: var(--pct-ink);
  transition: all .18s ease;
  pointer-events: none;
}

.pct-rsform-intrepid .pct-field--float.is-focused .pct-label,
.pct-rsform-intrepid .pct-field--float.has-value .pct-label{
  top: 0;
  font-size: .78rem;
  color: var(--pct-ink);
}

/* Control area */
.pct-rsform-intrepid .pct-control{
  position: relative;
}

/* Inputs: minimalist underline */
.pct-rsform-intrepid .pct-field--float input[type="text"],
.pct-rsform-intrepid .pct-field--float input[type="email"],
.pct-rsform-intrepid .pct-field--float input[type="tel"],
.pct-rsform-intrepid .pct-field--float select,
.pct-rsform-intrepid .pct-field--float textarea{
  width: 100%;
  border: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, .18) !important;
  border-radius: 0 !important;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  color: #1f2937;
  font-size: 1rem;
  padding: 12px 0 10px 0 !important;
}

/* Focus underline */
.pct-rsform-intrepid .pct-field--float:focus-within input,
.pct-rsform-intrepid .pct-field--float:focus-within select,
.pct-rsform-intrepid .pct-field--float:focus-within textarea{
  border-bottom-color: rgba(0,0,0,.55) !important;
}

/* Validation */
.pct-rsform-intrepid .pct-validation{
  font-size: .85rem;
  color: #b42318;
  margin-top: 6px;
}

/* Recaptcha spacing */
.pct-rsform-intrepid .pct-recaptcha{
  margin-top: 6px;
}

/* Date field (RSForm calendar) */
.pct-rsform-intrepid .pct-field--date .input-group{
  position: relative;
}

.pct-rsform-intrepid .pct-field--date input.rsform-calendar-box{
  cursor: pointer !important;
  padding-right: 48px !important;
}

.pct-rsform-intrepid .pct-field--date .input-group > button.rsform-calendar-button{
  position: absolute !important;
  right: 6px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 8px !important;
  background-color: transparent !important;
  box-shadow: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f2937' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2.5' x2='16' y2='6'/%3E%3Cline x1='8' y1='2.5' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 18px 18px !important;
  cursor: pointer !important;
  z-index: 20 !important;
  opacity: .9;
  text-indent: -9999px !important;
  overflow: hidden !important;
  flex: 0 0 auto !important;
}

.pct-rsform-intrepid .pct-field--date .input-group > button.rsform-calendar-button::before{
  content: none !important;
}

.pct-rsform-intrepid .pct-field--date .input-group > button.rsform-calendar-button:hover{
  opacity: 1;
}

.pct-rsform-intrepid .pct-field--date .input-group > img.ui-datepicker-trigger{
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  cursor: pointer !important;
  z-index: 20 !important;
  opacity: .9;
}

.pct-rsform-intrepid .pct-field--date .input-group > img.ui-datepicker-trigger:hover{
  opacity: 1;
}

.pct-rsform-intrepid .pct-field--date .ui-datepicker-trigger.pct-date-trigger-image--hidden{
  display: none !important;
}

/* Textarea style */
.pct-rsform-intrepid .pct-field--textarea textarea{
  border: 1px solid rgba(0,0,0,.18) !important;
  border-radius: 10px !important;
  padding: 14px 12px 12px 12px !important;
  min-height: 110px;
  resize: vertical;
}

.pct-rsform-intrepid .pct-field--textarea:focus-within textarea{
  border-color: rgba(0,0,0,.45) !important;
}

.pct-rsform-intrepid .pct-field--textarea .pct-label{
  left: 10px;
  padding: 0 6px;
  background: #fff;
  border-radius: 6px;
  top: 18px;
}

.pct-rsform-intrepid .pct-field--textarea.has-value .pct-label,
.pct-rsform-intrepid .pct-field--textarea.is-focused .pct-label{
  top: -6px;
  font-size: .78rem;
}

/* Submit button */
.pct-rsform-intrepid input[type="submit"],
.pct-rsform-intrepid button[type="submit"]{
  border-radius: 10px;
  padding: 10px 16px;
}

/* Chrome autofill */
.pct-rsform-intrepid input:-webkit-autofill,
.pct-rsform-intrepid textarea:-webkit-autofill,
.pct-rsform-intrepid select:-webkit-autofill{
  -webkit-text-fill-color: #1f2937 !important;
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0 1000px transparent inset !important;
}

/* Enquiry modal compact mode for shorter laptop viewports */
@media (min-width: 992px) and (max-height: 900px){
  .pct-enquiry-split__panel{
    padding: 1.05rem 1.1rem;
    gap: 0.9rem;
  }

  .pct-enquiry-title{
    margin-top: 0;
    margin-bottom: 0.2rem;
    font-size: clamp(1.35rem, 1.9vw, 1.65rem);
  }

  .pct-enquiry-subtitle{
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
  }

  .pct-enquiry-text{
    margin-bottom: 0.35rem;
    line-height: 1.35;
    font-size: 0.92rem;
  }

  .pct-rsform-intrepid{
    gap: 0.75rem;
  }

  .pct-rsform-intrepid .pct-field--float{
    padding-top: 10px;
  }

  .pct-rsform-intrepid .pct-field--float .pct-label{
    top: 18px;
    font-size: 0.9rem;
  }

  .pct-rsform-intrepid .pct-field--float.is-focused .pct-label,
  .pct-rsform-intrepid .pct-field--float.has-value .pct-label{
    top: -1px;
    font-size: 0.72rem;
  }

  .pct-rsform-intrepid .pct-field--float input[type="text"],
  .pct-rsform-intrepid .pct-field--float input[type="email"],
  .pct-rsform-intrepid .pct-field--float input[type="tel"],
  .pct-rsform-intrepid .pct-field--float select,
  .pct-rsform-intrepid .pct-field--float textarea{
    padding: 9px 0 7px 0 !important;
  }

  .pct-rsform-intrepid .pct-validation{
    margin-top: 3px;
    font-size: 0.78rem;
  }

  .pct-rsform-intrepid .pct-field--textarea textarea{
    min-height: 86px;
    padding: 10px 10px 8px 10px !important;
  }

  .pct-rsform-intrepid .pct-field--textarea .pct-label{
    top: 14px;
  }

  .pct-rsform-intrepid .pct-field--textarea.has-value .pct-label,
  .pct-rsform-intrepid .pct-field--textarea.is-focused .pct-label{
    top: -7px;
  }

  .pct-rsform-intrepid input[type="submit"],
  .pct-rsform-intrepid button[type="submit"]{
    padding: 8px 14px;
  }
}

@media (max-width: 991.98px){
  .pct-enquiry-split{
    flex-direction: column;
    min-height: auto;
    height: auto;
  }
  .pct-enquiry-split__media{
    flex: 0 0 auto;
    min-height: 240px;
    border-top-right-radius: var(--pct-radius);
    border-bottom-left-radius: 0;
  }
  .pct-enquiry-split__panel{
    padding: 1rem;
    overflow: visible;
  }
  .pct-enquiry-split__panel::before{
    display: none;
  }
  .pct-enquiry-modal{
    max-height: none;
    height: auto;
  }
  .pct-enquiry-modal .modal-body{
    overflow: visible;
  }
}

.pct-tour section > h2,
.pct-tour .pct-section-title{
  margin-top: 2.4rem;
  margin-bottom: 1rem;
}

.pct-itinerary .pct-itinerary-step__dot,
.pct-itinerary .pct-itinerary-step__line{
  background: var(--pct-border) !important;
}
.pct-itinerary .pct-itinerary-step.is-active .pct-itinerary-step__dot{
  background: var(--pct-primary) !important;
}
.pct-itinerary .pct-itinerary-step__title{
  color: var(--pct-ink);
  font-weight: 700;
}
.pct-itinerary .pct-itinerary-step__toggle{
  color: var(--pct-muted);
}
.pct-itinerary .pct-itinerary-step.is-active .pct-itinerary-step__toggle{
  color: var(--pct-primary);
}

.pct-tour-prices .pct-price-row__value{
  color: var(--pct-ink) !important;
  font-weight: 700;
}
.pct-tour-prices .pct-price-row__label{
  color: var(--pct-ink);
}
.pct-tour-prices .pct-price-row{
  border-bottom: 1px dashed rgba(107,114,128,.35);
}

.pct-inclusions .pct-include-icon,
.pct-inclusions .pct-exclude-icon{
  background: var(--pct-border) !important;
  color: var(--pct-ink) !important;
}

.pct-related .btn{
  border-radius: 999px;
}


/* --- Sticky mini-nav hardening (prevents Bootstrap .navbar from overriding) --- */
body.pct-tour-page .pct-tour-mini-nav{
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
}

/* If you ever re-enable a fixed/sticky header, this keeps spacing correct */
@supports (position: sticky){
  body.pct-tour-page.pct-has-sticky-header .pct-tour-mini-nav{
    top: var(--pct-header-height, 0px) !important;
  }
}

/* --- Material Design 3 refresh (tour page only) --- */
.pct-tour.md3-tour{
  --md-sys-color-primary: var(--pct-primary);
  --md-sys-color-on-primary: #ffffff;
  --md-sys-color-secondary: var(--pct-secondary-cta);
  --md-sys-color-on-secondary: #2f2414;
  --md-sys-color-tertiary: var(--pct-accent);
  --md-sys-color-on-tertiary: #3f1f14;
  --md-sys-color-surface: #ffffff;
  --md-sys-color-surface-variant: #eef1f3;
  --md-sys-color-surface-container: var(--pct-soft);
  --md-sys-color-surface-container-high: #f2f4f6;
  --md-sys-color-outline: var(--pct-border);
  --md-sys-color-on-surface: var(--pct-ink);
  --md-sys-color-on-surface-variant: var(--pct-muted);
  --md-sys-color-primary-container: #e7ebf1;
  --md-sys-color-on-primary-container: var(--pct-primary);
  --md-sys-color-secondary-container: #f2e6d4;
  --md-sys-color-on-secondary-container: #3c2d17;
  --md-sys-color-tertiary-container: #f5d6ca;
  --md-sys-color-on-tertiary-container: #4c271a;
  --md-sys-elevation-1: 0 1px 2px rgba(15, 23, 42, 0.12);
  --md-sys-elevation-2: 0 2px 6px rgba(15, 23, 42, 0.16);
  --md-sys-elevation-3: 0 6px 14px rgba(15, 23, 42, 0.18);
  --md-sys-shape-corner-medium: 16px;
  --md-sys-shape-corner-large: 24px;
}

.pct-tour.md3-tour .md3-headline{
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pct-tour.md3-tour .md3-title{
  font-size: 1rem;
  font-weight: 600;
  color: var(--md-sys-color-on-surface);
}

.pct-tour.md3-tour .md3-price{
  color: var(--md-sys-color-primary);
}

.pct-tour.md3-tour .md3-card{
  background: var(--md-sys-color-surface);
  border: 1px solid var(--md-sys-color-outline);
  border-radius: var(--md-sys-shape-corner-medium);
  box-shadow: none;
}

.pct-tour.md3-tour .md3-card--filled{
  background: var(--md-sys-color-surface-container);
  border-color: transparent;
}

.pct-tour.md3-tour .md3-card--outlined{
  background: var(--md-sys-color-surface);
  border-color: var(--md-sys-color-outline);
  box-shadow: none;
}

.pct-tour.md3-tour .md3-card--elevated{
  background: var(--md-sys-color-surface);
  border-color: transparent;
  box-shadow: var(--md-sys-elevation-2);
}

.pct-tour.md3-tour .md3-card--padded{
  padding: 1.25rem;
}

.pct-tour.md3-tour .md3-btn{
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: var(--md-sys-elevation-1);
  border: 1px solid transparent;
}

.pct-tour.md3-tour .md3-btn--filled{
  background: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
}

.pct-tour.md3-tour .pct-cta-btn.md3-btn--filled{
  background: var(--pct-accent);
  color: #fff;
  border-color: rgba(31, 41, 51, 0.12);
}

.pct-tour.md3-tour .md3-btn--tonal{
  background: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  border-color: transparent;
}

.pct-tour.md3-tour .md3-btn--outlined{
  background: transparent;
  color: var(--md-sys-color-primary);
  border-color: var(--md-sys-color-outline);
  box-shadow: none;
}

.pct-tour.md3-tour .md3-chip{
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  background: var(--md-sys-color-surface-variant);
  color: var(--md-sys-color-on-surface);
  border: 1px solid transparent;
}

.pct-tour.md3-tour .md3-chip--outlined{
  background: transparent;
  border-color: var(--md-sys-color-outline);
  color: var(--md-sys-color-on-surface);
}

.pct-tour.md3-tour .md3-chip--tonal{
  background: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
}

.pct-tour.md3-tour .md3-chip--warn{
  background: #fde7e7;
  color: #6b1a12;
  border-color: rgba(107, 26, 18, 0.2);
}

.pct-tour.md3-tour .md3-chip--flags{
  padding: 0.25rem 0.65rem;
}

.pct-tour.md3-tour .pct-tour-title{
  color: var(--md-sys-color-primary);
}

.pct-tour.md3-tour .pct-tour-subtitle{
  color: var(--md-sys-color-on-surface-variant);
  font-weight: 600;
}

.pct-tour.md3-tour .pct-tour-hero-meta__label,
.pct-tour.md3-tour .pct-tour-hero-price__label,
.pct-tour.md3-tour .pct-tour-hero-price__note,
.pct-tour.md3-tour .pct-tour-mini-nav__price-label,
.pct-tour.md3-tour .pct-tour-mini-nav__price-note{
  color: var(--md-sys-color-on-surface-variant);
  font-weight: 600;
}

.pct-tour.md3-tour .pct-tour-hero-price__value{
  color: var(--md-sys-color-primary);
}

.pct-tour.md3-tour .pct-tour-mini-nav__price-value{
  color: var(--pct-warm);
}

.pct-tour.md3-tour .pct-tour-fact{
  border-radius: var(--md-sys-shape-corner-medium);
  background: var(--md-sys-color-surface-container);
  border-color: transparent;
  box-shadow: none;
}

.pct-tour.md3-tour .pct-tour-fact__label{
  text-transform: none;
  letter-spacing: 0.02em;
}

.pct-tour.md3-tour .pct-tour-booking{
  border-radius: var(--md-sys-shape-corner-large);
  box-shadow: var(--md-sys-elevation-2);
  border: 1px solid var(--md-sys-color-outline);
  background: var(--md-sys-color-surface);
}

.pct-tour.md3-tour .pct-tour-booking__btn{
  text-transform: none;
  letter-spacing: 0.01em;
}

.pct-tour.md3-tour .pct-tour-map{
  border-radius: var(--md-sys-shape-corner-medium);
  background: var(--md-sys-color-surface);
  border-color: var(--md-sys-color-outline);
  box-shadow: none;
}

.pct-tour.md3-tour .pct-tour-highlights{
  border-radius: var(--md-sys-shape-corner-large);
  background: var(--md-sys-color-surface-container);
  padding: 1rem;
}

.pct-tour.md3-tour .pct-tour-section-title{
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  letter-spacing: -0.01em;
  color: var(--md-sys-color-primary);
}

.pct-tour.md3-tour .pct-tour-mini-nav{
  background: var(--md-sys-color-surface-container-high);
  border-bottom: 1px solid var(--md-sys-color-outline);
}

.pct-tour.md3-tour .pct-tour-mini-nav__inner{
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
  gap: 0.4rem 0.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.pct-tour.md3-tour .pct-tour-mini-nav__indicator{
  background: var(--md-sys-color-primary);
  height: 2px;
}

.pct-tour.md3-tour .pct-tour-mini-nav__pipe{
  display: none;
}

.pct-tour.md3-tour .pct-tour-mini-nav__link.md3-chip{
  background: var(--md-sys-color-surface-variant);
  border-color: var(--md-sys-color-outline);
  color: var(--md-sys-color-on-surface);
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
}

.pct-tour.md3-tour .pct-tour-mini-nav__link.md3-chip.is-active{
  background: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  border-color: transparent;
}

.pct-tour.md3-tour .pct-tour-mini-nav__link.md3-chip:hover,
.pct-tour.md3-tour .pct-tour-mini-nav__link.md3-chip:focus{
  background: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  border-color: transparent;
}

.pct-tour.md3-tour .pct-tour-mini-nav__price.md3-chip{
  background: transparent;
  color: var(--pct-warm);
  border-color: rgba(194, 151, 91, 0.35);
  margin-left: auto;
}

.pct-tour.md3-tour .pct-pricing-menu{
  border-radius: var(--md-sys-shape-corner-medium);
  background: var(--md-sys-color-surface);
  box-shadow: none;
}

.pct-tour.md3-tour .pct-ix__panel{
  border-radius: var(--md-sys-shape-corner-medium);
  background: var(--md-sys-color-surface-container);
  box-shadow: none;
}

.pct-tour.md3-tour .md3-table{
  border-radius: var(--md-sys-shape-corner-medium);
  overflow: hidden;
  background: var(--md-sys-color-surface);
  border-collapse: separate;
  border-spacing: 0;
}

.pct-tour.md3-tour .md3-table-wrap{
  border-radius: var(--md-sys-shape-corner-medium);
  overflow: hidden;
  border: 1px solid var(--md-sys-color-outline);
  padding: 0;
}

.pct-tour.md3-tour .md3-table thead th{
  background: var(--md-sys-color-surface-variant);
  color: var(--md-sys-color-on-surface);
  border-bottom: 1px solid var(--md-sys-color-outline);
}

.pct-tour.md3-tour .md3-table th,
.pct-tour.md3-tour .md3-table td{
  border-color: var(--md-sys-color-outline);
}

.pct-tour.md3-tour .md3-accordion .accordion-item{
  border: 0;
  background: transparent;
}

.pct-tour.md3-tour .md3-accordion__button{
  background: var(--md-sys-color-surface-variant);
  border-radius: var(--md-sys-shape-corner-medium);
  color: var(--md-sys-color-on-surface);
  box-shadow: none;
  padding: 1rem 1.1rem;
}

.pct-tour.md3-tour .md3-accordion__button:not(.collapsed){
  background: var(--md-sys-color-surface);
  box-shadow: var(--md-sys-elevation-1);
}

.pct-tour.md3-tour .md3-accordion__button:focus{
  box-shadow: 0 0 0 3px rgba(13, 58, 72, 0.2);
}

.pct-tour.md3-tour .md3-accordion__body{
  background: var(--md-sys-color-surface);
  border-radius: 0 0 var(--md-sys-shape-corner-medium) var(--md-sys-shape-corner-medium);
  margin-top: -0.5rem;
  padding: 0.85rem 1.1rem 1.1rem;
}

.pct-tour.md3-tour .pct-related-card{
  border-radius: var(--md-sys-shape-corner-large);
  box-shadow: var(--md-sys-elevation-2);
  border-color: transparent;
}

.pct-tour.md3-tour .pct-related-card__cta{
  border-radius: 999px;
}
body.pct-home {
  overflow-x: hidden;
}

body.pct-tour-page .mod-breadcrumbs,
body.pct-tour-page .pct-breadcrumbs {
  margin-top: 0.9rem;
  margin-bottom: 0.9rem;
}

body.pct-tour-page .container-component {
  padding-left: clamp(1rem, 4vw, 2.5rem);
  padding-right: clamp(1rem, 4vw, 2.5rem);
}

body.pct-tour-page .pct-related {
  background: #f6f4f0;
}

body.pct-tour-page .pct-related--scroller::before {
  background: transparent;
}

body.pct-tour-page .pct-related__eyebrow {
  display: inline-block;
  margin-bottom: 0.4rem;
}

body.pct-tour-page .pct-related__title {
  color: #013d48;
}

body.pct-tour-page .pct-related__subtitle {
  color: #5b5b5b;
}

body.pct-tour-page .pct-related__control {
  border-color: #013d48;
  color: #013d48;
}

body.pct-tour-page .pct-related__control:hover,
body.pct-tour-page .pct-related__control:focus {
  background: rgba(1, 61, 72, 0.08);
}

body.pct-tour-page .pct-related__track::-webkit-scrollbar-thumb {
  background: rgba(1, 61, 72, 0.35);
}
.destination-tours {
  padding: 3rem 0;
}

.destination-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.destination-tour-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.destination-tour-card .pct-destination-tours__media {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.destination-tour-card .pct-destination-tours__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.destination-tour-card .pct-destination-tours__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.destination-tour-card .pct-destination-tours__title {
  font-size: 1.35rem;
  margin: 0;
}

.destination-tour-card .pct-destination-tours__meta {
  font-size: 0.9rem;
  color: #6f6a61;
  letter-spacing: 0.03em;
}

.destination-tour-card .pct-destination-tours__text {
  margin: 0;
  color: #2d2d2d;
}

@media (max-width: 1199px) {
  .destination-tours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .destination-tours {
    padding: 2.25rem 0;
  }

  .destination-tours-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .destination-tour-card .pct-destination-tours__media img {
    max-height: 260px;
  }
}
.pct-destination-single {
  --pct-hero-height: 360px;
  --pct-hero-window-inset: 28px;
  --pct-hero-fixed-top: 0px;
  --pct-hero-edge-gap: 0px;
  --pct-hero-overlap: 0px;
}

.pct-destination-hero {
  position: relative;
  overflow: hidden;
  --pct-hero-height: clamp(360px, 50vh, 520px);
  --pct-hero-window-inset: 28px;
  --pct-hero-fixed-top: 96px;
  min-height: 360px;
  height: calc(var(--pct-hero-height) + var(--pct-hero-overlap));
  padding: 5.5rem 0 4.5rem;
}

.pct-destination-single .pct-destination-hero {
  --pct-hero-height: 360px;
  min-height: 360px;
  height: 360px;
  padding: 0;
}

.pct-destination-single .pct-destination-hero__media {
  height: 360px;
}

.pct-destination-hero__media {
  position: fixed;
  top: var(--pct-hero-fixed-top);
  left: var(--pct-hero-window-inset);
  right: var(--pct-hero-window-inset);
  height: var(--pct-hero-height);
  background-size: cover;
  background-position: center;
  border-radius: var(--pct-radius);
  clip-path: inset(0 0 0 0 round var(--pct-radius));
  z-index: 0;
}


.pct-destination-single .pct-destination-hero__media {
  position: fixed;
  top: var(--pct-hero-fixed-top);
  left: var(--pct-hero-window-inset);
  right: var(--pct-hero-window-inset);
  height: var(--pct-hero-height);
}

body .pct-contact .pct-destination-hero__media {
  position: fixed;
  top: var(--pct-hero-fixed-top);
  left: var(--pct-hero-window-inset);
  right: var(--pct-hero-window-inset);
  height: var(--pct-hero-height);
}

.pct-contact .pct-destination-hero {
  --pct-hero-height: 360px;
}

.pct-contact .pct-destination-content {
  position: relative;
  z-index: 2;
  background: #fff;
}

.pct-contact .pct-destination-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16px;
  background: #fff;
  transform: translateY(-100%);
}

.pct-contact .pct-contact-map {
  margin: 0;
  padding: 3rem 0;
  background: #fff;
  position: relative;
  z-index: 2;
}

.pct-destination-hero .container {
  position: relative;
  z-index: 1;
}

.pct-destination-hero__content {
  color: #ffffff;
}

.pct-destination-hero__content h1 {
  color: #ffffff;
}

.pct-destination-single .pct-destinations-breadcrumbs {
  margin-top: -1.25rem;
}

.pct-destination-content {
  position: relative;
  z-index: 2;
  background: #fff;
  margin-top: clamp(24px, 3vw, 30px);
}

.pct-destination-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: #fff;
  transform: translateY(-100%);
}

.pct-destination-intro {
  padding: 1.25rem 0 2.5rem;
}

.pct-destination-intro .pct-lead {
  margin: 0.75rem 0 0;
}

.pct-destination-intro__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.pct-destination-editorial {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.pct-destination-editorial__text {
  color: var(--pct-muted);
  line-height: 1.7;
}

.pct-destination-editorial__text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.pct-destination-editorial .pct-destinations-intro__image {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  max-height: 575px;
  border-radius: 0 22px 22px 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.pct-destination-editorial .pct-destinations-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pct-destination-gallery {
  position: relative;
}

.pct-destination-gallery__hero {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: visible;
  text-decoration: none;
}

.pct-destination-gallery__frame {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.pct-destination-gallery__hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.pct-destination-gallery__focus {
  position: absolute;
  inset: 6%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  pointer-events: none;
}

.pct-destination-gallery__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  margin-top: 16px;
  opacity: 0;
  height: 0;
  pointer-events: none;
}

.pct-destination-gallery__item {
  display: block;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
}

.pct-destination-gallery__item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.pct-destination-gallery__controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.pct-destination-gallery__controls--side {
  position: absolute;
  right: -92px;
  bottom: 16px;
  flex-direction: column;
  transform: translateX(100%);
}

.pct-destination-gallery__btn {
  width: 78px;
  height: 78px;
  border: 2px dashed rgba(17, 24, 39, 0.45);
  border-radius: 999px;
  background: transparent;
  color: #4b5563;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pct-destination-gallery__btn:hover,
.pct-destination-gallery__btn:focus-visible {
  border-color: rgba(17, 24, 39, 0.7);
  color: #111827;
  transform: translateY(2px);
}

.pct-destination-gallery--hidden {
  display: none;
}

.pct-destination-video {
  position: relative;
}

.pct-destination-video__trigger {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
}

.pct-destination-video__trigger img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.pct-destination-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 2.8rem;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.pct-destination-tour-promo {
  background: #f1f1f1;
  border-radius: 36px;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  margin: clamp(2.5rem, 5vw, 4rem) 0;
}

.pct-destination-tour-promo__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pct-destination-tour-promo__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.pct-destination-tour-card {
  background: transparent;
  border-radius: 22px;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pct-destination-tour-card__image {
  display: block;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}

.pct-destination-tour-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.pct-destination-tour-card__body {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0 0 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pct-destination-tour-card__title {
  margin: 0;
  font-size: 1.3rem;
}

.pct-destination-tour-card__title a {
  color: inherit;
  text-decoration: none;
}

.pct-destination-tour-card__text {
  margin: 0;
  color: var(--pct-muted);
}

.pct-destination-tour-card__meta {
  display: flex;
  gap: 0.75rem;
  color: var(--pct-muted);
  font-size: 0.9rem;
}

.pct-destination-tour-card__body .pct-cta-btn--secondary {
  align-self: flex-start;
}

.pct-tour-region__title {
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
  padding-bottom: 1rem;
}

.pct-tour-region__intro {
  padding-bottom: clamp(1rem, 2.5vw, 1.75rem);
}

.pct-tour-region {
  --pct-tour-region-hero-height: 470px;
  --pct-tour-region-hero-shell-gap: 10px;
  --pct-tour-region-hero-media-height: calc(var(--pct-tour-region-hero-height) - var(--pct-tour-region-hero-shell-gap));
}

.pct-tour-region .pct-destination-hero {
  --pct-hero-height: var(--pct-tour-region-hero-media-height);
  height: var(--pct-tour-region-hero-height);
  min-height: var(--pct-tour-region-hero-height);
}

.pct-tour-region .pct-destination-hero__media {
  height: var(--pct-tour-region-hero-media-height);
}

@media (max-width: 991.98px) {
  .pct-tour-region {
    --pct-tour-region-hero-height: 360px;
    --pct-tour-region-hero-shell-gap: 8px;
  }
}

.pct-tour-region__intro .pct-lead {
  margin: 0 auto;
  max-width: 85ch;
}

.pct-tour-region__tours {
  background: #f1f1f1;
  border-radius: 36px;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.pct-tour-region__related {
  padding: clamp(0.75rem, 2.2vw, 1.6rem) 0;
}

.pct-tour-region__know {
  background: #f1f1f1;
  border-radius: 36px;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.pct-tour-region__facts .pct-tour-region__fact {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.pct-tour-region__fact h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.pct-tour-region__fact p {
  margin: 0;
  color: var(--pct-muted);
}

.pct-destination-tour-promo__cta {
  margin-top: 2.5rem;
  text-align: center;
}

.pct-destination-highlights {
  padding: clamp(0.75rem, 2.5vw, 1.5rem) 0;
  position: relative;
}

.pct-destination-highlights__header {
  text-align: center;
  margin-bottom: 2rem;
}

.pct-destination-mini-nav {
  position: sticky;
  top: var(--pct-sticky-top, 0px);
  z-index: 70;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding: 0.5rem 0;
  margin-bottom: 1.5rem;
}

.pct-destination-mini-nav.pct-tour-mini-nav--stuck {
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.pct-destination-mini-nav__link.is-active {
  text-decoration: underline;
  color: var(--pct-primary);
}

.pct-destination-mini-nav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
}

.pct-destination-mini-nav__link {
  color: var(--pct-muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pct-destination-mini-nav__link:hover,
.pct-destination-mini-nav__link:focus-visible {
  color: var(--pct-primary);
}

.pct-destination-highlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
  padding: 0.85rem 0;
}

.pct-destination-highlight.is-reverse {
  direction: rtl;
}

.pct-destination-highlight.is-reverse > * {
  direction: ltr;
}

.pct-destination-highlight__lead {
  font-size: 1.05rem;
  color: var(--pct-muted);
  margin-bottom: 1rem;
}

.pct-destination-highlight__body {
  color: var(--pct-ink);
  line-height: 1.7;
}

.pct-destination-highlight__title {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
}

.pct-tour-region__related .pct-destination-highlight__title {
  font-size: 2rem;
  color: var(--pct-primary);
}

.pct-tour-region__related .pct-destination-highlight__title .accent-word-heading {
  color: var(--pct-secondary-cta);
}

.pct-destination-highlight__list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--pct-ink);
}

.pct-destination-highlight__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.pct-destination-highlight__divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.12);
  margin: 0.75rem 0;
}

.practical-info-section {
  background: #f1f1f1;
  border-radius: 2.5rem;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  margin: clamp(3rem, 6vw, 5rem) 0;
}

.practical-info-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.practical-info-section__intro {
  margin: 0.75rem auto 0;
  max-width: 60ch;
  color: var(--pct-muted);
}

.practical-info-section__nav {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.practical-info-section__nav-item {
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 600;
  color: var(--pct-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 0;
  cursor: pointer;
}

.practical-info-section__nav-item.active {
  color: var(--pct-primary);
  font-weight: 700;
  text-decoration: underline;
}

.practical-info-section__nav-icon {
  font-size: 1rem;
}

.practical-info-section__thumb {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.practical-info-section__image {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.pct-destination-content {
  overflow: visible;
}

.practical-info-section__switcher h3 {
  margin-top: 0;
}

.pct-how__step-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: #fff;
  font-weight: 600;
  display: inline-block;
}

@media (max-width: 991.98px) {
  .pct-destination-tour-promo__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pct-destination-highlight {
    grid-template-columns: 1fr;
  }

  .pct-destination-mini-nav__inner {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .pct-destination-tour-promo__grid {
    grid-template-columns: 1fr;
  }
  .pct-destination-video__trigger img {
    height: 320px;
  }

  .pct-destination-tour-promo__grid {
    grid-template-columns: 1fr;
  }

  .practical-info-section__header {
    text-align: left;
  }

  .practical-info-section__nav {
    display: none;
  }

  .practical-info-section__switcher .tab-pane {
    display: block !important;
    opacity: 1 !important;
  }

  .practical-info-section__switcher .tab-pane + .tab-pane {
    margin-top: 2rem;
  }
}

@media (max-width: 991.98px) {
  .pct-destination-gallery__item img {
    height: 200px;
  }

  .pct-destination-gallery__hero img {
    height: 360px;
  }

  .pct-destination-gallery__controls--side {
    display: none;
  }
}

/* Tour page refresh (align with homepage + destinations) */
body.pct-tour-page {
  background: #f6f4f0;
}

.pct-tour-page .md3-card,
.pct-tour-page .pct-tour-section,
.pct-tour-page .pct-tour-intro-block,
.pct-tour-page .pct-tour-booking,
.pct-tour-page .pct-tour-map {
  background: #fff;
  border: 1px solid #e6e0d6;
  border-radius: var(--pct-radius);
  box-shadow: none;
}

body.pct-tour-page .pct-tour-itinerary-grid .md3-card,
body.pct-tour-page .pct-tour-itinerary-grid .pct-tour-map,
body.pct-tour-page #tour-itinerary,
body.pct-tour-page #tour-prices,
body.pct-tour-page #tour-inclusions {
  border: none;
  box-shadow: none;
}

body.pct-tour-page #tour-itinerary {
  background: #fff;
}

body.pct-tour-page .pct-tour-hero-gallery .md3-card--filled {
  background: transparent;
  box-shadow: none;
}

body.pct-tour-page .pct-tour-hero-gallery {
  margin-top: 0.4rem !important;
  margin-bottom: 0.9rem !important;
}

body.pct-tour-page .pct-tour-title-wrap {
  margin-bottom: 1rem;
}

body.pct-tour-page .pct-tour-hero-meta {
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

body.pct-tour-page .pct-tour-mini-nav__inner {
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

body.pct-tour-page .pct-tour-mini-nav__inner::-webkit-scrollbar {
  display: none;
}

body.pct-tour-page .pct-tour-mini-nav__price {
  margin-left: auto;
}

body.pct-tour-page .pct-tour-mini-nav__price-label,
body.pct-tour-page .pct-tour-mini-nav__price-note {
  color: rgba(194, 151, 91, 0.82);
}

body.pct-tour-page .pct-tour.md3-tour .pct-tour-mini-nav__inner {
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

body.pct-tour-page .pct-tour.md3-tour .pct-tour-mini-nav__inner::-webkit-scrollbar {
  display: none;
}

body.pct-tour-page .pct-tour.md3-tour .pct-tour-mini-nav__price.md3-chip {
  margin: 0 0 0 auto;
  flex-basis: auto;
  text-align: left;
}

body.pct-tour-page .pct-tour-highlights .pct-eyebrow,
body.pct-tour-page #tour-details .pct-eyebrow,
body.pct-tour-page #tour-itinerary .pct-eyebrow,
body.pct-tour-page #tour-prices .pct-eyebrow,
body.pct-tour-page #tour-inclusions .pct-eyebrow,
body.pct-tour-page #tour-notes .pct-eyebrow {
  display: inline-block;
  margin-bottom: 0.2rem;
}

body.pct-tour-page .pct-tour-section-title {
  color: #013d48;
  margin: 0 0 1rem;
}

body.pct-tour-page #tour-details .pct-tour-intro,
body.pct-tour-page #tour-highlights .pct-tour-highlights__grid,
body.pct-tour-page #tour-itinerary .pct-tour-itinerary-grid,
body.pct-tour-page #tour-prices .pct-pricing,
body.pct-tour-page #tour-inclusions .pct-ix,
body.pct-tour-page #tour-notes > p {
  margin-top: 1rem !important;
}

body.pct-tour-page .pct-itin-button.md3-accordion__button:not(.collapsed) {
  background: #013d48;
  color: #fff;
  border: 1px solid #c2975b;
  box-shadow: 0 10px 24px rgba(1, 61, 72, 0.18);
}

body.pct-tour-page .pct-itin-button.md3-accordion__button:not(.collapsed)::after {
  border-color: #c2975b;
  background-color: rgba(255, 255, 255, 0.12);
}

body.pct-tour-page .pct-itin-item--open .pct-itin-timeline {
  box-shadow: 0 0 0 4px rgba(194, 151, 91, 0.2);
}

body.pct-tour-page .pct-tour-map,
body.pct-tour-page .pct-tour-itinerary-grid .pct-tour-map {
  display: none !important;
}

body.pct-tour-page .pct-tour-itinerary-grid {
  grid-template-columns: 1fr;
}

.pct-tour-page .pct-tour-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  letter-spacing: 0.02em;
  color: #1f2a2f;
}

.pct-tour-page .pct-tour-subtitle {
  color: #6f6a61;
}

.pct-tour-page .pct-tour-title__badges .md3-chip {
  background: #f3efe8;
  border-color: #e3ddd2;
  color: #2a2a2a;
}

.pct-tour-page .pct-tour-hero-gallery,
.pct-tour-page .pct-tour-hero-gallery img {
  border-radius: var(--pct-radius);
}

.pct-tour-page .pct-tour-mini-nav {
  background: #fefdfb;
  border-radius: var(--pct-radius);
  border: 1px solid #e6e0d6;
  box-shadow: none;
}

.pct-tour-page .pct-tour-mini-nav__link {
  color: #2a2a2a;
}

.pct-tour-page .pct-tour-mini-nav__link:hover,
.pct-tour-page .pct-tour-mini-nav__link:focus-visible {
  color: #0c2433;
}

.pct-tour-page .pct-tour-section-title,
.pct-tour-page .pct-tour-highlights__title {
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
  color: #1f2a2f;
}

.pct-tour-page .pct-tour-fact {
  background: #f9f6f1;
  border: 1px solid #e7e1d7;
  border-radius: 18px;
}

.pct-tour-page .pct-tour-highlights__image,
.pct-tour-page .pct-tour-map__image {
  border-radius: 14px;
}

.pct-tour-page .pct-tour-booking__btn,
.pct-tour-page .pct-tour-bottombar__cta {
  background: #c2975b;
  border-color: #c2975b;
  color: #fff;
}

.pct-tour-page .pct-tour-booking__btn:hover,
.pct-tour-page .pct-tour-bottombar__cta:hover {
  background: #b4874f;
  border-color: #b4874f;
}

@media (max-width: 767px) {
  .pct-destination-single {
    --pct-hero-window-inset: 16px;
    --pct-hero-fixed-top: 72px;
    --pct-hero-height: 360px;
    --pct-hero-edge-gap: 0px;
    --pct-hero-overlap: 0px;
  }

  .pct-destination-hero {
    min-height: 360px;
    padding: 4.25rem 0 3.25rem;
  }

  .pct-destination-hero__media {
    position: fixed;
    top: var(--pct-hero-fixed-top);
    left: var(--pct-hero-window-inset);
    right: var(--pct-hero-window-inset);
    height: var(--pct-hero-height);
  }

  .pct-destination-intro {
    padding: 1rem 0 2rem;
  }
}

/* Tour booking return status */
.pct-booking-return-status {
  --pct-booking-status-accent: var(--pct-warm);
  border: 1px solid #e6e0d6;
  border-left: 5px solid var(--pct-booking-status-accent);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  position: relative;
  padding: clamp(0.95rem, 2vw, 1.25rem);
  padding-right: clamp(3rem, 7vw, 3.75rem);
}

.pct-booking-return-status__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.95rem;
}

.pct-booking-return-status__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: #fff;
  border: 1px solid rgba(12, 36, 51, 0.14);
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.08);
  color: var(--pct-booking-status-accent);
}

.pct-booking-return-status__content {
  min-width: 0;
}

.pct-booking-return-status__close {
  position: absolute;
  top: clamp(0.6rem, 1.5vw, 0.95rem);
  right: clamp(0.6rem, 1.5vw, 0.95rem);
  margin-right: 0;
  grid-column: auto;
  justify-self: auto;
  z-index: 2;
}

.pct-booking-return-status__title {
  margin: 0 0 0.3rem;
  font-family: var(--font-heading);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.25;
  color: #1f2a2f;
}

.pct-booking-return-status__text {
  margin: 0;
  color: var(--pct-muted);
  max-width: 72ch;
}

.pct-booking-return-status__text a {
  color: var(--pct-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.pct-booking-return-status__text a:hover,
.pct-booking-return-status__text a:focus {
  color: var(--pct-accent);
  text-decoration-thickness: 2px;
}

.pct-booking-return-status__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.7rem;
  margin-top: 0.95rem;
}

.pct-booking-return-status__actions .btn {
  text-decoration: none;
}

.pct-booking-return-status__actions .pct-cta-btn {
  padding: 0.5rem 1rem;
}

.pct-booking-return-status__actions .pct-cta-btn--secondary {
  padding: 0.45rem 1rem;
}

.pct-booking-return-status.is-success {
  --pct-booking-status-accent: var(--pct-warm);
  border-color: rgba(194, 151, 91, 0.46);
}

.pct-booking-return-status.is-success .pct-booking-return-status__icon {
  border-color: rgba(194, 151, 91, 0.46);
}

.pct-booking-return-status.is-warning {
  --pct-booking-status-accent: var(--pct-warm);
  border-color: rgba(194, 151, 91, 0.46);
}

.pct-booking-return-status.is-warning .pct-booking-return-status__icon {
  border-color: rgba(194, 151, 91, 0.46);
}

.pct-booking-return-status.is-danger {
  --pct-booking-status-accent: var(--pct-accent);
  border-color: rgba(231, 123, 42, 0.4);
}

.pct-booking-return-status.is-danger .pct-booking-return-status__icon {
  border-color: rgba(231, 123, 42, 0.4);
}

.pct-booking-return-status.is-info {
  --pct-booking-status-accent: var(--pct-primary);
  border-color: rgba(12, 36, 51, 0.24);
}

.pct-booking-return-status.is-info .pct-booking-return-status__icon {
  border-color: rgba(12, 36, 51, 0.24);
}

@media (max-width: 767px) {
  .pct-booking-return-status {
    border-radius: 16px;
  }

  .pct-booking-return-status__grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .pct-booking-return-status__icon {
    width: 36px;
    height: 36px;
  }

  .pct-booking-return-status__actions {
    flex-direction: column;
  }

  .pct-booking-return-status__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Book Now modal (tour pages) */
.pct-booknow-modal {
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  max-height: 92vh;
}

.pct-booknow-modal__media {
  flex: 1 1 44%;
  min-width: 300px;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.05) contrast(1.03);
}

.pct-booknow-modal__panel {
  flex: 1 1 56%;
  max-width: 560px;
  min-width: 360px;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.pct-booknow-modal .modal-header {
  border-bottom: 1px solid rgba(226, 224, 214, 0.9);
  padding: 1.1rem 1.25rem 0.85rem;
}

.pct-booknow-modal .modal-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--pct-ink);
  letter-spacing: -0.01em;
  margin: 0;
}

.pct-booknow-modal__tourtitle {
  font-weight: 600;
}

.pct-booknow-modal .modal-body {
  padding: 1.1rem 1.25rem 1.25rem;
  overflow: auto;
}

.pct-booknow-form {
  font-size: 0.95rem;
}

.pct-booknow-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.1rem;
  margin-bottom: 1rem;
}

.pct-booknow-field--span2 {
  grid-column: 1 / -1;
}

.pct-booknow-form .form-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(91, 101, 117, 0.95);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pct-booknow-form .form-control,
.pct-booknow-form .form-select {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(194, 151, 91, 0.8);
  background: transparent;
  box-shadow: none;
  padding: 0.55rem 0.1rem 0.45rem;
  font-size: 0.95rem;
  line-height: 1.25;
}

.pct-booknow-form .form-control:focus,
.pct-booknow-form .form-select:focus {
  border-bottom-color: var(--pct-warm);
  box-shadow: none;
}

.pct-booknow-form #pct_modal_total {
  font-weight: 800;
  color: var(--pct-warm);
}

.pct-booknow-form .pct-or-contact {
  margin-top: 0.85rem !important;
}

@media (max-width: 991.98px) {
  .pct-booknow-modal {
    display: block;
    max-height: none;
  }

  .pct-booknow-modal__media {
    display: none;
  }

  .pct-booknow-modal__panel {
    max-width: 100%;
    flex-basis: auto;
  }

  .pct-booknow-form__grid {
    grid-template-columns: 1fr;
  }
}
