:root {
  --yellow: #FFD500;
  --yellow-dark: #E8C200;
  --black: #101010;
  --ink: #1a1a1a;
  --gray: #5c5c5c;
  --light: #f6f6f4;
  --white: #ffffff;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --radius: 16px;
  --shadow: 0 10px 40px rgba(0,0,0,.12);
  --font: 'Noto Sans', 'Noto Sans Arabic', 'Noto Sans Hebrew', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

h1, h2, h3 { line-height: 1.15; font-weight: 900; letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: .5em; }

.section { padding: 88px 0; }
.section-kicker {
  display: inline-block; font-weight: 800; font-size: .82rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--black); background: var(--yellow);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
}
.section-sub { color: var(--gray); font-size: 1.08rem; max-width: 640px; margin-bottom: 40px; }
.section-dark { background: var(--black); color: var(--white); }
.section-dark .section-sub { color: #b5b5b5; }
.section-yellow { background: var(--yellow); }
.section-yellow .section-kicker { background: var(--black); color: var(--yellow); }
.section-yellow .section-sub { color: rgba(0,0,0,.65); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: 1rem; border: none; border-radius: 100px;
  padding: 14px 28px; transition: transform .15s ease, box-shadow .15s ease, background .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--yellow); color: var(--black); box-shadow: 0 6px 20px rgba(255,213,0,.35); }
