/* =========================================
   משתנים גלובליים
========================================= */
:where(main) *:not(h2, p) {
  margin: 0 !important;
}

/* נראות פוקוס למקלדת - לא פוגע בפריסה, רק מוסיף טבעת נגישה */
:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 3px;
}

/* =========================================
   באנר עליון (שחור) וטקסט פתיח
========================================= */
.black-header-banner {
  width: 100% !important;
  /* no black of its own: the title band inside carries the black, so nothing shows here while it slides down */
  background-color: transparent !important;
  text-align: center !important;
}
@media (max-width: 600px) {
  .black-header-banner {
    padding: 0 !important;
  }
}

/* =========================================
   עטיפת התוכן והכניסה לעמוד
========================================= */
.main-wrapper {
  max-width: 1000px !important;
  /* מעט צר יותר לאלגנטיות */
  margin: 0 auto !important;
  padding: 0 20px 60px 20px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* רצף כניסה אחד ומתוזמן לעמוד - לא אנימציה מבוססת גלילה */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.main-title.fade-up {
  animation: none;
}

.black-header-banner.fade-up {
  animation-delay: 0s;
}

.contact-intro.fade-up {
  animation-delay: 0.12s;
}

.contact-split-card.fade-up {
  animation-delay: 0.22s;
}

.social-connect.fade-up {
  animation-delay: 0.32s;
}

/* =========================================
   כרטיס מפוצל (שחור / לבן)
========================================= */
.contact-split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #dcdcdc;
  /* קו חתימה דק בצבע המותג */
  background-color: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  margin-top: 5% !important;
  /* שומר על הפינות המרובעות */
  /* צד ימין - הטופס (לבן) */
}
.contact-split-card .form-side {
  position: relative;
  padding: 60px 40px;
  /* לבן, עם ניגודיות: זוהר כהה שעולה מהתחתית ופס אדום דק למעלה */
  background: radial-gradient(ellipse 90% 26% at 50% 0%, rgba(230, 57, 70, 0.07), transparent 72%), linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-split-card .form-side::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e63946, transparent);
}
.contact-split-card .form-side h2 {
  position: relative;
  font-size: 26px;
  font-weight: 900;
  color: #000000;
  text-align: center;
  margin-bottom: 12px;
  padding-bottom: 16px;
  letter-spacing: 1px;
}
/* short red line under the title, like on the black side */
.contact-split-card .form-side h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 46px;
  height: 3px;
  border-radius: 2px;
  background: #e63946;
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-split-card .form-side:hover h2::after {
  width: 86px;
}
.contact-split-card .form-side .form-lead {
  max-width: 340px;
  margin: 6px auto 30px;
  color: #666666;
  font-size: 14.5px;
  line-height: 1.7;
  text-align: center;
}
.contact-split-card .form-side form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-split-card .form-side .honey-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none;
}
.contact-split-card .form-side {
  /* שדה עם תווית צפה */
}
.contact-split-card .form-side .form-field {
  position: relative;
  /* (the shared `.body div` rule paints every div white: the field wrappers must stay see-through) */
  background: transparent !important;
}
.contact-split-card .form-side .form-field .form-control {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-family: "Heebo", sans-serif;
  border: 1px solid #dcdce0;
  background: #ffffff;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  border-radius: 12px;
  text-align: right;
}
.contact-split-card .form-side .form-field .form-control:hover {
  border-color: #b4b4bb;
}
.contact-split-card .form-side .form-field .form-control:focus {
  border-color: #111111;
  box-shadow: 0 0 0 4px rgba(211, 47, 59, 0.12);
}
.contact-split-card .form-side .form-field .form-control:invalid:not(:placeholder-shown):not(select) {
  border-color: #e63946;
}
.contact-split-card .form-side .form-field textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.contact-split-card .form-side .form-field label {
  position: absolute;
  right: 15px;
  top: 17px;
  font-size: 15px;
  color: #767676;
  background: #ffffff;
  padding: 0 6px;
  border-radius: 6px;
  pointer-events: none;
  transition: all 0.2s ease;
}
.contact-split-card .form-side .form-field .form-control:focus + label,
.contact-split-card .form-side .form-field .form-control:not(:placeholder-shown) + label {
  top: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #000000;
  transform: translateY(-50%);
}
.contact-split-card .form-side .form-field .form-control:focus + label {
  color: #e63946;
}
.contact-split-card .form-side .form-field textarea.form-control + label {
  top: 24px;
}
.contact-split-card .form-side .form-field textarea.form-control:focus + label,
.contact-split-card .form-side .form-field textarea.form-control:not(:placeholder-shown) + label {
  top: 0;
  transform: translateY(-50%);
}
.contact-split-card .form-side .form-field .field-error {
  display: block;
  font-size: 12px;
  color: #c92f3b;
  text-align: right;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.contact-split-card .form-side .form-field .field-error:not(:empty) {
  max-height: 40px;
  margin-top: 6px;
}
.contact-split-card .form-side .form-field.has-error .form-control {
  border-color: #e63946;
}
.contact-split-card .form-side .form-field.has-error label {
  color: #e63946;
}
.contact-split-card .form-side {
  /* חץ שחור מימין לתפריט הנפתח + מיקום התווית עבור select */
}
.contact-split-card .form-side .form-field--select .dropdown-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 12px auto;
  cursor: pointer;
  color: #555;
}
.contact-split-card .form-side .form-field--select .dropdown-select:invalid {
  color: #767676;
}
.contact-split-card .form-side .form-field--select .dropdown-select option {
  color: #000000;
}
.contact-split-card .form-side .form-field--select label {
  top: 17px;
}
.contact-split-card .form-side .form-field--select .dropdown-select + label,
.contact-split-card .form-side .form-field--select .dropdown-select:focus + label,
.contact-split-card .form-side .form-field--select .dropdown-select:valid + label {
  top: 0;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  transform: translateY(-50%);
}
.contact-split-card .form-side .form-field--select .dropdown-select:focus + label {
  color: #e63946;
}
.contact-split-card .form-side .submit-btn-full {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #d32f3b;
  color: #ffffff;
  padding: 17px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(211, 47, 59, 0.28);
  cursor: pointer;
  letter-spacing: 1.5px;
  margin-top: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-split-card .form-side .submit-btn-full::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-150%);
  transition: transform 0.6s ease;
}
.contact-split-card .form-side .submit-btn-full:hover:not(:disabled) {
  background-color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}
