.contact-section {
  width: 100%;
  background-color: var(--scc-color-white);
}

.contact-section__inner {
  max-width: var(--scc-container-max-width, 60rem);
  margin: 0 auto;
  padding: var(--scc-spacing-xl) var(--scc-spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--scc-spacing-xl);
}

.contact-section__title {
  font-family: var(--scc-font-heading);
  font-size: clamp(var(--scc-font-size-2xl), 3vw, var(--scc-font-size-4xl));
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

/* Two-column row */
.contact-section__cols {
  display: flex;
  flex-direction: column;
  gap: var(--scc-spacing-xl);

  @media (min-width: 48rem) {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--scc-spacing-xl);
  }
}

.contact-section__body-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--scc-spacing-sm);
}

/* Phone / email icon links */
.contact-section__contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--scc-font-body);
  font-weight: 700;
  font-size: var(--scc-font-size-md);
  color: var(--scc-color-black);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-section__contact-link:hover {
  text-decoration: underline;
  color: var(--scc-color-black);
}

.contact-section__contact-link img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-section__body {
  font-family: var(--scc-font-body);
  font-size: var(--scc-font-size-md);
  color: var(--scc-color-black);
  line-height: 1.7;
  font-weight: 700;
}

.contact-section__body p {
  margin: 0 0 var(--scc-spacing-sm);
}

.contact-section__body p:last-child {
  margin-bottom: 0;
}

.contact-section__body a {
  color: var(--scc-color-navy);
  font-weight: 700;
  text-decoration: underline;
}

.contact-section__form-col {
  flex: 1;
}

/* "Enquiry Form" label above the form */
.contact-section__form-label {
  font-family: var(--scc-font-heading);
  font-weight: 700;
  font-size: var(--scc-font-size-md);
  color: var(--scc-color-navy);
  margin: 0 0 var(--scc-spacing-sm);
}

/* Inputs and textarea */
.contact-section .form-element {
  display: block;
  width: 100%;
  padding: var(--scc-input-padding);
  border: none !important;
  border-radius: var(--scc-radius-sm);
  background-color: var(--scc-color-light-blue);
  color: var(--scc-color-navy);
  font-family: var(--scc-font-body);
  font-size: var(--scc-font-size-md);
  box-sizing: border-box;
  min-height: var(--scc-height-med);
  margin-bottom: var(--scc-spacing-sm);
}

.contact-section textarea.form-element {
  min-height: 10rem;
  height: auto;
  resize: vertical;
}

.contact-section .form-element::placeholder {
  color: var(--scc-color-navy);
  font-weight: 600;
  opacity: 1;
}

/* Form items */
.contact-section .form-item {
  margin: 0 0 var(--scc-spacing-sm);
}

/* Hide labels — placeholders are used */
.contact-section .form-item__label {
  display: none;
}

/* Submit button — override Olivero's .button styles */
.contact-section .form-submit.button,
.contact-section .form-submit {
  display: flex;
  width: 100%;
  height: var(--scc-height-med);
  padding: var(--scc-input-padding);
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: var(--scc-radius-sm);
  background-color: var(--scc-color-navy);
  color: var(--scc-color-white);
  font-family: var(--scc-font-heading);
  font-weight: 700;
  font-size: var(--scc-font-size-md);
  cursor: pointer;
  box-shadow: none;
  text-decoration: none;
  margin-top: var(--scc-spacing-sm);
}

.contact-section .form-submit.button:hover,
.contact-section .form-submit:hover {
  background-color: var(--scc-color-light-blue);
  color: var(--scc-color-navy);
  box-shadow: none;
}
