/* ========================= */
/* SECTION */
/* ========================= */
.cara-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A1F44, #102A5C);
  text-align: center;
  color: #fff;
}

/* TITLE */
.cara-title {
  font-size: 36px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #1E90FF, #4DB8FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cara-subtitle {
  color: #C0D6FF;
  margin-bottom: 50px;
}

/* ========================= */
/* GRID */
/* ========================= */
.cara-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* ========================= */
/* CARD */
/* ========================= */
.cara-card {
  background: #163B7A;
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  transition: 0.4s;
  overflow: hidden;
}

/* Glow effect */
.cara-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(77,184,255,0.4), transparent);
  opacity: 0;
  transition: 0.4s;
}

.cara-card:hover::before {
  opacity: 1;
}

/* Hover */
.cara-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(30,144,255,0.4);
}

/* ========================= */
/* NUMBER */
/* ========================= */
.cara-number {
  font-size: 40px;
  font-weight: bold;
  color: #4DB8FF;
  margin-bottom: 10px;
}

/* ========================= */
/* TEXT */
/* ========================= */
.cara-card h3 {
  margin-bottom: 10px;
}

.cara-card p {
  color: #C0D6FF;
  font-size: 14px;
}

/* ========================= */
/* BUTTON */
/* ========================= */
.btn-cara {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1E90FF, #4DB8FF);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  z-index: 10;
  pointer-events: auto !important;
}

/* Hover */
.btn-cara:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(30,144,255,0.6);
}

/* Klik */
.btn-cara:active {
  transform: scale(0.95);
}

/* ========================= */
/* FIX KLIK */
/* ========================= */
.cara-section,
.cara-card,
.cara-card * {
  pointer-events: auto;
}