.contact-split-card .form-side .submit-btn-full:hover:not(:disabled)::after {
  transform: translateX(280%);
}
.contact-split-card .form-side .submit-btn-full:disabled {
  background-color: #888;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.contact-split-card {
  /* צד שמאל - פרטי התקשרות (שחור, עם ברק עדין כמו לק מבריק) */
}
.contact-split-card .info-side {
  position: relative;
  padding: 60px 40px;
  background: radial-gradient(ellipse 90% 45% at 50% 0%, rgba(230, 57, 70, 0.16), transparent 70%), linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(0, 0, 0, 0) 45%), #000000 !important;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* פס אדום דק בראש הצד השחור - חתימת המותג */
}
.contact-split-card .info-side::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e63946, transparent);
}
.contact-split-card .info-side .info-eyebrow {
  padding: 4px 14px;
  border: 1px solid rgba(230, 57, 70, 0.6);
  border-radius: 999px;
  color: #ff8a93;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
.contact-split-card .info-side h2 {
  position: relative;
  margin: 16px 0 0;
  padding-bottom: 18px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
  /* קו אדום קצר מתחת לכותרת */
}
.contact-split-card .info-side h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 46px;
  height: 3px;
  border-radius: 2px;
  background: #e63946;
  transform: translateX(-50%);
}
.contact-split-card .info-side .info-lead {
  margin: 18px 0 34px;
  max-width: 300px;
  color: #b9b9c0;
  font-size: 15px;
  line-height: 1.7;
}
.contact-split-card .info-side .info-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 340px;
  background: transparent !important;
}
.contact-split-card .info-side .info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  text-align: right;
  text-decoration: none;
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}
.contact-split-card .info-side .info-item .info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(230, 57, 70, 0.55);
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.12);
  color: #ff8a93;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.contact-split-card .info-side .info-item .info-icon svg {
  width: 20px;
  height: 20px;
}
.contact-split-card .info-side .info-item .info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-split-card .info-side .info-item .info-label {
  color: #9a9aa3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.contact-split-card .info-side .info-item .info-value {
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 600;
  text-align: right;
}
.contact-split-card .info-side a.info-item:hover,
.contact-split-card .info-side a.info-item:focus-visible {
  border-color: rgba(230, 57, 70, 0.7);
  background: rgba(230, 57, 70, 0.08);
  transform: translateX(-4px);
}
.contact-split-card .info-side a.info-item:hover .info-icon,
.contact-split-card .info-side a.info-item:focus-visible .info-icon {
  border-color: #e63946;
  background: #e63946;
  color: #ffffff;
}
.contact-split-card .info-side .info-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  margin-top: 22px !important; /* (the page-wide margin reset would otherwise win) */
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.contact-split-card .info-side .info-cta svg {
  width: 20px;
  height: 20px;
}
.contact-split-card .info-side .info-cta:hover, .contact-split-card .info-side .info-cta:focus-visible {
  border-color: #e63946;
  background: #e63946;
}

