/** FORM **/
.contact-section {
  background: #FDFAF3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.contact-container { width: 100%; max-width: 600px;}

.contact-container h2 {
  font-size: 2.5rem;
  text-align: center;
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-style: italic;
}

.contact-container p {
  opacity: 0.7;
  margin: 0 0 50px;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 25px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  padding: 14px 3%;
  background: transparent;
  border: 1px solid #2a2924;
  color: #2a2924;
  font-size: 15px;
  outline: none;
  border-radius: 10px;
  transition: 0.3s ease;
  font-family: "Google Sans Flex", sans-serif;
  width: 94%;
  font-weight: 300;
}

.form-group select {
  padding: 14px 3%;
  background: transparent;
  border: 1px solid #2a2924;
  color: #2a2924;
  font-size: 15px;
  outline: none;
  border-radius: 10px;
  transition: 0.3s ease;
  font-family: "Google Sans Flex", sans-serif;
  width: 100%;
  font-weight: 300;
}

.form-group textarea {
  resize: none;
    
}

.form-group label {
  position: absolute;
  background: #FDFAF3;
  left: 5px;
  top: 0;
  transform: translateY(-50%);
  font-size: 15px;
  color: #2a2924;
  pointer-events: none;
  transition: 0.3s ease;
  padding: 0 10px;
  font-weight: 400;
    
}

.form-group.textarea label {
  top: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #2a2924;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
  top: 0;
  font-size: 15px;
  color: #2a2924;
  background: #FDFAF3;
}

button {
  padding: 15px;
  border: none;
  background: linear-gradient(135deg, #11B7A6, #24D1B8);
  color: #2a2924;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
    font-size: 14px;
    text-transform: uppercase; letter-spacing: 2pt;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(36, 209, 184, 0.3);
}


@media (max-width: 600px){
    .contact-container { width: 90%; max-width: 600px;}
button {
  padding: 18px;
  font-size: 14px;
}
.form-group input,
.form-group textarea, .form-group select {
  font-size: 16px;

}
}