/* =========================
   CONTACT SECTION
========================= */
.contact {
  padding: 140px 20px;
  display: flex;
  justify-content: center;
}

/* =========================
   MAIN BOX (GAME CHANGER)
========================= */
.contact-box {
  max-width: 720px;
  width: 100%;

  padding: 60px 40px;
  border-radius: 30px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(0,0,0,0.05);

  box-shadow: 0 30px 100px rgba(0,0,0,0.08);

  text-align: center;
  position: relative;
  overflow: hidden;
}

/* SOFT GLOW */
.contact-box::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79,172,254,0.2), transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
}

/* =========================
   TITLE
========================= */
.contact-title {
  font-size: 42px;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

/* =========================
   SUBTITLE
========================= */
.contact-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* =========================
   TRUST POINTS
========================= */
.contact-proof {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;

  font-size: 14px;
  color: #444;
}

/* =========================
   CTA BUTTON
========================= */
.whatsapp-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 999px;

  background: linear-gradient(135deg, #25D366, #4cff9f);
  color: #fff;

  font-size: 16px;
  font-weight: 500;
  text-decoration: none;

  box-shadow: 0 15px 40px rgba(37,211,102,0.25);

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER */
.whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 25px 60px rgba(37,211,102,0.35);
}

/* SHINE EFFECT */
.whatsapp-btn::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  top: 0;
  left: -120%;
  transition: 0.6s;
}

.whatsapp-btn:hover::before {
  left: 120%;
}

/* =========================
   NOTE
========================= */
.contact-note {
  margin-top: 15px;
  font-size: 13px;
  color: #888;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .contact-box {
    padding: 40px 20px;
  }

  .contact-title {
    font-size: 30px;
  }

  .whatsapp-btn {
    width: 100%;
  }

}