/* =========================================
   מודלים - הצלחה / שגיאה
========================================= */
.contact-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.contact-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.contact-modal .contact-modal-content {
  position: relative;
  background: #ffffff;
  border: 2px solid #000000;
  padding: 56px 36px 44px;
  text-align: center;
  max-width: 460px;
  width: 100%;
  color: #000000;
  transform: scale(0.9) translateY(24px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-modal .contact-modal-content h2 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 15px;
}
.contact-modal .contact-modal-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555555;
}
.contact-modal .contact-modal-content .btn-dark {
  background-color: #000000;
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-modal .contact-modal-content .btn-dark:hover {
  background-color: #262626;
}
.contact-modal .contact-modal-content .btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
  padding: 12px 24px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.contact-modal .contact-modal-content .btn-outline-light:hover {
  background-color: #000000;
  color: #ffffff;
}
.contact-modal .contact-modal-content .modal-close-x {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #767676;
  cursor: pointer;
  transition: color 0.2s ease;
}
.contact-modal .contact-modal-content .modal-close-x:hover {
  color: #000000;
}
.contact-modal.is-active .contact-modal-content {
  transform: scale(1) translateY(0);
}
.contact-modal .modal-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.contact-modal .modal-icon svg {
  width: 36px;
  height: 36px;
  overflow: visible;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-modal .modal-icon svg polyline,
.contact-modal .modal-icon svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset 0.5s ease 0.2s;
}
.contact-modal.is-active .modal-icon svg polyline, .contact-modal.is-active .modal-icon svg path {
  stroke-dashoffset: 0;
}
.contact-modal .modal-fallback {
  margin-top: 22px !important;
  margin-bottom: 0 !important;
  font-size: 13px !important;
  color: #767676;
}
.contact-modal .modal-fallback a {
  color: #000000;
  font-weight: 700;
}
.contact-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- וריאנט הצלחה: במה שחורה, הבזק אור וניצוצות ----- */
.contact-modal--success .contact-modal-content {
  padding: 0;
  overflow: hidden;
}
.contact-modal--success .modal-close-x {
  color: rgba(255, 255, 255, 0.65);
}
.contact-modal--success .modal-close-x:hover {
  color: #ffffff;
}
.contact-modal--success .success-stage {
  position: relative;
  background-color: #000000;
  padding: 46px 20px 34px;
  overflow: hidden;
}
.contact-modal--success .success-stage::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 55%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-170%);
  pointer-events: none;
}
.contact-modal--success.is-active .success-stage::before {
  animation: sweepLight 1s ease 0.3s;
}
.contact-modal--success .success-icon-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto;
}
.contact-modal--success .success-ring-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  opacity: 0;
}
.contact-modal--success.is-active .success-ring-pulse {
  animation: ringPulse 1s ease-out 0.15s;
}
.contact-modal--success .modal-icon {
  position: relative;
  z-index: 2;
  margin: 0;
  background: #ffffff;
}
.contact-modal--success .modal-icon svg {
  stroke: #000000;
}
.contact-modal--success .success-burst {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.contact-modal--success .success-burst span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  border-radius: 1px;
  opacity: 0;
  transform: rotate(var(--burst-angle, 0deg)) translateX(0);
}
.contact-modal--success .success-burst span:nth-child(3n+1) {
  background: #e63946;
}
.contact-modal--success .success-burst span:nth-child(3n+2) {
  background: #ffffff;
}
.contact-modal--success .success-burst span:nth-child(3n) {
  background: rgba(255, 255, 255, 0.45);
}
.contact-modal--success.is-active .success-burst span {
  animation: burstFly 0.7s ease-out forwards;
  animation-delay: var(--burst-delay, 0s);
}
.contact-modal--success .success-body {
  padding: 34px 36px 44px;
}
.contact-modal--success .success-steps {
  list-style: none;
  margin: 0 0 32px !important;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
  text-align: right;
}
.contact-modal--success .success-steps li {
  position: relative;
  padding-right: 24px;
  font-size: 14px;
  color: #767676;
}
.contact-modal--success .success-steps .step-dot {
  position: absolute;
  right: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #dcdcdc;
  background: #ffffff;
}
.contact-modal--success .success-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 16px;
  width: 1px;
  height: 20px;
  background: #dcdcdc;
}
.contact-modal--success .success-steps li.is-done {
  color: #000000;
  font-weight: 700;
}
.contact-modal--success .success-steps li.is-done .step-dot {
  border-color: #000000;
  background: #000000;
}

