/* ============================================
   WildTrail / שביל הבר — Safari & Nature Booking
   ============================================ */

:root {
  --bg: #faf6ef;
  --bg-2: #ffffff;
  --bg-3: #f1ead9;
  --card: #ffffff;
  --line: #e6dfd1;
  --line-2: #d8cfb9;
  --primary: #1f5d3a;
  --primary-dark: #14472a;
  --primary-2: #2a7a4d;
  --accent: #d4a256;
  --accent-dark: #b88a3d;
  --secondary: #2d2418;
  --text: #1a2b1d;
  --text-2: #3d4a3a;
  --muted: #6b6b6b;
  --danger: #c0392b;
  --success: #2e7d4f;
  --shadow-sm: 0 1px 3px rgba(20, 71, 42, 0.08);
  --shadow: 0 4px 16px rgba(20, 71, 42, 0.10);
  --shadow-lg: 0 12px 40px rgba(20, 71, 42, 0.16);
  --radius: 12px;
  --radius-lg: 18px;
  --font-display: "Frank Ruhl Libre", "Heebo", "Times New Roman", serif;
  --font-body: "Heebo", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

html[dir="rtl"] body { font-family: "Heebo", "Frank Ruhl Libre", "Inter", sans-serif; }

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

a { color: var(--primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--primary-dark); }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-2);
  color: var(--text);
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 93, 58, 0.12);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Promo Banner
   ============================================ */
.promo-banner {
  background: linear-gradient(135deg, var(--secondary), #4a3a25);
  color: #fff;
  padding: 10px 0;
  font-size: 0.92rem;
  position: relative;
  z-index: 50;
}
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.promo-tag {
  background: var(--accent);
  color: var(--secondary);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.promo-text { font-weight: 500; }
.promo-timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 6px;
}
.promo-timer-unit { display: inline-flex; align-items: baseline; gap: 4px; }
.promo-timer-num { font-size: 1.05rem; font-weight: 700; }
.promo-timer-label { font-size: 0.72rem; opacity: 0.8; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--primary);
}
.brand-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.brand-name { letter-spacing: -0.01em; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--text-2);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-2);
  color: var(--text-2);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-toggle:hover { border-color: var(--primary); color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(31, 93, 58, 0.25);
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(31, 93, 58, 0.35); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-secondary:hover { background: #fff; color: var(--primary-dark); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

.mobile-toggle { display: none; padding: 8px; }
.mobile-toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .header-actions .btn { display: none; }
  .header-actions .lang-toggle { padding: 6px 10px; font-size: 0.82rem; }
}
@media (max-width: 900px) {
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 70px;
    inset-inline-end: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
    width: 100%;
    box-shadow: var(--shadow);
  }
  .main-nav.open a { padding: 8px 0; border-bottom: 1px solid var(--line); }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--secondary);
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 30, 22, 0.85) 0%, rgba(20, 30, 22, 0.45) 60%, rgba(20, 30, 22, 0.25) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}
.hero-content { max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-badge::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.55;
  opacity: 0.94;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 640px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label { font-size: 0.85rem; opacity: 0.8; }

@media (max-width: 700px) {
  .hero { min-height: 78vh; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Sections
   ============================================ */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-2); }
.section-warm { background: var(--bg-3); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   Ticket Tabs
   ============================================ */
.ticket-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.ticket-tab {
  padding: 10px 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s;
}
.ticket-tab:hover { border-color: var(--primary); color: var(--primary); }
.ticket-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(31, 93, 58, 0.3);
}

/* ============================================
   Ticket Grid
   ============================================ */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.ticket-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}
.ticket-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.ticket-card.featured {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 8px 28px rgba(31, 93, 58, 0.18);
}
.ticket-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bg-3), #e6dec8);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ticket-icon svg { width: 26px; height: 26px; }
.ticket-popular {
  position: absolute;
  top: -12px;
  inset-inline-end: 20px;
  background: var(--accent);
  color: var(--secondary);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(184, 138, 61, 0.35);
}
.ticket-save {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  background: rgba(212, 162, 86, 0.16);
  color: var(--accent-dark);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
}
.ticket-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
  padding-inline-end: 70px;
}
.ticket-desc {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
  min-height: 42px;
}
.ticket-features {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  flex: 1;
}
.ticket-features li {
  font-size: 0.9rem;
  color: var(--text-2);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ticket-features li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.ticket-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.ticket-price-now {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.ticket-price-was {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.95rem;
}
.ticket-price-per { font-size: 0.8rem; color: var(--muted); }

/* ============================================
   Experiences Section
   ============================================ */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.exp-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
  box-shadow: var(--shadow);
}
.exp-card:hover { transform: translateY(-4px); }
.exp-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.exp-card:hover img { transform: scale(1.06); }
.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 30, 22, 0.92) 0%, rgba(20, 30, 22, 0.45) 50%, rgba(20, 30, 22, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}
.exp-card-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--secondary);
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 10px;
  width: fit-content;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.exp-card h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}
