body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  background: #181619;
}

.contact-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.back-arrow {
  position: absolute;
  margin: 2vh 0 0 1vw;
  width: 3vh;
  height: 3vh;
  cursor: pointer;
}

.back-arrow img {
  width: 30px;
  height: 30px;
}
.container-div {
  display: flex;
  flex-direction: row;
  /* flex-wrap: wrap; */
}
.contact-info {
  width: 45%;
  color: #f2efdd;
  gap: 3vh;
  display: flex;
  flex-direction: column;
  margin: 2vh 3vw;
}

.contact-info h1 {
  font-size: clamp(2.4rem, 6vw, 64px);
  font-weight: 700;
  line-height: 1;
  font-family: "Syne", sans-serif;
}

.contact-info h1 span {
  color: #006f53;
}

.info-item {
  display: flex;
  align-items: center;
  margin-top: 1vh;
  gap: 15px;
}

.info-item p {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  color: #f2efdd;
}

.info-item img {
  width: 25px;
  height: auto;
}

.contact-form {
  width: 45%;
  height: auto;
  flex: 1;
  background: #f8f3e5;
  margin: 40px 40px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  height: 80vh;
}

.interest-title {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
  margin-bottom: 15px;
  color: #006f53;
}

.interest-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.interest-options button {
  border: 1px solid #5d6481;
  background: transparent;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: clamp(14px, 2vw, 18px);
  color: #5d6481;
  transition: all 0.3s ease-in-out;
}

.interest-options button.active {
  background: #006f53;
  color: white;
  border: none;
}

.contact-form label {
  font-weight: 600;
  margin-top: 3vh;
  margin-bottom: 1vh;
  font-size: clamp(14px, 2vw, 16px);
  color: #006f53;
  line-height: 1.4;
}

.contact-form input {
  border: none;
  border-bottom: 1px solid #006f53;
  padding: 10px 10px;
  font-size: 16px;
  background: transparent;
}

.contact-form textarea {
  border-bottom: 1px solid #006f53;
  border-radius: 4px;
  padding: 15px;
  resize: vertical;
  background: transparent;
}

.send-btn {
  background: #006f53;
  padding: 15px;
  border-radius: 30px;
  border: none;
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 700;
  cursor: pointer;
  margin-top: 3vh;
  color: #f2efdd;
  transition: background 0.3s ease-in-out;
}

.send-btn:hover {
  background: #005844;
}

.toast {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #f2efdd;
  color: #333;
  padding: 2px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  max-width: 90%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  text-align: center;
}

.toast p {
  color: #006f53;
  font-size: clamp(12px, 3vw, 16px);
}

.toast.show {
  opacity: 1;
  visibility: visible;
}

.toast .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: #006f53;
  width: 100%;
  animation: progressAnim 3s linear forwards;
  border-radius: 6px;
}

.contact-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3vw;
  height: auto;
}

.contact-footer div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
}

.contact-footer img {
  width: clamp(12px, 2.1vw, 18px);
  height: clamp(12px, 2.1vw, 18px);
}

.contact-footer h1 {
  color: #f2efdd;
  font-size: clamp(13px, 2.1vw, 19px);
  font-weight: 400;
}
.linkedin-div:hover img {
  content: url(assets/Images/linkedin.png);
}
.contact-footer a {
  color: #f2efdd;
  font-size: clamp(13px, 2.1vw, 19px);
  font-weight: 400;
  text-decoration: none;
}

@keyframes progressAnim {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

@media (max-width: 1024px) {
  .container-div {
    flex-direction: column;
    padding: 20px;
  }

  .contact-info,
  .contact-form {
    width: auto;
    margin: 0;
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .interest-options {
    flex-direction: column;
    align-items: stretch;
  }
  .interest-options button {
    width: 100%;
    text-align: center;
  }
  .contact-footer {
    margin-bottom: 1vh;
    gap: 3.4vw;
    line-height: 0;
  }
}

@media (max-width: 1000px) {
  .back-arrow {
    margin: 1vh 0 0 1vw;
  }
}

@media (min-width: 1024px) {
  .contact-footer {
    position: absolute;
    bottom: 0;
  }
}
