/* Premium global layer — world-class tour booking polish */

.scroll-progress {
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: 3px;
  z-index: 9999;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange, #E87722), #ffb06a);
  box-shadow: 0 0 12px rgba(232, 119, 34, 0.55);
  transition: width 0.05s linear;
}

.site-pro .site-header {
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(74, 85, 96, 0.08);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.site-pro .site-header.is-scrolled {
  box-shadow: 0 16px 40px rgba(40, 48, 56, 0.12);
  background: rgba(255, 255, 255, 0.92);
}
.site-pro .header-cta {
  margin-inline-start: 0.35rem;
  box-shadow: 0 10px 24px rgba(232, 119, 34, 0.28);
}

/* ——— Cinematic hero ——— */
.hero-pro {
  position: relative;
  min-height: min(92vh, 920px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 5.5rem 0 4rem;
}
.hero-pro-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-pro-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}
.hero-pro-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(28, 34, 40, 0.82) 0%, rgba(28, 34, 40, 0.55) 42%, rgba(28, 34, 40, 0.28) 70%, rgba(28, 34, 40, 0.45) 100%),
    linear-gradient(0deg, rgba(28, 34, 40, 0.55) 0%, transparent 38%);
}
.hero-pro-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-pro-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}
.hero-pro .hero-brand {
  margin: 0 0 0.55rem;
  font-family: Lalezar, Vazirmatn, sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  line-height: 1.15;
}
.hero-pro .hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4.6vw, 3.55rem);
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  max-width: 12ch;
}
.hero-pro .hero-lead {
  margin: 0 0 1.6rem;
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
}
.hero-pro .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-booking-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 28px;
  padding: 1.35rem 1.35rem 1.15rem;
  box-shadow:
    0 30px 70px rgba(16, 20, 28, 0.35),
    0 2px 0 rgba(255, 255, 255, 0.65) inset;
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
}
.hb-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange, #E87722);
  letter-spacing: 0.04em;
}
.hero-booking-card h2 {
  margin: 0.25rem 0 1rem;
  font-size: 1.35rem;
  color: var(--filly, #4A5560);
}
.hb-destinations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.hb-dest {
  display: grid;
  gap: 0.35rem;
  text-align: center;
  text-decoration: none;
  color: var(--filly, #4A5560);
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 0.25s ease;
}
.hb-dest img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(40, 48, 56, 0.18);
}
.hb-dest:hover { transform: translateY(-4px); }
.hb-offer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 118px;
  padding: 1rem;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hb-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 24, 30, 0.15), rgba(20, 24, 30, 0.78));
}
.hb-offer span {
  display: block;
  font-size: 0.72rem;
  opacity: 0.9;
}
.hb-offer strong {
  display: block;
  margin: 0.15rem 0;
  font-size: 1.05rem;
}
.hb-offer em {
  font-style: normal;
  font-size: 0.86rem;
  opacity: 0.92;
}
.hb-consult {
  display: inline-block;
  margin-top: 0.95rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--filly, #4A5560);
  text-decoration: none;
}
.hb-consult:hover { color: var(--orange, #E87722); }

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -2.25rem;
  padding-bottom: 0.5rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  padding: 1.15rem 1.25rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(74, 85, 96, 0.08);
  box-shadow: 0 22px 50px rgba(40, 48, 56, 0.1);
}
.trust-grid article {
  text-align: center;
  padding: 0.55rem 0.4rem;
}
.trust-grid strong {
  display: block;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  color: var(--orange, #E87722);
  font-family: Lalezar, Vazirmatn, sans-serif;
  line-height: 1.1;
}
.trust-grid span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted, #6b7580);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Section indexing */
.pro-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.pro-head-inline {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.sec-index {
  flex: 0 0 auto;
  font-family: Lalezar, Vazirmatn, sans-serif;
  font-size: 1.6rem;
  color: var(--orange, #E87722);
  line-height: 1;
  opacity: 0.85;
  padding-top: 0.15rem;
}

/* Booking steps */
.steps-pro { background: linear-gradient(180deg, #f7f8fa 0%, #fff 100%); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.step-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.4rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(74, 85, 96, 0.08);
  box-shadow: 0 16px 36px rgba(40, 48, 56, 0.06);
  overflow: hidden;
}
.step-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange, #E87722), #ffb06a);
}
.step-no {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  background: rgba(232, 119, 34, 0.12);
  color: var(--orange, #E87722);
  font-weight: 800;
}
.step-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  color: var(--filly, #4A5560);
}
.step-card p {
  margin: 0;
  color: var(--muted, #6b7580);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* Tour cards premium */
.tour-stage-pro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.tour-pro {
  border-radius: 26px !important;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(74, 85, 96, 0.08);
  box-shadow: 0 18px 40px rgba(40, 48, 56, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.tour-pro:hover {
  box-shadow: 0 28px 60px rgba(40, 48, 56, 0.14);
}
.tour-pro .tour-media {
  height: 210px;
  background-size: cover;
  background-position: center;
}
.tour-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.tour-rating {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange, #E87722);
  background: rgba(232, 119, 34, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.tour-price {
  display: grid;
  gap: 0.1rem;
}
.tour-price span {
  font-size: 0.72rem;
  color: var(--muted, #6b7580);
  font-weight: 600;
}
.tour-price strong {
  font-size: 1.05rem;
  color: var(--filly, #4A5560);
}

/* Discover + quote */
.discover-pro {
  min-height: 420px;
  border-radius: 32px;
  overflow: hidden;
}
.discover-pro .discover-copy {
  max-width: 34rem;
}
.quote-pro {
  padding-top: 0.5rem;
}
.quote-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(232, 119, 34, 0.08), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(74, 85, 96, 0.08), transparent 40%),
    #fff;
  border: 1px solid rgba(74, 85, 96, 0.08);
  box-shadow: 0 18px 40px rgba(40, 48, 56, 0.05);
}
.quote-box blockquote {
  margin: 0 auto 1rem;
  max-width: 40rem;
  font-family: Lalezar, Vazirmatn, sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.7;
  color: var(--filly, #4A5560);
}
.quote-box cite {
  font-style: normal;
  color: var(--muted, #6b7580);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Portal polish */
.site-pro .portal-photo {
  border-radius: 28px;
}
.site-pro .portal-go {
  display: inline-flex;
  margin-top: 0.65rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.82rem;
  font-weight: 700;
}

/* Buttons refined */
.site-pro .btn-primary {
  letter-spacing: 0.01em;
}
.site-pro .btn-glass {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(10px);
}
.site-pro .btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 1024px) {
  .hero-pro-grid,
  .steps-grid,
  .tour-stage-pro,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-pro .hero-title { max-width: none; }
}
@media (max-width: 760px) {
  .hero-pro {
    min-height: auto;
    padding: 3.5rem 0 2.5rem;
  }
  .hero-pro-grid,
  .steps-grid,
  .tour-stage-pro,
  .trust-grid,
  .hb-destinations {
    grid-template-columns: 1fr;
  }
  .hb-destinations {
    grid-template-columns: repeat(4, 1fr);
  }
  .trust-strip { margin-top: -1.25rem; }
  .pro-head, .pro-head-inline { gap: 0.7rem; }
  .site-pro .header-cta { width: 100%; text-align: center; }
}
/* Inner pages */
.page-hero-pro {
  position: relative;
  padding: 3.2rem 0 2.4rem;
  background:
    radial-gradient(circle at 12% 20%, rgba(232, 119, 34, 0.12), transparent 42%),
    linear-gradient(180deg, #f4f6f8 0%, #fff 100%);
  overflow: hidden;
}
.page-hero-pro h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  letter-spacing: -0.02em;
}
.filter-bar-pro {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
  padding: 0.55rem;
  border-radius: 18px;
  background: #f3f5f7;
}
.filter-bar-pro a {
  padding: 0.55rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--filly, #4A5560);
  font-weight: 700;
  font-size: 0.92rem;
}
.filter-bar-pro a.is-active,
.filter-bar-pro a:hover {
  background: #fff;
  color: var(--orange, #E87722);
  box-shadow: 0 8px 18px rgba(40, 48, 56, 0.08);
}

.tour-detail-pro {
  position: relative;
  isolation: isolate;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
.tour-detail-shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(20, 24, 30, 0.25), rgba(20, 24, 30, 0.78));
}
.tour-detail-pro .tour-detail-hero-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 2.4rem;
  color: #fff;
}
.detail-layout-pro {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}
.price-panel-pro {
  border-radius: 26px !important;
  box-shadow: 0 24px 50px rgba(40, 48, 56, 0.12) !important;
  border: 1px solid rgba(74, 85, 96, 0.08);
}
.price-trust {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.price-trust li {
  position: relative;
  padding-inline-start: 1.1rem;
  font-size: 0.86rem;
  color: var(--muted, #6b7580);
  font-weight: 600;
}
.price-trust li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange, #E87722);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress span { transition: none; }
  .tour-pro, .hb-dest { transition: none; }
}
