.contact-form-section {
  padding-bottom: 100px;
}

/* 🔥 FIXED: prevent Calendly vertical shifting */
.contact-form-section .contact-wrapper {
  display: flex;
  align-items: flex-start;   /* changed from center */
  gap: clamp(50px, 5vw, 100px);
  max-width: 1440px;
  margin: 0 auto;
}

.contact-form-section .contact-wrapper .contact-content {
  display: flex;
  flex-direction: column;
  row-gap: clamp(16px, 5vw, 26px);
  padding-left: 5%;
  width: 50%;
}

.contact-form-section .contact-wrapper .contact-content .contact-list-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 5vw, 30px);
}

.contact-form-section
  .contact-wrapper
  .contact-content
  .contact-list-wrapper
  .contact-list {
  display: flex;
  align-items: flex-start;
  column-gap: clamp(16px, 5vw, 20px);
}

/* Remove default spacing that pushes content */
.contact-form-section
  .contact-wrapper
  .contact-content
  .contact-list-wrapper
  .contact-list h2,
.contact-form-section
  .contact-wrapper
  .contact-content
  .contact-list-wrapper
  .contact-list p {
  margin: 0;
}

.contact-form-section
  .contact-wrapper
  .contact-content
  .contact-list-wrapper
  .contact-list p.desc18 {
  margin-top: 6px;
}

.contact-form-section
  .contact-wrapper
  .contact-content
  .contact-list-wrapper
  .contact-list
  .contact-list-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  font-size: 20px;
}

/* ============================= */
/* CLEAN MINIMAL SMS STYLE      */
/* ============================= */

.sms-mini {
  margin-top: 8px;
  margin-left: calc(50px + clamp(16px, 5vw, 20px)); /* aligns under number column */
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.7;
  max-width: 260px;
}

.sms-mini a {
  text-decoration: underline;
  color: var(--text-color);
}

/* ============================= */

.contact-form-section .contact-wrapper .contact-form-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 5vw, 50px);
  width: 50%;
  padding-top: 100px;
  padding-bottom: 50px;
  padding-right: 5%;
  padding-left: 5%;
  background-color: var(--statistics-bg);
}

/* ============================= */
/* RESPONSIVE FIXES             */
/* ============================= */

@media screen and (max-width: 640px) {

  .contact-form-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .contact-form-section .contact-wrapper {
    flex-direction: column;
  }

  .contact-form-section .contact-wrapper .contact-content {
    width: 100%;
    padding-right: 5%;
  }

  .contact-form-section .contact-wrapper .contact-form-wrapper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .sms-mini {
    margin-left: 0;
    max-width: 100%;
    font-size: 11.5px;
  }
}
