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

:root {
  --brand-bg: #0e0b08;
  --brand-surface: #171210;
  --brand-border: rgba(240,228,208,0.09);
  --cream: #f2e6d4;
  --silver: #a89880;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --white: #ffffff;
  --muted: rgba(240,228,208,0.48);

  --cars-bg: #0c0a07;
  --cars-surface: #131008;
  --cars-accent: #d0c0a8;
  --cars-border: rgba(220,200,180,0.1);

  --yacht-bg: #040c18;
  --yacht-surface: #081422;
  --yacht-accent: #38bdf8;
  --yacht-border: rgba(56,189,248,0.18);

  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--brand-bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body[lang="he"] { direction: rtl; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14,11,8,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--brand-border);
}

.header-inner { width: 100%; display: flex; align-items: center; gap: 32px; }
.header-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.header-logo {
  height: 30px;
  width: auto;
  display: block;
  opacity: 0.96;
}

.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  font-size: 14px; font-weight: 500;
  color: var(--silver);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.coming-pill {
  font-size: 10px; font-weight: 600; letter-spacing: 0.04em;
  padding: 2px 6px;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.25);
}

.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle::after {
  content: "";
  width: 6px; height: 6px;
  margin-inline-start: 5px;
  border-inline-end: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
  opacity: 0.7;
}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after { transform: rotate(225deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-start: 0;
  min-width: 160px;
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 10;
}
.nav-dropdown-menu a {
  padding: 8px 12px;
  font-size: 14px; font-weight: 500;
  color: var(--silver);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.lang-toggle {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--brand-border);
  color: var(--silver);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  padding: 6px 12px; border-radius: 20px;
  cursor: pointer; transition: all var(--transition);
  font-family: var(--font);
}
.lang-toggle:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.btn-book {
  background: var(--white); color: #000;
  font-size: 13px; font-weight: 700;
  padding: 9px 20px; border-radius: 24px;
  transition: all var(--transition); letter-spacing: 0.02em;
}
.btn-book:hover { background: var(--cream); transform: translateY(-1px); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #0a1628;
}

/* blue hero — text & button overrides */
.hero-content { color: #ffffff; }
.hero .hero-sub { color: rgba(210,225,245,0.65); }
.hero .hero-actions .btn-primary {
  background: #ffffff; color: #0a1628;
}
.hero .hero-actions .btn-primary:hover {
  background: var(--cream); color: #0a1628;
  box-shadow: 0 8px 30px rgba(10,22,40,0.35);
}
.hero .hero-actions .btn-ghost {
  color: rgba(190,210,240,0.72);
  border-color: rgba(190,210,240,0.25);
  background: transparent;
}
.hero .hero-actions .btn-ghost:hover {
  color: #ffffff;
  border-color: rgba(190,210,240,0.55);
  background: rgba(190,210,240,0.07);
}
.hero .scroll-line {
  background: linear-gradient(to bottom, rgba(190,210,240,0.45), transparent);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-dot-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(rgba(192,208,232,0.13) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 15%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 15%, transparent 70%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(10,22,40,0.65) 0%,
      rgba(10,22,40,0.00) 20%,
      rgba(10,22,40,0.00) 55%,
      rgba(10,22,40,0.97) 100%
    );
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 820px; }

.hero-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; opacity: 0;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.hero-title {
  font-size: clamp(48px, 8vw, 96px); font-weight: 900;
  line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero-word { display: block; opacity: 0; transform: translateY(40px); }
.hero-word-accent {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 16px; font-weight: 400; color: var(--muted);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 40px; opacity: 0;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; opacity: 0; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: #000;
  font-size: 15px; font-weight: 700;
  padding: 14px 32px; border-radius: 32px;
  transition: all var(--transition); letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.15); }
.btn-primary svg { flex-shrink: 0; }
.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--silver);
  font-size: 15px; font-weight: 500;
  padding: 14px 28px; border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── SECTIONS ── */
.section { padding: 100px 0; position: relative; }
.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; }

.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--muted); max-width: 500px; line-height: 1.7; }
.section-head.center .section-sub { margin: 0 auto; }

/* ── CARS ── */
.section-cars { background: var(--cars-bg); }
.section-cars .section-tag { background: rgba(200,200,200,0.07); color: var(--cars-accent); border: 1px solid var(--cars-border); }

/* ── YACHT ── */
.section-yacht {
  background: var(--yacht-bg);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(56,189,248,0.14) 0%, transparent 65%);
}
.section-yacht .section-tag { background: rgba(14,165,233,0.1); color: var(--yacht-accent); border: 1px solid var(--yacht-border); }

/* ── PACKAGES ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.packages-grid .package-card:nth-child(1) { grid-column: 1 / 3; }
.packages-grid .package-card:nth-child(2) { grid-column: 3 / 5; }
.packages-grid .package-card:nth-child(3) { grid-column: 5 / 7; }
.packages-grid .package-card:nth-child(4) { grid-column: 2 / 4; }
.packages-grid .package-card:nth-child(5) { grid-column: 4 / 6; }

/* 4-column package grid (cars section) */
.pkg-4col { grid-template-columns: repeat(4, 1fr); margin-bottom: 48px; }
.pkg-4col .package-card { grid-column: unset !important; }
.pkg-3col { grid-template-columns: repeat(3, 1fr); margin-bottom: 48px; }
.pkg-3col .package-card { grid-column: unset !important; }