.success-burst span:nth-child(1) {
  --burst-angle: 30deg;
  --burst-delay: 0.05s;
}

.success-burst span:nth-child(2) {
  --burst-angle: 60deg;
  --burst-delay: 0.1s;
}

.success-burst span:nth-child(3) {
  --burst-angle: 90deg;
  --burst-delay: 0.15s;
}

.success-burst span:nth-child(4) {
  --burst-angle: 120deg;
  --burst-delay: 0s;
}

.success-burst span:nth-child(5) {
  --burst-angle: 150deg;
  --burst-delay: 0.05s;
}

.success-burst span:nth-child(6) {
  --burst-angle: 180deg;
  --burst-delay: 0.1s;
}

.success-burst span:nth-child(7) {
  --burst-angle: 210deg;
  --burst-delay: 0.15s;
}

.success-burst span:nth-child(8) {
  --burst-angle: 240deg;
  --burst-delay: 0s;
}

.success-burst span:nth-child(9) {
  --burst-angle: 270deg;
  --burst-delay: 0.05s;
}

.success-burst span:nth-child(10) {
  --burst-angle: 300deg;
  --burst-delay: 0.1s;
}

.success-burst span:nth-child(11) {
  --burst-angle: 330deg;
  --burst-delay: 0.15s;
}

.success-burst span:nth-child(12) {
  --burst-angle: 360deg;
  --burst-delay: 0s;
}

@keyframes sweepLight {
  to {
    transform: translateX(260%);
  }
}
@keyframes ringPulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}
@keyframes burstFly {
  0% {
    opacity: 1;
    transform: rotate(var(--burst-angle, 0deg)) translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: rotate(var(--burst-angle, 0deg)) translateX(46px) scale(0.4);
  }
}
/* ----- וריאנט שגיאה: אותה שפה עיצובית, טבעת אזהרה אדומה ורעידה עדינה ----- */
.contact-modal--error .contact-modal-content {
  padding: 0;
  overflow: hidden;
}
.contact-modal--error .modal-close-x {
  color: rgba(255, 255, 255, 0.65);
}
.contact-modal--error .modal-close-x:hover {
  color: #ffffff;
}
.contact-modal--error .error-stage {
  position: relative;
  background-color: #000000;
  padding: 46px 20px 34px;
}
.contact-modal--error .error-icon-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto;
}
.contact-modal--error .error-ring-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(230, 57, 70, 0.6);
  opacity: 0;
}
.contact-modal--error.is-active .error-ring-pulse {
  animation: ringPulse 1.1s ease-out 0.15s 2;
}
.contact-modal--error .modal-icon {
  position: relative;
  z-index: 2;
  margin: 0;
  background: #e63946;
}
.contact-modal--error.is-active .modal-icon {
  animation: iconShake 0.5s ease 0.55s;
}
.contact-modal--error .error-body {
  padding: 34px 36px 40px;
}

