/* CONTACT PAGE STYLES */

.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 80px);
}

.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 80px;
}

.contact-left {
  display: flex;
  flex-direction: column;
}

.contact-right {
  display: flex;
  flex-direction: column;
}

.contact-header {
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1.1em;
  margin-bottom: 20px;
  font-weight: 300;
  margin-top: 0;
}

.contact-intro {
  font-size: clamp(1.3rem, 1.5vw, 2rem);
  line-height: 1.6;
  color: #bfc6c6;
}

/* FORM STYLES */
.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.form-group label {
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #F2FBFB;
  font-weight: 300;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #596A6A;
  border-radius: 0;
  color: #F2FBFB;
  padding: 5px 0;
  font-family: 'Satoshi-Variable', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: #F2FBFB;
  background-color: transparent;
}

.form-group textarea {
  resize: vertical;
  min-height: 60px;
  max-height: 200px;
}

/* FORM FOOTER */
.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

/* CHECKBOX GROUP */
.checkbox-group {
  margin-bottom: 0;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-transform: none;
  font-family: 'Satoshi-Variable', sans-serif;
  font-size: 1rem;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: #596A6A;
}

/* SUBMIT BUTTON */
.contact-submit-button {
  background-color: #F2FBFB;
  color: #001B1B;
  border: none;
  padding: 10px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: auto;
  display: inline-block;
}

.contact-submit-button:hover {
  background-color: #596A6A;
  color: #F2FBFB;
  transform: translateY(-2px);
}

.contact-submit-button:active {
  transform: translateY(0);
}

.contact-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
  .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .contact-header {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }

  .contact-intro {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .contact-submit-button {
    width: 100%;
  }
}

/* RESPONSIVE - LARGE SCREENS */
@media (min-width: 1920px) {
  .contact-content {
    max-width: 1000px;
  }

  .contact-intro {
    font-size: 1.6vw;
  }

  .form-group label {
    font-size: 1vw;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group select,
  .form-group textarea {
    font-size: 1.2vw;
    padding: 1vw;
  }

  .checkbox-group label {
    font-size: 1.2vw;
  }

  .contact-submit-button {
    font-size: 1.2vw;
    padding: 1.2vw 2.5vw;
  }
}
