/* =========================
   CONTACT PAGE (NO FORM)
========================= */

.contact-card{ padding: 22px 22px 18px; }

.contact-details{
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.contact-row{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(17,119,255,.18);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.contact-row:hover{
  transform: translateY(-1px);
  border-color: rgba(17,119,255,.32);
  box-shadow: 0 16px 40px rgba(2,6,23,.08);
}

.contact-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(17,119,255,.10);
  color: #1177FF;
  flex-shrink: 0;
}

.contact-text{
  display:flex;
  flex-direction: column;
  line-height: 1.2;
}

.contact-label{
  font-size: 12px;
  color: rgba(15,23,42,.70);
  font-weight: 600;
}

.contact-value{
  font-size: 16px;
  font-weight: 800;
  color:#0f172a;
  letter-spacing: .2px;
}

/* WhatsApp Button */
.btn-wa{
  background: #16a34a !important;
  border: 1px solid rgba(22,163,74,.35) !important;
  color: #fff !important;
  box-shadow: 0 16px 40px rgba(22,163,74,.20);
}

.btn-wa:hover{
  background: #15803d !important;
}

/* =========================
   CONTACT HERO – CENTER FIX
========================= */

.contact-hero{
  padding: 4.5rem 0 3.5rem;
}

.contact-hero-inner{
  display: flex;
  flex-direction: column;
  align-items: center;     /* horizontal center */
  text-align: center;      /* center text */
  max-width: 820px;        /* keeps it premium, not too wide */
  margin: 0 auto;          /* centers container */
}

/* Badge center */
.contact-hero .demo-badge{
  justify-content: center;
  margin-bottom: 14px;
}

/* Title */
.contact-title{
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 10px;
}

/* Subtitle */
.contact-sub{
  font-size: 1.05rem;
  color: rgba(15,23,42,.75);
  max-width: 620px;
}