@keyframes iconShake {
  0%, 100% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(-6px);
  }
  30% {
    transform: translateX(5px);
  }
  45% {
    transform: translateX(-4px);
  }
  60% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-2px);
  }
  90% {
    transform: translateX(1px);
  }
}
/* =========================================
   פסקת פתיח (פרימיום, ממורכזת)
========================================= */
.contact-intro {
  max-width: 720px;
  margin: 48px auto 0 auto;
  padding: 0 20px;
  text-align: center;
  font-size: 19px;
  line-height: 1.75;
  color: #333333;
}

/* =========================================
   קטע רשתות חברתיות ויצירת קשר ישירה
========================================= */
.social-connect {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  max-width: 720px;
  margin: 90px auto 0 auto !important;
  padding: 0 20px;
  text-align: center;
}
.social-connect .social-connect-heading h2 {
  font-size: 26px;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.social-connect .social-connect-heading p {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}
.social-connect .social-icon-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}
.social-connect .social-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  width: 84px;
}
.social-connect .social-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1.5px solid #000000;
  background: #ffffff;
  color: #000000;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}
.social-connect .social-icon-circle svg {
  width: 26px;
  height: 26px;
}
.social-connect .social-icon-label {
  font-size: 13px;
  font-weight: 600;
  color: #555555;
  transition: color 0.3s ease;
}
.social-connect .social-icon-link:hover .social-icon-circle,
.social-connect .social-icon-link:focus-visible .social-icon-circle {
  transform: translateY(-5px);
  border-color: transparent;
}
.social-connect .social-icon-link:hover .social-icon-label,
.social-connect .social-icon-link:focus-visible .social-icon-label {
  color: #000000;
}
.social-connect {
  /* צבעי המותג של כל פלטפורמה - מופיעים רק ב-hover/focus */
}
.social-connect .social-icon-link[data-platform=instagram]:hover .social-icon-circle,
.social-connect .social-icon-link[data-platform=instagram]:focus-visible .social-icon-circle {
  color: #ffffff;
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 55%, #6228d7 100%);
  box-shadow: 0 10px 24px rgba(238, 42, 123, 0.35);
}
.social-connect .social-icon-link[data-platform=facebook]:hover .social-icon-circle,
.social-connect .social-icon-link[data-platform=facebook]:focus-visible .social-icon-circle {
  color: #ffffff;
  background: #1877f2;
  box-shadow: 0 10px 24px rgba(24, 119, 242, 0.35);
}
.social-connect .social-icon-link[data-platform=tiktok]:hover .social-icon-circle,
.social-connect .social-icon-link[data-platform=tiktok]:focus-visible .social-icon-circle {
  color: #ffffff;
  background: #010101;
  box-shadow: 0 10px 24px rgba(254, 44, 85, 0.4);
}
.social-connect .social-icon-link[data-platform=whatsapp]:hover .social-icon-circle,
.social-connect .social-icon-link[data-platform=whatsapp]:focus-visible .social-icon-circle {
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

/* =========================================
   רספונסיביות למובייל
========================================= */
@media (max-width: 900px) {
  .contact-split-card {
    grid-template-columns: 1fr;
    /* הופך לעמודה אחת */
  }
  .contact-split-card .form-side,
  .contact-split-card .info-side {
    padding: 40px 20px;
  }
  .contact-split-card .info-side {
    order: -1;
    /* שומר שפרטי הקשר יוצגו לפני הטופס במובייל לנוחות */
  }
}
@media (max-width: 480px) {
  .success-stage,
  .error-stage {
    padding: 36px 16px 28px;
  }
  .success-body,
  .error-body {
    padding: 26px 22px 34px;
  }
  .success-icon-wrap,
  .error-icon-wrap,
  .contact-modal .modal-icon {
    width: 64px;
    height: 64px;
  }
  .contact-modal .modal-icon svg {
    width: 28px;
    height: 28px;
  }
  .contact-modal .modal-actions {
    flex-direction: column;
  }
  .contact-intro {
    font-size: 17px;
    margin-top: 36px;
  }
  .social-connect {
    margin-top: 60px !important;
    gap: 32px;
  }
  .social-connect .social-icon-grid {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .social-connect .social-icon-circle {
    width: 52px;
    height: 52px;
  }
  .social-connect .social-icon-circle svg {
    width: 22px;
    height: 22px;
  }
  .social-connect .social-icon-link {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }
}
/* =========================================
   כיבוד העדפת "פחות תנועה"
========================================= */
@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .contact-modal .contact-modal-content,
  .contact-modal .modal-icon,
  .contact-modal .modal-icon svg polyline,
  .contact-modal .modal-icon svg path,
  .success-stage::before,
  .success-ring-pulse,
  .success-burst span,
  .error-ring-pulse,
  .submit-btn-full,
  .submit-btn-full::after,
  .info-item,
  .info-item .info-icon,
  .info-cta,
  .social-icon-circle,
  .social-icon-label {
    animation: none !important;
    transition: none !important;
  }
  .fade-up {
    opacity: 1;
    transform: none;
  }
  .success-ring-pulse,
  .error-ring-pulse,
  .success-burst span {
    opacity: 0 !important;
  }
}
/* =========================================
   אישור שליחת פרטים (checkbox) בטופס
========================================= */
/* the consent wrapper and its label have no background of their own (transparent) */
.contact-split-card .form-side .form-field.consent-field {
  background: transparent !important;
}
.contact-split-card .form-side .form-field.consent-field .consent-label {
  position: static !important;
  background: transparent !important;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 !important;
  background: none !important;
  transform: none !important;
  pointer-events: auto !important;
  font-size: 13.5px !important;
  font-weight: 400 !important;
  line-height: 1.6;
  color: #555555 !important;
  cursor: pointer;
}
.contact-split-card .form-side .form-field.consent-field .consent-label input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #e63946;
  cursor: pointer;
}
.contact-split-card .form-side .form-field.consent-field .consent-label a {
  color: #c92f3b;
  text-decoration: underline;
}
.contact-split-card .form-side .form-field.consent-field.has-error .consent-label {
  color: #c92f3b !important;
}

