/* ===== CONTACT CTA ===== */
.contact {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.contact__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.contact__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.contact__title {
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 48px);
  color: #fff;
  margin-bottom: 24px;
}
.contact__sub {
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
}
.contact__btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.contact__btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  border-radius: 8px;
  text-align: left;
  flex: 1 1 280px;
  max-width: 500px;
  min-width: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact__btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.contact__btn--form { background: #fff; }
.contact__btn--faq { background: #005eb8; color: #fff; }
.contact__btn-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,94,184,0.1);
}
.contact__btn-icon .material-symbols-rounded {
  font-size: 30px;
  color: #005eb8;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.contact__btn--faq .contact__btn-icon { background: rgba(255,255,255,0.15); }
.contact__btn--faq .contact__btn-icon .material-symbols-rounded {
  color: #fff;
  font-size: 30px;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 30;
}
.contact__btn-text { flex: 1; }
.contact__btn-sub {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}
.contact__btn--faq .contact__btn-sub { color: rgba(255,255,255,0.75); }
.contact__btn-main {
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 22px);
  color: #005eb8;
}
.contact__btn--faq .contact__btn-main { color: #fff; }
.contact__btn-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.contact__btn-arrow .material-symbols-rounded { font-size: 22px; color: #005eb8; }
.contact__btn--faq .contact__btn-arrow .material-symbols-rounded { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .contact__inner { padding: 0 40px; }
  .contact__btns { flex-direction: column; align-items: stretch; }
  .contact__btn { flex: none; width: 100%; max-width: 100%; min-width: 0; }
}
@media (max-width: 640px) {
  .contact { padding: 50px 0 60px; }
  .contact__inner { padding: 0 24px !important; }
  .contact__sub { text-align: left; }
  .contact__btn { padding: 20px 20px; gap: 14px; }
  .contact__btn-main { white-space: nowrap; font-size: clamp(14px, 4vw, 22px); }
  .contact__btn-icon { width: 44px; height: 44px; flex-shrink: 0; }
}
