/* ============================================
   BOKOBZA LAW - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&display=swap');

/* ---- Variables ---- */
:root {
  --primary: #0d1b3e;
  --primary-light: #1a3a6e;
  --primary-dark: #060f24;
  --gold: #c9a84c;
  --gold-light: #e0c06a;
  --gold-bg: rgba(201, 168, 76, 0.1);
  --white: #ffffff;
  --bg-light: #f5f7fb;
  --bg-section: #f0f4fa;
  --text: #1a1a2e;
  --text-muted: #5a6a80;
  --text-light: #8898aa;
  --border: #dce4f0;
  --success: #2ecc71;
  --danger: #e74c3c;
  --shadow-sm: 0 2px 8px rgba(13,27,62,0.08);
  --shadow: 0 4px 20px rgba(13,27,62,0.12);
  --shadow-lg: 0 8px 40px rgba(13,27,62,0.18);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.3s ease;
  --font: 'Rubik', 'Arial', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  direction: rtl;
  text-align: right;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

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

.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.btn-lg { padding: 18px 44px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---- Header / Nav ---- */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(13, 27, 62, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo .name-heb {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.nav-logo .name-sub {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 8px 14px;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
  direction: ltr;
}

.nav-phone:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-wa {
  background: #25D366;
  color: var(--white);
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-wa:hover {
  background: #20ba5a;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--primary-dark);
  z-index: 999;
  padding: 32px 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav .mobile-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #060f24 0%, #0d1b3e 40%, #122456 70%, #0f2050 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26,58,110,0.4) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.2;
}

.hero h1 .highlight {
  color: var(--gold);
  position: relative;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.22rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.hero-visual {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 520px;
  opacity: 0.07;
  pointer-events: none;
}

/* ---- Urgency Bar ---- */
.urgency-bar {
  background: linear-gradient(135deg, var(--gold) 0%, #a8861e 100%);
  padding: 14px 0;
  text-align: center;
}

.urgency-bar p {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.98rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ---- Section Base ---- */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-section);
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.78); }

.section-header {
  margin-bottom: 56px;
}

.section-header.text-center {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: var(--gold-bg);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-tag.white {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
  border-color: rgba(201,168,76,0.25);
}

.section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-top: 16px;
}

.section-divider.center { margin: 16px auto 0; }

/* ---- Pain Points ---- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary-light));
  opacity: 0;
  transition: var(--transition);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.3);
}

.pain-card:hover::before { opacity: 1; }

.pain-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.pain-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.pain-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin: 0;
}

/* ---- Solution Section ---- */
.solution-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.solution-text .section-tag { margin-bottom: 14px; }

.solution-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.solution-item .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gold-bg);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-top: 2px;
}

.solution-item .content h4 { margin-bottom: 4px; font-size: 1rem; }
.solution-item .content p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

.solution-visual {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.solution-visual::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 160px;
  height: 160px;
  background: rgba(201,168,76,0.08);
  border-radius: 50%;
}

.free-consult-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.free-consult-box h3 {
  color: var(--gold);
  margin-bottom: 12px;
}

.free-consult-box p {
  color: rgba(255,255,255,0.8);
  font-size: 0.94rem;
}

.process-mini {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-mini-step {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.94rem;
}

.step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--gold);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-card-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 20px;
}

.service-card .arrow {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-card:hover .arrow { gap: 10px; }

/* ---- Why Us ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-3px);
}

.why-card .icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.why-card h3 {
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ---- Process ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-bubble {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), #a8861e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-gold);
  position: relative;
}

.step-bubble .step-num-big {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 26px;
  height: 26px;
  background: var(--primary);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
}

.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info .name { font-weight: 700; font-size: 0.95rem; }
.author-info .case { font-size: 0.82rem; color: var(--text-muted); }

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  gap: 16px;
}

.faq-question h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 300;
  transition: var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--primary); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--white);
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.75;
  margin: 0;
}

.faq-item.open .faq-answer { display: block; }

/* ---- Lead Form ---- */
.lead-form-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 80px 0;
}

.lead-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lead-form-text h2 { color: var(--white); margin-bottom: 16px; }
.lead-form-text p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }

.lead-form-bullets {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.lead-form-bullets .check {
  color: var(--gold);
  font-size: 1.1rem;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.form-card .form-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, #a8861e 100%);
  color: var(--primary);
  border: none;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ---- CTA Band ---- */
.cta-band {
  background: var(--gold);
  padding: 60px 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--primary);
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(13,27,62,0.75);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.cta-band .btn-group {
  justify-content: center;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand .logo-sub {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item .icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ---- Floating Buttons ---- */
.floating-wa {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.65);
}

.floating-phone {
  position: fixed;
  bottom: 100px;
  left: 28px;
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.15);
}

.floating-phone:hover {
  transform: scale(1.1);
  background: var(--primary-light);
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.75), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-item .ti-icon {
  font-size: 1.2rem;
  color: var(--gold);
}

/* ---- About Preview ---- */
.about-preview-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: var(--white);
}

.about-img-placeholder .initials {
  font-size: 5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.about-img-placeholder .title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.about-img-placeholder .sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.about-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  justify-content: center;
}

.about-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.about-text .credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cred-item {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cred-item .ci { color: var(--gold); }

/* ---- Locations ---- */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.location-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(201,168,76,0.3);
}

.location-card .city {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-card .address {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---- Service Page Hero ---- */
.service-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 120px 0 80px;
  color: var(--white);
}

.service-hero h1 { color: var(--white); margin-bottom: 16px; }
.service-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }

/* ---- Alert Box ---- */
.alert-box {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-right: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
}

.alert-box p { margin: 0; font-size: 0.95rem; color: var(--text); }
.alert-box strong { color: var(--primary); }

/* ---- Sticky CTA Mobile ---- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 998;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  padding: 12px 16px;
  gap: 10px;
}

.sticky-mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 13px 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
}

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible { opacity: 1; }

/* ---- Utility ---- */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

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

  .nav-menu { display: none; }
  .nav-phone { display: none; }
  .nav-wa.desktop { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-stats { gap: 24px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .pain-grid { grid-template-columns: 1fr; gap: 16px; }
  .solution-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-preview-wrap { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .lead-form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .process-steps { grid-template-columns: 1fr; gap: 20px; }
  .locations-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .form-card { padding: 28px 20px; }
  .solution-visual { padding: 28px 24px; }

  .floating-wa { bottom: 76px; left: 16px; width: 54px; height: 54px; font-size: 1.5rem; }
  .floating-phone { bottom: 140px; left: 16px; width: 46px; height: 46px; }

  .sticky-mobile-cta { display: flex; }

  .trust-items { gap: 24px; }
  .hero-visual { display: none; }

  .cta-band .btn-group { flex-direction: column; align-items: stretch; }
  .cta-band .btn-group .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.9rem; }
  .hero h1 { font-size: 2rem; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat .num { font-size: 1.6rem; }
}

/* ==============================================================
   ACCESSIBILITY — תפריט נגישות + מצבים (תקנות תשע"ג-2013, WCAG 2.1 AA)
   ============================================================== */

/* Skip-to-content link (hidden until focused) */
.a11y-skip-link {
  position: absolute;
  top: -100px;
  right: 12px;
  background: #000;
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  z-index: 99999;
  text-decoration: none;
  transition: top 0.2s ease;
}
.a11y-skip-link:focus {
  top: 0;
  outline: 3px solid #C9A84C;
}

/* Widget wrapper */
.a11y-widget {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 9998;
  font-family: inherit;
}

/* Floating toggle button */
.a11y-toggle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #0D1B3E;
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 6px 22px rgba(0,0,0,0.25);
  font-size: 1.55rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.a11y-toggle:hover,
.a11y-toggle:focus-visible {
  transform: scale(1.1);
  background: #1a3a6e;
  outline: 3px solid #C9A84C;
  outline-offset: 2px;
}

/* Panel */
.a11y-panel {
  position: absolute;
  bottom: 66px;
  right: 0;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  padding: 0;
  max-height: min(80vh, 620px);
  overflow-y: auto;
  direction: rtl;
  text-align: right;
  color: #2b2b2b;
}

.a11y-panel[hidden] { display: none; }

.a11y-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #0D1B3E;
  color: #fff;
  border-radius: 16px 16px 0 0;
}
.a11y-panel-head h2 {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
}
.a11y-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 8px;
}
.a11y-close:hover,
.a11y-close:focus-visible {
  color: #C9A84C;
  outline: 2px solid #C9A84C;
  outline-offset: 2px;
  border-radius: 4px;
}

.a11y-panel-body { padding: 14px 16px 18px; }

.a11y-group { margin-bottom: 14px; }
.a11y-group-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #5a5a5a;
  margin-bottom: 8px;
  text-transform: none;
}

.a11y-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.a11y-panel button[data-a11y] {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 6px;
  background: #f2f5fa;
  border: 2px solid transparent;
  border-radius: 10px;
  color: #0D1B3E;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: right;
  transition: all 0.15s ease;
  font-family: inherit;
}
.a11y-panel .a11y-row button[data-a11y] {
  text-align: center;
  margin: 0;
}
.a11y-panel button[data-a11y]:hover,
.a11y-panel button[data-a11y]:focus-visible {
  background: #e3e7ee;
  outline: none;
  border-color: #C9A84C;
}
.a11y-panel button[data-a11y][aria-pressed="true"] {
  background: #0D1B3E;
  color: #fff;
  border-color: #C9A84C;
}
.a11y-panel .a11y-reset-all {
  background: #fdf7e7 !important;
  color: #8a6a0f !important;
  border-color: #C9A84C !important;
  font-weight: 700;
}

.a11y-statement {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e3e7ee;
  font-size: 0.82rem;
  color: #5a5a5a;
  line-height: 1.6;
}
.a11y-statement a {
  color: #0D1B3E;
  font-weight: 600;
  text-decoration: underline;
}
.a11y-statement p { margin: 8px 0 0; font-size: 0.78rem; }

/* Mobile adjustments */
@media (max-width: 480px) {
  .a11y-widget { bottom: 80px; right: 10px; }
  .a11y-toggle { width: 48px; height: 48px; font-size: 1.3rem; }
  .a11y-panel { width: min(310px, calc(100vw - 24px)); }
}

/* =================================================================
   Accessibility modes — applied to <body> via classes
   ================================================================= */

/* High contrast (light) */
body.a11y-high-contrast {
  background: #ffffff !important;
  color: #000000 !important;
}
body.a11y-high-contrast a { color: #0000ee !important; text-decoration: underline !important; }
body.a11y-high-contrast a:visited { color: #551a8b !important; }
body.a11y-high-contrast h1,
body.a11y-high-contrast h2,
body.a11y-high-contrast h3,
body.a11y-high-contrast h4,
body.a11y-high-contrast p,
body.a11y-high-contrast li,
body.a11y-high-contrast span,
body.a11y-high-contrast div {
  color: #000 !important;
  background-color: transparent !important;
  text-shadow: none !important;
}
body.a11y-high-contrast .btn,
body.a11y-high-contrast button:not([data-a11y]):not(.a11y-toggle):not(.a11y-close) {
  background: #000 !important;
  color: #fff !important;
  border: 2px solid #000 !important;
}
body.a11y-high-contrast .hero,
body.a11y-high-contrast .service-hero,
body.a11y-high-contrast .cta-band,
body.a11y-high-contrast .site-footer,
body.a11y-high-contrast .section-dark {
  background: #fff !important;
  color: #000 !important;
}
body.a11y-high-contrast img { filter: contrast(1.4); }

/* Dark / inverted contrast */
body.a11y-dark-contrast {
  background: #000000 !important;
  color: #ffff00 !important;
}
body.a11y-dark-contrast *:not(.a11y-widget):not(.a11y-widget *) {
  background-color: transparent !important;
  color: #ffff00 !important;
  border-color: #ffff00 !important;
  text-shadow: none !important;
  box-shadow: none !important;
}
body.a11y-dark-contrast a,
body.a11y-dark-contrast a * { color: #00ffff !important; text-decoration: underline !important; }
body.a11y-dark-contrast .btn,
body.a11y-dark-contrast button:not([data-a11y]):not(.a11y-toggle):not(.a11y-close) {
  background: #000 !important;
  color: #ffff00 !important;
  border: 2px solid #ffff00 !important;
}
body.a11y-dark-contrast img,
body.a11y-dark-contrast iframe { filter: invert(1) hue-rotate(180deg); }

/* Grayscale */
body.a11y-grayscale { filter: grayscale(100%); }
body.a11y-grayscale .a11y-widget { filter: grayscale(0%); }

/* Readable font — override to Arial/Tahoma */
body.a11y-readable-font,
body.a11y-readable-font *:not(.a11y-widget):not(.a11y-widget *):not(i):not(.fa) {
  font-family: Arial, Tahoma, sans-serif !important;
  letter-spacing: 0.02em;
}

/* Highlight links */
body.a11y-highlight-links a:not(.a11y-widget *) {
  outline: 2px dashed #C9A84C !important;
  outline-offset: 2px;
  background: #fff8e1 !important;
  color: #0D1B3E !important;
  text-decoration: underline !important;
}
body.a11y-dark-contrast.a11y-highlight-links a {
  outline: 2px dashed #00ffff !important;
  background: #001a1a !important;
}

/* Big cursor */
body.a11y-big-cursor,
body.a11y-big-cursor * {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'><path d='M8 4 L8 38 L18 30 L24 44 L30 42 L24 28 L36 28 Z' fill='black' stroke='white' stroke-width='2'/></svg>") 4 4, auto !important;
}

/* Stop animations */
body.a11y-stop-anim *,
body.a11y-stop-anim *::before,
body.a11y-stop-anim *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

/* Line height */
body.a11y-line-height,
body.a11y-line-height p,
body.a11y-line-height li,
body.a11y-line-height h1,
body.a11y-line-height h2,
body.a11y-line-height h3,
body.a11y-line-height h4 {
  line-height: 2.2 !important;
  letter-spacing: 0.05em !important;
  word-spacing: 0.08em !important;
}

/* Keyboard focus styling — always-on for A11y */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #C9A84C !important;
  outline-offset: 2px !important;
  border-radius: 3px;
}

/* Respect users' prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* =============================================================
   PREMIUM DESIGN LAYER v2
   Additive — does not break existing styles.
   ============================================================= */

/* ---- Keyframes ---- */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1);     opacity: 0.4; }
  33%      { transform: translate(40px, -50px) scale(1.1); opacity: 0.55; }
  66%      { transform: translate(-30px, 30px) scale(0.95); opacity: 0.3; }
}
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(201,168,76,0.35), 0 0 0 0 rgba(201,168,76,0.45); }
  50%      { box-shadow: 0 8px 30px rgba(201,168,76,0.55), 0 0 0 14px rgba(201,168,76,0); }
}
@keyframes rippleOut {
  to { transform: scale(4); opacity: 0; }
}
@keyframes wordReveal {
  from { opacity: 0; transform: translateY(28px) rotateX(-55deg); }
  to   { opacity: 1; transform: translateY(0)   rotateX(0); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes shimmerBg {
  0%   { background-position: -200% 50%; }
  100% { background-position: 200% 50%; }
}

/* ---- Cinematic hero background ---- */
.hero {
  background: linear-gradient(130deg, #060f24 0%, #0d1b3e 25%, #1a2a5e 50%, #0d1b3e 75%, #060f24 100%);
  background-size: 400% 400%;
  animation: gradientShift 22s ease-in-out infinite;
}

/* Floating gold orbs behind hero content */
.hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform, opacity;
}
.hero-orb.o1 {
  width: 420px; height: 420px;
  top: -110px; right: -120px;
  background: radial-gradient(circle, rgba(201,168,76,0.55) 0%, transparent 70%);
  animation: floatOrb 20s ease-in-out infinite;
}
.hero-orb.o2 {
  width: 520px; height: 520px;
  bottom: -180px; left: -140px;
  background: radial-gradient(circle, rgba(40,80,160,0.6) 0%, transparent 70%);
  animation: floatOrb 26s ease-in-out -4s infinite reverse;
}
.hero-orb.o3 {
  width: 300px; height: 300px;
  top: 45%; left: 35%;
  background: radial-gradient(circle, rgba(201,168,76,0.28) 0%, transparent 70%);
  animation: floatOrb 30s ease-in-out -10s infinite;
}
.hero-content { position: relative; z-index: 3; }
.hero-bg-pattern, .hero-grid { z-index: 2; }

/* ---- Hero portrait (right side on LTR viewing of RTL doc = left visually) ---- */
.hero-portrait-wrap {
  position: absolute;
  left: 5%; top: 50%;
  transform: translateY(-50%);
  width: 34%;
  max-width: 440px;
  z-index: 3;
  pointer-events: none;
}
.hero-portrait {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(201,168,76,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}
.hero-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
  will-change: transform;
}
.hero-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6,15,36,0.55) 100%);
  pointer-events: none;
}
.hero-portrait-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(circle, rgba(201,168,76,0.3) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: goldPulse 4.5s ease-in-out infinite;
  border-radius: 50%;
}
@media (max-width: 1100px) {
  .hero-portrait-wrap { display: none; }
}