/* =========================================
   גלריית עבודות: רשת של 3x3 (9 תמונות גלויות). גלילה / הכפתור חושפים את הבאות
========================================= */
.gallery {
  max-width: 460px;
  margin: 50px auto 0 !important;
  padding: 0 20px;
  text-align: center;
}
.gallery__title {
  margin-bottom: 14px !important;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
}
.gallery__viewport {
  aspect-ratio: 1/1;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  border-radius: 12px;
}
.gallery__viewport::-webkit-scrollbar {
  display: none;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  list-style: none;
}
.gallery__grid li {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  background: #eeeeee;
  scroll-snap-align: start;
}
.gallery__grid li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__grid li:hover img {
  transform: scale(1.06);
}
@media (min-width: 601px) {
  .gallery {
    width: 60vw;
    max-width: 900px;
    padding: 0;
  }
}
.gallery__more {
  margin-top: 12px !important;
  padding: 8px 18px;
  border: 1px solid #dcdcdc;
  border-radius: 999px;
  background: none;
  color: #000000;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.gallery__more:hover {
  border-color: #000000;
  background: #000000;
  color: #ffffff;
}

.gallery__open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

/* =========================================
   תצוגה מוגדלת של תמונה (javascript/gallery.js): מסך מלא, זום, גרירה, החלקה
========================================= */
@keyframes lightboxIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3500;
  background: rgba(4, 4, 6, 0.97);
  color: #ffffff;
  animation: lightboxIn 0.25s ease;
}
.lightbox__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: none;
}
.lightbox__stage.is-zoomed {
  cursor: grab;
}
.lightbox__stage.is-zoomed.is-gesturing {
  cursor: grabbing;
}
.lightbox__img {
  max-width: 92vw;
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  transition: transform 0.22s ease;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
}
.is-gesturing .lightbox__img {
  transition: none;
}
.lightbox__bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none;
}
.lightbox__bar > * {
  pointer-events: auto;
}
.lightbox__count {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.lightbox__zoom {
  display: flex;
  align-items: center;
  gap: 6px;
  direction: ltr;
}
.lightbox__btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(20, 20, 24, 0.75);
  backdrop-filter: blur(6px);
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, opacity 0.2s;
}
.lightbox__btn:hover:not(:disabled) {
  border-color: #d32f3b;
  background: #d32f3b;
}
.lightbox__btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.lightbox__reset {
  min-width: 58px;
  padding: 8px 6px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: rgba(255, 255, 255, 0.85);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.lightbox__reset:hover:not(:disabled) {
  color: #ffffff;
  text-decoration: underline;
}
.lightbox__reset:disabled {
  cursor: default;
  opacity: 0.6;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 50px;
  height: 50px;
  margin-top: -25px !important;
}
.lightbox__nav--prev {
  right: 16px;
}
.lightbox__nav--next {
  left: 16px;
}
.lightbox__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 26px 76px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  pointer-events: none;
}
@media (max-width: 600px) {
  .lightbox__img {
    max-width: 100vw;
    max-height: 74vh;
    border-radius: 0;
  }
  .lightbox__nav {
    top: auto;
    bottom: 62px;
    width: 44px;
    height: 44px;
    margin-top: 0 !important;
  }
  .lightbox__caption {
    padding: 20px 16px 14px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox__img {
    animation: none;
    transition: none;
  }
}
/* =========================================
   טבעת פוקוס למקלדת בשדות הטופס (ה-outline הכללי כובה בשדות עצמם)
========================================= */
.contact-split-card .form-side .form-field .form-control:focus-visible {
  outline: 2px solid #c92f3b;
  outline-offset: 2px;
}

/* =========================================
   עיצוב אחיד לחלונות הקופצים (הצלחה / שגיאה): כרטיס כהה עם זוהר אדום, כמו הפוטר והכותרות
========================================= */
.contact-modal {
  background-color: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}
.contact-modal .contact-modal-content {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: radial-gradient(ellipse 90% 45% at 50% 0%, rgba(230, 57, 70, 0.24), transparent 70%), #26262d;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  color: #ffffff;
}
.contact-modal .contact-modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e63946, transparent);
}
.contact-modal .contact-modal-content h2 {
  color: #ffffff;
}
.contact-modal .contact-modal-content p {
  color: #c4c4cb;
}
.contact-modal .contact-modal-content .btn-dark {
  border: 2px solid #d32f3b;
  border-radius: 999px;
  background-color: #d32f3b;
  color: #ffffff;
}
.contact-modal .contact-modal-content .btn-dark:hover {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #000000;
}
.contact-modal .contact-modal-content .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  color: #ffffff;
}
.contact-modal .contact-modal-content .btn-outline-light:hover {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #000000;
}
.contact-modal .contact-modal-content .modal-close-x {
  color: rgba(255, 255, 255, 0.6);
}
.contact-modal .contact-modal-content .modal-close-x:hover {
  color: #ffffff;
}
.contact-modal .modal-fallback {
  color: #9a9aa3;
}
.contact-modal .modal-fallback a {
  color: #ffffff;
}

