/* ============================================================
   NIGHT-NET — Stylesheet
   צבעי המותג: שחור #1a1a1a, ירוק ליים #a4d65e, כחול תכלת #5fb4e8
   ============================================================ */

:root {
  --black: #1a1a1a;
  --black-deep: #0d0d0d;
  --black-light: #2a2a2a;
  --lime: #a4d65e;
  --lime-dark: #7fb83a;
  --blue: #5fb4e8;
  --blue-dark: #3a9bd9;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #999;
  --gray-600: #666;
  --gray-800: #333;
  --whatsapp: #25D366;
  --gold: #FFD700;
  --red: #e85d24;

  --transition: all 0.2s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Heebo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

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

/* ============================================================
   TOP BAR — דביק תמיד למעלה
   ============================================================ */
.top-bar {
  background: var(--black-deep);
  color: var(--white);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-weight: 500;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(164,214,94,0.7); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(164,214,94,0); }
}

.contact-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-contact:hover {
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1ea857;
}

.btn-phone {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.btn-phone:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

.btn-email {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  padding: 7px 11px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav {
  background: var(--black);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 44px;
  z-index: 99;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
}

.logo-img {
  height: 72px;
  width: auto;
  transition: transform 0.25s ease;
  filter: drop-shadow(0 2px 8px rgba(164, 214, 94, 0.15));
}

.logo-link:hover .logo-img {
  transform: scale(1.05);
}

.logo-tagline {
  display: inline-block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  padding-right: 14px;
  border-right: 2px solid rgba(164, 214, 94, 0.4);
  white-space: nowrap;
  max-width: 180px;
}

@media (max-width: 1024px) {
  .logo-tagline {
    font-size: 12px;
    max-width: 140px;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 56px;
  }
  .logo-tagline {
    display: none;
  }
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-text-night {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-text-net {
  font-size: 22px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -0.02em;
}

.logo-dots {
  display: flex;
  gap: 3px;
  margin-right: 4px;
}

.logo-dot-blue {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 1px;
}

.logo-dot-lime {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-menu a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--lime);
}

.nav-menu .nav-cta {
  background: var(--lime);
  color: var(--black);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.nav-menu .nav-cta:hover {
  background: var(--lime-dark);
  color: var(--black);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 18px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  width: 14px;
  height: 14px;
  background: var(--blue);
  border-radius: 2px;
  opacity: 0.5;
}

.hero::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 50px;
  width: 14px;
  height: 14px;
  background: var(--lime);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-eyebrow {
  font-size: 12px;
  color: var(--lime);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-title {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-title .highlight {
  color: var(--lime);
}

.hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 600px;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(164,214,94,0.3);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.hero-trust-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
}

.hero-trust-rating {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}

.hero-trust-count {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

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

.btn-primary {
  background: var(--lime);
  color: var(--black);
  padding: 16px 30px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(164,214,94,0.3);
}

.btn-primary:hover {
  background: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(164,214,94,0.4);
}

.btn-secondary {
  background: var(--whatsapp);
  color: var(--white);
  padding: 16px 26px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: #1ea857;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 16px 26px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stat-item {
  text-align: right;
}

.stat-icon {
  font-size: 28px;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-title.lime { color: var(--lime); }
.stat-title.blue { color: var(--blue); }

.stat-number {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number.lime { color: var(--lime); }
.stat-number.blue { color: var(--blue); }

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ============================================================
   CLIENTS BAR
   ============================================================ */
.clients-bar {
  background: var(--black-deep);
  padding: 28px 0;
}

.clients-eyebrow {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.clients-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.section-eyebrow.lime { color: var(--lime); }
.section-eyebrow.blue { color: var(--blue); }

.section-title {
  font-size: 36px;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark {
  background: var(--black);
}

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

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 26px;
  border-right: 4px solid var(--lime);
  transition: var(--transition);
  cursor: pointer;
}

.service-card.blue-accent {
  border-right-color: var(--blue);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.service-description {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 14px;
}

.service-link {
  font-size: 13px;
  color: var(--blue-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   PROJECTS GRID
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.project-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.project-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.project-image {
  height: 200px;
  background: linear-gradient(135deg, var(--black-light), var(--black));
  background-size: cover;
  background-position: center;
  position: relative;
}

.project-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-badge.lime { background: var(--lime); color: var(--black); }
.project-badge.blue { background: var(--blue); color: var(--black); }
.project-badge.red { background: var(--red); color: var(--white); }

.project-content {
  padding: 18px;
}

.project-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.project-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}

.project-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.project-stat {
  font-size: 11px;
  color: var(--lime);
  background: rgba(164,214,94,0.1);
  padding: 3px 10px;
  border-radius: 12px;
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews-section {
  background: var(--gray-50);
}

.reviews-header {
  text-align: center;
  margin-bottom: 36px;
}

.reviews-rating {
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.reviews-stars {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 2px;
  margin: 8px 0;
}

.reviews-count {
  font-size: 14px;
  color: var(--gray-600);
}

.review-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-review {
  background: var(--black);
  color: var(--lime);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-review:hover {
  background: var(--black-light);
  transform: translateY(-2px);
}

.btn-review-outline {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
}

/* Review CTA Card - Big eye-catching call to leave a review */
.review-cta-card {
  max-width: 720px;
  margin: 36px auto 24px;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.review-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(164,214,94,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.review-cta-content {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.review-cta-icon {
  font-size: 48px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(255,215,0,0.5));
}

.review-cta-text {
  flex: 1;
  text-align: right;
}

.review-cta-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.review-cta-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.review-cta-btn {
  background: var(--lime);
  color: var(--black);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(164,214,94,0.4);
  flex-shrink: 0;
}

.review-cta-btn:hover {
  background: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(164,214,94,0.5);
}

@media (max-width: 640px) {
  .review-cta-card {
    padding: 24px;
  }
  .review-cta-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .review-cta-text {
    text-align: center;
  }
  .review-cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--lime);
}

.faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-toggle {
  font-size: 20px;
  color: var(--lime);
  transition: var(--transition);
  font-weight: 700;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--black), var(--black-light));
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black-deep);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

.footer-contact-line {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.footer-contact-line a {
  color: var(--lime);
}

.footer-contact-line a:hover {
  color: var(--white);
}

.footer-heading {
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

.defense-supplier {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   FLOATING CHATBOT BUTTON
   ============================================================ */
.chatbot-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--black);
  color: var(--lime);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 18px rgba(164,214,94,0.4);
  border: 2px solid var(--lime);
  cursor: pointer;
  z-index: 1000;
  transition: var(--transition);
}

.chatbot-float:hover {
  transform: scale(1.05);
}

/* ============================================================
   WHATSAPP MENU MODAL
   ============================================================ */
.whatsapp-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.whatsapp-modal.active {
  display: flex;
}

.whatsapp-modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  max-width: 480px;
  width: 100%;
  position: relative;
}

.whatsapp-modal-close {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gray-100);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gray-600);
  cursor: pointer;
}

.whatsapp-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-modal-subtitle {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.whatsapp-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.whatsapp-option {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--black);
  text-align: right;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-option:hover {
  background: rgba(37,211,102,0.08);
  border-color: var(--whatsapp);
}

.whatsapp-option-icon {
  color: var(--whatsapp);
  font-size: 18px;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title { font-size: 32px; }
  .hero-description { font-size: 15px; }
  .section-title { font-size: 26px; }

  .top-bar-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--black);
    flex-direction: column;
    padding: 16px 20px;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    padding: 50px 0 40px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .clients-list {
    gap: 18px;
    font-size: 13px;
  }

  section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .section-title { font-size: 22px; }

  .btn-primary, .btn-secondary {
    padding: 14px 22px;
    font-size: 14px;
  }

  .stat-number { font-size: 28px; }
}

/* ============================================================
   ANIMATIONS — FADE IN ON SCROLL
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.hidden { display: none !important; }

/* ============================================================
   ENHANCED INTERACTIVITY - Lightbox, Progress, Sticky CTA, Reveals
   ============================================================ */

/* Reading Progress Bar */
.reading-progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--lime), var(--blue));
  z-index: 9999;
  transition: width 0.1s ease;
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: lightbox-fade 0.3s ease;
}

@keyframes lightbox-fade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 20px;
  max-width: 700px;
}

.lightbox-caption strong {
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
}

.lightbox-caption p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.2);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}

.lightbox-close {
  top: 20px;
  left: 20px;
}

.lightbox-prev {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 32px;
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-next {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 32px;
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 768px) {
  .lightbox { padding: 20px; }
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next { width: 40px; height: 40px; font-size: 20px; }
  .lightbox-prev { font-size: 26px; }
  .lightbox-next { font-size: 26px; }
}

/* Sticky CTA - floating buttons */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.sticky-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.25);
}

.sticky-cta-primary {
  background: var(--lime);
  color: var(--black);
}

.sticky-cta-primary:hover {
  background: var(--lime-dark);
}

.sticky-cta-whatsapp,
.sticky-cta-phone {
  width: 50px;
  height: 50px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}

.sticky-cta-whatsapp {
  background: var(--whatsapp);
  color: white;
  align-self: flex-end;
}

.sticky-cta-whatsapp:hover {
  background: #1ea857;
}

.sticky-cta-phone {
  background: var(--black);
  color: white;
  align-self: flex-end;
}

.sticky-cta-phone:hover {
  background: var(--black-light);
}

.sticky-cta-btn .icon {
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 768px) {
  .sticky-cta {
    bottom: 16px;
    right: 16px;
  }
  .sticky-cta-primary .label {
    display: none;
  }
  .sticky-cta-primary {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* Reveal Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="left"] {
  transform: translateX(-30px);
}

[data-reveal="right"] {
  transform: translateX(30px);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Counters */
.counter-stat {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* Service card enhanced hover */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 4px;
  background: var(--lime);
  transition: width 0.4s ease;
}

.service-card:hover::after {
  width: 100%;
}

.service-card.blue-accent::after {
  background: var(--blue);
}

/* Project card enhanced hover */
.project-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-card:hover .project-image::after {
  opacity: 1;
}

.project-image {
  position: relative;
}

.project-image::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hide chatbot float when sticky CTA is visible (avoid overlap) */
.sticky-cta.visible ~ .chatbot-float {
  display: none;
}

/* ============================================================
   🎯 Smart Quote Chatbot - "עוזר הצעת מחיר חכם"
   ============================================================ */

.nn-chatbot {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  font-family: 'Heebo', Arial, sans-serif;
  direction: rtl;
}

/* Trigger Button */
.nn-chatbot-trigger {
  background: linear-gradient(135deg, #a4d65e 0%, #6fa83a 100%);
  color: #1a1a1a;
  border: none;
  border-radius: 50px;
  padding: 14px 22px 14px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Heebo', Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(164, 214, 94, 0.4);
  transition: all 0.3s;
  animation: nn-pulse-ring 2s ease-in-out infinite;
}

.nn-chatbot-trigger:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(164, 214, 94, 0.5);
}

.nn-trigger-icon {
  font-size: 22px;
}

@keyframes nn-pulse-ring {
  0%, 100% { box-shadow: 0 6px 20px rgba(164, 214, 94, 0.4); }
  50% { box-shadow: 0 6px 28px rgba(164, 214, 94, 0.7); }
}

/* Window */
.nn-chatbot-window {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 380px;
  height: 600px;
  max-height: calc(100vh - 40px);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.nn-chatbot-window.nn-open {
  display: flex;
  animation: nn-slide-up 0.3s ease;
}

@keyframes nn-slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Header */
.nn-chatbot-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.nn-chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nn-chatbot-avatar {
  background: linear-gradient(135deg, #a4d65e 0%, #6fa83a 100%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.nn-chatbot-title {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.nn-chatbot-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.nn-status-dot {
  width: 8px;
  height: 8px;
  background: #a4d65e;
  border-radius: 50%;
  display: inline-block;
  animation: nn-pulse-dot 2s ease-in-out infinite;
}

@keyframes nn-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.nn-chatbot-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.nn-chatbot-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* Body */
.nn-chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nn-chatbot-body::-webkit-scrollbar {
  width: 6px;
}
.nn-chatbot-body::-webkit-scrollbar-track {
  background: transparent;
}
.nn-chatbot-body::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.1);
  border-radius: 3px;
}

/* Messages */
.nn-msg {
  display: flex;
  animation: nn-msg-appear 0.3s ease;
}

.nn-msg-bot { justify-content: flex-start; }
.nn-msg-user { justify-content: flex-end; }

@keyframes nn-msg-appear {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.nn-msg-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.6;
  word-wrap: break-word;
}

.nn-msg-bot .nn-msg-bubble {
  background: #fff;
  color: #2a2a2a;
  border: 1px solid #e5e5e5;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.nn-msg-user .nn-msg-bubble {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff;
  border-bottom-left-radius: 4px;
}

.nn-msg-bubble strong { color: #1a1a1a; font-weight: 700; }
.nn-msg-user .nn-msg-bubble strong { color: #a4d65e; }

.nn-msg-bubble a {
  color: #5fb4e8;
  text-decoration: underline;
  font-weight: 600;
}

.nn-msg-bubble ul.nn-rec-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.nn-rec-list li {
  background: #f5f5f5;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nn-rec-list li em {
  color: #6fa83a;
  font-style: normal;
  font-weight: 600;
  margin-right: auto;
}

.nn-rec-note {
  background: rgba(95,180,232,0.1);
  border-right: 3px solid #5fb4e8;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  margin: 10px 0 0;
}

/* Typing Indicator */
.nn-typing .nn-msg-bubble {
  padding: 14px 16px;
  display: flex;
  gap: 4px;
  align-items: center;
}

.nn-typing-dot {
  width: 6px;
  height: 6px;
  background: #999;
  border-radius: 50%;
  animation: nn-typing 1.2s ease-in-out infinite;
}

.nn-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.nn-typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes nn-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Footer */
.nn-chatbot-footer {
  padding: 12px 16px 16px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
  max-height: 50%;
  overflow-y: auto;
}

/* Mode Buttons (welcome) */
.nn-mode-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nn-mode-btn {
  background: #fafafa;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  text-align: right;
  transition: all 0.2s;
}

.nn-mode-btn:hover {
  border-color: #a4d65e;
  background: rgba(164,214,94,0.06);
}

.nn-mode-btn.nn-mode-primary {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-color: #1a1a1a;
  color: #fff;
}

.nn-mode-btn.nn-mode-primary:hover {
  background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
  transform: translateY(-2px);
}

.nn-mode-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.nn-mode-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nn-mode-text strong {
  font-size: 14px;
  font-weight: 700;
}

.nn-mode-primary .nn-mode-text strong {
  color: #a4d65e;
}

.nn-mode-desc {
  font-size: 12px;
  color: #888;
}

.nn-mode-primary .nn-mode-desc {
  color: rgba(255,255,255,0.6);
}

/* Spec Options */
.nn-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nn-options.nn-multi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.nn-option-btn {
  background: #fafafa;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 11px 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: inherit;
  text-align: right;
  font-size: 13px;
  color: #2a2a2a;
  transition: all 0.15s;
}

.nn-option-btn:hover {
  border-color: #a4d65e;
  background: rgba(164,214,94,0.05);
}

.nn-option-btn strong {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}

.nn-option-desc {
  font-size: 11px;
  color: #999;
}

.nn-option-multi {
  font-size: 12px;
  text-align: center;
  padding: 10px 8px;
  font-weight: 600;
}

.nn-option-multi.nn-selected {
  background: linear-gradient(135deg, rgba(164,214,94,0.15) 0%, rgba(95,180,232,0.1) 100%);
  border-color: #a4d65e;
  color: #1a1a1a;
}

.nn-option-multi.nn-selected::before {
  content: '✓ ';
  color: #6fa83a;
  font-weight: 700;
}

.nn-confirm-multi {
  background: #1a1a1a;
  color: #a4d65e;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
  width: 100%;
  transition: all 0.2s;
}

.nn-confirm-multi:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.nn-confirm-multi:hover:not(:disabled) {
  transform: translateY(-2px);
}

/* Text Input */
.nn-text-input-wrap {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.nn-text-input {
  flex: 1;
  border: 2px solid #e5e5e5;
  border-radius: 22px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  direction: rtl;
}

.nn-text-input:focus {
  border-color: #a4d65e;
}

.nn-send-btn {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #a4d65e;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.nn-send-btn:hover {
  transform: scale(1.08);
}

/* Lead Form */
.nn-lead-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nn-form-input {
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  direction: rtl;
}

.nn-form-input:focus {
  border-color: #a4d65e;
}

.nn-form-submit {
  background: linear-gradient(135deg, #a4d65e 0%, #6fa83a 100%);
  color: #1a1a1a;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  margin-top: 4px;
  transition: all 0.2s;
}

.nn-form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(164,214,94,0.4);
}

.nn-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.nn-form-note {
  font-size: 11px;
  color: #888;
  text-align: center;
  margin: 6px 0 0;
  line-height: 1.5;
}

.nn-back-to-menu {
  background: transparent;
  border: 1px solid #e5e5e5;
  color: #666;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  margin-top: 8px;
  width: 100%;
  transition: all 0.2s;
}

.nn-back-to-menu:hover {
  background: #f5f5f5;
  color: #1a1a1a;
}

/* Mobile */
@media (max-width: 480px) {
  .nn-chatbot-trigger {
    padding: 12px 18px 12px 14px;
    font-size: 14px;
  }
  .nn-trigger-icon { font-size: 20px; }
  .nn-trigger-text { display: inline; }

  .nn-chatbot-window {
    width: calc(100vw - 20px);
    left: 10px;
    bottom: 10px;
    height: calc(100vh - 20px);
    max-height: none;
  }

  .nn-options.nn-multi {
    grid-template-columns: 1fr;
  }
}

/* Hide old chatbot-float */
.chatbot-float {
  display: none !important;
}


/* ============================================================
   📋 Dropdown Menu - תפריט מורחב (תוקן עבור hover נוח)
   ============================================================ */

.nav-dropdown {
  position: relative;
  /* פדינג תחתון חבוי שיוצר 'גשר' בין toggle לdropdown */
  padding-bottom: 0;
}

.nav-dropdown-toggle {
  cursor: pointer;
  user-select: none;
  /* פדינג שמרחיב את אזור ה-hover */
  padding: 14px 0;
  display: inline-block;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 8px;
  min-width: 240px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  list-style: none;
  margin: 0;
  /* opacity במקום display - מאפשר אנימציה ושמירת hit-area */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 100;
}

/* יוצר 'גשר' שקוף בין toggle לdropdown - מונע סגירה */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  width: 240px;
  height: 12px;
  background: transparent;
  pointer-events: auto;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li {
  list-style: none;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: #2a2a2a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.15s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(164,214,94,0.1);
  color: #1a1a1a;
  padding-right: 18px;
}

.nav-dropdown-all {
  border-top: 1px solid #f0f0f0;
  margin-top: 4px;
  padding-top: 12px !important;
  color: #5fb4e8 !important;
  font-weight: 700 !important;
}

/* Mobile - dropdown collapses */
@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0 0 0 14px;
    min-width: 100%;
  }
  .nav-dropdown-menu a {
    font-size: 13px;
    padding: 6px 10px;
  }
}


/* ============================================================
   ♿ Accessibility - נגישות (תקן ישראלי 5568, WCAG 2.0 AA)
   ============================================================ */

.a11y-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  background: #1a3a5c;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
}

.a11y-toggle:hover, .a11y-toggle:focus {
  background: #2a4a6c;
  transform: scale(1.08);
  outline: 3px solid #a4d65e;
  outline-offset: 2px;
}

.a11y-panel {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9999;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  width: 280px;
  max-width: calc(100vw - 40px);
  display: none;
  border: 2px solid #1a3a5c;
}

.a11y-panel[aria-hidden="false"] {
  display: block;
  animation: a11y-fade-in 0.2s ease;
}

@keyframes a11y-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.a11y-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #1a3a5c;
  color: #fff;
  border-radius: 12px 12px 0 0;
}

.a11y-panel-header h3 {
  color: #fff;
  font-size: 16px;
  margin: 0;
  font-weight: 700;
}

.a11y-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.a11y-close:hover, .a11y-close:focus {
  background: rgba(255,255,255,0.3);
  outline: 2px solid #a4d65e;
}

.a11y-options {
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.a11y-option {
  background: #f5f5f5;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  padding: 12px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  transition: all 0.15s;
}

.a11y-option:hover, .a11y-option:focus {
  border-color: #1a3a5c;
  background: #fff;
  outline: none;
}

.a11y-option.active {
  background: #1a3a5c;
  color: #fff;
  border-color: #1a3a5c;
}

.a11y-option.a11y-reset {
  grid-column: 1 / -1;
  background: rgba(232,93,36,0.08);
  border-color: rgba(232,93,36,0.3);
  color: #c84d20;
}

.a11y-icon {
  font-size: 22px;
}

.a11y-statement {
  padding: 12px 18px;
  border-top: 1px solid #eee;
  text-align: center;
}

.a11y-statement a {
  color: #1a3a5c;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
}

/* תפריט נגישות - מצבים */

/* מצב 1: טקסט גדול */
body.a11y-bigger-text {
  font-size: 120% !important;
}
body.a11y-bigger-text h1 { font-size: 3rem !important; }
body.a11y-bigger-text h2 { font-size: 2.2rem !important; }
body.a11y-bigger-text p, body.a11y-bigger-text li { font-size: 1.15rem !important; }

/* מצב 2: טקסט קטן */
body.a11y-smaller-text {
  font-size: 90% !important;
}

/* מצב 3: ניגודיות גבוהה */
body.a11y-high-contrast {
  background: #000 !important;
  color: #fff !important;
}
body.a11y-high-contrast * {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}
body.a11y-high-contrast a {
  color: #ff0 !important;
  text-decoration: underline !important;
}
body.a11y-high-contrast img {
  filter: contrast(1.4) brightness(1.1);
}
body.a11y-high-contrast .nn-chatbot-trigger,
body.a11y-high-contrast .a11y-toggle,
body.a11y-high-contrast .btn-primary {
  background: #ff0 !important;
  color: #000 !important;
}

/* מצב 4: גווני אפור */
body.a11y-grayscale {
  filter: grayscale(100%);
}

/* מצב 5: פונט קריא */
body.a11y-readable-font,
body.a11y-readable-font * {
  font-family: Arial, Verdana, sans-serif !important;
  letter-spacing: 0.05em !important;
  line-height: 1.8 !important;
}

/* מצב 6: הדגש קישורים */
body.a11y-highlight-links a {
  background: #ffff00 !important;
  color: #000 !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  padding: 2px 4px !important;
  border-radius: 3px !important;
}

/* Skip to content - חובה לנגישות */
.skip-to-content {
  position: absolute;
  top: -100px;
  right: 10px;
  z-index: 100000;
  background: #1a3a5c;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 10px;
  outline: 3px solid #a4d65e;
}

/* Focus indicators - חובה לנגישות */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #a4d65e !important;
  outline-offset: 2px !important;
}

/* Mobile */
@media (max-width: 768px) {
  .a11y-toggle {
    bottom: 90px;
    width: 48px;
    height: 48px;
  }
  .a11y-panel {
    bottom: 150px;
    right: 10px;
    left: 10px;
    width: auto;
  }
}