/* ---- Grain overlay (subtle luxury texture) ---- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='7'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
}

/* ---- Scroll progress bar (top) ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  background-size: 200% 100%;
  z-index: 10001;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.12s ease;
  animation: shimmerBg 4s linear infinite;
}

/* ---- Gold gradient text ---- */
.gold-gradient-text {
  background: linear-gradient(135deg, #e0c06a 0%, #c9a84c 30%, #e8cb7f 50%, #c9a84c 70%, #a8861e 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerBg 5s ease-in-out infinite;
  display: inline-block;
}
.hero-stat .num { /* override with gold gradient */
  background: linear-gradient(135deg, #e8cb7f, #c9a84c, #a8861e);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---- Multi-direction scroll reveal ---- */
.reveal {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none !important; filter: none !important; }
.reveal-up    { transform: translateY(50px); }
.reveal-down  { transform: translateY(-40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.92); }
.reveal-blur  { transform: translateY(30px); filter: blur(10px); }

/* Stagger children — set --i via JS */
.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---- Premium button: shimmer + ripple + pulse ---- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn > * { position: relative; z-index: 2; }
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-22deg);
  transition: left 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
  pointer-events: none;
}
.btn:hover::before { left: 220%; }
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  pointer-events: none;
  transform: scale(0);
  animation: rippleOut 0.6s ease-out;
  z-index: 1;
}
.btn-primary.btn-lg,
.btn-whatsapp.btn-lg {
  animation: goldPulse 3.2s ease-in-out infinite;
}
.btn-whatsapp.btn-lg {
  animation-name: goldPulse;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}

