/* =========================
   C0ntact form page 
========================= */
.cta-heading-section {
  background: var(--bg-page);

  display: flex;
  justify-content: center;
}

/* =========================
   CONTAINER
========================= */
.cta-heading-container {
  max-width: 900px;
  text-align: center;
}

/* =========================
   BADGE
========================= */
.cta-heading-badge {
  display: inline-block;
  padding: 6px 16px;

  font-size: 14px;
  font-weight: 500;

  color: var(--primary-dark);
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid var(--border-soft);
  border-radius: 999px;

  margin-bottom: 20px;
}

/* =========================
   TITLE
========================= */
.cta-heading-title {
  font-size: var(--h1);
  font-weight: 700;
  line-height: 1.15;
  color: #000;

  margin-bottom: 20px;
}

/* =========================
   SUBTITLE
========================= */
.cta-heading-subtitle {
  max-width: 720px;
  margin: 0 auto;

  font-size: var(--text);
  line-height: 1.6;
  color: #6b7280;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .cta-heading-section {
    padding: 64px 16px;
  }

  .cta-heading-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .cta-heading-subtitle {
    font-size: 14px;
  }
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

/* LEFT PANEL */
.contact-info {
  background: var(--primary);
  color: #fff;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.9;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details a {
  color: var(--text);
  text-decoration: none;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.contact-item .icon {
  font-size: 16px;
}
/* ===============================
 FORM SECTION
================================ */
.lead-form-section {
  padding: 0 16px 120px;
  background: var(--bg-page);
  display: flex;
  justify-content: center;
}

.lead-form-container {
  width: 100%;
  max-width: 900px;
}

/* ===============================
   FORM CARD
================================ */
.lead-form {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
}

/* ===============================
   GRID
================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ===============================
   FORM GROUP
================================ */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

/* ===============================
   INPUTS
================================ */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 44px;
  padding: 10px 14px;

  border-radius: var(--radius);
  border: 1px solid #dbeafe;

  font-size: 14px;
  color: #0f172a;
  background: #ffffff;
}

/* Placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #64748b;
}

/* Select arrow */
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2314B8A6' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
}

/* ===============================
   TEXTAREA
================================ */
.form-group textarea {
  height: 120px;
  resize: none;
}

/* ===============================
   SUBMIT BUTTON
================================ */
.form-submit {
  width: 100%;
  height: 48px;

  background: var(--primary);
  color: #ffffff;

  border: none;
  border-radius: var(--radius);

  font-size: 14px;
  font-weight: 500;

  cursor: pointer;
}

.form-submit:hover {
  background: var(--primary-dark);
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .lead-form {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 20px;
  }
}