.pkg-price-row { display: flex; align-items: baseline; gap: 8px; margin: 8px 0 4px; }
.pkg-was { font-size: 14px; color: var(--muted); text-decoration: line-through; }
.pkg-price { font-size: 28px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.pkg-price-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pkg-arrival-note { font-size: 11px; color: #e55; margin-bottom: 14px; }
.pkg-arrival-incl { font-size: 11px; color: #4ade80; margin-bottom: 14px; }
.addon-price-was { color: var(--muted); font-size: 0.85em; margin-inline-end: 2px; }

.package-card {
  position: relative; border-radius: var(--radius);
  border: 1px solid var(--brand-border);
  background: rgba(255,255,255,0.03);
  transition: border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
  cursor: default;
}
.package-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.035) 0%, transparent 60%);
  pointer-events: none;
}

.section-cars .package-card { border-color: var(--cars-border); background: var(--cars-surface); }
.section-cars .package-card:hover { border-color: rgba(200,200,200,0.28); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

.section-yacht .package-card { border-color: var(--yacht-border); background: var(--yacht-surface); }
.section-yacht .package-card:hover { border-color: rgba(14,165,233,0.35); box-shadow: 0 20px 60px rgba(14,165,233,0.12); }

.pkg-badge {
  position: absolute; top: 0; left: 0; right: 0;
  text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 7px;
  background: rgba(201,168,76,0.1); color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.pkg-badge-gold {
  background: linear-gradient(90deg, rgba(201,168,76,0.18), rgba(226,201,126,0.18));
  color: var(--gold-light); border-color: rgba(201,168,76,0.22);
}

.pkg-inner { padding: 32px 24px 28px; display: flex; flex-direction: column; height: 100%; }
.package-card.pkg-featured .pkg-inner,
.package-card.pkg-museum .pkg-inner { padding-top: 44px; }

.pkg-top { margin-bottom: 16px; }
.pkg-name { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.pkg-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

.pkg-features { flex: 1; margin-bottom: 20px; display: flex; flex-direction: column; gap: 9px; }
.pkg-features li {
  font-size: 12px; color: var(--silver);
  padding-left: 14px; position: relative; line-height: 1.4;
}
body[lang="he"] .pkg-features li { padding-left: 0; padding-right: 14px; }
.pkg-features li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: auto; height: auto; border-radius: 0; background: transparent;
  font-size: 10px; font-weight: 700; color: var(--silver); line-height: 1.4;
}
body[lang="he"] .pkg-features li::before { left: auto; right: 0; }
.section-cars .pkg-features li::before { color: var(--cars-accent); }
.section-yacht .pkg-features li::before { color: var(--yacht-accent); }
.pkg-museum .pkg-features li::before { color: var(--gold); }
.pkg-museum .pkg-name {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.btn-pkg {
  display: block; text-align: center; font-size: 13px; font-weight: 600;
  padding: 11px 16px; border-radius: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22); color: var(--white);
  transition: all var(--transition); letter-spacing: 0.02em;
}
.btn-pkg:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.45); transform: translateY(-1px); }
.btn-pkg-featured { background: var(--white); color: #000; border-color: transparent; }
.btn-pkg-featured:hover { background: var(--cream); transform: translateY(-1px); border-color: transparent; }
.btn-pkg-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #000; border-color: transparent; font-weight: 700; }
.btn-pkg-gold:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,168,76,0.35); }
.section-yacht .btn-pkg-featured { background: var(--yacht-accent); color: #fff; }
.section-yacht .btn-pkg-featured:hover { background: #38bdf8; }

/* ── STATS STRIP ── */
.stats-strip {
  background: #0e0b08;
  border-bottom: 1px solid var(--brand-border);
  padding: 32px 0;
}
.stats-strip-inner {
  display: flex; align-items: center; justify-content: center;
}
.strip-stat {
  flex: 1; max-width: 220px;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 0 24px;
}
.strip-num {
  font-size: 36px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--gold-light); line-height: 1;
}
.strip-label {
  font-size: 11px; color: var(--muted);
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
}
.strip-divider {
  width: 1px; height: 44px;
  background: var(--brand-border); flex-shrink: 0;
}

/* ── PROCESS ── */
.section-process {
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
}
.section-process .section-tag {
  background: rgba(201,168,76,0.08); color: var(--gold);
  border: 1px solid rgba(201,168,76,0.2);
}
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--brand-border);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.process-step {
  padding: 40px 36px;
  background: var(--brand-bg);
}
.process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.25);
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--gold); margin-bottom: 20px;
}
.process-title {
  font-size: 17px; font-weight: 700; margin-bottom: 10px;
  letter-spacing: -0.01em; color: var(--white);
}
.process-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── COMING SOON ── */
.section-coming {
  background: #0b0907;
  min-height: 380px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}
