/* ===== HERO ===== */
.contact-hero {
  text-align: center;
  padding: 4rem 0 3rem;
  color: #fff;
  background: linear-gradient(135deg, #FF8C00, #ff9a2b);
}
.contact-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  letter-spacing: -0.5px;
}
.contact-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 1rem;
}
.contact-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.badge {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  padding: .3rem .8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  color: #fff;
  backdrop-filter: blur(2px);
}

/* ===== CALENDLY WRAPPER ===== */
.contact-main {
  background: #fff;
  padding: 2rem 0 4rem;
}
.calendly-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: box-shadow .2s ease, transform .2s ease;
}
.calendly-wrapper:hover {
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.calendly-inline-widget {
  width: 100% !important;
  min-height: 820px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  .calendly-inline-widget {
    min-height: 950px;
  }
}
