.footer {
  width: auto;
  margin: 0 1%;
  padding: 108px 5% 64px;
  background: #FFDE21;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}

.foot-mid {
  width: 100%;
  display: flex;
  justify-content: center;
}

.foot-grid {
  max-width: 1200px;

  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact h2 {
  font-size: 1.75rem;
  margin: 0 auto;
  color: #1b29b3;
}

.foot-call {
  display: inline-flex;

  flex-direction: row-reverse;

  justify-content: center;

  align-items: center;
  gap: 8px;

  width: auto;

  max-width: 200px;

  padding: 14px 22px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 60px;
  background: #f7f7f7;
  color: #1b29b3;
  margin: 0 auto 20px;
  cursor: pointer;
  position: relative;
  outline: none !important;
  text-decoration: none;
  text-align: center;
  font-size: 0.875rem;
}

.foot-call:visited,
.foot-call:hover,
.foot-call:active {
  color: #1b29b3;
}

.foot-call::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid #f7f7f7;
  border-radius: 999px;
  pointer-events: none;
}

.foot-call:focus,
.foot-call:active,
.foot-call:focus-visible {
  outline: none !important;
}

@media (max-width: 600px) {
.foot-call {
    width: fit-content;

    font-size: 0.875rem;
    font-weight: 700;
    padding: 12px 24px;
    margin: 0 auto;

    justify-content: center;
  }
}

.foot-call img {
  width: 16px;
  height: auto;
}

.foot-l {
  width: 100%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: right;
  gap: 24px;
}

.social-box {
  position: relative;
  border: none;
  border-radius: 50px;
  padding: 60px;
  width: max-content;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.social-box-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.social-box img {
  width: 30px;
  cursor: pointer;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 40px 0 32px;
}

.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #a3a3a3;
  font-size: 0.875rem;
  max-width: 1200px;
  margin: 0 auto;
}

.socials a {
  color: #a3a3a3;
  text-decoration: none;
  margin-left: 12px;
  font-size: 0.875rem;
}

.socials a:hover {
  text-decoration: underline;
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 40px 120px;
  color: #6f6b86;
}

.foot-col h4 {
  margin: 0 0 14px;
  font-size: 1rem;
  color: #1b29b3;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.foot-col p,
.foot-col li {
  margin: 6px 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1b29b3;
}

.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media(max-width:880px) {
.foot-grid {
    grid-template-columns: 1fr;
  }

.foot-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
.foot-col h4::after {
    content: "+";
    font-size: 1.25rem;
    color: #1b29b3;
    transition: 0.3s;
  }

.foot-col.open h4::after {
    content: "–";
  }

.foot-drop {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

.foot-col.open .foot-drop {
    max-height: 500px;
  }

.foot-cols {
    grid-template-columns: 1fr;
    gap: 0px;
  }

.foot-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    border-left: none !important;
    border-right: none !important;
    padding-top: 14px;
    padding-bottom: 14px;
  }

.contact {
    display: flex;
    justify-content: center;
  }

.foot-l {
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }

.social-box {
    margin-left: auto;
    margin-right: auto;
  }

.footer {
    margin: 0 3%;
    padding: 74px 10% 48px;
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
  }

.contact h2 {
    font-size: 1.625rem;

  }

.bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
  }

.divider {
    background: none !important;
    height: 0 !important;
    margin: 80px 0 80px !important;
  }

.foot-col.address {
    order: -1;
  }
}

@media (min-width: 600px) {
.foot-col h4 {
    cursor: text !important;
    pointer-events: none !important;
    user-select: text !important;
  }

.foot-col {
    cursor: text !important;
  }

.foot-col h4::after {
    content: "" !important;
  }

.foot-col .foot-drop {
    max-height: none !important;
    overflow: visible !important;
  }
}

.foot-dev {
  width: 100%;
  margin-top: 100px;
  padding: 0 20px 20px;
  text-align: center;
  background: #FFDE21;
}

.foot-dev a {
  display: inline-block;
  color: #1b29b3;
  font-size: 0.625rem;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 20px;
  border: 2px solid #1b29b3;
  border-radius: 999px;

  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

@media (max-width: 600px) {
.foot-dev {
    margin-top: 40px;
    padding: 0 16px 40px;
  }

.foot-dev a {
    font-size: 0.625rem;
    padding: 10px 20px;
  }
}

.up-wrap {
  position: relative;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  margin-bottom: 0;
}

.up-go {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1b29b3;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
  opacity: 0;
  transform: translateY(32px) scale(0.92);
  pointer-events: none;
}

.up-go.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.up-go:hover {
  background: #FFDE21;
  color: #1b29b3;
}

.up-go:active {
  transform: translateY(-1px) scale(0.97);
}

.up-go svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 600px) {
.up-wrap {
    height: 80px;
    margin-bottom: 0;
  }

.up-go {
    width: 50px;
    height: 50px;
  }

.up-go svg {
    width: 24px;
    height: 24px;
  }
}

.wa-fix {
  position: fixed;
  bottom: 24px;

  right: 24px;

  z-index: 999;

  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-fix a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.wa-fix img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.wa-fix:active {
  transform: translateY(-2px) scale(0.96);
}

@media (max-width: 600px) {
.wa-fix {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

.wa-fix img {
    width: 28px;
    height: 28px;
  }
}

.about-txt.txt-blk {
  max-width: 800px;
  margin: 0 auto;
  direction: rtl;
  display: flex;
  flex-direction: column;
}

.more-btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.arrow-btn img {
  width: 14px;
  height: 14px;
  pointer-events: none;
}
