/* ═══════════════════════════════ FONTS ═══════════════════════════════ */
@font-face {
  font-family: "Matricsa";
  src: url("../fonts/FbMatritsa-Bold.eot");
  src:
    url("../fonts/FbMatritsa-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/fbmatritsa-boldwebfont.ttf") format("truetype"),
    url("../fonts/fbmatritsa-boldwebfont.svg#fb_matritsabold") format("svg");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════ TOKENS ═══════════════════════════════ */
:root {
  --black: #000000;
  --red: #e51b25;
  --white: #ffffff;
  --navy: #00364b;
  --gold: #f6b31c;
  --cyan: #00b0d9;
  --green-strong: #c2d351;
  --orange-title: #e98e23;
}

/* ═══════════════════════════════ BASE ═══════════════════════════════ */
html,
body {
  padding: 0;
  margin: 0;
  direction: rtl;
  font-family: "Rubik", sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  color: #111;
}

* {
  box-sizing: border-box;
}

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

header {
  background: #fff;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header img {
  height: 40px;
}

/* ═══════════════════════════════ HERO ═══════════════════════════════ */
.hero {
  width: 100%;
  height: 650px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__black {
  flex: 0 0 280px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero__title-img {
  width: 480px;
  max-width: 80%;
  height: auto;
}

.hero__line {
  flex: 0 0 8px;
  background: var(--white);
}

.hero__red {
  flex: 1 1 auto;
  position: relative;
  background: var(--red);
  overflow: hidden;
}

.hero__red-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.hero__kish {
  position: absolute;
  right: 28%;
  bottom: -35px;
  width: 37%;
  height: auto;
  z-index: 1;
}

.hero__stamp {
  position: absolute;
  right: 17%;
  top: 24%;
  width: 19%;
  height: auto;
  z-index: 2;
}

.hero__note {
  position: absolute;
  left: 10%;
  bottom: 13%;
  width: 28%;
  height: auto;
  z-index: 2;
}

/* ═══════════════════════════════ MAIN TITLE ═══════════════════════════════ */
.main-title {
  text-align: center;
  padding: 0 20px 16px;
  line-height: 1.3;
}

.main-title__hl {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: "Matricsa", "Heebo", sans-serif;
  font-size: 44px;
  font-weight: 900;
  padding: 14px 36px;
  border-radius: 6px;
}

/* ═══════════════════════════════ 2-COLUMN SECTION ═══════════════════════════════ */
.columns {
  background: #fff;
  padding: 60px 20px 90px;
}

.columns__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.reasons {
  flex: 1 1 0;
}

.reasons h2 {
  margin-bottom: 28px;
  text-align: right;
}

.section-hl {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: "Matricsa", "Heebo", sans-serif;
  font-size: 30px;
  font-weight: 900;
  padding: 8px 22px;
  border-radius: 5px;
}

.reasons__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reasons__list li {
  font-size: 18px;
  line-height: 1.6;
  color: #111;
  text-align: right;
}

.reasons__hl {
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
}

.video-col {
  flex: 1 1 0;
}

.video-col h2 {
  text-align: center;
  line-height: 1.3;
}

.video-col h2 .sub {
  display: block;
  font-family: "Matricsa", "Heebo", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--red);
  margin-top: 10px;
}

.video-col__player {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  margin-top: 24px;
}

.video-col__player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-col__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: 3px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.video-col__play:hover {
  background: rgba(0, 0, 0, 0.62);
  transform: scale(1.06);
}

.video-col__play svg {
  width: 38px;
  height: 38px;
  color: #fff;
  margin-inline-start: 4px;
}

.video-col__player.is-playing .video-col__play {
  display: none;
}

/* ═══════════════════════════════ FORM (ported from 4all) ═══════════════════════════════ */
.form-section {
  background: linear-gradient(to left, #13c5e8, #046882);
  position: relative;
  overflow: hidden;
  padding-block: 28px 68px;
  padding-inline: 24px;
}

.form-section__plus {
  position: absolute;
  pointer-events: none;
}

.form-section__plus--large {
  width: 160px;
  inset-block-start: 50%;
  transform: translateY(-50%);
  inset-inline-end: -45px;
}

.form-section__plus--small {
  width: 90px;
  inset-block-start: 12%;
  inset-inline-start: -14px;
}

.form-section__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-section__heading {
  color: var(--white);
  font-family: "Matricsa", "Heebo", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  line-height: 1.3;
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.form__field-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form__field-wrap:nth-child(-n + 4) {
  grid-column: 1 / -1;
}

.form__field {
  background: var(--white);
  border: none;
  border-radius: 8px;
  padding-block: 13px;
  padding-inline: 22px;
  font-family: "Matricsa", "Heebo", sans-serif;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 400;
  color: var(--navy);
  width: 100%;
  outline: none;
  direction: rtl;
}

.form__field::placeholder {
  color: #7a9aaa;
}

.form__field:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
  outline: none;
}

.form__field.is-invalid {
  border: 2px solid #e05252;
  box-shadow: none;
}

.form__field.is-valid {
  border: 2px solid rgba(0, 176, 100, 0.55);
}

.form__error {
  display: inline-block;
  align-self: flex-start;
  color: var(--red);
  font-family: "Matricsa", "Heebo", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.form__error:empty {
  display: none;
}

@keyframes field-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(7px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}

.form__field-wrap.shake,
.form__radio-wrap.shake {
  animation: field-shake 0.35s ease;
}

.form__field--select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2300364B' d='M5 7l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  background-size: 20px;
  padding-inline-end: 40px;
}

/* ── Union membership radio group ── */
.form__radio-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.form__radio-group {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
}

.form__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: "Matricsa", "Heebo", sans-serif;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
}

.form__radio input {
  accent-color: var(--green-strong);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form__error--radio {
  align-self: center;
}

.form__error--radio:empty {
  display: none;
}

/* ── Disclaimer ── */
.form__disclaimer {
  width: 100%;
  color: var(--white);
  font-family: "Matricsa", "Heebo", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: right;
}

.form__disclaimer a {
  color: var(--white);
  text-decoration: underline;
}

.form__disclaimer a:hover {
  color: var(--green-strong);
}

.form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  background: var(--green-strong);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding-block: 13px;
  padding-inline: 44px;
  font-family: "Matricsa", "Heebo", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 22px);
  cursor: pointer;
  transition:
    filter 0.15s ease,
    transform 0.15s ease;
}

.form__submit:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.form__submit:active {
  filter: brightness(0.95);
  transform: translateY(0);
}

.form__submit-text {
  transform: translateY(0.1em);
}

.form__submit-icon {
  width: 22px;
  height: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(29%) sepia(100%) hue-rotate(159deg) saturate(600%) brightness(44%);
}

.form__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--orange-title);
  color: #fff;
  border-radius: 50px;
  padding-block: 12px;
  padding-inline: 36px;
  font-family: "Matricsa", "Heebo", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1;
  transition:
    filter 0.15s ease,
    transform 0.15s ease;
}
.form__call:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}
.form__call:active {
  transform: translateY(0);
}