.contact-modal--success .success-stage,
.contact-modal--success .error-stage,
.contact-modal--error .success-stage,
.contact-modal--error .error-stage {
  background: transparent;
}
.contact-modal--success .success-stage::before,
.contact-modal--error .success-stage::before {
  background: linear-gradient(120deg, transparent, rgba(230, 57, 70, 0.22), transparent);
}
.contact-modal--success .success-ring-pulse,
.contact-modal--error .success-ring-pulse {
  border-color: rgba(230, 57, 70, 0.8);
}
.contact-modal--success .success-steps li,
.contact-modal--error .success-steps li {
  color: #9a9aa3;
}
.contact-modal--success .success-steps .step-dot,
.contact-modal--error .success-steps .step-dot {
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
}
.contact-modal--success .success-steps li:not(:last-child)::after,
.contact-modal--error .success-steps li:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.2);
}
.contact-modal--success .success-steps li.is-done,
.contact-modal--error .success-steps li.is-done {
  color: #ffffff;
}
.contact-modal--success .success-steps li.is-done .step-dot,
.contact-modal--error .success-steps li.is-done .step-dot {
  border-color: #e63946;
  background: #e63946;
}

.contact-modal--success .modal-icon {
  background: #d32f3b;
}
.contact-modal--success .modal-icon svg {
  stroke: #ffffff;
}