/* Magnetic pointer */
.magnetic {
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* ---- Glass card ---- */
.glass-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
}

/* ---- Word-reveal for headings ---- */
.word-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotateX(-55deg);
  transform-origin: top center;
  animation: wordReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--wi, 0) * 0.09s + 0.25s);
  will-change: opacity, transform;
}

/* ---- Social links ---- */
.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-size: 1.05rem;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.social-links a:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 26px rgba(201,168,76,0.45);
  border-color: var(--gold);
}
.social-links a svg { width: 18px; height: 18px; fill: currentColor; transition: var(--transition); }

/* Inline social for hero / other places */
.social-inline {
  display: inline-flex;
  gap: 8px;
  vertical-align: middle;
}
.social-inline a {
  width: 34px; height: 34px;
  font-size: 0.9rem;
}

/* ---- Testimonial carousel ---- */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  margin: 0 auto;
  max-width: 900px;
}
.testimonial-track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.testimonial-track > .testimonial-card {
  flex: 0 0 100%;
  margin: 0 !important;
  max-width: 100%;
}
.testimonial-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 22px;
}
.testimonial-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(201,168,76,0.3);
  transition: var(--transition);
  padding: 0;
  cursor: pointer;
}
.testimonial-dots button.active {
  background: var(--gold);
  width: 34px;
  border-radius: 5px;
}
.testimonial-dots button:hover { background: rgba(201,168,76,0.65); }