.form__call-mobile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.form__call-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.form__call-desktop {
  display: none;
}

@media (min-width: 768px) {
  .form__call {
    background: none;
    padding: 0;
    color: #fff;
    font-size: clamp(20px, 2vw, 24px);
  }
  .form__call:hover {
    filter: none;
    transform: none;
  }
  .form__call-mobile {
    display: none;
  }
  .form__call-desktop {
    display: inline;
  }
}

@media (min-width: 768px) {
  .form-section {
    padding-block: 40px 80px;
    padding-inline: 40px;
  }

  .form__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .form__field-wrap:nth-child(-n + 4) {
    grid-column: auto;
  }

  .form-section__inner {
    gap: 24px;
  }
}

/* ═══════════════════════════════ FOOTER (ported from 4all) ═══════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding-block: 72px;
  padding-inline: 40px;
}

.site-footer__inner {
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-footer__logo {
  width: 240px;
  height: auto;
}

.site-footer__end {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.15s ease,
    opacity 0.15s;
}
.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.88;
}
.social-icon:active {
  transform: translateY(0);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.social-icon--fb {
  background: #e88e24;
}
.social-icon--tiktok {
  background: #f3b633;
}
.social-icon--ig {
  background: #c1d24f;
}
.social-icon--yt {
  background: #00b2db;
}

.site-footer__url {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}
.site-footer__url:hover {
  color: var(--white);
}

@media (max-width: 767px) {
  .site-footer {
    padding-block: 48px;
    padding-inline: 24px;
  }
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .site-footer__logo {
    width: 200px;
  }
}

/* ═══════════════════════════════ MOBILE ═══════════════════════════════ */
@media only screen and (max-width: 600px) {
  .content {
    overflow: hidden;
  }

  .hero {
    height: 489px;
  }
  .hero__black {
    flex-basis: 150px;
    padding: 0 16px;
  }
  .hero__title-img {
    width: 300px;
    max-width: 85%;
  }
  .hero__line {
    flex-basis: 5px;
  }
  .hero__kish {
    right: -36%;
    bottom: -31px;
    max-width: 200%;
    width: 107%;
  }
  .hero__note {
    left: 13px;
    bottom: 9px;
    width: 58%;
  }
  .hero__stamp {
    right: auto;
    left: 6%;
    top: 9%;
    width: 46%;
  }

  .main-title {
    padding: 0 16px 8px;
  }
  .main-title__hl {
    font-size: 28px;
    padding: 10px 22px;
  }

  .columns {
    padding: 40px 16px 60px;
  }
  .columns__inner {
    flex-direction: column;
    gap: 48px;
  }
  .reasons h2 {
    text-align: center;
  }
  .section-hl {
    font-size: 22px;
    padding: 7px 16px;
  }
  .reasons__list li {
    font-size: 16px;
  }
}

/*# sourceMappingURL=style.css.map */
