.cta-img {
  min-height: 50vh;
  width: 100%;
  padding: 2rem;
  margin-top: 2rem;
}
.cta-img img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  object-position: top;
  border-radius: 30px;
}

.cta-container {
  min-height: 100vh;
  width: 100%;
  padding: 4rem 2rem;
}

.cta-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.cta-content h1 {
  font-size: 42px;
  font-weight: 700;
  font-family: restore;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 6px;
  color: #02afb8;
}

.cta-main {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

/* LEFT IMAGE */
.cta-main-left {
  width: 50%;
}

.cta-main-left img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  border-radius: 40px;
  margin-left: 5.625rem;
  transform: scaleX(-1);
}

/* RIGHT FORM OVERLAP */
.cta-main-right {
  width: 50%;
  position: absolute;
  right: 5%;
  display: flex;
  justify-content: center;
}

.cta-form-box {
  background: #02afb8;
  padding: 60px 50px;
  border-radius: 40px;
  width: 100%;
}

.cta-form-box form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cta-form-box input,
.cta-form-box textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px 5px;
  font-size: 18px;
  color: #fff;
  outline: none;
}

.cta-form-box input::placeholder,
.cta-form-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 2px;
}

.cta-form-box textarea {
  resize: none;
  height: 90px;
}

.cta-form-box button {
  width: 200px;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: #e5e5e5;
  color: #000;
  font-size: 16px;
  letter-spacing: 3px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-form-box button:hover {
  background: #fff;
}

.cta-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
}

.cta-footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-footer ul li {
  font-size: 24px;
  list-style: none;
  margin: 0 10px;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
}

.cta-footer ul li:not(:first-child)::before {
  content: "|";
  position: absolute;
  left: -12px;
  color: #000;
}

.cta-social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cta-icon {
  width: 50px;
  height: 50px;
  border: 2px solid #02afb8;
  border-radius: 50%;
  color: #02afb8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-icon i {
  font-size: 25px;
}

@media (max-width: 1024px) {
  .cta-img {
    margin-top: 0;
  }
  .cta-img img {
    height: 100vh;
  }

  .cta-content h1 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 20px;
    letter-spacing: 5px;
    color: #02afb8;
  }
  .cta-main {
    flex-direction: column;
    position: static;
    gap: 2rem;
  }

  .cta-main-left,
  .cta-main-right {
    width: 100%;
    position: static;
  }

  .cta-main-left img {
    height: 100vh;
    margin-left: 0;
    object-position: bottom;
  }

  .cta-form-box {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .cta-img {
    min-height: 40vh;
    padding: 1rem;
    margin-top: 0;
  }

  .cta-img img {
    height: 40vh;
  }
  .cta-container {
    padding: 0 1rem;
  }

  .cta-content {
    gap: 1rem;
  }

  .cta-content h1 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 20px;
    letter-spacing: 5px;
    color: #02afb8;
  }

  .cta-main {
    gap: 1rem;
  }

  .cta-main-left img {
    height: 35vh;
  }

  .cta-form-box {
    padding: 30px 20px;
  }

  .cta-form-box form {
    gap: 20px;
  }

  .cta-form-box input,
  .cta-form-box textarea {
    padding: 10px 5px;
    font-size: 14px;
  }

  .cta-form-box button {
    width: 150px;
    padding: 10px;
    font-size: 14px;
  }

  .cta-footer {
    gap: 1rem;
  }

  .cta-footer ul {
    flex-direction: column;
  }

  .cta-footer ul li {
    font-size: 20px;
  }

  .cta-footer ul li:not(:first-child)::before {
    content: "";
  }

  .cta-social-icons {
    gap: 0.5rem;
  }

  .cta-icon {
    width: 40px;
    height: 40px;
  }

  .cta-icon i {
    font-size: 20px;
  }
}