/* ---- Digital badge (hero) — elevate existing ---- */
.digital-badge, .hero-badge {
  position: relative;
  overflow: hidden;
}
.digital-badge::after, .hero-badge::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  animation: shimmerBg 6s ease-in-out infinite;
  pointer-events: none;
}

/* ---- Gold foil branded name in nav ---- */
.nav-logo .name-heb {
  background: linear-gradient(135deg, #f0d790 0%, #ffffff 30%, #e8cb7f 50%, #ffffff 70%, #c9a84c 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerBg 8s ease-in-out infinite;
}

/* ---- Logo image replacement ---- */
.nav-logo.has-image {
  flex-direction: row;
  align-items: center;
  gap: 0;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.04); }
@media (max-width: 640px) {
  .nav-logo-img { height: 44px; }
}
.footer-logo-img {
  max-width: 260px;
  margin-bottom: 14px;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ---- Service card premium hover ---- */
.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201,168,76,0.14) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13,27,62,0.18);
  border-color: rgba(201,168,76,0.4);
}

/* ---- Floating WA / Phone — subtle pulse ---- */
.floating-wa, .floating-phone {
  animation: floatSlow 3s ease-in-out infinite;
}

/* ---- Mobile tuning ---- */
@media (max-width: 780px) {
  .hero-orb.o1 { width: 280px; height: 280px; }
  .hero-orb.o2 { width: 340px; height: 340px; }
  .hero-orb.o3 { display: none; }
  .scroll-progress { height: 2px; }
}

