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

.contact-section {
  padding: 6rem 2rem;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

/* LEFT SIDE */
.contact-left {
  width: 50%;
}

.contact-left h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #14a3a6;
  margin-bottom: 3rem;
  font-family: restore;
}

.contact-left form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-left input,
.contact-left textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #999;
  padding: 12px 5px;
  font-size: 18px;
  outline: none;
  color: #333;
}

.contact-left input::placeholder,
.contact-left textarea::placeholder {
  color: #777;
  letter-spacing: 2px;
}

.contact-left textarea {
  resize: none;
  height: 80px;
}

.contact-left button {
  width: 200px;
  margin-top: 2rem;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: #02afb8;
  color: #fff;
  font-size: 16px;
  letter-spacing: 3px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-left button:hover {
  background: #02afb8;
}

/* RIGHT SIDE IMAGE */
.contact-right {
  width: 50%;
  position: relative;
}

.contact-right img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 40px;
}

.contact-right i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: #fff;
  cursor: pointer;
}

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

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

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

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

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

.contact-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;
}

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

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

  .contact-section {
    padding: 4rem 2rem;
  }

  .contact-container {
    flex-direction: column-reverse;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-left form {
    gap: 1rem;
  }

  .contact-right img {
    height: 400px;
  }

  .contact-left h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 36px;
    letter-spacing: 5px;
    color: #02afb8;
  }

  .contact-left button {
    align-self: center;
  }
}

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

  .contact-img img {
    height: 40vh;
  }

  .contact-section {
    padding: 2rem 1rem;
  }

  .contact-container {
    gap: 1rem;
  }

  .contact-left h2 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 20px;
    letter-spacing: 5px;
    color: #02afb8;
    margin-bottom: 1rem;
  }

  .contact-left input {
    font-size: 14px;
  }

  .contact-left button {
    font-size: 16px;
    margin-top: 1rem;
    padding: 10px;
  }

  .contact-right img {
    height: 300px;
  }

  .contact-footer {
    gap: 1rem;
  }

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

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

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

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

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

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