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

  html,
  body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
  }

  body {
      padding-top: calc(36px + 64px);
      font-family: "Heebo", system-ui, -apple-system, BlinkMacSystemFont,
          "Segoe UI", sans-serif;
      color: #0f172a;
      background-color: #f8fafc;
      scroll-snap-type: y mandatory;
  }

  section {
      scroll-snap-align: start;
  }

  /* ===== NAVBAR ===== */

  /* ===== TOP CONTACT BAR ===== */
  .top-bar {
      position: fixed;
      top: 0;
      inset-inline: 0;
      background: #ffffff;
      border-bottom: 1px solid #e2e8f0;
      z-index: 1100;
      direction: rtl;
      font-family: inherit;
  }

  .top-bar-inner {
      margin: 0 auto;
      padding: 5px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  /* Text contact */
  .top-link {
      color: #002a36;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.25s;
  }

  .top-link:hover {
      color: #1273c8;
  }

  /* Icons */
  .icon-link {
      font-size: 18px;
      color: #002a36;
      text-decoration: none;
      margin-left: 12px;
      transition: 0.25s ease;
  }

  .icon-link:hover {
      color: #1273c8;
      transform: translateY(-2px);
  }

  .divider {
      color: #94a3b8;
      margin: 0 10px;
  }


  .navbar {
      position: fixed;
      top: 36px;
      /* במקום top: 0 */
      inset-inline: 0;
      height: 64px;
      background: rgba(15, 23, 42, 0.96);
      backdrop-filter: blur(10px);
      color: #e5e7eb;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  }

  .navbar_logo {
      height: 64px;
      width: auto;
  }

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

  .nav-links li a {
      text-decoration: none;
      color: #e5e7eb;
      font-size: 0.85rem;
      padding: 6px 10px;
      border-radius: 999px;
      transition: background 0.2s, color 0.2s, transform 0.1s;
      white-space: nowrap;
  }

  .nav-links li a:hover {
      background: rgba(148, 163, 184, 0.25);
      color: #ffffff;
      transform: translateY(-1px);
  }

  .nav-links li a.active {
      background: linear-gradient(135deg, #d9dde4, #3b82f6);
      color: #0f172a;
      font-weight: 600;
  }

  .nav-toggle {
      display: none;
      cursor: pointer;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      align-items: center;
      justify-content: center;
      background: transparent;
  }

  .nav-toggle-bar {
      width: 18px;
      height: 2px;
      background: #e5e7eb;
      position: relative;
      transition: transform 0.2s ease, background 0.2s ease;
  }

  .nav-toggle-bar::before,
  .nav-toggle-bar::after {
      content: "";
      position: absolute;
      inset-inline-start: 0;
      width: 18px;
      height: 2px;
      background: #e5e7eb;
      transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle-bar::before {
      top: -6px;
  }

  .nav-toggle-bar::after {
      top: 6px;
  }

  .nav-toggle.open .nav-toggle-bar {
      background: transparent;
  }

  .nav-toggle.open .nav-toggle-bar::before {
      transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.open .nav-toggle-bar::after {
      transform: translateY(-6px) rotate(-45deg);
  }


  /* ====== FOOTER ====== */

  footer.site-footer {
      background: radial-gradient(circle at top, #0f172a 0, #020617 55%, #000 100%);
      color: #e5e7eb;
      border-top: 1px solid rgba(148, 163, 184, 0.3);
      padding: 40px 20px 18px;
  }

  .footer-inner {
      max-width: 1200px;
      margin-inline: auto;
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr) minmax(0, 1.5fr);
      gap: 32px;
  }

  /* עמודת לוגו + טקסט קצר */
  .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .footer-logo {
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: 0.04em;
  }

  .footer-logo span {
      color: #38bdf8;
  }

  .footer-desc {
      font-size: 12px;
      line-height: 1.6;
      color: #9ca3af;
  }

  /* עמודת קישורים */
  .footer-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: #e5e7eb;
  }

  .footer-links,
  .footer-contact {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-links li,
  .footer-contact li {
      margin-bottom: 6px;
  }

  .footer-links a {
      font-size: 0.9rem;
      text-decoration: none;
      color: #9ca3af;
      transition: color 0.15s ease, transform 0.15s ease;
  }

  .footer-links a:hover {
      color: #38bdf8;
      transform: translateX(-2px);
  }

  .footer-contact span {
      font-size: 0.9rem;
      color: #9ca3af;
  }

  .footer-contact strong {
      color: #e5e7eb;
      font-weight: 500;
  }

  /* שורה תחתונה */
  .footer-bottom {
      max-width: 1200px;
      margin: 26px auto 0;
      padding-top: 14px;
      border-top: 1px solid rgba(55, 65, 81, 0.6);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      font-size: 0.8rem;
      color: #6b7280;
  }

  .footer-bottom a {
      color: #9ca3af;
      text-decoration: none;
  }

  .footer-bottom a:hover {
      color: #38bdf8;
  }

  .footer-social {
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .social-pill {
      border-radius: 999px;
      padding: 6px 12px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      font-size: 0.8rem;
      cursor: pointer;
      transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  }

  .social-pill:hover {
      background: rgba(15, 118, 110, 0.18);
      border-color: #38bdf8;
      transform: translateY(-1px);
  }

  .footer_logo {
      height: 175px;
      width: 350px;
  }

  /* רספונסיבי */
  @media (max-width: 900px) {
      .footer-inner {
          grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
      }
  }

  @media (max-width: 768px) {
      .top-bar-inner {
          gap: 8px;
          text-align: center;
      }

      .icon-link {
          margin-left: 5px;
      }

      .navbar {
          padding: 0 10px;
      }

      .navbar_logo {
          margin-top: 10px;
          margin-left: -10px;
      }

      .footer-inner {
          grid-template-columns: minmax(0, 1fr);
          text-align: center;
      }

      .footer-brand {
          align-items: center;
      }

      .footer-bottom {
          flex-direction: column;
          align-items: center;
          text-align: center;
      }

      .footer-social {
          justify-content: center;
      }

      .footer_logo {
          height: 140px;
          width: auto;
      }

      .footer-desc {
          font-size: 10px;
      }
  }


  /* ===== LAYOUT ===== */

  /* section {
      min-height: calc(100vh - 64px);
      padding: 24px 20px 32px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .section-inner {
      width: 100%;
      max-width: 1150px;
  } */

  /* contact */

  .contact {
      min-height: auto;
      direction: rtl;
      padding: 50px 20px;
      text-align: center;
  }

  .contact-container {
      max-width: 900px;
      margin: 0 auto;
  }

  .contact-container h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      font-weight: 700;
      text-align: center;
  }

  .whatsapp-button {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: #25d366;
      color: #ffffff;
      padding: 16px 30px;
      border-radius: 999px;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 600;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  }

  .whatsapp-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 35px rgba(37, 211, 102, 0.55);
  }

  .whatsapp-icon {
      width: 28px;
      height: 28px;
  }

  .whatsapp-text {
      white-space: nowrap;
  }

  @media (max-width: 768px) {
      body {
          scroll-snap-type: y proximity;
      }

      .nav-links {
          position: fixed;
          inset-inline: 0;
          top: 64px;
          background: rgba(15, 23, 42, 0.98);
          border-bottom: 1px solid rgba(148, 163, 184, 0.4);
          flex-direction: column;
          align-items: flex-start;
          padding: 10px 18px 16px;
          gap: 6px;
          max-height: 0;
          overflow: hidden;
          opacity: 0;
          pointer-events: none;
          transition: max-height 0.22s ease, opacity 0.22s ease;
      }

      .nav-links.open {
          max-height: 360px;
          opacity: 1;
          pointer-events: auto;
      }

      .nav-links li {
          width: 100%;
      }

      .nav-links li a {
          display: block;
          width: 100%;
      }

      .nav-toggle {
          display: flex;
      }
  }



  /* מובייל */
  @media (max-width: 600px) {
      .whatsapp-container h2 {
          font-size: 1.5rem;
      }

      .whatsapp-button {
          width: 100%;
          justify-content: center;
      }
  }