/* Contact Us Page Styles */

.contact-section {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 180px 40px;
  gap: 140px;
}

/* Left column: form */
.contact-form-column {
  flex: 1;
  max-width: 540px;
}

.contact-form-column h1 {
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 40px;
  line-height: 1.1;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-text);
}

.form-group input,
.form-group textarea {
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-text);
  background: var(--white-color);
  border: 1.5px solid #e0ddd8;
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-orange-primary);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-orange-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox label {
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--secondary-text);
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--brand-orange-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.form-checkbox label a:hover {
  color: #e04f16;
  text-decoration: underline;
}

.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  padding: 14px 32px;
  background: #e04f16;
  color: var(--white-color);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  box-shadow: 3px 3px 0px 2px #a52e00;
  margin-top: 8px;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 0px 0px 0px transparent;
}

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

.contact-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: 3px 3px 0px 2px #a52e00;
}

/* Right column: contact info */
.contact-info-column {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 80px;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff3eb;
  border-radius: 12px;
  margin-bottom: 4px;
}

.contact-info-icon wa-icon {
  font-size: 22px;
  color: var(--brand-orange-primary);
}

.contact-info-card h3 {
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-text);
  margin: 0;
}

.contact-info-card p {
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-text);
  margin: 0;
  line-height: 1.5;
}

.contact-info-card a {
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--brand-orange-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-card a:hover {
  color: #e04f16;
  text-decoration: underline;
}

/* Success / Error messages */
.form-message {
  display: none;
  padding: 14px 18px;
  border-radius: 12px;
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.form-message.success {
  display: block;
  background: #e6f9e6;
  color: #1a7a1a;
  border: 1px solid #b3e6b3;
}

.form-message.error {
  display: block;
  background: #fde8e8;
  color: #b91c1c;
  border: 1px solid #f5c6c6;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 15px;
  font-weight: 600;
  box-shadow:
    0 4px 16px rgba(37, 211, 102, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float wa-icon {
  font-size: 22px;
  color: #ffffff;
}

/* ===== Responsive — Tablet ===== */
@media (max-width: 980px) {
  .contact-section {
    flex-direction: column;
    padding: 160px 24px 80px;
    gap: 60px;
  }

  .contact-form-column {
    max-width: 100%;
  }

  .contact-info-column {
    flex: 1;
    padding-top: 0;
  }

  .contact-form-column h1 {
    font-size: 2.5rem;
  }
}

/* ===== Responsive — Mobile (max 575px) ===== */
@media (max-width: 575px) {
  /* Layout */
  .contact-section {
    flex-direction: column;
    padding: 120px 20px;
    gap: 40px;
  }

  .contact-form-column {
    max-width: 100%;
  }

  /* Heading */
  .contact-form-column h1 {
    font-size: 1.75rem;
    margin-bottom: 28px;
    line-height: 1.2;
  }

  /* Form spacing */
  .contact-form {
    gap: 18px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 10px;
  }

  .form-group textarea {
    min-height: 120px;
  }

  /* Checkbox */
  .form-checkbox {
    align-items: flex-start;
    gap: 10px;
  }

  .form-checkbox input[type="checkbox"] {
    margin-top: 2px;
  }

  .form-checkbox label {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Submit button */
  .contact-submit-btn {
    height: 50px;
    font-size: 15px;
    margin-top: 4px;
  }

  /* Info column */
  .contact-info-column {
    flex: 1;
    padding-top: 0;
    gap: 28px;
    /* Lay cards out in a row on mobile for compactness */
    flex-direction: column;
  }

  .contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .contact-info-icon wa-icon {
    font-size: 19px;
  }

  .contact-info-card h3 {
    font-size: 17px;
  }

  .contact-info-card p {
    font-size: 13px;
  }

  .contact-info-card a {
    font-size: 13px;
  }

  /* Form messages */
  .form-message {
    font-size: 14px;
    padding: 12px 14px;
    border-radius: 10px;
  }

  /* WhatsApp floating button — icon-only on small screens */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 14px;
    border-radius: 50%;
    font-size: 0;
    gap: 0;
    width: 52px;
    height: 52px;
    justify-content: center;
  }

  .whatsapp-float wa-icon {
    font-size: 24px;
  }
}