/* ================================================================
   Sync Inn Digital — Get In Touch Section
   Global section; content via Theme Settings → Get In Touch.

   Layout:
     Header  — constrained (1400px); label + heading + italic + desc.
     Widget  — Calendly inline embed, full constrained width.
     CTA box — dark rounded card at the bottom; links + trust badge.

   Background: var(--sid-primary-blue) — all text is white.
   ================================================================ */

/* ── Section wrapper ─────────────────────────────────────────── */

.sid-git {
  background-color: var(--sid-primary-blue, #0047D8);
  padding: 110px 0 80px;
  overflow: hidden;
}

/* ── Constrained wrapper ─────────────────────────────────────── */

.sid-git__wrap {
  max-width: var(--sid-site-width, 1400px);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Section label — override text colour on blue bg ─────────── */

.sid-git .sid-section-label__text {
  color: var(--sid-white, #fff);
}

/* ── Main heading ────────────────────────────────────────────── */

.sid-git__heading {
  font-family: 'Poppins', var(--sid-font-heading, sans-serif);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--sid-white, #fff);
  margin: 0 0 24px;
  max-width: 78%;
}

.sid-git__heading-muted {
  color: rgba(255, 255, 255, 0.55);
}

/* ── Italic tagline ──────────────────────────────────────────── */

.sid-git__italic {
  font-family: 'Nunito', var(--sid-font-body, sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--sid-white, #fff);
  line-height: 1.5;
  max-width: 78%;
}

/* ── Description ─────────────────────────────────────────────── */

.sid-git__desc {
  font-family: 'Nunito', var(--sid-font-body, sans-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 50%;
}

/* ── Calendly widget container ───────────────────────────────── */

.sid-git__calendly {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 32px;
}

/* ── CTA box ─────────────────────────────────────────────────── */

.sid-git__cta {
  background-color: #04338c;
  border-radius: 30px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 78%;
  margin: 0 auto;
}

.sid-git__cta-left {
  flex: 1;
  min-width: 0;
}

.sid-git__cta-heading {
  font-family: 'Poppins', var(--sid-font-heading, sans-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--sid-white, #fff);
  margin: 0 0 10px;
}

.sid-git__cta-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sid-git__cta-line {
  font-family: 'Nunito', var(--sid-font-body, sans-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--sid-white, #fff);
  margin: 0;
}

.sid-git__cta-link {
  font-family: 'Nunito', var(--sid-font-body, sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--sid-yellow);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.sid-git__cta-link:hover {
  opacity: 0.72;
}

/* ── Trust badge ─────────────────────────────────────────────── */

.sid-git__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  max-width: 32%;
}

.sid-git__avatars {
  display: flex;
}

.sid-git__avatar {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  margin-right: -8px;
  overflow: hidden;
  border: 1px solid var(--sid-white, #fff);
}

.sid-git__avatar:last-child {
  margin-right: 0;
}

.sid-git__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sid-git__trust-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sid-git__trust-text {
  font-family: 'Poppins', var(--sid-font-heading, sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--sid-white, #fff);
  margin: 0;
  line-height: 1.4;
}

.sid-git__stars {
  display: flex;
  align-items: center;
  gap: 1px;
}

.sid-git__star {
  width: 20px;
  height: 20px;
  fill: #fbbf24;
  display: block;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 1280px) {
  .sid-git__heading {
    font-size: 48px;
  }
}

@media (max-width: 1023px) {
  .sid-git {
    padding: 80px 0 60px;
  }

  .sid-git__heading {
    font-size: 36px;
    max-width: 100%;
  }

  .sid-git__italic {
    max-width: 100%;
  }

  .sid-git__desc {
    max-width: 100%;
  }

  .sid-git__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .sid-git {
    padding: 60px 0 48px;
  }

  .sid-git__heading {
    font-size: 30px;
  }

  .sid-git__calendly {
    margin-top: 20px;
  }

  .sid-git__cta {
    padding: 22px 22px;
    gap: 20px;
    max-width: 100%;
  }

  .sid-git__cta-heading {
    font-size: 22px;
  }

  .sid-git__cta-line {
    display: flex;
    flex-direction: column;
    font-size: 18px;
  }

  .sid-git__cta-link {
    font-size: 16px;
  }

  .sid-git__trust-text {
    font-size: 12px;
  }

  .sid-git__trust {
    align-self: flex-end;
    max-width: 80%;
  }
}

@media (max-width: 479px) {
  .sid-git__heading {
    font-size: 30px;
    line-height: 30px;
  }

  .sid-git__desc {
    font-size: 16px;
  }
}
