/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;

  min-height: 48px;
  padding: 0 var(--space-md);

  border-radius: var(--radius-md);

  font-size: var(--text-base);
  font-weight: 900;

  cursor: pointer;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(-1px) scale(0.97);
}

/* VARIANTS */

.btn-primary {
  background: var(--green);
  color: #04100d;
  box-shadow: 0 15px 42px rgba(98,255,183,0.25);
}

.btn-primary:hover {
  box-shadow: 0 20px 55px rgba(98,255,183,0.35);
}

.btn-secondary {
  background: rgba(6,20,20,0.7);
  border: 1px solid rgba(64,233,255,0.35);
  color: #e9fffb;
}

.btn-secondary:hover {
  background: rgba(6,20,20,0.85);
}


/* =============================
   ICONS
============================= */

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(98,255,183,0.1);
  color: var(--green);
}


/* =============================
   CARD BASE
============================= */

.card {
  position: relative;
  overflow: hidden;

  padding: var(--space-md);
  border-radius: var(--radius-md);

  border: 1px solid rgba(194,255,232,0.12);

  background:
    linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
    var(--panel);

  box-shadow: 0 20px 60px rgba(0,0,0,0.15);

  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(98,255,183,0.4);
}

/* =============================
   SERVICE CARD
============================= */

.service-card {
  composes: card; /* conceptual (or reuse class in HTML) */

  display: flex;
  flex-direction: column;
  gap: 12px;

  min-height: 220px;

  background: linear-gradient(
    to bottom,
    rgba(7,16,15,0.55),
    rgba(7,16,15,0.75)
  );
}

.service-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.service-card h3 {
  font-size: 1rem;
  color: #b8fff0;
}


/* =============================
   REVIEW CARD
============================= */

.review-card {
  composes: card;

  min-height: 220px;
  opacity: 0;
  transform: translateY(20px);
}

.review-card.show {
  opacity: 1;
  transform: translateY(0);
}


/* =============================
   HERO COMPONENTS
============================= */

.hero-stat {
  composes: card glass;

  flex: 1;
  padding: 12px 14px;
}

.hero-stat:hover {
  transform: translateY(-2px);
}
.badge {
  display: inline-flex;         /* ✅ IMPORTANT */
  flex-direction: column;
  align-items: center;
  min-width: 160px;
  
  padding: 8px 14px;
  border-radius: 999px;

  text-align: center;
  line-height: 1.2;
  min-height: 54px;
  background: rgba(0,255,156,0.08);
  border: 1px solid rgba(0,255,156,0.25);
  color: #bfffe3;
}
.review-badges {

  display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  justify-content: start;
  
  margin-bottom: 18px;  /* ✅ controls space under pills */
}


.badge-top {
  font-weight: 600;
  color: #eafff7;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-bottom {
  font-size: 0.72rem;
  opacity: 0.75;
}
.whatsapp-label {
  position: absolute;
  right: 70px;
  background: #002b22;
  color: #bfffe3;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;

  width: 60px;
  height: 60px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  /* ✅ Better gradient instead of flat colour */
  background: linear-gradient(135deg, #00ff9c, #00c97a);

  /* ✅ Slightly darker icon for crispness */
  color: #003b2f;

  font-size: 26px;
  text-decoration: none;

  /* ✅ Premium layered shadow */
  box-shadow:
    0 10px 25px rgba(0, 255, 156, 0.35),
    0 0 20px rgba(0, 255, 156, 0.25),
    inset 0 0 8px rgba(0, 0, 0, 0.25);

  /* ✅ smooth feel */
  transition: all 0.25s ease;
}



.whatsapp-float i {
  color: #003b2f;

  /* ✅ FORCE GPU rendering */
  transform: translateZ(0);

  /* ✅ smooth edges */
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;

  /* ✅ tiny scale to trigger proper rendering */
  transform: scale(1.01);
}



/* ✅ HOVER = premium interaction */
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.08);

  box-shadow:
    0 15px 35px rgba(0, 255, 156, 0.5),
    0 0 30px rgba(0, 255, 156, 0.35),
    inset 0 0 10px rgba(0, 0, 0, 0.25);
}


/* ✅ ACTIVE click feel */
.whatsapp-float:active {
  transform: scale(0.95);
}
