/* =================================================
   JC MOBILE SERVICE – NEON BLACK GOLD PREMIUM THEME
   ================================================= */

/* ================= ROOT ================= */
:root {
  --gold: #d4af37;
  --gold-light: #f5d76e;
  --gold-glow: rgba(212,175,55,0.6);
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: radial-gradient(circle at top, #111, #000);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================= BANNER ================= */
.banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ================= APP CARD ================= */
.app-card {
  background: linear-gradient(180deg, rgba(22,22,22,0.96), rgba(0,0,0,0.98));
  border-radius: 22px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.28);
  box-shadow: 0 0 26px rgba(212,175,55,0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.app-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 42px rgba(212,175,55,0.55);
}

.app-card img {
  width: 90px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px var(--gold-glow));
}

.app-card h2 {
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold-glow);
  margin-bottom: 8px;
}

.app-card p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 18px;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 700;
  transition: 0.3s;
  box-shadow:
    0 0 16px var(--gold-glow),
    inset 0 0 10px rgba(255,255,255,0.25);
}

.btn:hover {
  transform: scale(1.06);
}

/* VIEW PACKAGE (RED) */
button.btn {
  background: linear-gradient(135deg, #700000, #140000);
  color: #fff;
  border: 1px solid rgba(255,80,80,0.45);
  box-shadow:
    0 0 22px rgba(255,0,0,0.6),
    inset 0 0 10px rgba(255,80,80,0.25);
}

/* OUTLINE */
.btn.outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn.small {
  padding: 7px 16px;
  font-size: 13px;
}

/* ================= PAYMENT ================= */
.payment {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(180deg, #0e0e0e, #000);
}

.payment h2 {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 30px;
  text-shadow: 0 0 12px var(--gold-glow);
}

.payment-box {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.payment-btn {
  width: 300px;
  padding: 24px;
  border-radius: 22px;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.35s;
}

.payment-btn span {
  font-size: 14px;
  margin-top: 6px;
  opacity: 0.9;
}

.payment-btn.toyyibpay {
  background: linear-gradient(135deg, #700000, #140000);
  color: #fff;
  box-shadow: 0 0 32px rgba(255,0,0,0.75);
}

.payment-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #fff;
  box-shadow: 0 0 32px rgba(37,211,102,0.85);
}

.payment-btn.qr {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  box-shadow: 0 0 32px var(--gold-glow);
}

.payment-btn:hover {
  transform: translateY(-6px) scale(1.05);
}

/* ================= CUSTOMER REVIEWS ================= */
.reviews {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(180deg, #0d0d0d, #000);
}

.reviews h2 {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 8px;
  text-shadow: 0 0 12px var(--gold-glow);
}

.review-sub {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 40px;
}

.review-box {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.review-card {
  background: linear-gradient(180deg, rgba(22,22,22,0.96), rgba(0,0,0,0.98));
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(212,175,55,0.28);
  box-shadow: 0 0 22px rgba(212,175,55,0.22);
  transition: 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 38px rgba(212,175,55,0.5);
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 12px;
}

.review-name {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

/* ================= RESELLER & HOURS ================= */
.reseller,
.hours {
  text-align: center;
  padding: 65px 20px;
  background: linear-gradient(180deg, #0b0b0b, #000);
}

.reseller h2,
.hours h2 {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 10px;
  text-shadow: 0 0 10px var(--gold-glow);
}

.reseller p,
.hours p {
  font-size: 15px;
  opacity: 0.85;
}

/* ================= FOOTER ================= */
footer {
  background: #000;
  padding: 22px;
  text-align: center;
  font-size: 14px;
  opacity: 0.85;
}

/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 10px;
}

.modal-box {
  background: linear-gradient(180deg, #141414, #000);
  padding: 26px;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  max-height: 85vh;
  overflow-y: auto;
  border: 1px solid rgba(212,175,55,0.28);
}

.modal-box h2 {
  color: var(--gold);
  text-align: center;
  margin-bottom: 18px;
}

#priceList {
  list-style: none;
}

#priceList li {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

#priceList strong {
  color: var(--gold);
}

/* QR */
.qr-img {
  width: 220px;
  display: block;
  margin: 25px auto;
}

/* ================= FLOATING ================= */
.floating-whatsapp,
.floating-telegram {
  position: fixed;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 999;
}

.floating-whatsapp {
  bottom: 20px;
  background: #25D366;
  box-shadow: 0 0 24px rgba(37,211,102,0.85);
}

.floating-telegram {
  bottom: 90px;
  background: linear-gradient(135deg, #229ED9, #1c88c7);
  box-shadow: 0 0 24px rgba(34,158,217,0.85);
}

/* ================= MOBILE ================= */
@media (max-width: 480px) {
  .btn,
  .payment-btn {
    width: 100%;
  }

  .payment h2 {
    font-size: 18px;
  }

  footer {
    font-size: 13px;
  }

  #priceList li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
