/* ============================================================
   BENGUR - Main Stylesheet
   RTL | Hebrew | Bootstrap 5 RTL base
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --bg:           #ffffff;
  --bg-alt:       #f7f8fa;
  --bg-dark:      #1a1f2e;
  --text:         #1a1f2e;
  --text-muted:   #6b7385;
  --accent:       #c8922a;        /* warm gold – engineering, reliability */
  --accent-dark:  #a67520;
  --accent-light: #f5e9d0;
  --border:       #e4e7ef;
  --navbar-bg:    #1a1f2e;
  --footer-bg:    #13171f;
  --radius:       10px;
  --radius-lg:    18px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
  --shadow-md:    0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.14);
  --font:         'Heebo', sans-serif;
  --transition:   .25s ease;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  direction: rtl;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-navbar {
  background: var(--navbar-bg);
  padding: .75rem 0;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
  z-index: 1040;
}

.site-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.site-navbar .navbar-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  padding: 4px;
}

.brand-text {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.brand-text small {
  font-weight: 400;
  font-size: .75rem;
  opacity: .75;
  display: block;
}

.site-navbar .nav-link {
  color: rgba(255,255,255,.80) !important;
  font-weight: 500;
  font-size: .95rem;
  padding: .45rem .9rem !important;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: #ffffff !important;
  background: rgba(200,146,42,.20);
}
.site-navbar .nav-link.active {
  color: var(--accent) !important;
}

.navbar-phones { gap: .15rem; }
.phone-link {
  color: rgba(255,255,255,.70);
  font-size: .82rem;
  font-weight: 500;
  transition: color var(--transition);
}
.phone-link:hover { color: var(--accent); }

.site-navbar .navbar-toggler {
  border-color: rgba(255,255,255,.30);
}
.site-navbar .navbar-toggler-icon {
  filter: invert(1);
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: .75rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

section { padding: 5rem 0; }
section:nth-child(even) { background: var(--bg-alt); }

/* ============================================================
   HERO – Full background, solid overlay
   ============================================================ */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
/* Solid overlay – no gradient, just a single semi-transparent dark colour */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 46, 0.62);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

/* Eyebrow pill */
.hero-eyebrow {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

/* Headline */
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

/* Lead */
.hero-lead {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, .82);
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.hero-actions .btn-outline-light {
  border-color: rgba(255,255,255,.45);
  color: rgba(255,255,255,.85);
  font-weight: 600;
}
.hero-actions .btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.70);
  color: #fff;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.hero-stat { display: flex; flex-direction: column; gap: .15rem; }
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .20);
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .hero { min-height: 420px; }
  .hero-content { padding: 3.5rem 0; }
  .hero-stats { gap: 1rem; }
  .hero-stat-num { font-size: 1.3rem; }
}

/* ============================================================
   ABOUT STRIP (homepage teaser)
   ============================================================ */
.about-strip { background: var(--bg-alt); }

.about-strip img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.about-strip .btn-outline-primary {
  border-width: 2px;
  font-weight: 600;
}

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-section { background: var(--bg); }

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--accent);
}
.service-card img {
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--text);
}
.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   PROCESS IMAGES (before/after strips)
   ============================================================ */
.process-section { background: var(--bg-alt); }

.process-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

/* ============================================================
   AUDIENCE CARDS
   ============================================================ */
.audience-section { background: var(--bg); }

.audience-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.audience-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.audience-card img {
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 1.25rem;
}
.audience-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.audience-card p {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   PROJECTS CTA BANNER
   ============================================================ */
.projects-cta {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.projects-cta-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.projects-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,31,46,.72);
  z-index: 1;
}
.projects-cta-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  text-align: center;
}
.projects-cta-content h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.projects-cta-content .btn {
  font-size: 1rem;
  font-weight: 700;
  padding: .8rem 2.5rem;
  border-radius: var(--radius);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--bg-alt); }

.contact-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
}

