/* ===== Variables ===== */
:root {
  --color-bg: #faf9f6;
  --color-bg-section: #fff;
  --color-hero-bg: #0d2137;
  --color-hero-overlay: rgba(13, 33, 55, 0.75);
  --color-accent: #b8860b;
  --color-accent-light: #d4a84b;
  --color-text: #1a1a1a;
  --color-text-muted: #555;
  --color-border: #e8e6e1;
  --color-burgundy: #722F37;
  --font-heebo: 'Heebo', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
  --transition: 0.3s ease;
}

/* ===== Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-heebo);
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  direction: rtl;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-hero-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(26, 95, 95, 0.4) 0%, transparent 60%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../media/iran-tour/BG.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 33, 55, 0.25);
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-bg::before {
    background-image: url('../media/iran-tour/mobile-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: rgba(184, 134, 11, 0.35);
  border: 1px solid rgba(212, 168, 75, 0.6);
  margin-bottom: 20px;
  padding: 10px 22px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(184, 134, 11, 0.2);
}

.hero-badge-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.95;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.hero-title-iran {
  background: linear-gradient(270deg, #006233 0%, #fff 50%, #DA0000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-byline {
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 500;
  color: var(--color-accent-light);
  margin: 0 0 20px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-cta {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-hero-bg);
  background: var(--color-accent);
  padding: 16px 36px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.35);
}

.hero-cta:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
}

.hero-cta-secondary {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: color var(--transition), border-color var(--transition);
}

.hero-cta-secondary:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* ===== CTA (קריאה לפעולה) ===== */
.cta-container {
  text-align: center;
  margin: 50px auto 0;
  font-family: var(--font-heebo);
}

.cta-container-hero {
  margin-top: 36px;
  margin-bottom: 0;
}

.cta-container-hero .cta-subtext {
  color: rgba(255, 255, 255, 0.85);
}

.cta-container-hero .cta-subtext svg {
  fill: rgba(255, 255, 255, 0.85);
}

.cta-container-hero .hero-cta-secondary {
  margin-top: 16px;
}

.main-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  color: #fff !important;
  font-family: 'Secular One', var(--font-heebo);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  text-decoration: none;
  padding: 16px 45px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(255, 126, 95, 0.3);
  transition: all 0.3s ease;
}

.main-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(255, 126, 95, 0.4);
  background: linear-gradient(135deg, #ff6b4a 0%, #fea564 100%);
  color: #fff !important;
}

.cta-subtext {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  color: #718096;
}

.cta-subtext svg {
  width: 14px;
  height: 14px;
  fill: #718096;
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.hero-scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-icon::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.5; transform: translateX(-50%) translateY(8px); }
}

/* ===== באנר הקורס ===== */
.section-course-banner {
  padding: 0 0 40px;
}

.container-banner {
  max-width: 1000px;
  padding: 0 24px;
}

.course-banner-link {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  transition: opacity var(--transition), transform var(--transition);
}

.course-banner-link:hover {
  opacity: 0.97;
  transform: scale(1.01);
}

.course-banner-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .section-course-banner {
    padding: 0 0 32px;
  }

  .container-banner {
    padding: 0 16px;
  }
}

/* ===== Sections common ===== */
.section {
  padding: 80px 0;
}

.section:nth-child(even) {
  background: var(--color-bg-section);
  box-shadow: 0 -1px 0 var(--color-border);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-burgundy);
  margin: 0 0 12px;
  text-align: center;
}

.section-intro {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

.placeholder-text {
  color: var(--color-text-muted);
  font-style: italic;
}

/* ===== Info section ===== */
.section-info .info-content {
  max-width: 680px;
  margin: 0 auto;
}

.info-block {
  margin-bottom: 2.5rem;
}

.info-block:last-child {
  margin-bottom: 0;
}

.info-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-hero-bg);
  margin: 0 0 12px;
  line-height: 1.4;
}

.info-content p {
  margin: 0 0 1rem;
  color: var(--color-text);
  line-height: 1.7;
}

.info-content p:last-child {
  margin-bottom: 0;
}

.info-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  line-height: 1.55;
}

.info-features li:last-child {
  border-bottom: none;
}

.info-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.info-who {
  margin: 0 0 0 1.2em;
  padding: 0;
  color: var(--color-text);
  line-height: 1.7;
}

.info-who li {
  margin-bottom: 8px;
}

.info-who li:last-child {
  margin-bottom: 0;
}

.info-steps-intro {
  margin-top: 4px !important;
  margin-bottom: 12px !important;
}