.contact-modal--error .modal-icon {
  background: #ffffff;
}
.contact-modal--error .modal-icon svg {
  stroke: #d32f3b;
}

/* opening hours on the black side (rows come from javascript/site-info.js) */
.contact-split-card .info-side .info-hours {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 2px 0 0 !important;
  list-style: none;
  background: transparent !important;
}
.contact-split-card .info-side .info-hours li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
  background: transparent !important;
}
.contact-split-card .info-side .info-hours li span:last-child {
  color: #d4d4da;
}
.contact-split-card .info-side .info-item--static .info-icon {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (prefers-reduced-motion: no-preference) {
  .contact-split-card .info-side .info-item:hover .info-icon {
    transform: scale(1.1) rotate(-6deg);
  }
  .contact-split-card .info-side .info-cta:hover {
    transform: translateY(-2px);
  }
}

/* =========================================
   Life on the black side: things come in one after another, the icons react to the mouse in their own way
   (the phone rings, the mail hops, the pin bobs, the clock turns) and the WhatsApp button pulses softly.
========================================= */
@keyframes infoIn {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes iconRing {
  0%, 100% {
    transform: rotate(0);
  }
  15%, 45% {
    transform: rotate(-18deg);
  }
  30%, 60% {
    transform: rotate(18deg);
  }
  75% {
    transform: rotate(-8deg);
  }
}
@keyframes iconHop {
  0%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px) scale(1.12);
  }
  70% {
    transform: translateY(1px);
  }
}
@keyframes iconBob {
  0%, 100% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(0) scaleY(0.92);
  }
}
@keyframes iconTurn {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  }
  70%, 100% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
  }
}
@keyframes eyebrowShine {
  0%, 55% {
    background-position: 200% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .contact-split-card .info-side .info-eyebrow,
  .contact-split-card .info-side h2,
  .contact-split-card .info-side .info-lead,
  .contact-split-card .info-side .info-item,
  .contact-split-card .info-side .info-cta {
    animation: infoIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    animation-delay: 0.35s;
  }
  .contact-split-card .info-side h2 {
    animation-delay: 0.45s;
  }
  .contact-split-card .info-side .info-lead {
    animation-delay: 0.55s;
  }
  .contact-split-card .info-side .info-item:nth-child(1) {
    animation-delay: 0.65s;
  }
  .contact-split-card .info-side .info-item:nth-child(2) {
    animation-delay: 0.75s;
  }
  .contact-split-card .info-side .info-item:nth-child(3) {
    animation-delay: 0.85s;
  }
  .contact-split-card .info-side .info-item:nth-child(4) {
    animation-delay: 0.95s;
  }
  .contact-split-card .info-side .info-cta {
    animation: infoIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.05s backwards, ctaPulse 3.2s ease-out 2.4s infinite;
  }
  .contact-split-card .info-side .info-cta:hover {
    animation: none;
  }
  .contact-split-card .info-side .info-cta:hover svg {
    animation: iconRing 0.7s ease;
  }
  .contact-split-card .info-side .info-eyebrow {
    background: linear-gradient(110deg, transparent 40%, rgba(255, 138, 147, 0.28) 50%, transparent 60%) 200% 0/250% 100% no-repeat;
    animation: infoIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s backwards, eyebrowShine 5s ease-in-out 1.5s infinite;
  }
  .contact-split-card .info-side .info-item:nth-child(1):hover .info-icon svg {
    animation: iconRing 0.7s ease;
  }
  .contact-split-card .info-side .info-item:nth-child(2):hover .info-icon svg {
    animation: iconHop 0.6s ease;
  }
  .contact-split-card .info-side .info-item:nth-child(3):hover .info-icon svg {
    animation: iconBob 0.7s ease;
  }
  .contact-split-card .info-side .info-item:nth-child(4):hover .info-icon svg {
    animation: iconTurn 0.9s ease;
  }
}
.contact-split-card .info-side .info-hours-note {
  display: block;
  margin-top: 8px;
  color: #9a9aa3;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.6;
}

/* extra social links: an uploaded favicon instead of a drawn icon */
.social-connect .social-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
}