.exp-card p { font-size: 0.9rem; opacity: 0.92; line-height: 1.45; }

/* ============================================
   Reviews
   ============================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--accent);
}
.review-stars svg { width: 18px; height: 18px; }
.review-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--text-2);
  margin-bottom: 18px;
}
.review-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ============================================
   Visitor Info
   ============================================ */
.visitor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.visitor-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
  transition: all 0.25s;
}
.visitor-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.visitor-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.visitor-icon svg { width: 28px; height: 28px; }
.visitor-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}
.visitor-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  position: relative;
  background-image: url('../images/cta-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 71, 42, 0.92) 0%, rgba(20, 30, 22, 0.85) 100%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.cta-section p {
  font-size: 1.1rem;
  opacity: 0.94;
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta-timer { margin-bottom: 28px; }
.cta-timer-num { color: var(--accent) !important; }
@media (max-width: 700px) {
  .cta-section { background-attachment: scroll; }
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--bg-3);
  color: var(--primary);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-item h4 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}
.trust-item p { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--secondary);
  color: #d4cfc1;
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand-mark { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.footer-brand-desc { font-size: 0.9rem; line-height: 1.6; opacity: 0.78; max-width: 320px; }

.footer-col h5 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: #c8c2b1;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.75;
}
.footer-bottom a { color: #c8c2b1; }
.footer-disclaimer { max-width: 580px; line-height: 1.5; }

/* ============================================
   Modal
   ============================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 22, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s;
}
.modal-backdrop.open { display: flex; opacity: 1; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.25s;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.modal-backdrop.open .modal { transform: scale(1); }
.modal-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 2;
}
.modal-header h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255, 255, 255, 0.32); }
.modal-body { padding: 28px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; }
@media (max-width: 760px) {
  .modal-body { grid-template-columns: 1fr; }
}
.modal-section h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.ticket-summary {
  background: var(--bg-3);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 18px;
}
.ticket-summary-name { font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.ticket-summary-desc { font-size: 0.88rem; color: var(--muted); }
.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.qty-row:last-child { border-bottom: none; }
.qty-label { font-weight: 500; }
.qty-controls { display: flex; align-items: center; gap: 12px; }
.qty-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg-3);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.qty-btn:hover { background: var(--primary); color: #fff; }
.qty-num { min-width: 24px; text-align: center; font-weight: 700; }

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  margin-top: 14px;
  border-top: 2px solid var(--line);
  font-size: 1.1rem;
  font-weight: 700;
}
.total-amount { color: var(--primary); font-size: 1.4rem; font-family: var(--font-display); }
.save-amount { color: var(--success); font-size: 0.9rem; margin-top: 4px; }

.modal-notice {
  margin-top: 14px;
  padding: 12px;
  background: var(--bg-3);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.modal-success {
  padding: 60px 28px;
  text-align: center;
}
.modal-success-icon {
  width: 80px; height: 80px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.modal-success-icon svg { width: 40px; height: 40px; }
.modal-success h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--secondary); margin-bottom: 10px; }
.modal-success p { color: var(--muted); margin-bottom: 20px; max-width: 420px; margin-inline: auto; }

/* ============================================
   RTL adjustments
   ============================================ */
html[dir="rtl"] .ticket-features li::before { margin-inline-end: 0; }
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .hero-badge { flex-direction: row-reverse; }
html[dir="rtl"] .ticket-card.featured { box-shadow: 0 8px 28px rgba(31, 93, 58, 0.18); }

/* ============================================
   Scroll reveal animation
   Progressive enhancement: default visible.
   JS adds .js-reveal to <html> only after init,
   so users with JS disabled or slow loads always see content.
   ============================================ */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-reveal .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}