.info-steps {
  margin: 0 0 0 1.2em;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.info-steps li {
  position: relative;
  padding-right: 2.5rem;
  margin-bottom: 16px;
  color: var(--color-text);
  line-height: 1.65;
  counter-increment: steps;
}

.info-steps li::before {
  content: counter(steps);
  position: absolute;
  right: 0;
  top: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-steps li:last-child {
  margin-bottom: 0;
}

.info-steps strong {
  color: var(--color-hero-bg);
}

.info-block-price .info-heading {
  margin-bottom: 8px;
}

.info-price {
  color: var(--color-accent);
  font-size: 1.15em;
}

.info-faq-link-wrap {
  text-align: center;
  margin: 28px 0 0;
}

.info-faq-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-hero-bg);
  text-decoration: none;
  padding: 10px 24px;
  border: 2px solid var(--color-hero-bg);
  border-radius: 50px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.info-faq-link:hover {
  background: var(--color-hero-bg);
  color: #fff;
}

/* ===== איך נולד הסיור ===== */
.section-origin .origin-content {
  max-width: 680px;
  margin: 0 auto;
}

.origin-content p {
  margin: 0 0 1.25rem;
  color: var(--color-text);
  line-height: 1.75;
}

.origin-content p:last-child {
  margin-bottom: 0;
}

.origin-link {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.origin-link:hover {
  text-decoration: underline;
}

/* ===== המדריכה שלכם בסיור ===== */
.section-guide .guide-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 820px;
  margin: 0 auto;
}

.guide-photo-wrap {
  flex-shrink: 0;
}

.guide-photo {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  display: block;
}

.guide-credit {
  margin: 10px 0 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.guide-bio {
  flex: 1;
  min-width: 0;
}

.guide-bio p {
  margin: 0 0 1.15rem;
  color: var(--color-text);
  line-height: 1.75;
}

.guide-bio p:last-child {
  margin-bottom: 0;
}

/* ===== Tour route – grid of 12 days ===== */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.tour-day {
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tour-day:hover {
  box-shadow: var(--shadow-hover);
}

.tour-day-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.tour-day-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-day-number {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-hero-bg);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.tour-day-body {
  padding: 24px;
}

.tour-day-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 10px;
}

.tour-day-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ===== Video section ===== */
.section-video {
  background: linear-gradient(180deg, var(--color-bg) 0%, #f0ede6 100%);
}

.video-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.video-aspect {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.video-aspect iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.video-caption {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 16px 0 0;
}

.video-caption-link {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: none;
}

.video-caption-link:hover {
  text-decoration: underline;
}

/* ===== FAQ ===== */
.faq-main-title {
  font-family: var(--font-heebo);
  color: var(--color-burgundy);
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  margin: 0 0 30px;
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  font-family: var(--font-heebo);
  color: var(--color-burgundy);
  font-size: 1.15rem;
  margin: 28px 0 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--color-border);
}

.faq-list .faq-category:first-child {
  margin-top: 0;
}

.faq-item {
  background: var(--color-bg-section);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
  font-family: 'Secular One', var(--font-heebo);
  font-size: 1.05rem;
  padding: 18px 20px;
  cursor: pointer;
  background: #f8f9fa;
  border-radius: 8px;
  list-style: none;
  color: var(--color-text);
  transition: background-color 0.2s ease;
  display: block;
  width: 100%;
  text-align: right;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background: #e2e8f0;
}

.faq-question::after {
  content: '+';
  float: left;
  font-size: 1.5rem;
  line-height: 1;
  color: #4a5568;
  transition: transform 0.3s ease;
}

details[open] .faq-question {
  background: #e2e8f0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: 1px solid var(--color-border);
}

details[open] .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  font-family: var(--font-heebo);
  padding: 20px;
  line-height: 1.6;
  color: #4a5568;
  font-size: 1rem;
}

.faq-answer strong {
  color: #2d3748;
}

.faq-link {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.faq-link:hover {
  text-decoration: underline;
}

.inline-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  font-family: var(--font-heebo);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.inline-whatsapp-btn:hover {
  background: #128C7E;
  color: #fff;
}

.inline-whatsapp-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ===== כפתור ווצאפ צף ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  font-family: var(--font-heebo);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  background: #128C7E;
  color: #fff;
  box-shadow: 0 6px 8px rgba(37, 211, 102, 0.4);
}

.whatsapp-float-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ===== Footer ===== */
.footer {
  padding: 32px 24px;
  background: var(--color-hero-bg);
  text-align: center;
}

.footer-text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-accessibility {
  margin: 12px 0 0;
}

.footer-accessibility-link {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-accessibility-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-link-sep {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 2px;
}

/* ===== Responsive – Tablet ומובייל ===== */
@media (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }

  body {
    font-size: 18px;
  }

  .container {
    padding: 0 20px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 36px 20px 64px;
  }

  .hero-badge {
    font-size: 1rem;
    padding: 12px 20px;
    gap: 10px;
    margin-bottom: 18px;
    max-width: 92%;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .hero-badge-br {
    display: block;
  }

  .hero-badge span {
    min-width: 0;
    text-align: center;
  }

  .hero-badge-icon {
    width: 24px;
    height: 24px;
  }

  .hero-title {
    font-size: clamp(2.6rem, 11vw, 3.35rem);
  }

  .hero-byline {
    font-size: 1.7rem;
    margin-bottom: 18px;
  }

  .hero-subtitle {
    font-size: 1.15rem;
    margin: 0 auto 30px;
    line-height: 1.65;
    padding-right: 28px;
    padding-left: 28px;
  }

  .cta-container-hero {
    margin-top: 28px;
  }

  .cta-container-hero .main-cta-btn {
    padding: 16px 28px;
    font-size: 1.2rem;
    min-height: 48px;
  }

  .cta-container-hero .hero-cta-secondary {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-scroll {
    bottom: 20px;
    font-size: 0.85rem;
  }

  .hero-scroll-icon::after {
    animation: none;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .section-intro {
    font-size: 1.05rem;
    margin-bottom: 36px;
    padding: 0 4px;
  }

  /* Info */
  .section-info .info-content {
    max-width: 100%;
  }

  .info-block {
    margin-bottom: 2rem;
  }

  .info-heading {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .info-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.75;
  }

  .info-features li {
    padding: 12px 0;
    gap: 12px;
    font-size: 1.05rem;
  }

  .info-icon {
    font-size: 1.25rem;
  }

  .info-who {
    margin-right: 1em;
    font-size: 1.05rem;
  }

  .info-steps li {
    padding-right: 2.5rem;
    margin-bottom: 16px;
    font-size: 1.05rem;
  }

  .info-steps li::before {
    width: 1.6rem;
    height: 1.6rem;
    font-size: 0.85rem;
  }

  .info-steps-intro {
    font-size: 1.05rem !important;
  }

  .info-faq-link-wrap {
    margin-top: 28px;
  }

  .info-faq-link {
    font-size: 1.05rem;
    padding: 14px 28px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .origin-content p {
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
  }

  .section-guide .guide-inner {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
  }

  .guide-photo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .guide-photo {
    max-width: 280px;
  }

  .guide-bio p {
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .guide-credit {
    font-size: 0.9rem;
  }

  /* Tour */
  .tour-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tour-day-body {
    padding: 22px;
  }

  .tour-day-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .tour-day-desc {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .tour-day-number {
    font-size: 0.95rem;
    padding: 8px 14px;
  }

  /* Video */
  .video-aspect {
    border-radius: var(--radius);
  }

  .video-caption {
    font-size: 1.05rem;
    margin-top: 14px;
    padding: 0 4px;
  }

  /* FAQ */
  .faq-main-title {
    font-size: 1.9rem;
    margin-bottom: 26px;
  }

  .faq-question {
    padding: 20px 22px;
    font-size: 1.1rem;
    min-height: 56px;
    display: flex;
    align-items: center;
  }

  .faq-answer {
    padding: 20px 22px;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .faq-answer a {
    word-break: break-all;
  }

  /* CTA */
  .cta-container {
    margin-top: 40px;
  }

  .main-cta-btn {
    padding: 16px 28px;
    font-size: 1.2rem;
    min-height: 48px;
  }

  .cta-subtext {
    font-size: 0.95rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  /* Footer */
  .footer {
    padding: 28px 20px;
  }

  .footer-text {
    font-size: 1rem;
  }

  /* WhatsApp float */
  .whatsapp-float {
    padding: 14px 22px;
    font-size: 1rem;
    bottom: 20px;
    right: 20px;
    min-height: 48px;
  }

  .whatsapp-float-icon {
    width: 22px;
    height: 22px;
  }

  /* Course banner */
  .section-course-banner {
    padding: 0 0 40px;
  }
}

/* ===== מובייל קטן (טלפונים צרים) ===== */
@media (max-width: 480px) {
  body {
    font-size: 17px;
  }

  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 28px 18px 56px;
  }

  .hero-title {
    font-size: clamp(2.35rem, 12vw, 2.85rem);
  }

  .hero-byline {
    font-size: 1.6rem;
  }

  .hero-badge {
    font-size: 0.95rem;
    padding: 10px 16px;
    max-width: 88%;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .main-cta-btn {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    text-align: center;
    padding: 16px 24px;
    font-size: 1.15rem;
    min-height: 52px;
  }

  .cta-container-hero .main-cta-btn {
    max-width: 340px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.95rem;
  }

  .info-heading {
    font-size: 1.15rem;
  }

  .info-content p,
  .info-features li,
  .info-who li {
    font-size: 1rem;
  }

  .info-steps li {
    padding-right: 2.35rem;
    font-size: 1rem;
  }

  .info-steps li::before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.8rem;
  }

  .tour-day-body {
    padding: 20px;
  }

  .tour-day-title {
    font-size: 1.2rem;
  }

  .tour-day-desc {
    font-size: 1rem;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 1.05rem;
  }

  .faq-answer {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .origin-content p {
    font-size: 1rem;
  }

  .guide-bio p {
    font-size: 1rem;
  }

  /* ווצאפ: רק אייקון במובייל קטן כדי לא להסתיר תוכן */
  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    bottom: 16px;
    right: 16px;
    min-height: 48px;
    min-width: 48px;
  }

  .whatsapp-float-icon {
    width: 24px;
    height: 24px;
  }
}

/* ===== עמוד מסלול הסיור (tour-route.html) ===== */
.tour-route-page {
  background: radial-gradient(circle at top, #f6efe2 0%, #faf9f6 42%, #f1eee7 100%);
}

.tour-route-hero {
  position: relative;
  padding: 72px 0 56px;
  overflow: hidden;
}

.tour-route-hero::before {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 20%, rgba(184, 134, 11, 0.25) 0%, transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(13, 33, 55, 0.35) 0%, transparent 60%),
    radial-gradient(circle at 20% 85%, rgba(114, 47, 55, 0.27) 0%, transparent 55%);
  opacity: 0.7;
  z-index: 0;
}

.tour-route-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 33, 55, 0.96) 0%, rgba(13, 33, 55, 0.88) 40%, rgba(13, 33, 55, 0.9) 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}

.tour-route-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.tour-route-hero-kicker {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 18px;
}

.tour-route-hero-title {
  font-family: 'Secular One', var(--font-heebo);
  font-size: clamp(2.4rem, 5vw, 3.1rem);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.tour-route-hero-subtitle {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}

.tour-route-hero-cta .main-cta-btn {
  box-shadow: 0 12px 30px rgba(255, 126, 95, 0.45);
}

.tour-route-hero-cta .cta-subtext {
  color: rgba(255, 255, 255, 0.85);
}

.section-course-banner--compact {
  padding-top: 36px;
  padding-bottom: 40px;
}

.section-course-banner--compact .container-banner {
  max-width: 960px;
}

.section-course-banner--compact .course-banner-link {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.section-tour-page {
  padding-top: 48px;
}

.tour-route-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tour-route-day {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.6fr);
  gap: 28px;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  padding: 18px;
  border: 1px solid rgba(232, 230, 225, 0.9);
  position: relative;
  overflow: hidden;
}

.tour-route-day::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-burgundy) 100%);
  opacity: 0.8;
}

.tour-route-day-media {
  position: relative;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
}

.tour-route-day-badge {
  position: absolute;
  inset-inline-end: 12px;
  top: 12px;
  z-index: 2;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(13, 33, 55, 0.9);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.tour-route-day-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform var(--transition), filter var(--transition);
}

.tour-route-day-content {
  padding: 18px 8px 18px 16px;
  position: relative;
}

.tour-route-day-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-hero-bg);
  margin: 0 0 10px;
}

.tour-route-day-lead {
  margin: 0 0 10px;
  font-weight: 500;
  color: var(--color-text);
}

.tour-route-day-content p {
  margin: 0 0 8px;
  color: var(--color-text);
  line-height: 1.75;
}

.tour-route-day-content p:last-child {
  margin-bottom: 0;
}

.tour-route-day:hover .tour-route-day-banner {
  transform: scale(1.06);
  filter: saturate(1.05);
}

@media (max-width: 1024px) {
  .tour-route-day {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  }
}

@media (max-width: 768px) {
  .tour-route-hero {
    padding: 56px 0 40px;
  }

  .tour-route-hero-subtitle {
    font-size: 1.02rem;
    padding: 0 6px;
  }

  .section-course-banner--compact {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .tour-route-day {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .tour-route-day-media {
    border-radius: var(--radius);
  }

  .tour-route-day-content {
    padding: 14px 4px 4px;
  }

  .tour-route-day-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .tour-route-hero {
    padding: 40px 0 30px;
  }

  .tour-route-hero-title {
    font-size: 2.1rem;
  }

  .tour-route-hero-subtitle {
    font-size: 0.98rem;
  }

  .tour-route-day {
    padding: 12px;
  }

  .tour-route-day-badge {
    padding: 6px 14px;
    font-size: 0.85rem;
  }
}