.form-control, .form-check-input {
  direction: rtl;
  border-radius: var(--radius);
  border-color: var(--border);
  font-family: var(--font);
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,146,42,.18);
}
.form-label {
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .35rem;
}

.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}
.consent-label {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.consent-label a {
  color: var(--accent);
  font-weight: 600;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.contact-direct-link {
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  transition: color var(--transition);
}
.contact-direct-link:hover { color: var(--accent); }
.contact-direct-link.whatsapp:hover { color: #25D366; }
.contact-direct-sep { color: var(--text-muted); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200,146,42,.35);
}
.btn-outline-primary {
  color: var(--accent);
  border-color: var(--accent);
  font-weight: 700;
  border-radius: var(--radius);
}
.btn-outline-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-light {
  background: #ffffff;
  color: var(--accent);
  border-color: transparent;
  font-weight: 700;
}
.btn-light:hover {
  background: var(--accent-light);
  color: var(--accent-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,.70);
  padding: 4rem 0 0;
}
.footer-brand-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .2rem;
}
.footer-tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-heading {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.40);
  margin-bottom: 1rem;
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-compliance {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
}
.footer-divider {
  border-color: rgba(255,255,255,.10);
  margin: 2.5rem 0 1.5rem;
}
.footer-bottom {
  padding-bottom: 2rem;
  font-size: .83rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   PAGE HEADER (shared across inner pages)
   ============================================================ */
.page-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0 2.5rem;
  text-align: center;
}
.page-header-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: .5rem;
}
.page-header-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.projects-section { background: var(--bg); padding: 4rem 0; }

.project-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  background: var(--bg);
  transition: box-shadow var(--transition);
}
.project-card:hover {
  box-shadow: var(--shadow-lg);
}

/* Image column – full bleed, no padding, no cropping width */
.project-images {
  overflow: hidden;
}
.project-photo {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Text column */
.project-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  border-inline-start: 1px solid var(--border);
  background: var(--bg);
}
.project-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.project-meta { display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.project-meta-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .3rem;
}
.project-meta-text {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
  .project-card { grid-template-columns: 1fr; }
  .project-images { border-inline-start: none; border-bottom: 1px solid var(--border); }
  .project-photo { min-height: 220px; height: 220px; }
  .project-body { padding: 1.25rem; border-inline-start: none; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro       { background: var(--bg); }
.about-fit-intro   { background: var(--bg-alt); }
.about-steps       { background: var(--bg); padding-bottom: 5rem; }

.about-intro-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-intro-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.about-steps-intro {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: .5rem;
  margin-bottom: 0;
}

/* Step cards */
.step-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}
.step-card--gold {
  background: var(--accent);
  color: #fff;
}
.step-card--dark {
  background: var(--navbar-bg);
  color: rgba(255,255,255,.90);
}

.step-num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  width: 3.5rem;
  text-align: center;
  opacity: .30;
  font-feature-settings: "tnum";
}
.step-card--gold .step-num  { color: #fff; }
.step-card--dark .step-num  { color: #fff; }

.step-body { flex: 1; }

.step-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .6rem;
  color: inherit;
}
.step-card--gold .step-title { color: #fff; }
.step-card--dark .step-title { color: #fff; }

.step-text {
  font-size: .92rem;
  line-height: 1.75;
  margin: 0;
}
.step-card--gold .step-text { color: rgba(255,255,255,.90); }
.step-card--dark .step-text { color: rgba(255,255,255,.72); }

@media (max-width: 575.98px) {
  .step-card { flex-direction: column; gap: .75rem; padding: 1.5rem 1.25rem; }
  .step-num  { font-size: 2rem; width: auto; }
}

/* ============================================================
   CONSULTING PAGE
   ============================================================ */
.consulting-intro   { background: var(--bg); padding: 5rem 0; }
.consulting-pillars { background: var(--bg-alt); padding: 5rem 0; }

.consulting-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1rem;
}
.consulting-cta-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.consulting-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 400px;
}

/* Pillar cards */
.pillar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--accent);
}
.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.pillar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .6rem;
}
.pillar-text {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   CONSULTING PAGE
   ============================================================ */
.consulting-intro    { background: var(--bg); }
.consulting-services { background: var(--bg-alt); }
.consulting-why      { background: var(--bg); }

.consulting-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1rem;
}
.consulting-cta-line {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.25rem;
}
.consulting-cta-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.consulting-cta-link:hover { color: var(--accent-dark); }