.section-shop { background: #0d0a06; }
.section-coming.section-yacht {
  background: var(--yacht-bg);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(56,189,248,0.12) 0%, transparent 65%);
}
.section-coming.section-yacht .section-tag {
  background: rgba(56,189,248,0.1);
  color: var(--yacht-accent);
  border: 1px solid var(--yacht-border);
}
.coming-inner { padding: 60px 24px; max-width: 540px; }
.coming-inner .section-tag { background: rgba(255,255,255,0.05); color: var(--silver); border: 1px solid var(--brand-border); }
.section-coming.section-yacht .coming-inner .section-tag {
  background: rgba(56,189,248,0.1);
  color: var(--yacht-accent);
  border: 1px solid var(--yacht-border);
}
.coming-badge-large {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); background: rgba(201,168,76,0.06); margin: 20px 0;
}
.coming-desc { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── ABOUT ── */
.section-about { background: var(--brand-bg); }
.section-about .section-tag { background: rgba(255,255,255,0.05); color: var(--silver); border: 1px solid var(--brand-border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-body { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 40px; }
.about-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; color: var(--gold-light); }
.stat-label { font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.about-values { display: flex; flex-direction: column; gap: 32px; }
.value-item { display: flex; gap: 20px; align-items: flex-start; }
.value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 8px; }
.value-item h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.value-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── GALLERY ── */
.section-gallery { background: var(--brand-surface); }
.section-gallery .section-tag { background: rgba(255,255,255,0.05); color: var(--silver); border: 1px solid var(--brand-border); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px; margin-bottom: 32px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-lg { grid-column: span 2; }
.gallery-ph {
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--brand-border);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition); border-radius: var(--radius);
}
.gallery-ph:hover { background: rgba(255,255,255,0.06); }
.gallery-ph span { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.gallery-note { text-align: center; font-size: 14px; color: var(--muted); }

/* ── CONTACT ── */
.section-contact { background: var(--brand-bg); }
.section-contact .section-tag { background: rgba(255,255,255,0.05); color: var(--silver); border: 1px solid var(--brand-border); }
.form-wrap { max-width: 580px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-input {
  width: 100%; background: rgba(100,160,230,0.06); border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm); color: var(--white);
  font-size: 14px; font-family: var(--font); padding: 14px 16px;
  outline: none; transition: border-color var(--transition), background var(--transition);
  appearance: none; -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(180,210,255,0.3); }
.form-input:focus { border-color: rgba(100,180,255,0.45); background: rgba(100,160,230,0.1); }
.form-select {
  cursor: pointer;
  background-image: 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='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
body[lang="he"] .form-select { background-position: left 16px center; padding-right: 16px; padding-left: 40px; }
.form-select option { background: #181208; color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
.site-footer { background: #080604; border-top: 1px solid var(--brand-border); padding: 48px 0 24px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 260px; }
.footer-logo {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.92;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-links a { font-size: 14px; color: var(--muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { text-align: center; font-size: 12px; color: rgba(255,255,255,0.2); padding-top: 24px; border-top: 1px solid var(--brand-border); }

/* ── WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition); color: #fff;
}
body[lang="he"] .wa-float { right: auto; left: 28px; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ── INSTAGRAM ── */
.ig-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(214,36,159,0.4);
  transition: transform var(--transition), box-shadow var(--transition); color: #fff;
}
body[lang="he"] .ig-float { left: auto; right: 28px; }
.ig-float:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(214,36,159,0.5); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(32px); }
.reveal.visible { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
.package-card { opacity: 0; transform: translateY(24px); }
.package-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease, border-color var(--transition), box-shadow var(--transition); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(14,11,8,0.98); backdrop-filter: blur(24px);
    padding: 24px; gap: 8px; border-bottom: 1px solid var(--brand-border);
  }
  .nav-burger { display: flex; }
  .site-header { padding: 0 20px; }
  .header-nav.open .nav-dropdown-menu {
    position: static;
    opacity: 1; pointer-events: auto; transform: none;
    max-height: 0; overflow: hidden;
    border: none; box-shadow: none; background: transparent;
    padding: 0;
    transition: max-height var(--transition);
  }
  .header-nav.open .nav-dropdown.open .nav-dropdown-menu {
    max-height: 320px;
    padding: 4px 0;
    padding-inline-start: 14px;
    margin-top: 2px;
  }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid .package-card:nth-child(n) { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item { height: 200px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding: 32px 28px; }
  .stats-strip-inner { flex-wrap: wrap; }
  .strip-stat { flex: 0 0 50%; padding: 20px; }
  .strip-divider { display: none; }
}
@media (max-width: 600px) {
  .packages-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-lg { grid-column: span 1; }
  .header-right .btn-book { display: none; }
  .about-stats { gap: 24px; }
  .section { padding: 72px 0; }
  .hero-title { font-size: clamp(40px, 11vw, 64px); }
  .process-step { padding: 28px 20px; }
  .strip-stat { padding: 16px; }
  .strip-num { font-size: 28px; }
}
@media (max-width: 420px) {
  .header-logo { height: 24px; }
  .hero-title { font-size: clamp(36px, 10vw, 56px); }
}

/* ── CARS BUILDER ── */
.section-cars { background: var(--cars-bg); padding-bottom: 0; }

.cars-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--cars-surface);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 52px;
}
.cars-base-left { flex: 1; min-width: 0; }
.cars-base-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.cars-base-name {
  font-size: 30px; font-weight: 800; color: var(--cream);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.cars-base-desc {
  font-size: 15px; color: var(--muted); margin-bottom: 22px; line-height: 1.6;
}
.cars-base-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px;
}
.cars-base-features li {
  font-size: 14px; color: rgba(240,228,208,0.72);
  padding-inline-start: 18px; position: relative;
}
.cars-base-features li::before {
  content: "✓"; position: absolute; inset-inline-start: 0;
  color: var(--gold); font-size: 11px; top: 2px;
}
.cars-base-meta { margin-top: 16px; font-size: 13px; color: var(--muted); }
.cars-base-right { text-align: center; flex-shrink: 0; }
.cars-base-price {
  font-size: 56px; font-weight: 800; color: var(--gold-light);
  line-height: 1; letter-spacing: -0.03em;
}
.cars-base-label {
  font-size: 12px; color: var(--muted); margin-top: 6px;
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* Add-ons section */
.addons-section { margin-bottom: 48px; }
.addons-cta-wrap { text-align: center; margin: 28px 0 40px; }
.addons-heading {
  font-size: 22px; font-weight: 700; color: var(--cream); margin-bottom: 6px;
}
.addons-sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; }

.addon-tier { margin-bottom: 30px; }
.addon-tier-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.addon-tier-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
}
.addon-tier-quick .addon-tier-label {
  background: rgba(34,211,238,0.1); color: #22d3ee;
  border: 1px solid rgba(34,211,238,0.22);
}
.addon-tier-upgrade .addon-tier-label {
  background: rgba(226,201,126,0.1); color: var(--gold-light);
  border: 1px solid rgba(226,201,126,0.22);
}
.addon-tier-deep .addon-tier-label {
  background: rgba(251,146,60,0.1); color: #fb923c;
  border: 1px solid rgba(251,146,60,0.22);
}
.addon-tier-price-hint { font-size: 13px; color: var(--muted); }

.addon-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
}

.addon-card {
  position: relative;
  background: var(--cars-surface);
  border: 1px solid var(--cars-border);
  border-radius: var(--radius-sm);
  padding: 18px 44px 18px 18px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform 0.18s ease;
  display: block; user-select: none;
}
body[lang="he"] .addon-card { padding: 18px 18px 18px 44px; }
.addon-card:hover { border-color: rgba(220,200,180,0.28); transform: translateY(-2px); }
.addon-check { display: none; }

.addon-card-body { display: flex; flex-direction: column; gap: 5px; }
.addon-name { font-size: 14px; font-weight: 600; color: var(--cream); display: block; }
.addon-desc { font-size: 12px; color: var(--muted); display: block; line-height: 1.4; }
.addon-price {
  font-size: 16px; font-weight: 700; display: block; margin-top: 10px;
}
.addon-tier-quick .addon-price  { color: #22d3ee; }
.addon-tier-upgrade .addon-price { color: var(--gold-light); }
.addon-tier-deep .addon-price    { color: #fb923c; }

@keyframes tick-pop {
  0%   { transform: scale(0.6); opacity: 0; }
  55%  { transform: scale(1.25); }
  75%  { transform: scale(0.92); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes tick-fade {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.6); opacity: 0; }
}

.addon-tick {
  position: absolute; top: 14px; inset-inline-end: 14px;
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid rgba(220,200,180,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.addon-card.selected { border-color: var(--gold); background: rgba(201,168,76,0.07); }
.addon-card.selected .addon-tick {
  background: var(--gold); border-color: var(--gold); color: #0c0a07;
  animation: tick-pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.addon-tier-quick  .addon-card.selected { border-color: #22d3ee; background: rgba(34,211,238,0.07); }
.addon-tier-quick  .addon-card.selected .addon-tick { background: #22d3ee; border-color: #22d3ee; color: #0c0a07; }
.addon-tier-upgrade .addon-card.selected { border-color: var(--gold-light); background: rgba(226,201,126,0.07); }
.addon-tier-upgrade .addon-card.selected .addon-tick { background: var(--gold-light); border-color: var(--gold-light); color: #0c0a07; }
.addon-tier-deep   .addon-card.selected { border-color: #fb923c; background: rgba(251,146,60,0.07); }
.addon-tier-deep   .addon-card.selected .addon-tick { background: #fb923c; border-color: #fb923c; color: #0c0a07; }

/* Bundle card */
.bundle-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1408 0%, #0e0a04 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; margin-bottom: 0;
}
.bundle-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.bundle-badge {
  position: absolute; top: 18px; inset-inline-end: 18px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold); color: #0c0a07;
  padding: 4px 10px; border-radius: 20px;
}
.bundle-left { flex: 1; min-width: 0; }
.bundle-name {
  font-size: 26px; font-weight: 800; color: var(--cream);
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.bundle-desc {
  font-size: 14px; color: var(--muted); max-width: 420px;
  margin-bottom: 14px; line-height: 1.6;
}
.bundle-includes { font-size: 13px; color: rgba(240,228,208,0.55); margin-bottom: 12px; }
.bundle-saving { display: flex; align-items: center; gap: 10px; }
.bundle-original { font-size: 14px; color: var(--muted); text-decoration: line-through; }
.bundle-save-tag {
  font-size: 12px; font-weight: 700; color: #4ade80;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.22);
  padding: 3px 10px; border-radius: 20px;
}
.bundle-right { text-align: center; flex-shrink: 0; }
.bundle-price {
  font-size: 56px; font-weight: 800; color: var(--gold-light);
  line-height: 1; letter-spacing: -0.03em; margin-bottom: 18px;
}
.btn-bundle {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; background: var(--gold); color: #0c0a07;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; font-family: var(--font);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-bundle:hover { background: var(--gold-light); transform: translateY(-2px); }

/* Sticky booking bar */
.booking-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(13,10,7,0.96);
  border-top: 1px solid rgba(201,168,76,0.25);
  backdrop-filter: blur(20px);
}
.booking-bar.visible { transform: translateY(0); }
.booking-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.booking-bar-total { display: flex; align-items: baseline; gap: 10px; }
.booking-bar-label { font-size: 14px; color: var(--muted); }
.booking-bar-amount {
  font-size: 28px; font-weight: 800; color: var(--gold-light); letter-spacing: -0.02em;
}
.btn-booking-bar {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: var(--white); color: #000;
  font-weight: 700; font-size: 15px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; font-family: var(--font);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-booking-bar:hover { background: var(--cream); transform: translateY(-1px); }

/* Before/After gallery */
.cars-gallery { margin-top: 60px; margin-bottom: 40px; }
.cars-gallery-head { margin-bottom: 24px; }
.cars-gallery-title {
  font-size: 22px; font-weight: 700; color: var(--cream); margin-bottom: 6px;
}
.cars-gallery-sub { font-size: 14px; color: var(--muted); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  direction: ltr; /* keep Before left, After right in all languages */
}
.ba-slot {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cars-surface);
  border: 1px solid var(--cars-border);
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 10px;
  overflow: hidden;
}
.ba-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ba-slot:has(img)::after { display: none; }
.ba-slot::after {
  content: "📷";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  font-size: 24px; opacity: 0.18;
}
.ba-before { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.ba-after  {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  border-color: rgba(201,168,76,0.15);
}
.ba-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 20px;
  position: relative; z-index: 1;
}
.ba-before .ba-label { background: rgba(255,255,255,0.1); color: var(--muted); }
.ba-after  .ba-label { background: rgba(201,168,76,0.18); color: var(--gold-light); }

/* Regular photos row */
.cars-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.photo-slot {
  aspect-ratio: 4 / 3;
  background: var(--cars-surface);
  border: 1px solid var(--cars-border);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}
.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-slot:has(img)::after { display: none; }
.photo-slot::after {
  content: "📷";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px; opacity: 0.15;
}

/* Cars builder responsive */
@media (max-width: 900px) {
  .cars-base { flex-direction: column; gap: 28px; padding: 28px; }
  .cars-base-right { width: 100%; display: flex; align-items: center; gap: 16px; }
  .cars-base-price { font-size: 42px; }
  .bundle-card { flex-direction: column; gap: 24px; padding: 28px; }
  .bundle-right { width: 100%; display: flex; align-items: center; gap: 20px; }
  .bundle-price { font-size: 42px; margin-bottom: 0; }
  .ba-grid { grid-template-columns: 1fr; gap: 12px; }
  .cars-photos { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cars-base-features { grid-template-columns: 1fr; }
  .addon-cards { grid-template-columns: 1fr 1fr; }
  .booking-bar-inner { padding: 12px 16px; }
  .btn-booking-bar { padding: 10px 18px; font-size: 14px; }
  .booking-bar-amount { font-size: 22px; }
}
@media (max-width: 420px) {
  .addon-cards { grid-template-columns: 1fr; }
}

/* ── BOOKING MODAL ── */
.booking-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.booking-modal-overlay.open { opacity: 1; pointer-events: all; }
.booking-modal {
  background: #131008;
  border: 1px solid var(--cars-border);
  border-radius: 20px;
  width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  padding: 36px 32px;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.3s ease;
  position: relative;
}
.booking-modal-overlay.open .booking-modal { transform: none; }
.booking-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--brand-border);
  color: var(--silver); font-size: 18px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); font-family: var(--font);
}
body[lang="he"] .booking-modal-close { right: auto; left: 16px; }
.booking-modal-close:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.booking-modal-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.booking-modal-title { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.booking-modal-sub { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.booking-modal-order {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cars-border);
  border-radius: 10px; padding: 14px 16px; margin-bottom: 24px;
}
.booking-order-items { font-size: 13px; color: var(--silver); margin-bottom: 10px; line-height: 1.6; }
.booking-order-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; border-top: 1px solid var(--brand-border);
}
.booking-order-total-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.booking-order-total-price { font-size: 20px; font-weight: 800; color: var(--white); }
.booking-form { display: flex; flex-direction: column; gap: 14px; }
.booking-submit {
  background: var(--white); color: #000;
  font-size: 15px; font-weight: 700;
  padding: 16px; border-radius: 32px; border: none;
  cursor: pointer; width: 100%; font-family: var(--font);
  transition: all var(--transition); margin-top: 8px; letter-spacing: 0.01em;
}
.booking-submit:hover { background: var(--cream); }
.booking-submit:disabled { opacity: 0.55; cursor: not-allowed; }
@media (max-width: 600px) {
  .booking-modal { padding: 28px 20px; }
  .booking-form .form-row { grid-template-columns: 1fr; }
}

/* ── HERO LOCATION ── */
.hero-location {
  font-size: 13px;
  color: rgba(190,210,240,0.52);
  letter-spacing: 0.04em;
  margin-top: -24px;
  margin-bottom: 32px;
}

/* ── FAQ ── */
.section-faq { background: var(--brand-surface); border-top: 1px solid var(--brand-border); }
.section-faq .section-tag {
  background: rgba(201,168,76,0.08); color: var(--gold);
  border: 1px solid rgba(201,168,76,0.2);
}

.faq-list {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(201,168,76,0.35); }

.faq-q {
  font-size: 16px; font-weight: 600; color: var(--white);
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color var(--transition);
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+'; font-size: 22px; font-weight: 300;
  color: var(--gold); flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] .faq-q { color: var(--gold-light); }
.faq-item[open] .faq-q::after { transform: rotate(45deg); }

.faq-a {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  padding: 16px 24px 22px;
  border-top: 1px solid var(--brand-border);
  margin: 0;
}

@media (max-width: 600px) {
  .faq-q { font-size: 14px; padding: 16px 18px; }
  .faq-a { font-size: 14px; padding: 14px 18px 18px; }
}

/* ═══════════════════════════════════════
   BOOKING MODAL
═══════════════════════════════════════ */
.bk-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,8,6,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.bk-overlay.open { opacity: 1; pointer-events: all; }

.bk-modal {
  background: #1c1814;
  border: 1px solid var(--brand-border);
  border-radius: 20px;
  width: 100%; max-width: 460px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: none;
}
.bk-modal::-webkit-scrollbar { display: none; }
.bk-overlay.open .bk-modal { transform: translateY(0) scale(1); }

/* ── Close ── */
.bk-close {
  position: absolute; top: 14px; left: 16px;
  background: rgba(255,255,255,0.06); border: none; cursor: pointer;
  color: var(--muted); font-size: 18px; line-height: 1;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); z-index: 2;
}
.bk-close:hover { background: rgba(255,255,255,0.12); color: var(--white); }

/* ── Step progress ── */
.bk-header {
  padding: 16px 24px 16px 56px; /* left gap keeps ✕ button clear of step 3 */
  border-bottom: 1px solid var(--brand-border);
}
.bk-steps {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
}
.bk-step {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.bk-step-num {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--muted);
  transition: all var(--transition);
}
.bk-step.active .bk-step-num { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }
.bk-step.done .bk-step-num { border-color: var(--gold); background: var(--gold); color: #000; }
.bk-step-lbl { font-size: 11px; color: var(--muted); transition: color var(--transition); }
.bk-step.active .bk-step-lbl { color: var(--gold); }
.bk-step-line {
  flex: 1; height: 1px; background: rgba(255,255,255,0.08);
  width: 44px; margin: 15px 6px 0;
}

/* ── Panels ── */
.bk-panel { display: none; padding: 22px 24px 24px; }
.bk-panel.bk-active { display: block; }
.bk-panel-title { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 18px; }

/* ── Service cards ── */
.bk-cards { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.bk-card {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: transparent; width: 100%; text-align: inherit;
}
.bk-card:hover { border-color: rgba(201,168,76,0.35); background: rgba(201,168,76,0.04); }
.bk-card.bk-sel { border-color: var(--gold); background: rgba(201,168,76,0.07); }
.bk-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.bk-card.bk-sel .bk-radio { border-color: var(--gold); background: var(--gold); }
.bk-card.bk-sel .bk-radio::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #000; }
.bk-card-info { flex: 1; text-align: right; }
.bk-card-name { font-size: 14px; font-weight: 600; color: var(--white); }
.bk-card-desc { font-size: 12px; color: var(--muted); margin-top: 2px; line-height: 1.4; }
.bk-card-right { text-align: left; flex-shrink: 0; }
.bk-card-price { font-size: 16px; font-weight: 700; color: var(--gold); display: block; }
.bk-card-dur { font-size: 11px; color: var(--muted); }

/* ── Base included badge ── */
.bk-base-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; margin-bottom: 14px;
  background: rgba(201,168,76,0.07);
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
}
.bk-base-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: #000;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bk-base-name { flex: 1; font-size: 14px; font-weight: 600; color: var(--white); }
.bk-base-price { font-size: 15px; font-weight: 700; color: var(--gold); }

/* ── Add-ons ── */
.bk-addon-btn {
  width: 100%; padding: 10px 14px; margin-top: 4px;
  background: none; border: 1px dashed rgba(255,255,255,0.12);
  border-radius: var(--radius-sm); color: var(--silver);
  font-size: 13px; cursor: pointer; transition: all var(--transition);
}
.bk-addon-btn:hover { border-color: rgba(201,168,76,0.3); color: var(--gold); }
.bk-addons-list {
  max-height: 0; overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
}
.bk-addons-list.bk-open {
  max-height: 280px;
  overflow-y: auto;
  padding-top: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,0.3) transparent;
}
.bk-addons-list.bk-open::-webkit-scrollbar { width: 4px; }
.bk-addons-list.bk-open::-webkit-scrollbar-track { background: transparent; }
.bk-addons-list.bk-open::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 4px; }
.bk-addon-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
}
.bk-addon-row:last-child { border-bottom: none; }
.bk-addon-box {
  width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.bk-addon-row.bk-sel .bk-addon-box { background: var(--gold); border-color: var(--gold); }
.bk-addon-row.bk-sel .bk-addon-box::after { content: '✓'; color: #000; font-size: 11px; font-weight: 800; }
.bk-addon-row-name { flex: 1; font-size: 13px; color: var(--silver); }
.bk-addon-row-price { font-size: 13px; color: var(--gold); font-weight: 600; }

.bk-addon-count {
  font-size: 12px; color: var(--muted); margin: 8px 0 0;
  text-align: center; transition: color var(--transition);
}
.bk-addon-count.bk-met { color: #4ade80; }

.bk-total-row {
  text-align: center; font-size: 15px; font-weight: 700;
  color: var(--gold); margin: 10px 0 4px;
  letter-spacing: 0.3px;
}
.bk-total-row span { font-size: 18px; }

/* ── Discount row ── */
.bk-discount-row { text-align: center; font-size: 13px; margin: 4px 0 0; min-height: 20px; display: none; }
.bk-discount-row.bk-show { display: block; }
.bk-strike { color: var(--muted); text-decoration: line-through; margin-inline-end: 8px; }
.bk-save-tag { background: rgba(74,222,128,0.15); color: #4ade80; border-radius: 8px; padding: 2px 8px; font-weight: 700; font-size: 12px; }
#bk-total-price.bk-bundle { color: #4ade80; }

/* ── Date + time block ── */
.bk-field { margin-bottom: 16px; }
.bk-label { display: block; font-size: 13px; color: var(--silver); margin-bottom: 7px; font-weight: 500; }
.bk-input {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white); font-size: 14px;
  font-family: var(--font);
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.bk-input:focus { outline: none; border-color: var(--gold); }
.bk-input::placeholder { color: rgba(255,255,255,0.25); }
/* ── Date strip ── */
.bk-date-strip-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding-bottom: 6px; margin: 0 -4px;
}
.bk-date-strip-wrap::-webkit-scrollbar { height: 3px; }
.bk-date-strip-wrap::-webkit-scrollbar-track { background: transparent; }
.bk-date-strip-wrap::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 2px; }
.bk-date-strip { display: flex; gap: 8px; padding: 4px 4px 2px; width: max-content; }
.bk-day-card {
  flex: 0 0 56px; display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 10px 6px;
  border: 1.5px solid rgba(255,255,255,0.09);
  border-radius: 14px; background: rgba(255,255,255,0.02); cursor: pointer;
  transition: all var(--transition); width: 56px; color: inherit;
}
.bk-day-card:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.05); }
.bk-day-card.bk-sel { border-color: var(--gold); background: rgba(201,168,76,0.12); }
.bk-day-card.bk-disabled { opacity: 0.25; pointer-events: none; }
.bk-day-name { font-size: 10px; color: var(--muted); font-weight: 600; letter-spacing: 0.3px; }
.bk-day-num { font-size: 22px; font-weight: 700; color: var(--white); line-height: 1.1; }
.bk-day-month { font-size: 10px; color: var(--muted); }
.bk-day-card.bk-sel .bk-day-name,
.bk-day-card.bk-sel .bk-day-num,
.bk-day-card.bk-sel .bk-day-month { color: var(--gold); }

/* ── Time block ── */
.bk-time-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.bk-time-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 8px; border: 1.5px solid rgba(255,255,255,0.09);
  border-radius: 14px; background: rgba(255,255,255,0.02); cursor: pointer;
  transition: all var(--transition); color: inherit;
}
.bk-time-btn:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.05); }
.bk-time-btn.bk-sel { border-color: var(--gold); background: rgba(201,168,76,0.12); }
.bk-time-btn.bk-sel .bk-tname { color: var(--gold); }
.bk-time-btn.bk-disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }
.bk-time-btn.bk-disabled::after { content: "תפוס"; display: block; font-size: 0.65rem; color: #e55; margin-top: 2px; }
.bk-time-icon { font-size: 22px; line-height: 1; }
.bk-tname { font-size: 14px; font-weight: 700; color: var(--white); }
.bk-trange { font-size: 10px; color: var(--muted); direction: ltr; letter-spacing: 0.2px; }

/* ── Form navigation ── */
.bk-nav {
  display: flex; gap: 10px; margin-top: 20px;
  flex-direction: row-reverse; /* primary btn on start = right in RTL */
}
.bk-btn-primary {
  flex: 1; padding: 13px 20px;
  background: var(--gold); color: #000;
  font-size: 15px; font-weight: 700;
  border: none; border-radius: 24px; cursor: pointer;
  transition: background var(--transition), opacity var(--transition);
}
.bk-btn-primary:hover { background: var(--gold-light); }
.bk-btn-primary:disabled { opacity: 0.55; pointer-events: none; }
.bk-btn-ghost {
  padding: 13px 18px;
  background: none; border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--silver); font-size: 14px; font-weight: 500;
  border-radius: 24px; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}
.bk-btn-ghost:hover { border-color: rgba(255,255,255,0.25); color: var(--white); }

/* Step 1 has single wide button (no back) */
#bk-p1 .bk-btn-primary { flex: none; width: 100%; margin-top: 16px; }

/* ── Error message ── */
.bk-err {
  font-size: 13px; color: #f87171; margin-bottom: 10px;
  display: none; padding: 0 2px;
}
.bk-err.bk-show { display: block; }

/* ── Success ── */
.bk-success-wrap { text-align: center; padding: 12px 8px 8px; }
.bk-check {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(37,211,102,0.12);
  border: 2px solid rgba(37,211,102,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #25d366;
}
.bk-success-wrap h3 { font-size: 21px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.bk-success-wrap p { font-size: 14px; color: var(--silver); line-height: 1.6; margin-bottom: 8px; }
.bk-success-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px !important; }
.bk-btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 20px; margin-bottom: 10px;
  background: #25d366; color: #fff;
  font-size: 15px; font-weight: 700;
  border-radius: 24px; text-decoration: none;
  transition: background var(--transition);
}
.bk-btn-wa:hover { background: #1fba57; }
#bk-done { width: 100%; }

/* ── Mobile: sheet from bottom ── */
@media (max-width: 560px) {
  .bk-overlay { padding: 0; align-items: flex-end; }
  .bk-modal { border-radius: 20px 20px 0 0; max-height: 93vh; max-width: 100%; }
}

/* ═══════════════════════════════════════
   BOTTOM SHEET BOOKING
   ═══════════════════════════════════════ */
.bs-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0);
  pointer-events: none;
  transition: background 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
}
.bs-overlay.bs-open {
  background: rgba(0,0,0,0.6);
  pointer-events: all;
}
.bs-sheet {
  width: 100%; max-width: 540px;
  background: #0f172a;
  border-radius: 20px 20px 0 0;
  padding: 14px 20px 36px;
  transform: translateY(110%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
}
.bs-sheet::-webkit-scrollbar { display: none; }
.bs-overlay.bs-open .bs-sheet { transform: translateY(0); }

.bs-drag-handle {
  width: 40px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.18);
  margin: 0 auto 18px;
}

/* Package header */
.bs-pkg-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.bs-pkg-name {
  font-size: 15px; font-weight: 700; color: #e2e8f0;
}
.bs-pkg-price {
  font-size: 22px; font-weight: 800; color: #60a5fa; letter-spacing: -0.02em;
}
.bs-pkg-arrival {
  font-size: 12px; color: #4ade80; margin-inline-start: auto; white-space: nowrap;
}

/* Date strip */
.bs-date-wrap {
  overflow-x: auto; margin: 0 -20px;
  padding: 0 20px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.bs-date-wrap::-webkit-scrollbar { display: none; }
.bs-date-strip { display: flex; gap: 8px; width: max-content; }

.bs-day-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 12px; border-radius: 10px;
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.13);
  cursor: pointer; min-width: 52px;
  color: rgba(255,255,255,0.85); transition: all 0.15s;
}
.bs-day-card:hover:not(.bs-disabled) { background: rgba(255,255,255,0.14); }
.bs-day-card.bs-sel {
  background: #1d4ed8; border-color: #3b82f6; color: #fff;
}
.bs-day-card.bs-disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
.bs-day-name { font-size: 10px; margin-bottom: 4px; }
.bs-day-num { font-size: 16px; font-weight: 700; }
.bs-day-month { font-size: 10px; margin-top: 3px; opacity: 0.7; }