.btn-primary:hover { background: var(--yellow-dark); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 6px 24px rgba(37,211,102,.4); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-ghost-dark { background: transparent; color: var(--ink); border: 2px solid #ddd; }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(16,16,16,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; color: #fff; }
.logo-badge {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at center, var(--black) 0 26%, var(--yellow) 27% 62%, var(--black) 63%);
  border: 2px solid var(--yellow);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-weight: 900; letter-spacing: .04em; }
.logo-text small { font-size: .58rem; letter-spacing: .14em; color: var(--yellow); font-weight: 700; }
.main-nav { display: flex; gap: 22px; margin-inline-start: auto; }
.main-nav a { color: #cfcfcf; font-weight: 600; font-size: .93rem; transition: color .15s; }
.main-nav a:hover { color: var(--yellow); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.btn-header { padding: 10px 20px; font-size: .9rem; }
.lang-switch { display: flex; background: rgba(255,255,255,.1); border-radius: 100px; padding: 3px; }
.lang-switch button {
  background: transparent; border: none; color: #cfcfcf; font-weight: 700; font-size: .78rem;
  padding: 6px 10px; border-radius: 100px; transition: all .15s;
}
.lang-switch button.active { background: var(--yellow); color: var(--black); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,10,10,.88) 25%, rgba(10,10,10,.45) 65%, rgba(10,10,10,.25)); }
[dir="rtl"] .hero-overlay { background: linear-gradient(-100deg, rgba(10,10,10,.88) 25%, rgba(10,10,10,.45) 65%, rgba(10,10,10,.25)); }
.hero-content { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: .88rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  padding: 8px 18px; border-radius: 100px; backdrop-filter: blur(8px); margin-bottom: 26px;
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: #38e07d; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(56,224,125,.6);} 60% { box-shadow: 0 0 0 8px rgba(56,224,125,0);} }
.hero h1 { font-size: clamp(2.4rem, 6.5vw, 4.4rem); margin-bottom: 20px; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #e2e2e2; max-width: 560px; margin-bottom: 34px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-rating { display: inline-flex; align-items: center; gap: 10px; font-size: .98rem; color: #e8e8e8; }
.hero-rating .stars { color: var(--yellow); letter-spacing: 2px; font-size: 1.05rem; }
.hero-rating:hover { text-decoration: underline; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--yellow); }
.trustbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding-top: 20px; padding-bottom: 20px; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 800; font-size: .93rem; text-align: center; }
.trust-icon { font-size: 1.25rem; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.service-card {
  background: var(--light); border-radius: var(--radius); padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease; border: 2px solid transparent;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card.accent { background: var(--black); color: #fff; border-color: var(--yellow); }
.service-card.accent p { color: #bdbdbd; }
.service-icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 800; }
.service-card p { color: var(--gray); font-size: .95rem; }

/* ---------- How ---------- */
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 26px; align-items: start; margin-top: 46px; }
.step { text-align: center; }
.step-num {
  width: 58px; height: 58px; border-radius: 50%; background: var(--yellow); color: var(--black);
  font-size: 1.5rem; font-weight: 900; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: #b5b5b5; font-size: .95rem; }
.step-arrow { font-size: 1.8rem; color: var(--yellow); align-self: center; font-weight: 900; }
[dir="rtl"] .step-arrow { transform: scaleX(-1); }
.how-cta { text-align: center; margin-top: 48px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 230px; gap: 14px; }
.g-item { border-radius: var(--radius); overflow: hidden; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-tall { grid-row: span 2; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: #fff; border-radius: var(--radius); padding: 28px 26px; box-shadow: 0 8px 30px rgba(0,0,0,.08);
  display: flex; flex-direction: column; gap: 14px;
}
.review-card .stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 3px; }
.review-card p { font-size: .95rem; color: #333; flex: 1; }
.review-author { display: flex; flex-direction: column; }
.review-author span { font-size: .8rem; color: var(--gray); }
.reviews-cta { text-align: center; margin-top: 38px; }

/* ---------- Booking wizard ---------- */
.booking-container { max-width: 760px; }
.wizard {
  background: var(--light); border-radius: 24px; padding: 38px; margin-top: 10px;
  border: 1px solid #e8e8e4;
}
.wizard-progress { height: 6px; background: #e4e4de; border-radius: 100px; margin-bottom: 34px; overflow: hidden; }
.wizard-progress-bar { height: 100%; width: 20%; background: var(--yellow); border-radius: 100px; transition: width .3s ease; }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: fadeUp .3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: none;} }
.wizard-step h3 { font-size: 1.45rem; margin-bottom: 22px; }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.option-card {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 2px solid #e4e4de;
  border-radius: 14px; padding: 16px 18px; font-weight: 700; font-size: .97rem; text-align: start;
  transition: all .15s; color: var(--ink);
}
.option-card:hover { border-color: var(--yellow); }
.option-card.selected { border-color: var(--yellow); background: #fffbe6; box-shadow: 0 4px 14px rgba(255,213,0,.25); }
.opt-icon { font-size: 1.4rem; flex: none; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.chip {
  background: #fff; border: 2px solid #e4e4de; border-radius: 100px; padding: 11px 22px;
  font-weight: 700; font-size: .95rem; transition: all .15s; color: var(--ink);
}
.chip:hover { border-color: var(--yellow); }
.chip.selected { border-color: var(--black); background: var(--black); color: var(--yellow); }
.field { display: block; margin-bottom: 16px; }
.field span { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 7px; }
.field input {
  width: 100%; padding: 14px 16px; border: 2px solid #e4e4de; border-radius: 12px;
  font-family: inherit; font-size: 1rem; background: #fff; transition: border-color .15s;
}
.field input:focus { outline: none; border-color: var(--yellow); }
.field-hint { font-size: .85rem; color: var(--gray); margin-top: 6px; }
.field-hint.center { text-align: center; margin-top: 12px; }
.schedule-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.summary {
  background: #fff; border-radius: 14px; padding: 18px 20px; margin: 20px 0;
  font-size: .93rem; border: 1px dashed #d5d5cd; white-space: pre-line;
}
.wizard-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.wizard-nav .btn { min-width: 120px; }
#wizardNext { margin-inline-start: auto; }

/* ---------- Route animation ---------- */
.video-section .video-frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  margin-top: 36px; line-height: 0; border: 3px solid var(--yellow);
}
.video-frame svg { width: 100%; display: block; }
#triWarn, #wheelFix { transition: opacity .45s ease; }

/* ---------- FAQ ---------- */
.faq-container { max-width: 820px; }
.faq-list { margin-top: 34px; display: flex; flex-direction: column; gap: 12px; }
.faq-list details { background: var(--light); border-radius: 14px; border: 1px solid #e8e8e4; }
.faq-list summary {
  cursor: pointer; font-weight: 800; font-size: 1.02rem; padding: 18px 22px; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; font-size: 1.5rem; font-weight: 800; color: var(--yellow-dark);
  transition: transform .2s ease; flex: none; line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 22px 18px; color: var(--gray); font-size: .96rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.contact-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-size: 1.05rem; }
.contact-list a:hover { color: var(--yellow); }
.c-ico { font-size: 1.3rem; flex: none; }
.social-row { display: flex; gap: 12px; margin-top: 10px; }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact-map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: #0a0a0a; color: #8a8a8a; font-size: .87rem; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 26px; padding-bottom: 26px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 26px; inset-inline-end: 26px; z-index: 90;
  width: 62px; height: 62px; border-radius: 50%; background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,.5); transition: transform .15s;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- RTL ---------- */
[dir="rtl"] .main-nav { margin-inline-start: auto; }
[dir="rtl"] .field input { text-align: right; }
[dir="rtl"] input[type="date"], [dir="rtl"] input[type="time"] { text-align: right; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .main-nav { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
}
@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .hero { min-height: 86vh; }
  .services-grid { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: 1fr; }
  .schedule-fields { grid-template-columns: 1fr; }
  .wizard { padding: 26px 20px; }
  .btn-header { display: none; }
  .header-inner { justify-content: space-between; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-tall { grid-row: span 1; }
  .footer-inner { flex-direction: column; text-align: center; }
}