.consulting-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  height: 320px;
}

/* Service cards */
.consulting-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.consulting-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--accent);
}
.consulting-card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}
.consulting-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.consulting-card-text {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-section { background: var(--bg); padding: 4rem 0 5rem; }

.privacy-notice-box {
  background: var(--accent-light);
  border-right: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: .93rem;
  line-height: 1.7;
  color: var(--text);
}

.privacy-body { font-size: .95rem; line-height: 1.8; color: var(--text); }

.privacy-section-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--accent-light);
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}

.privacy-law-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: .15rem .55rem;
  border-radius: 3px;
  vertical-align: middle;
}

.privacy-body p  { margin-bottom: 1rem; }
.privacy-body ul,
.privacy-body ol { padding-right: 1.5rem; margin-bottom: 1rem; }
.privacy-body li { margin-bottom: .4rem; }
.privacy-body a  { color: var(--accent); font-weight: 600; }
.privacy-body a:hover { color: var(--accent-dark); }

/* Cookies table */
.privacy-table-wrap {
  overflow-x: auto;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  text-align: right;
}
.privacy-table th {
  background: var(--bg-alt);
  font-weight: 700;
  padding: .65rem 1rem;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
  color: var(--text);
}
.privacy-table td {
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.privacy-table tbody tr:last-child td { border-bottom: none; }
.privacy-table tbody tr:hover { background: var(--bg-alt); }

.privacy-contact-list li { margin-bottom: .5rem; font-size: .95rem; }

/* ============================================================
   ERROR PAGES (404 etc.)
   ============================================================ */
.error-section {
  background: var(--bg);
  padding: 6rem 0 5rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.error-code {
  font-size: clamp(6rem, 18vw, 10rem);
  font-weight: 900;
  line-height: 1;
  color: var(--accent-light);
  letter-spacing: -.04em;
  margin-bottom: .25rem;
  user-select: none;
}
.error-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}
.error-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.error-nav { margin-top: 1rem; }
.error-nav-label {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.error-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  justify-content: center;
}
.error-nav-list a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--accent);
}
.error-nav-list a:hover { color: var(--accent-dark); }

/* ============================================================
   PRIVACY CONSENT BANNER (תקנה 13)
   ============================================================ */
#privacy-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  background: var(--navbar-bg);
  border-top: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
#privacy-banner.privacy-banner--visible {
  transform: translateY(0);
}
.privacy-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.privacy-banner-text {
  flex: 1;
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  margin: 0;
}
.privacy-banner-text strong { color: #fff; }
.privacy-banner-link {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy-banner-link:hover { color: #e8b04a; }
.privacy-banner-btn {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: .6rem 1.75rem;
  font-size: .92rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.privacy-banner-btn:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 14px rgba(200,146,42,.40);
}
.privacy-banner-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
@media (max-width: 575.98px) {
  .privacy-banner-inner { flex-direction: column; align-items: stretch; gap: .75rem; }
  .privacy-banner-btn   { width: 100%; text-align: center; }
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991.98px) {
  .site-navbar .collapse { background: rgba(26,31,46,.98); padding: 1rem; border-radius: var(--radius); margin-top: .5rem; }
  .hero-content { padding: 3.5rem 0; }
}
@media (max-width: 767.98px) {
  section { padding: 3.5rem 0; }
  .contact-card { padding: 1.75rem 1.25rem; }
}