/* -- CONTACT HERO -- */
.contact-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(0deg, var(--color-cream) 0%, rgba(248,242,231,0) 100%);
  pointer-events: none;
}

.contact-hero {
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)), url('/img/contact-header.png');
  background-size: cover;
  background-position: center;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--color-white);
  padding: 3rem 4rem;
  position: relative;
}

.contact-hero h1 {
  color: var(--color-white);
  font-size: 7.0rem;
  margin-bottom: 0.5rem;
}

.contact-hero p {
  font-size: 1.8rem;
  opacity: 0.9;
}

/* -- CONTACT FORM -- */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background-color: var(--color-white);
  border: none;
  border-radius: 20px;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  box-sizing: border-box;
  margin-bottom: 1.2rem;
}

.contact-form textarea {
  border-radius: 15px;
  min-height: 130px;
  resize: vertical;
}

.contact-form label {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-dark);
  display: block;
  margin-bottom: 0.4rem;
}

.contact-form .row {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.contact-form .row .column {
  padding: 0;
  flex: 1;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.contact-detail-row img {
  width: 20px;
  height: 20px;
}

.social-icons-contact {
  display: flex;
  justify-content: flex-start;
  gap: 1.2rem;
  margin-top: 0.8rem;
  margin-bottom: 3.5rem;
}

.social-icons-contact img {
  width: 24px;
  height: 24px;
  display: block;
}

.enquiries-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.column-50 h5 {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.3rem;
}

.column-50 p {
  margin-bottom: 4rem;
}

.enquiries-header h2 {
  margin: 0;
  white-space: nowrap;
}

.enquiries-line {
  flex: 1;
  height: 2px;
  background-color: var(--color-dark);
  font-size: 1.2rem;
  opacity: 1;
}

#submit-btn {
  background-color: var(--color-dark);
  color: var(--color-cream);
  border: none;
  border-radius: 30px;
  padding: 1.5rem 3.4rem;
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 1.5rem;
}

#submit-btn:disabled {
  background-color: var(--color-dark);
  opacity: 0.35;
  cursor: not-allowed;
}

/* -- CONTACT RESPONSIVE -- */
@media (max-width: 768px) {
  .contact-hero {
    padding: 2rem;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }
}