/* Time grid */
.bs-time-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin: 16px 0;
}
.bs-time-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 12px 6px; border-radius: 12px;
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.13);
  cursor: pointer; color: #fff;
  transition: all 0.15s;
}
.bs-time-btn:hover:not(.bs-disabled) { background: rgba(255,255,255,0.14); }
.bs-time-btn.bs-sel {
  background: #1d4ed8; border-color: #3b82f6; color: #fff;
}
.bs-time-btn.bs-disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
.bs-time-btn.bs-disabled::after { content: "תפוס"; display: block; font-size: 10px; color: #f87171; }
.bs-time-icon { font-size: 18px; }
.bs-time-name { font-size: 13px; font-weight: 600; }
.bs-time-range { font-size: 10px; color: rgba(255,255,255,0.4); }

/* Fields */
.bs-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 10px;
}
.bs-input {
  padding: 13px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 14px; font-family: inherit;
  outline: none; width: 100%;
}
.bs-input::placeholder { color: rgba(255,255,255,0.35); }
.bs-input:focus { border-color: #3b82f6; background: rgba(255,255,255,0.1); }

/* Error */
.bs-err {
  font-size: 13px; color: #f87171;
  min-height: 20px; margin-bottom: 6px; text-align: center;
}

/* Submit */
.bs-submit {
  width: 100%; padding: 16px; border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff; font-size: 16px; font-weight: 700;
  border: none; cursor: pointer; font-family: inherit;
  transition: opacity 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
}
.bs-submit:active { transform: scale(0.98); }
.bs-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Success */
#bs-success { text-align: center; padding: 24px 0 8px; }
.bs-success-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(22,163,74,0.15); border: 2px solid rgba(22,163,74,0.4);
  color: #4ade80; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.bs-success-title {
  font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.bs-success-sub {
  font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 28px;
}
