body {
  margin: 0;
  font-family: 'Figtree', sans-serif;
  background: #f7f7f7;
}

/* HERO */
.contact-hero {
  position: relative;
  height: 504px;
  background: url("contact-bg.png") right center/cover no-repeat;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.45) 25%,
    rgba(0,0,0,0.25) 55%,
    rgba(0,0,0,0.1) 75%,
    rgba(0,0,0,0.0) 100%
  );

  z-index: 1;
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 600px;
  margin-left: 120px;
  z-index: 2;
  
}

.hero-content h1 {
  font-size: 82px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: 'Figtree', sans-serif;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  font-family: 'Figtree', sans-serif;
}

/* MAIN */
.contact-main {
  display: flex;
  gap: 80px;
  padding: 100px 120px;
}



.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;          /* 🔥 NOT GRID */
  justify-content: space-between; /* natural spacing */
  align-items: flex-start;

  gap: 80px;
}

/* FORM */
.form {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.row {
  display: flex;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  flex: 1;
}

.input-group label {
  font-size: 13px;
  margin-bottom: 6px;
  color: #555;
}

.input-group input,
.input-group textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  background: #f8f8f8;
  font-size: 14px;
  outline: none;
}

textarea {
  height: 110px;
  resize: none;
}

/* BUTTON */
.btn {
  background: #ff6a00;
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -1px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #000;
}

/* INFO */
.info {
  max-width: 420px;
  margin-top: 0;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}


.info h2 {
  margin-top: 0;
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 20px;
}

.info p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.details div {
  margin-top: auto;
  margin-bottom: 12px;
  font-size: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {

  .hero-content {
    margin-left: 60px;
    max-width: 500px;
  }

  .hero-content h1 {
    font-size: 56px;
  }

  .contact-main {
    padding: 80px 40px;
  }

  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .form {
    max-width: 100%;
  }

  .info {
    max-width: 600px;
    text-align: left;
  }

  .info h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {

  /* HERO */
  .contact-hero {
    height: 420px;
  }

  .hero-content {
    margin-left: 24px;
    margin-right: 24px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 14px;
  }

  /* SECTION */
  .contact-main {
    padding: 60px 20px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  /* FORM */
  .row {
    flex-direction: column;
    gap: 12px;
  }

  .form {
    padding: 24px;
  }

  .input-group input,
  .input-group textarea {
    font-size: 14px;
  }

  textarea {
    height: 100px;
  }

  /* BUTTON */
  .btn {
    width: 100%;
    justify-content: center;
  }

  /* INFO */
  .info {
    max-width: 100%;
  }

  .info h2 {
    font-size: 28px;
  }

  .info p {
    font-size: 14px;
  }

  .details {
    margin-top: 20px;
  }

}