/* ---- WhatsApp popup ---- */
.wa-popup {
  position: fixed;
  bottom: 88px; left: 24px;
  width: 340px;
  max-width: calc(100vw - 48px);
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(13,27,62,0.25), 0 0 0 1px rgba(201,168,76,0.2);
  z-index: 9997;
  padding: 18px 18px 18px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.wa-popup.shown { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-popup::before {
  content: '';
  position: absolute;
  bottom: -10px; left: 28px;
  width: 20px; height: 20px;
  background: var(--white);
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.04);
}
.wa-popup-close {
  position: absolute;
  top: 6px; right: 10px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.wa-popup-close:hover { background: var(--bg-light); color: var(--text); }
.wa-popup-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--primary);
  position: relative;
}
.wa-popup-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.wa-popup-avatar::after {
  content: '';
  position: absolute;
  bottom: 2px; right: 2px;
  width: 12px; height: 12px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid var(--white);
}
.wa-popup-body { flex: 1; min-width: 0; padding-left: 4px; }
.wa-popup-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.wa-popup-status {
  font-size: 0.75rem;
  color: #25D366;
  font-weight: 600;
}
.wa-popup-msg {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
}
.wa-popup-cta {
  display: inline-block;
  background: #25D366;
  color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--transition);
}
.wa-popup-cta:hover { background: #20ba5a; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.4); }
@media (max-width: 640px) {
  .wa-popup { display: none; }
}

/* ---- Google Reviews trust strip ---- */
.google-reviews-strip {
  background: var(--white);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: 0 12px 40px rgba(13,27,62,0.12), 0 0 0 1px rgba(201,168,76,0.15);
  max-width: 720px;
  margin: -40px auto 0;
  position: relative;
  z-index: 5;
}
.google-reviews-strip .g-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.google-reviews-strip .g-logo span:nth-child(1) { color: #4285F4; }
.google-reviews-strip .g-logo span:nth-child(2) { color: #EA4335; }
.google-reviews-strip .g-logo span:nth-child(3) { color: #FBBC05; }
.google-reviews-strip .g-logo span:nth-child(4) { color: #4285F4; }
.google-reviews-strip .g-logo span:nth-child(5) { color: #34A853; }
.google-reviews-strip .g-logo span:nth-child(6) { color: #EA4335; }
.google-reviews-strip .g-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.google-reviews-strip .g-score {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}
.google-reviews-strip .g-stars { color: #FBBC05; font-size: 1.05rem; letter-spacing: 2px; }
.google-reviews-strip .g-count {
  color: var(--text-muted);
  font-size: 0.88rem;
}
.google-reviews-strip .g-sep { color: var(--border); }
@media (max-width: 640px) {
  .google-reviews-strip { gap: 10px; padding: 14px; }
  .google-reviews-strip .g-sep { display: none; }
}

/* ---- YouTube section ---- */
.youtube-section {
  background: linear-gradient(135deg, #0d1b3e 0%, #060f24 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.youtube-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.youtube-section .container { position: relative; z-index: 1; }
.youtube-section h2 { color: var(--white); }
.youtube-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.youtube-header .yt-intro {
  display: flex;
  align-items: center;
  gap: 14px;
}
.youtube-header .yt-icon {
  width: 52px; height: 52px;
  background: #FF0000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.youtube-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF0000;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.youtube-cta:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,0,0,0.4);
}
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .youtube-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .youtube-grid { grid-template-columns: 1fr; } }
.yt-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  display: block;
  color: var(--white);
}
.yt-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.yt-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.yt-thumb::after {
  content: '▶';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(255,0,0,0.92);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding-left: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.yt-card-body {
  padding: 16px 18px;
}
.yt-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}
.yt-card-meta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* ---- Cookie consent banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(13,27,62,0.22), 0 0 0 1px rgba(201,168,76,0.2);
  z-index: 9996;
  padding: 16px 20px;
  transform: translateY(140%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.shown { transform: translateY(0); opacity: 1; }
.cookie-banner-body {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.cookie-banner-text {
  flex: 1;
  min-width: 220px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-banner-accept {
  background: var(--gold);
  color: var(--primary);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.cookie-banner-accept:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.cookie-banner-learn {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: underline;
}
.cookie-banner-learn:hover { color: var(--primary); }
@media (max-width: 540px) {
  .cookie-banner {
    left: 12px; right: 12px; bottom: 12px;
    padding: 14px 16px;
  }
  .cookie-banner-body { gap: 10px; }
  .cookie-banner-icon { display: none; }
  .cookie-banner-text { font-size: 0.82rem; }
  .cookie-banner-actions { width: 100%; justify-content: flex-end; }
}

/* Reduced motion overrides for premium layer */
@media (prefers-reduced-motion: reduce) {
  .hero, .hero-orb, .btn-primary.btn-lg, .btn-whatsapp.btn-lg,
  .digital-badge::after, .hero-badge::after, .scroll-progress,
  .nav-logo .name-heb, .gold-gradient-text, .hero-stat .num,
  .floating-wa, .floating-phone {
    animation: none !important;
  }
  .word-reveal .word { opacity: 1; transform: none; }
}

