/* ============================================================
   BASHFLY LIMITED — Premium Website
   Design tokens per Blueprint 11: Emerald primary, Gold secondary,
   8pt spacing grid, radius scale S/M/L/XL, minimal smooth motion.
   ============================================================ */
:root {
  /* Color tokens */
  --emerald: #0e8a4f;
  --emerald-dark: #0a6b3d;
  --emerald-deep: #06482a;
  --emerald-soft: #e6f4ec;
  --gold: #c9a227;
  --gold-dark: #9a7b1e;
  --gold-soft: #f7edcd;
  --bg: #f7faf8;
  --surface: #ffffff;
  --ink: #12241a;
  --muted: #5b6b62;
  --line: #e2ebe5;
  --success: #16a34a;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;

  /* Radius tokens */
  --r-s: 10px;
  --r-m: 16px;
  --r-l: 24px;
  --r-xl: 32px;

  /* Elevation tokens */
  --shadow-1: 0 2px 10px rgba(18, 36, 26, 0.06);
  --shadow-2: 0 12px 32px rgba(18, 36, 26, 0.10);
  --shadow-3: 0 24px 60px rgba(18, 36, 26, 0.14);
  --shadow-gold: 0 10px 30px rgba(201, 162, 39, 0.28);

  /* Type tokens */
  --font-head: "Sora", "Segoe UI", sans-serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}
::selection { background: var(--emerald); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #eef4f0; }
::-webkit-scrollbar-thumb { background: var(--emerald); border-radius: 8px; }

img { max-width: 100%; }

/* ============ TOP CONTACT BAR (every page) ============ */
.topbar {
  background: var(--emerald-deep);
  color: #dcefe4;
  font-size: 12.5px;
  padding: 8px 5vw;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  position: relative; z-index: 60;
}
.topbar-info { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.topbar-info span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-info a { color: #dcefe4; text-decoration: none; }
.topbar-info a:hover { color: var(--gold); }
.topbar-actions { display: flex; gap: 8px; }
.topbar-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600; text-decoration: none;
  padding: 5px 14px; border-radius: 30px;
  transition: transform 0.25s, filter 0.25s;
}
.topbar-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.topbar-btn.wa { background: var(--whatsapp); color: #06331b; }
.topbar-btn.call { background: var(--gold); color: #3d2f05; }
.topbar-btn.mail { background: rgba(255, 255, 255, 0.14); color: #fff; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 5vw;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-logo {
  width: 44px; height: 44px; display: grid; place-items: center;
}
/* self-contained B monogram — no rotate, no fill override, soft branded shadow */
.brand-logo svg, .brand-logo .bmark {
  width: 44px; height: 44px; fill: none; transform: none;
  filter: drop-shadow(0 5px 12px rgba(15, 107, 62, 0.35));
}
.brand-text b {
  font-family: var(--font-head); font-size: 20px; letter-spacing: 0.5px;
  color: var(--ink); display: block; line-height: 1.1;
}
.brand-text b span { color: var(--emerald); }
.brand-text small {
  font-size: 9px; letter-spacing: 3.5px; color: var(--muted);
  text-transform: uppercase; font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 500;
  padding: 9px 15px; border-radius: 30px; transition: background 0.25s, color 0.25s;
}
.nav-links a:hover, .nav-links a.active { background: var(--emerald-soft); color: var(--emerald-dark); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #fff !important; font-weight: 700;
  box-shadow: var(--shadow-2);
}
.nav-links .nav-cta:hover { transform: translateY(-2px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px; z-index: 1001;
}
.hamburger span { width: 25px; height: 2.5px; background: var(--emerald-dark); border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 30px; border-radius: 40px;
  font-family: var(--font-body); font-size: 14.5px; font-weight: 700;
  text-decoration: none; border: 0; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #fff; box-shadow: var(--shadow-2);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff; box-shadow: var(--shadow-gold);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.btn-wa { background: linear-gradient(135deg, var(--whatsapp-dark), var(--whatsapp)); color: #fff; }
.btn-outline {
  background: var(--surface); color: var(--emerald-dark);
  border: 1.5px solid var(--emerald); box-shadow: var(--shadow-1);
}
.btn-outline:hover { background: var(--emerald-soft); }

/* ============ HERO (home) ============ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 400px at 88% 8%, rgba(201, 162, 39, 0.16), transparent 60%),
    radial-gradient(800px 500px at 8% 90%, rgba(14, 138, 79, 0.10), transparent 60%),
    linear-gradient(165deg, #fdfefd 0%, #eef7f1 100%);
  padding: 84px 5vw 96px;
  text-align: center;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }
.hero-inner { position: relative; max-width: 880px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--emerald-dark); font-size: 12.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 9px 20px; border-radius: 30px; box-shadow: var(--shadow-1);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s both;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success); box-shadow: 0 0 10px var(--success);
  animation: blink 1.8s infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5.6vw, 62px);
  line-height: 1.12; font-weight: 800; letter-spacing: -0.5px;
  animation: fadeUp 0.8s 0.22s both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--emerald) 20%, var(--emerald-dark) 80%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .gold {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold) 55%, #e6c65c);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  color: var(--muted); font-size: clamp(15px, 1.9vw, 17.5px); line-height: 1.8;
  max-width: 640px; margin: 20px auto 0;
  animation: fadeUp 0.8s 0.34s both;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px;
  animation: fadeUp 0.8s 0.46s both;
}
.hero-stats {
  display: flex; justify-content: center; gap: clamp(28px, 6vw, 72px);
  margin-top: 58px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.58s both;
}
.stat b { display: block; font-family: var(--font-head); font-size: clamp(24px, 3.4vw, 36px); color: var(--emerald-dark); }
.stat b i { font-style: normal; color: var(--gold); }
.stat span { font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* ============ 3D UMRAH PACKAGES CUBE (home centre) ============ */
.hero-cube-zone { margin-top: 44px; animation: fadeUp 0.8s 0.5s both; }
.hero-cube-title {
  font-family: var(--font-head); font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 800; letter-spacing: 4px; text-transform: uppercase;
  color: var(--emerald-dark); margin-bottom: 34px;
}
.hero-cube-title small {
  display: block; font-family: var(--font-body); font-size: 10.5px;
  letter-spacing: 4px; color: var(--muted); margin-top: 6px; font-weight: 600;
}
.cube-stage { perspective: 1500px; display: grid; place-items: center; }
.cube {
  width: 300px; height: 300px; position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-12deg) rotateY(24deg);
  animation: cubeIdle 11s ease-in-out infinite;
  cursor: grab;
}
.cube:active { cursor: grabbing; }
.cube.dragging { animation: none; transition: none; }
@keyframes cubeIdle {
  0%, 100% { transform: rotateX(-12deg) rotateY(24deg) translateY(0); }
  25% { transform: rotateX(-8deg) rotateY(115deg) translateY(-12px); }
  50% { transform: rotateX(-14deg) rotateY(205deg) translateY(0); }
  75% { transform: rotateX(-8deg) rotateY(295deg) translateY(-12px); }
}
.cube-face {
  position: absolute; width: 300px; height: 300px;
  border: 1.5px solid rgba(201, 162, 39, 0.5);
  border-radius: var(--r-m);
  background: linear-gradient(155deg, #ffffff 0%, #f2faf5 55%, #e8f4ed 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 9px; padding: 28px; text-align: center;
  box-shadow: inset 0 0 50px rgba(14, 138, 79, 0.06);
  backface-visibility: hidden;
}
.cube-face .cf-icon { font-size: 46px; filter: drop-shadow(0 6px 10px rgba(18, 36, 26, 0.15)); }
.cube-face h4 { font-family: var(--font-head); font-size: 23px; color: var(--emerald-dark); }
.cube-face .cf-price { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--ink); }
.cube-face p { font-size: 12.5px; color: var(--muted); line-height: 1.6; max-width: 230px; }
.cf-front  { transform: translateZ(150px); }
.cf-back   { transform: rotateY(180deg) translateZ(150px); }
.cf-right  { transform: rotateY(90deg) translateZ(150px); }
.cf-left   { transform: rotateY(-90deg) translateZ(150px); }
.cf-top    { transform: rotateX(90deg) translateZ(150px); }
.cf-bottom { transform: rotateX(-90deg) translateZ(150px); }
.cf-top, .cf-bottom { background: linear-gradient(155deg, var(--gold-soft), #f3e7c3); }
.cf-top h4, .cf-bottom h4 { color: var(--gold-dark); }
.cube-shadow {
  width: 260px; height: 32px; margin: 48px auto 0; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(14, 138, 79, 0.22), transparent 70%);
  filter: blur(6px);
  animation: shadowPulse 11s ease-in-out infinite;
}
@keyframes shadowPulse { 25%, 75% { transform: scale(0.85); opacity: 0.6; } }
.cube-hint { margin-top: 12px; font-size: 11px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.cube-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
.cube-btns button {
  padding: 12px 22px; border-radius: 40px; cursor: pointer; font-weight: 700;
  background: var(--surface); color: var(--ink); border: 1.5px solid var(--line);
  transition: all 0.3s; font-family: var(--font-body); font-size: 13.5px;
  box-shadow: var(--shadow-1);
}
.cube-btns button:hover, .cube-btns button.active {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #fff; border-color: transparent; transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
@media (max-width: 560px) {
  .cube, .cube-face { width: 240px; height: 240px; }
  .cf-front { transform: translateZ(120px); }
  .cf-back { transform: rotateY(180deg) translateZ(120px); }
  .cf-right { transform: rotateY(90deg) translateZ(120px); }
  .cf-left { transform: rotateY(-90deg) translateZ(120px); }
  .cf-top { transform: rotateX(90deg) translateZ(120px); }
  .cf-bottom { transform: rotateX(-90deg) translateZ(120px); }
  .cube-face .cf-price { font-size: 32px; }
}

/* ============ SECTIONS ============ */
.section { padding: 88px 5vw; }
.section.alt { background: var(--surface); border-block: 1px solid var(--line); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--emerald-dark);
  background: var(--emerald-soft); border: 1px solid #cfe8da;
  padding: 8px 18px; border-radius: 30px; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(26px, 4.2vw, 44px);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.4px;
}
.section-title em { font-style: normal; color: var(--emerald); }
.section-sub { color: var(--muted); margin-top: 14px; line-height: 1.8; font-size: 15.5px; }

/* Reveal (minimal, smooth — Blueprint 11) */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 22px; max-width: 1220px; margin: 0 auto;
}
.service-card {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-l); padding: 30px 26px;
  text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow-1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.35s;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-3); border-color: #cde5d7; }
.service-card:hover::before { transform: scaleX(1); }
.soon-badge {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  box-shadow: var(--shadow-gold);
}
.svc-hero .soon-badge { position: static; display: inline-block; margin-bottom: 16px; font-size: 11.5px; padding: 7px 18px; }
.service-icon {
  width: 58px; height: 58px; border-radius: var(--r-m);
  background: linear-gradient(140deg, var(--emerald-soft), #f2f9f5);
  border: 1px solid #d8ecdf;
  display: grid; place-items: center; font-size: 28px;
}
.service-card h3 { font-family: var(--font-head); font-size: 17.5px; font-weight: 700; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; }
.service-card .go {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: var(--emerald-dark);
}
.service-card .go::after { content: "→"; transition: transform 0.3s; }
.service-card:hover .go::after { transform: translateX(5px); }

/* ============ WHY US ============ */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; max-width: 1150px; margin: 0 auto;
}
.why-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-l);
  padding: 30px 26px; box-shadow: var(--shadow-1);
  transition: transform 0.35s, box-shadow 0.35s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.why-card .ic { font-size: 32px; }
.why-card h4 { font-family: var(--font-head); font-size: 16.5px; margin: 12px 0 8px; }
.why-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ============ SERVICE PAGE ============ */
.svc-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 72px 5vw 76px;
  background:
    radial-gradient(600px 350px at 85% 10%, rgba(201, 162, 39, 0.14), transparent 60%),
    linear-gradient(160deg, var(--emerald-deep), var(--emerald-dark) 55%, var(--emerald));
  color: #fff;
}
.svc-hero .svc-emoji {
  font-size: 58px; display: inline-block; margin-bottom: 16px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.3));
  animation: floatY 4.5s ease-in-out infinite;
}
@keyframes floatY { 50% { transform: translateY(-9px); } }
.svc-hero h1 {
  font-family: var(--font-head); font-size: clamp(30px, 4.8vw, 52px);
  font-weight: 800; letter-spacing: -0.4px;
}
.svc-hero .tagline { color: var(--gold); font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; font-size: 12.5px; margin-top: 12px; }
.svc-hero p.desc { max-width: 640px; margin: 18px auto 0; color: #d7ebdf; line-height: 1.8; font-size: 15.5px; }
.svc-hero .hero-ctas { margin-top: 32px; }
.svc-crumb { font-size: 12.5px; margin-bottom: 22px; }
.svc-crumb a { color: #b9dcc8; text-decoration: none; }
.svc-crumb a:hover { color: var(--gold); }
.svc-crumb b { color: #fff; font-weight: 600; }

/* features */
.feat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; max-width: 1150px; margin: 0 auto;
}

/* booking categories (e.g. Domestic / International flights) */
.cat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px; max-width: 980px; margin: 0 auto;
}
.cat-card {
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: var(--r-l); padding: 38px 32px; text-align: center;
  box-shadow: var(--shadow-1); position: relative; overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  display: flex; flex-direction: column; gap: 16px;
}
.cat-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-3); border-color: var(--emerald); }
.cat-icon { font-size: 52px; filter: drop-shadow(0 8px 14px rgba(18, 36, 26, 0.15)); }
.cat-card h3 { font-family: var(--font-head); font-size: 21px; font-weight: 800; }
.cat-card ul { list-style: none; text-align: left; flex: 1; display: grid; gap: 0; }
.cat-card ul li {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 11px 0; border-bottom: 1px dashed var(--line);
  font-size: 13.5px; color: var(--muted); line-height: 1.6;
}
.cat-card ul li:last-child { border: 0; }
.cat-card ul li::before {
  content: "✈"; flex-shrink: 0; color: var(--emerald); font-size: 14px;
}
.cat-card .btn { width: 100%; }

/* requirements */
.req-wrap {
  max-width: 860px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-l); padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-1);
}
.req-list { list-style: none; display: grid; gap: 0; }
.req-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 15px 0; border-bottom: 1px dashed var(--line);
  font-size: 14.5px; color: var(--ink); line-height: 1.6;
}
.req-list li:last-child { border: 0; }
.req-list li::before {
  content: "✓"; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--emerald-soft); color: var(--emerald-dark);
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
}

/* processing time */
.ptime {
  max-width: 860px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, var(--gold-soft), #fdf8e9);
  border: 1.5px dashed var(--gold); border-radius: var(--r-l);
  padding: 34px 28px;
}
.ptime .ic { font-size: 34px; }
.ptime h3 { font-family: var(--font-head); font-size: 15px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); margin: 10px 0 6px; }
.ptime b { font-family: var(--font-head); font-size: clamp(20px, 3vw, 28px); color: var(--ink); }
.ptime p { color: var(--muted); font-size: 13.5px; margin-top: 8px; }

/* pricing */
.price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px; max-width: 1050px; margin: 0 auto;
}
.price-grid.single { grid-template-columns: minmax(250px, 420px); justify-content: center; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-l);
  padding: 36px 30px; text-align: center; box-shadow: var(--shadow-1);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  position: relative; overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-3); border-color: var(--emerald); }
.price-card .tier { font-family: var(--font-head); font-size: 15px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--emerald-dark); font-weight: 700; }
.price-card .amount { font-family: var(--font-head); font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; margin: 14px 0 6px; color: var(--ink); }
.price-card .note { font-size: 12.5px; color: var(--muted); line-height: 1.6; min-height: 34px; }
.price-card .btn { width: 100%; margin-top: 22px; }
.price-disclaimer { text-align: center; color: var(--muted); font-size: 12.5px; margin-top: 26px; }

/* FAQ */
.faq-wrap { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-wrap details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-m); padding: 0; overflow: hidden;
  box-shadow: var(--shadow-1); transition: border-color 0.3s;
}
.faq-wrap details[open] { border-color: var(--emerald); }
.faq-wrap summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 19px 22px; font-weight: 600; font-size: 14.5px; font-family: var(--font-head);
}
.faq-wrap summary::-webkit-details-marker { display: none; }
.faq-wrap summary::after {
  content: "+"; font-size: 22px; color: var(--emerald); font-weight: 400;
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-wrap details[open] summary::after { transform: rotate(45deg); }
.faq-wrap .faq-a { padding: 0 22px 20px; color: var(--muted); font-size: 13.8px; line-height: 1.75; }

/* apply CTA band */
.apply-band {
  max-width: 1100px; margin: 0 auto; text-align: center;
  background: linear-gradient(150deg, var(--emerald-deep), var(--emerald-dark));
  border-radius: var(--r-xl); padding: clamp(40px, 6vw, 64px);
  color: #fff; position: relative; overflow: hidden;
}
.apply-band::before {
  content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  border: 1.5px dashed rgba(201, 162, 39, 0.3); top: -190px; right: -140px;
  animation: slowSpin 45s linear infinite;
}
.apply-band h2 { font-family: var(--font-head); font-size: clamp(24px, 3.8vw, 38px); font-weight: 800; }
.apply-band p { color: #cfe8da; margin: 14px auto 28px; max-width: 520px; line-height: 1.8; font-size: 15px; }

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 30px;
  max-width: 1150px; margin: 0 auto; align-items: start;
}
.contact-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-l);
  padding: clamp(26px, 3.5vw, 40px); box-shadow: var(--shadow-1);
}
.contact-card h3 { font-family: var(--font-head); font-size: 20px; margin-bottom: 20px; }
.c-row { display: flex; gap: 15px; padding: 15px 0; border-bottom: 1px dashed var(--line); align-items: flex-start; }
.c-row:last-of-type { border: 0; }
.c-row .ic {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--r-s);
  background: var(--emerald-soft); display: grid; place-items: center; font-size: 20px;
}
.c-row h5 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.c-row p, .c-row a { font-size: 14.5px; color: var(--ink); text-decoration: none; line-height: 1.65; font-weight: 500; }
.c-row a:hover { color: var(--emerald-dark); }
.contact-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.contact-actions .btn { padding: 12px 22px; font-size: 13.5px; }

.hours-table { width: 100%; font-size: 14px; border-collapse: collapse; }
.hours-table td { padding: 10px 0; border-bottom: 1px dashed var(--line); color: var(--muted); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.hours-table tr:last-child td { border: 0; }

.socials { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--emerald-soft); border: 1px solid #d8ecdf;
  display: grid; place-items: center; font-size: 18px; text-decoration: none;
  transition: transform 0.25s, background 0.25s;
}
.socials a:hover { transform: translateY(-3px); background: var(--gold-soft); }

/* contact form */
.cform { display: grid; gap: 16px; }
.cform .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform label { font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 7px; }
.cform input, .cform select, .cform textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--r-s);
  border: 1.5px solid var(--line); background: #fbfdfc;
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.cform input:focus, .cform select:focus, .cform textarea:focus {
  outline: 0; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(14, 138, 79, 0.12);
}
.cform textarea { min-height: 120px; resize: vertical; }
.map-wrap {
  max-width: 1150px; margin: 30px auto 0;
  border-radius: var(--r-l); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-2);
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ============ FOOTER ============ */
.footer {
  background: var(--emerald-deep); color: #cfe4d7;
  padding: 64px 5vw 28px; margin-top: 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px;
  max-width: 1220px; margin: 0 auto 44px;
}
.footer .brand-text b { color: #fff; }
.footer .brand-text small { color: #8fb8a1; }
.footer p { font-size: 13.5px; line-height: 1.8; color: #a9cbb8; margin-top: 14px; }
.footer h5 { font-family: var(--font-head); color: #fff; font-size: 14.5px; letter-spacing: 1px; margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { color: #a9cbb8; text-decoration: none; font-size: 13.5px; transition: color 0.25s; }
.footer ul a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 10px; font-size: 13.5px; line-height: 1.6; color: #a9cbb8; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px; text-align: center; font-size: 12.5px; color: #8fb8a1;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ============ WHATSAPP FLOAT ============ */
.wa-fab {
  position: fixed; left: 24px; bottom: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--whatsapp-dark), var(--whatsapp));
  display: grid; place-items: center; border: 0; cursor: pointer;
  box-shadow: 0 12px 32px rgba(18, 140, 74, 0.4);
  transition: transform 0.3s;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 32px; height: 32px; fill: #fff; }
.wa-fab .ring {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waRing 2s ease-out infinite;
}
@keyframes waRing { to { transform: scale(1.5); opacity: 0; } }

.wa-popup {
  position: fixed; left: 24px; bottom: 98px; z-index: 89;
  width: min(340px, calc(100vw - 36px));
  background: var(--surface); border-radius: var(--r-l); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-3);
  transform: translateY(20px) scale(0.95); opacity: 0; pointer-events: none;
  transform-origin: bottom left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
}
.wa-popup.open { transform: none; opacity: 1; pointer-events: auto; }
.wa-popup .head {
  background: linear-gradient(135deg, var(--emerald-deep), var(--whatsapp-dark));
  color: #fff; padding: 18px 20px; display: flex; align-items: center; gap: 12px;
}
.wa-popup .head .av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(140deg, var(--gold), var(--gold-dark));
  display: grid; place-items: center; font-family: var(--font-head);
  font-weight: 800; color: #fff; font-size: 17px;
}
.wa-popup .head h5 { font-size: 14.5px; }
.wa-popup .head p { font-size: 11.5px; color: #cfe8da; margin-top: 2px; }
.wa-popup .head button {
  margin-left: auto; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 0; color: #fff; cursor: pointer;
}
.wa-popup .body { padding: 18px; background: #f2f7f4; }
.wa-popup .msg {
  background: #fff; border-radius: 4px 14px 14px 14px; padding: 13px 15px;
  font-size: 13px; line-height: 1.65; box-shadow: var(--shadow-1);
}
.wa-popup .msg small { display: block; color: var(--emerald-dark); font-weight: 700; margin-bottom: 4px; font-size: 11px; }
.wa-popup .foot { padding: 14px 18px 18px; background: #f2f7f4; }
.wa-popup .foot .btn { width: 100%; padding: 13px; font-size: 13.5px; }

/* ============ YOUTUBE FLOAT (left side — flight page) ============ */
.yt-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #b31217, #ff0000);
  display: grid; place-items: center; border: 0; cursor: pointer;
  box-shadow: 0 12px 32px rgba(255, 0, 0, 0.35);
  transition: transform 0.3s;
}
.yt-fab:hover { transform: scale(1.08); }
.yt-fab svg { width: 30px; height: 30px; fill: #fff; }
.yt-fab .ring {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid rgba(255, 0, 0, 0.45);
  animation: waRing 2s ease-out infinite;
}
.yt-popup {
  position: fixed; right: 24px; bottom: 98px; z-index: 89;
  width: min(380px, calc(100vw - 36px));
  background: var(--surface); border-radius: var(--r-l); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-3);
  transform: translateY(20px) scale(0.95); opacity: 0; pointer-events: none;
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
}
.yt-popup.open { transform: none; opacity: 1; pointer-events: auto; }
.yt-popup .head {
  background: linear-gradient(135deg, #7a0c0f, #b31217);
  color: #fff; padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
.yt-popup .head .av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: #fff; display: grid; place-items: center;
}
.yt-popup .head .av svg { width: 22px; height: 22px; fill: #ff0000; }
.yt-popup .head h5 { font-size: 14.5px; }
.yt-popup .head p { font-size: 11.5px; color: #f3c9c9; margin-top: 2px; }
.yt-popup .head button {
  margin-left: auto; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 0; color: #fff; cursor: pointer;
}
.yt-popup .video {
  aspect-ratio: 16 / 9; background: #0d0d0d; position: relative;
  display: grid; place-items: center;
}
.yt-popup .video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-popup .video .placeholder { text-align: center; color: #bbb; padding: 20px; }
.yt-popup .video .placeholder .ic { font-size: 40px; display: block; margin-bottom: 10px; }
.yt-popup .video .placeholder p { font-size: 12.5px; line-height: 1.6; }
.yt-popup .foot { padding: 14px 18px; }
.yt-popup .foot .btn {
  width: 100%; padding: 12px; font-size: 13.5px;
  background: linear-gradient(135deg, #b31217, #ff0000); color: #fff;
}
@media (max-width: 560px) {
  .yt-fab { right: 16px; bottom: 16px; }
  .yt-popup { right: 12px; bottom: 88px; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .topbar { justify-content: center; }
  .topbar-info span.addr { display: none; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center; gap: 16px;
    transform: translateX(100%); transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 18px; }
  .cform .frow { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-info { display: none; }
  .wa-fab { left: 16px; bottom: 16px; }
  .wa-popup { left: 12px; bottom: 88px; }
}

/* ============================================================
   SUPER APP (Blueprint 12) — minimal home, 4 category cubes,
   themed category pages, floating category switcher.
   ============================================================ */

/* ---- Minimal home hero ---- */
.hero.minimal { padding: 72px 5vw 110px; }
.hero.minimal p.hero-tag {
  color: var(--muted); font-size: clamp(15px, 2vw, 18px);
  margin-top: 16px; animation: fadeUp 0.8s 0.34s both;
}

/* ---- Category cubes ---- */
.cubes-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px; max-width: 1120px; margin: 56px auto 0;
  perspective: 1600px;
}
.cat-cube { text-decoration: none; display: block; animation: fadeUp 0.8s both; }
.cat-cube:nth-child(1) { animation-delay: 0.40s; }
.cat-cube:nth-child(2) { animation-delay: 0.52s; }
.cat-cube:nth-child(3) { animation-delay: 0.64s; }
.cat-cube:nth-child(4) { animation-delay: 0.76s; }
.cc-inner {
  position: relative; border-radius: 26px; padding: 40px 26px 34px;
  min-height: 250px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; text-align: center;
  background: linear-gradient(150deg, var(--cc1), var(--cc2));
  box-shadow: 0 24px 50px var(--ccs), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s;
  animation: cubeFloat 6s ease-in-out infinite;
  overflow: hidden;
}
.cat-cube:nth-child(2) .cc-inner { animation-delay: 1.2s; }
.cat-cube:nth-child(3) .cc-inner { animation-delay: 2.4s; }
.cat-cube:nth-child(4) .cc-inner { animation-delay: 3.6s; }
@keyframes cubeFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.015); }
}
.cc-inner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(220px 120px at 20% 0%, rgba(255, 255, 255, 0.30), transparent 60%),
    radial-gradient(200px 140px at 90% 110%, rgba(255, 255, 255, 0.12), transparent 60%);
  pointer-events: none;
}
.cc-inner::after {
  content: ""; position: absolute; top: -60%; left: -80%;
  width: 60%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg); opacity: 0;
  transition: opacity 0.3s;
}
.cat-cube:hover .cc-inner {
  animation-play-state: paused;
  transform: translateY(-14px) rotateX(7deg) rotateY(-7deg) scale(1.04);
  box-shadow: 0 40px 80px var(--ccs), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.cat-cube:hover .cc-inner::after { opacity: 1; animation: ccShine 1.2s ease; }
.cat-cube:active .cc-inner { transform: translateY(-6px) scale(0.98); transition-duration: 0.15s; }
@keyframes ccShine { to { left: 140%; } }
.cc-icon {
  font-size: 54px; line-height: 1; color: #fff;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.30));
  animation: ccBreathe 4s ease-in-out infinite;
}
.cc-icon svg { width: 78px; height: 52px; display: block; }

/* mini network chips (eye-catcher under Data & Bills) */
.cc-mini { display: flex; gap: 7px; justify-content: center; align-items: center; margin: 2px 0 4px; flex-wrap: wrap; }
.cc-chip {
  background: #fff; border-radius: 9px; padding: 3px 6px;
  display: inline-flex; align-items: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s;
}
.cc-chip svg { height: 14px; width: auto; display: block; }
.cat-cube:hover .cc-chip { transform: translateY(-2px); }
.cat-hero .cc-mini { margin-top: 16px; }
.cat-hero .cc-chip { padding: 5px 9px; border-radius: 12px; }
.cat-hero .cc-chip svg { height: 19px; }
.cat-hero .ch-emoji svg { width: 92px; height: 60px; display: block; color: #fff; }
.cs-ic svg { height: 17px; width: 26px; display: block; margin: 0 auto; }
@keyframes ccBreathe { 50% { transform: scale(1.08); } }
.cc-inner h3 {
  font-family: var(--font-head); font-size: 21px; font-weight: 800;
  color: #fff; letter-spacing: 0.3px;
}
.cc-inner p { font-size: 12.5px; color: rgba(255, 255, 255, 0.85); line-height: 1.55; }
.cc-go {
  margin-top: 6px; font-size: 12px; font-weight: 700; color: #fff;
  background: rgba(255, 255, 255, 0.18); border: 1px solid rgba(255, 255, 255, 0.30);
  padding: 7px 18px; border-radius: 30px; backdrop-filter: blur(6px);
  transition: background 0.3s, transform 0.3s;
}
.cat-cube:hover .cc-go { background: rgba(255, 255, 255, 0.30); transform: translateX(3px); }

/* cube color themes */
.cube-travel   { --cc1: #12a35f; --cc2: #06482a; --ccs: rgba(10, 107, 61, 0.35); }
.cube-data     { --cc1: #8b5cf6; --cc2: #3b1687; --ccs: rgba(91, 33, 182, 0.35); }
.cube-esim     { --cc1: #0ea5e9; --cc2: #084c78; --ccs: rgba(3, 105, 161, 0.35); }
.cube-exchange { --cc1: #64748b; --cc2: #111827; --ccs: rgba(51, 65, 85, 0.40); }

/* ---- Category page themes ---- */
.theme-travel   { --cat: #0e8a4f; --cat-dark: #06482a; --cat-soft: #e6f4ec; }
.theme-data     { --cat: #7c3aed; --cat-dark: #351173; --cat-soft: #f1eafd; }
.theme-esim     { --cat: #0284c7; --cat-dark: #063f5f; --cat-soft: #e5f4fc; }
.theme-exchange { --cat: #475569; --cat-dark: #0f172a; --cat-soft: #eef1f5; }

/* ---- Category hero ---- */
.cat-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 76px 5vw 84px; color: #fff;
  background:
    radial-gradient(650px 380px at 85% 8%, rgba(255, 255, 255, 0.14), transparent 60%),
    radial-gradient(500px 300px at 10% 95%, rgba(0, 0, 0, 0.25), transparent 65%),
    linear-gradient(155deg, var(--cat), var(--cat-dark));
}
.cat-hero .ch-emoji {
  font-size: 62px; display: inline-block; margin-bottom: 16px;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.35));
  animation: floatY 4.5s ease-in-out infinite;
}
.cat-hero h1 {
  font-family: var(--font-head); font-size: clamp(32px, 5vw, 56px);
  font-weight: 800; letter-spacing: -0.5px;
  animation: fadeUp 0.7s 0.1s both;
}
.cat-hero .ch-tag {
  margin-top: 12px; font-size: 12.5px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.85);
  animation: fadeUp 0.7s 0.2s both;
}
.cat-hero p.ch-desc {
  max-width: 620px; margin: 18px auto 0; line-height: 1.8;
  color: rgba(255, 255, 255, 0.88); font-size: 15.5px;
  animation: fadeUp 0.7s 0.3s both;
}
.cat-hero .hero-ctas { margin-top: 32px; animation: fadeUp 0.7s 0.4s both; }
.cat-hero .btn-glass {
  background: rgba(255, 255, 255, 0.16); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35); backdrop-filter: blur(8px);
}
.cat-hero .btn-glass:hover { background: rgba(255, 255, 255, 0.28); }

/* ---- App-style quick action tiles ---- */
.app-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 18px; max-width: 1120px; margin: 0 auto;
}
.app-tile {
  position: relative; display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-align: center; text-decoration: none;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 22px; padding: 28px 16px 24px;
  box-shadow: var(--shadow-1); color: var(--ink);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.35s;
}
.app-tile:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: var(--shadow-3); border-color: var(--cat, var(--emerald));
}
.app-tile:active { transform: translateY(-2px) scale(0.98); }
.app-tile .at-icon {
  width: 66px; height: 66px; border-radius: 20px; font-size: 34px;
  display: grid; place-items: center;
  background: var(--cat-soft, var(--emerald-soft));
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
  transition: transform 0.35s, box-shadow 0.35s;
}
.app-tile:hover .at-icon { transform: scale(1.12) rotate(-4deg); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16); }
.at-icon.logo { background: #fff; padding: 9px; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14); }
.at-icon.logo svg { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 2px 5px rgba(18, 36, 26, 0.18)); }
.app-tile b { font-size: 13.5px; font-weight: 700; font-family: var(--font-head); }
.app-tile small { font-size: 11px; color: var(--muted); line-height: 1.45; }
.at-soon {
  position: absolute; top: 10px; right: 10px;
  font-size: 8.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #fff;
  padding: 3px 9px; border-radius: 16px;
}

/* ---- Live data plans overlay ---- */
.plans-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: grid; place-items: end center;
}
.plans-overlay[hidden] { display: none; }
.plans-sheet {
  width: min(560px, 100vw); max-height: 84vh;
  background: #fff; border-radius: 26px 26px 0 0;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 -20px 60px rgba(15, 23, 42, 0.35);
  animation: sheetUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes sheetUp { from { transform: translateY(40px); opacity: 0.4; } }
@media (min-width: 700px) {
  .plans-overlay { place-items: center; }
  .plans-sheet { border-radius: 26px; }
}
.plans-head {
  display: flex; align-items: center; gap: 13px;
  padding: 18px 20px; border-bottom: 1px solid #eef1f6;
}
.plans-logo svg { height: 32px; width: auto; display: block; }
.plans-title h4 { font-family: var(--font-head); font-size: 17px; }
.plans-title small { font-size: 11.5px; color: #8a94a6; }
.plans-close {
  margin-left: auto; width: 32px; height: 32px; border-radius: 50%;
  border: 0; background: #f1f4f8; cursor: pointer; font-size: 15px; color: #33415c;
}
.plans-tabs {
  display: flex; gap: 8px; padding: 14px 20px 6px;
  overflow-x: auto; scrollbar-width: none; flex-shrink: 0;
}
.plans-tabs::-webkit-scrollbar { display: none; }
.plans-tabs button {
  flex-shrink: 0; padding: 9px 18px; border-radius: 30px; cursor: pointer;
  border: 1.6px solid #111; background: #fff; color: #111;
  font-family: var(--font-body); font-size: 12px; font-weight: 800; letter-spacing: 0.8px;
  transition: background 0.2s, color 0.2s;
}
.plans-tabs button.active { background: #111; color: #fff; }
.plans-list {
  overflow-y: auto; padding: 12px 20px 24px;
  display: grid; gap: 10px; align-content: start;
}
.plan-row {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  border: 1.6px solid #3b62d8; border-radius: 14px;
  padding: 15px 16px; text-decoration: none; color: #111;
  transition: background 0.2s, transform 0.2s;
}
.plan-row:hover { background: #f4f7ff; transform: translateY(-1px); }
.plan-row .pr-name { font-size: 14px; font-weight: 700; line-height: 1.35; }
.plan-row b { font-family: var(--font-head); font-size: 15.5px; white-space: nowrap; }
.plans-loading { text-align: center; color: #8a94a6; font-size: 13.5px; padding: 26px 0; }

/* ---- Back arrow (within-category) ---- */
.back-fab {
  position: fixed; left: 16px; top: 108px; z-index: 80;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.94); border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  display: grid; place-items: center; cursor: pointer;
  font-size: 20px; color: var(--ink); line-height: 1;
  box-shadow: 0 8px 24px rgba(18, 36, 26, 0.14);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.back-fab:hover { transform: translateX(-3px); background: #fff; box-shadow: 0 12px 30px rgba(18, 36, 26, 0.20); }
@media (max-width: 560px) { .back-fab { top: 96px; left: 12px; width: 40px; height: 40px; font-size: 18px; } }

/* ---- Floating category switcher ---- */
.cat-switch {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 95; display: flex; gap: 4px; align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line); border-radius: 40px;
  padding: 7px 10px; box-shadow: 0 18px 50px rgba(18, 36, 26, 0.20);
}
.cat-switch a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  text-decoration: none; color: var(--muted);
  font-size: 9px; font-weight: 700; letter-spacing: 0.4px;
  padding: 7px 13px; border-radius: 26px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.cat-switch a .cs-ic { font-size: 19px; line-height: 1; }
.cat-switch a:hover { transform: translateY(-2px); color: var(--ink); }
.cat-switch a.active { background: var(--cat, var(--emerald)); color: #fff; }
.has-switch .wa-fab { bottom: 90px; }
.has-switch .wa-popup { bottom: 162px; }
.has-switch .yt-fab { bottom: 90px; }
.has-switch .yt-popup { bottom: 162px; }
.has-switch .footer { padding-bottom: 96px; }

@media (max-width: 900px) {
  .cubes-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 480px) {
  .cubes-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cc-inner { min-height: 205px; padding: 28px 14px 24px; }
  .cc-icon { font-size: 44px; }
  .cc-inner h3 { font-size: 17px; }
  .cc-inner p { font-size: 11px; }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-switch { bottom: 12px; padding: 6px 6px; }
  .cat-switch a { padding: 6px 9px; font-size: 8px; }
  .has-switch .wa-fab, .has-switch .yt-fab { bottom: 84px; }
}


/* ============================================================
   EXCHANGE — fintech wallet style (owner reference screenshots)
   Light grey, balance hero, circular actions, accounts list.
   ============================================================ */
.theme-exchange.wallet-page { background: #eef0f4; }
.wallet-hero {
  text-align: center; padding: 64px 5vw 46px;
  background: linear-gradient(180deg, #f6f8fb 0%, #eef0f4 100%);
}
.wh-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #e3e7ee; border-radius: 30px;
  padding: 9px 20px; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: #6b7280; text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  animation: fadeUp 0.7s 0.05s both;
}
.wh-amount {
  font-family: var(--font-head); font-weight: 800; color: #0f172a;
  font-size: clamp(52px, 9vw, 76px); margin-top: 22px; line-height: 1;
  animation: fadeUp 0.7s 0.15s both;
}
.wh-amount small { font-size: 0.45em; font-weight: 800; }
.wh-amount .eye {
  display: inline-grid; place-items: center; vertical-align: middle;
  width: 34px; height: 34px; margin-left: 10px; border-radius: 50%;
  border: 1.5px solid #c7d2e2; font-size: 15px; background: #fff;
}
.wh-note { margin-top: 12px; font-size: 12.5px; color: #8a94a6; letter-spacing: 0.4px; animation: fadeUp 0.7s 0.22s both; }
.wh-actions {
  display: flex; justify-content: center; gap: clamp(26px, 6vw, 52px);
  margin-top: 34px; animation: fadeUp 0.7s 0.3s both;
}
.wh-act { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.wh-act .circ {
  width: 66px; height: 66px; border-radius: 50%;
  border: 1.5px solid #c7d2e2; background: #fff;
  display: grid; place-items: center; font-size: 24px; color: #0f172a;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.wh-act:hover .circ { transform: translateY(-4px) scale(1.05); border-color: #475569; box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12); }
.wh-act span { font-size: 13px; font-weight: 600; color: #33415c; }

/* account cards (US Dollars / USDC / USDT / Euro) */
.acct-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px; max-width: 980px; margin: 0 auto;
}
.acct-card {
  background: #f7f9fb; border: 1px solid #e6eaf1; border-radius: 22px;
  padding: 24px 22px; text-decoration: none; color: #0f172a;
  display: flex; flex-direction: column; gap: 26px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}
.acct-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10); background: #fff; }
.acct-top { display: flex; align-items: center; gap: 12px; }
.acct-top b { font-size: 16px; font-family: var(--font-head); display: block; }
.acct-top small { font-size: 11px; color: #8a94a6; font-weight: 700; letter-spacing: 0.6px; }
.acct-amt { font-family: var(--font-head); font-size: 30px; font-weight: 800; }
.acct-sub { font-size: 12px; color: #8a94a6; display: flex; align-items: center; gap: 7px; margin-top: -16px; }

/* coin / flag chips */
.coin {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 19px; font-weight: 800; color: #fff;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}
.coin.flag { font-size: 24px; background: #fff; border: 1px solid #e6eaf1; }
.coin.usdc { background: #2775ca; }
.coin.usdt { background: #26a17b; }

/* my accounts list */
.acct-list {
  max-width: 680px; margin: 0 auto; background: #fff;
  border: 1px solid #e6eaf1; border-radius: 26px; overflow: hidden;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}
.al-row {
  display: flex; align-items: center; gap: 15px;
  padding: 17px 24px; text-decoration: none; color: #0f172a;
  border-bottom: 1px solid #eef1f6;
  transition: background 0.25s;
}
.al-row:last-child { border-bottom: 0; }
.al-row:hover { background: #f6f8fb; }
.al-row .al-name { flex: 1; }
.al-row .al-name b { display: block; font-size: 15px; font-weight: 700; }
.al-row .al-name small { font-size: 12.5px; color: #8a94a6; }
.al-row .chev { color: #b6bfce; font-size: 20px; transition: transform 0.25s; }
.al-row:hover .chev { transform: translateX(4px); color: #475569; }

/* promo banner */
.wh-banner {
  max-width: 980px; margin: 34px auto 0;
  background: linear-gradient(120deg, #7a1041, #a3134f);
  border-radius: 22px; padding: 26px 30px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 18px 40px rgba(122, 16, 65, 0.30);
}
.wh-banner p { font-size: 15px; font-weight: 600; line-height: 1.6; max-width: 480px; }
.wh-banner .btn { background: #fff; color: #7a1041; padding: 12px 24px; font-size: 13.5px; }

.wallet-page .section-title { color: #0f172a; }
@media (max-width: 560px) {
  .acct-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .acct-card { padding: 18px 16px; gap: 20px; }
  .acct-amt { font-size: 24px; }
}


/* ============================================================
   BASHFLY DATA APP — wallet strip, sheets, PIN pad, slip (CR-004)
   ============================================================ */
.bf-strip {
  max-width: 1120px; margin: 26px auto 0; padding: 22px 26px;
  background: #fff; border: 1px solid #eef2f7;
  border-radius: 24px; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}
.bfs-left b { font-family: var(--font-head); font-size: 17px; display: block; color: var(--ink); }
.bfs-left small { font-size: 10px; letter-spacing: 2.5px; color: #8a94a6; font-weight: 700; }
.bfs-bal { font-family: var(--font-head); font-size: clamp(26px, 4vw, 34px); font-weight: 800; color: var(--ink); }
.bfs-actions { display: flex; gap: 9px; align-items: center; flex-wrap: wrap; }
.bfs-actions .btn { padding: 11px 18px; font-size: 13px; }
.bfs-actions .btn-outline { background: #f4f7fb; color: var(--ink); border-color: #e3e8f0; }
.bfs-mini {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid #e3e8f0;
  background: #f4f7fb; color: #33415c; cursor: pointer; font-size: 15px;
}
.bfs-mini:hover { background: #e9eef5; }
html[data-theme="dark"] .bf-strip { background: #16202b; border-color: #24313d; color: #e6eef5; }
html[data-theme="dark"] .bfs-left b, html[data-theme="dark"] .bfs-bal { color: #e6eef5; }
html[data-theme="dark"] .bfs-mini, html[data-theme="dark"] .bfs-actions .btn-outline { background: #0f1728; border-color: #2a3a57; color: #e6eef5; }

/* sheets */
.bf-sheet { max-width: 480px; }
.bf-body { padding: 18px 22px 26px; overflow-y: auto; }
.bf-body label { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #8a94a6; margin: 14px 0 6px; }
.bf-body input {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid #dde3ec;
  font-family: var(--font-body); font-size: 15px; background: #fbfcfe;
}
.bf-body input:focus { outline: 0; border-color: var(--cat, #7c3aed); box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.14); }
.bf-full { width: 100%; margin-top: 20px; }
.bf-center { text-align: center; }
.bf-note { font-size: 12px; color: #8a94a6; line-height: 1.6; margin-top: 10px; }
.bf-tabs { display: flex; gap: 8px; margin-bottom: 6px; }
.bf-tabs button {
  flex: 1; padding: 11px; border-radius: 30px; border: 1.6px solid #111; background: #fff;
  font-weight: 800; font-size: 12px; letter-spacing: 1px; cursor: pointer;
}
.bf-tabs button.on { background: #111; color: #fff; }

/* confirm rows */
.bf-crow {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px dashed #e6eaf1; font-size: 14px;
}
.bf-crow span { color: #8a94a6; }
.bf-crow b { color: #2d1b69; text-align: right; }

/* PIN pad */
.bf-pin { display: flex; gap: 14px; justify-content: center; margin: 18px 0 10px; }
.bf-pin i {
  width: 16px; height: 16px; border-radius: 50%; border: 2px solid #c7d2e2; display: inline-block;
}
.bf-pin i.on { background: var(--cat, #7c3aed); border-color: var(--cat, #7c3aed); }
.bf-pad {
  display: grid; grid-template-columns: repeat(3, 76px); gap: 14px; justify-content: center; margin-top: 14px;
}
.bf-pad button {
  width: 76px; height: 76px; border-radius: 50%; border: 0; background: #f0f2f6;
  font-size: 24px; font-weight: 700; cursor: pointer; font-family: var(--font-body);
  transition: transform 0.15s, background 0.15s;
}
.bf-pad button:active { transform: scale(0.92); background: #e2e6ee; }

/* spinner */
.bf-spin {
  width: 46px; height: 46px; margin: 26px auto 10px; border-radius: 50%;
  border: 4px solid #ece7fb; border-top-color: var(--cat, #7c3aed);
  animation: bfspin 0.9s linear infinite;
}
@keyframes bfspin { to { transform: rotate(360deg); } }

/* slip */
.bf-check {
  width: 64px; height: 64px; margin: 18px auto 8px; border-radius: 50%;
  background: #16a34a; color: #fff; font-size: 32px; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.35);
}
.bf-slip h3 { font-family: var(--font-head); margin-bottom: 12px; }
.bf-slipcard {
  text-align: left; background: #fbfcfe; border: 1.5px dashed #c7d2e2;
  border-radius: 16px; padding: 8px 18px 0; margin-top: 8px;
}
.bf-ref { font-size: 12px; word-break: break-all; }
.bf-slipfoot { text-align: center; font-size: 10.5px; color: #8a94a6; letter-spacing: 1px; padding: 12px 0; }
.bf-btnrow { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }

/* fund */
.bf-acct { text-align: center; padding: 8px 0; }
.bf-acct small { color: #8a94a6; font-size: 12px; letter-spacing: 1px; }
.bf-acct-no {
  font-family: var(--font-head); font-size: clamp(30px, 7vw, 40px); font-weight: 800;
  letter-spacing: 3px; margin: 8px 0; color: #2d1b69;
}
html[data-theme="dark"] .bf-acct-no { color: #ffffff; }
html[data-theme="dark"] .bf-acct small { color: #aab6c9; }

/* history */
.bf-hrow {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid #eef1f6; font-size: 14px;
}
.bf-hrow small { display: block; color: #8a94a6; font-size: 11.5px; }

/* toast */
.bf-toast {
  position: fixed; top: -80px; left: 50%; transform: translateX(-50%);
  z-index: 400; max-width: min(480px, 92vw);
  padding: 14px 22px; border-radius: 14px; color: #fff; font-size: 13.5px; font-weight: 600;
  transition: top 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.30); text-align: center;
}
.bf-toast.show { top: 18px; }
.bf-toast.err { background: #7a1024; }
.bf-toast.ok { background: #0e7a41; }

@media (max-width: 560px) {
  .bf-pad { grid-template-columns: repeat(3, 68px); gap: 11px; }
  .bf-pad button { width: 68px; height: 68px; font-size: 21px; }
  .bf-strip { padding: 18px; }
}


/* ---- App lock, notifications bell ---- */
.bf-lock {
  position: fixed; inset: 0; z-index: 500;
  background: linear-gradient(160deg, #f6f8fb, #eceef4);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.bf-lock-card {
  width: min(400px, 100%); text-align: center;
  background: #fff; border-radius: 28px; padding: 36px 28px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.16);
}
.bf-lock-card h3 { font-family: var(--font-head); margin-bottom: 4px; }
.bf-lock-out {
  margin-top: 18px; background: none; border: 0; cursor: pointer;
  color: #b91c1c; font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
}
.bf-pin4 { margin-top: 18px; }
.bf-bell { position: relative; }
.bf-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 4px; border-radius: 10px;
  background: #ef4444; color: #fff; font-size: 10px; font-weight: 800;
  display: grid; place-items: center; border: 2px solid #fff;
}
.bf-hrow.bf-unread b::before { content: "● "; color: #7c3aed; }

/* ---- password eye, entry chip, rate & KYC bars ---- */
.bf-pw { position: relative; }
.bf-pw input { width: 100%; padding-right: 46px; }
.bf-eye {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border: 0; border-radius: 50%;
  background: #f1f4f8; cursor: pointer; font-size: 15px;
}
.bf-entry {
  margin: 18px auto 26px; display: flex; flex-direction: column; gap: 8px; align-items: center;
  animation: fadeUp 0.8s 0.3s both;
}
.bf-entry small { color: var(--muted); font-size: 12px; }
.bf-entry-hi { font-size: 15px; }
.bf-ratebar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: linear-gradient(120deg, #1e293b, #0f172a); color: #cbd5e1;
  border-radius: 18px; padding: 16px 22px; margin-bottom: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}
.bf-ratebar span { font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }
.bf-ratebar b { font-family: var(--font-head); font-size: 22px; color: #fff; }
.bf-ratebar small { color: #94a3b8; font-size: 12px; }
.bf-kycbar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 16px 22px; box-shadow: var(--shadow-1);
}
.bf-kycbar b { font-size: 14.5px; }
.bf-kycbar small { color: var(--muted); font-size: 12.5px; flex: 1; min-width: 180px; }
.bf-kycbar .btn { padding: 10px 20px; font-size: 13px; }
.bf-kycbar.warn { border-color: #fbbf24; background: #fffbeb; }
.bf-kycbar.ok { border-color: #34d399; background: #ecfdf5; }
.bf-link {
  background: none; border: 0; cursor: pointer; align-self: flex-start;
  color: #2563eb; font-size: 13px; font-weight: 700; padding: 2px 0;
  text-decoration: underline; text-underline-offset: 3px;
}

/* ---- discount-style plan rows (Daily/Weekly/Monthly cards) ---- */
.plan-row.disc { align-items: center; }
.pr-left { display: flex; flex-direction: column; gap: 3px; }
.pr-sub { font-size: 12px; color: #8a94a6; font-weight: 600; }
.pr-old { font-size: 12.5px; color: #9aa4b2; text-decoration: line-through; }
.pr-right { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.pr-new { font-family: var(--font-head); font-size: 16.5px; color: #d9832b; white-space: nowrap; }

/* ---- search box under the tabs ---- */
.plans-search {
  flex-shrink: 0; margin: 4px 20px 2px; padding: 13px 16px;
  border: 1.6px solid #e3e8f0; border-radius: 14px; background: #f6f8fb;
  font-family: var(--font-body); font-size: 14px; color: #111; outline: none;
  -webkit-appearance: none; appearance: none;
}
.plans-search::placeholder { color: #9aa4b2; }
.plans-search:focus { border-color: #3b62d8; background: #fff; }
:root[data-theme="dark"] .plans-search { background: #0f1728; border-color: #2a3a57; color: #e8eef7; }
:root[data-theme="dark"] .pr-sub { color: #8ea0bd; }

/* ---- full-screen auth (opaque page — home must not show behind) ---- */
.plans-overlay.bf-screen {
  background: #f4f6fb; backdrop-filter: none; -webkit-backdrop-filter: none;
  place-items: stretch;
}
.plans-overlay.bf-screen .plans-sheet {
  width: 100%; max-width: 480px; margin: 0 auto; height: 100%; max-height: 100vh;
  border-radius: 0; box-shadow: none; animation: none;
}
:root[data-theme="dark"] .plans-overlay.bf-screen { background: #0b1220; }

/* ---- phone input + contact-picker button (📇) ---- */
.bf-phonepick { display: flex; gap: 8px; align-items: stretch; margin-bottom: 6px; }
.bf-phonepick input { flex: 1; margin: 0 !important; }
.bf-contact {
  flex-shrink: 0; width: 54px; border: 1.6px solid #e3e8f0; border-radius: 12px;
  background: #eef2fb; cursor: pointer; font-size: 21px; color: #3b62d8; line-height: 1;
}
.bf-contact:active { background: #dfe6f7; }
:root[data-theme="dark"] .bf-contact { background: #14213b; border-color: #2a3a57; }

/* ---- Welcome / launch screen (page 1 of the app) ---- */
.bf-welcome {
  position: fixed; inset: 0; z-index: 190; overflow-y: auto;
  background: radial-gradient(120% 80% at 50% 0%, #12a05e 0%, #0e8a4f 42%, #0a5e37 100%);
  color: #fff; display: flex; flex-direction: column;
  animation: bwIn 0.4s ease;
}
@keyframes bwIn { from { opacity: 0; } }
.bw-inner {
  width: 100%; max-width: 460px; margin: auto; padding: 34px 26px 30px;
  display: flex; flex-direction: column; min-height: 100%;
}
.bw-brand { text-align: center; margin-top: 18px; }
/* glassmorphism tile holding the B monogram (premium app-icon look) */
.bw-logo {
  width: 98px; height: 98px; margin: 0 auto 20px; border-radius: 28px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: grid; place-items: center;
  box-shadow: 0 20px 48px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.45);
}
.bw-logo svg, .bw-logo .bmark {
  width: 68px; height: 68px; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.28));
}
.bw-brand h1 {
  margin: 0; font-family: var(--font-head); font-size: 34px; font-weight: 800;
  letter-spacing: 4px; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.20);
}
.bw-sub { margin: 6px 0 0; font-size: 11.5px; letter-spacing: 7px; opacity: 0.9; font-weight: 600; }
.bw-tag { text-align: center; margin: 16px 0 26px; font-size: 15px; opacity: 0.9; }
.bw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: auto; }
.bw-tile {
  background: rgba(255,255,255,0.13); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px; padding: 20px 14px; text-align: center;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}
.bw-tile span { font-size: 30px; display: block; margin-bottom: 8px; }
.bw-tile b { display: block; font-size: 14.5px; font-weight: 700; }
.bw-tile small { display: block; font-size: 11.5px; opacity: 0.8; margin-top: 2px; }
.bw-actions { margin-top: 30px; padding-bottom: 10px; display: grid; gap: 12px; }
.bw-actions .btn { padding: 15px; border-radius: 16px; font-weight: 700; font-size: 15px; }
.bw-actions .btn-primary { background: #fff; color: #0a5e37; border-color: #fff; box-shadow: 0 10px 26px rgba(0,0,0,0.22); }
.bw-actions .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
/* the welcome gate hides the tab bar & floating buttons so nothing covers Log In */
body.bf-gated .tabbar,
body.bf-gated .wa-fab, body.bf-gated .yt-fab,
body.bf-gated #waFab, body.bf-gated #ytFab { display: none !important; }
.bw-skip {
  margin-top: 4px; background: none; border: 0; color: rgba(255,255,255,0.85);
  font-family: var(--font-body); font-size: 13.5px; cursor: pointer; padding: 8px;
}

/* ---- fingerprint / Face ID prompt after signup ---- */
.bf-bio-modal {
  position: fixed; inset: 0; z-index: 460; display: grid; place-items: center;
  background: rgba(15, 23, 42, 0.55); backdrop-filter: blur(4px); padding: 20px;
}
.bf-bio-card {
  width: min(380px, 100%); background: #fff; border-radius: 26px;
  padding: 34px 28px; text-align: center; box-shadow: 0 30px 80px rgba(15,23,42,0.3);
}
.bf-bio-ic { font-size: 60px; line-height: 1; }
.bf-bio-card h3 { font-family: var(--font-head); margin: 14px 0 6px; font-size: 21px; }
.bf-bio-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.bf-bio-card .btn { width: 100%; margin-top: 22px; }
.bf-bio-skip {
  display: block; width: 100%; margin-top: 12px; background: none; border: 0;
  color: var(--muted); font-size: 14px; font-weight: 700; cursor: pointer;
}

/* ---- Profile & Settings sheet ---- */
.set-body { padding-top: 8px; }
.set-profile { text-align: center; padding: 6px 0 18px; }
.set-av {
  width: 64px; height: 64px; margin: 0 auto 10px; border-radius: 50%;
  background: linear-gradient(140deg, var(--emerald), var(--emerald-deep));
  color: #fff; display: grid; place-items: center; font-family: var(--font-head);
  font-weight: 800; font-size: 26px;
}
.set-profile h3 { font-family: var(--font-head); font-size: 20px; }
.set-profile small { color: var(--muted); font-size: 13px; }
.set-wallet {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 16px 18px; margin-bottom: 16px; box-shadow: var(--shadow-1);
}
.set-wtop { display: flex; justify-content: space-between; align-items: center; }
.set-tier { font-size: 11px; font-weight: 800; color: var(--gold-dark); background: var(--gold-soft); padding: 3px 10px; border-radius: 12px; }
.set-wrow { display: flex; justify-content: space-between; margin-top: 12px; font-size: 14px; }
.set-wrow b { font-family: var(--font-head); }
.set-wnote { font-size: 11.5px; color: var(--muted); margin-top: 8px; line-height: 1.5; }
.set-row {
  width: 100%; display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 14px 16px; margin-bottom: 10px; cursor: pointer; text-align: left;
  box-shadow: var(--shadow-1); transition: transform 0.2s, box-shadow 0.2s;
}
.set-row:hover { transform: translateY(-1px); box-shadow: var(--shadow-2); }
.set-ic {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-soft); display: grid; place-items: center; font-size: 19px;
}
.set-txt { flex: 1; }
.set-txt b { display: block; font-size: 14.5px; }
.set-txt small { color: var(--muted); font-size: 12px; }
.set-right { color: var(--muted); font-size: 15px; display: flex; align-items: center; gap: 6px; }
.set-row.danger .set-ic { background: #fee2e2; }
.set-row.danger .set-txt b { color: #dc2626; }
.set-toggle {
  width: 44px; height: 26px; border-radius: 20px; background: #cbd5e1;
  position: relative; transition: background 0.25s; flex-shrink: 0;
}
.set-toggle::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px;
  border-radius: 50%; background: #fff; transition: transform 0.25s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.set-toggle.on { background: var(--emerald); }
.set-toggle.on::after { transform: translateX(18px); }
.set-logout { margin-top: 8px; color: #dc2626 !important; border-color: #fca5a5 !important; }

/* ---- DARK THEME (app pages) ---- */
:root[data-theme="dark"] {
  --bg: #0b1120; --surface: #131c2e; --ink: #e8eef7; --muted: #8b97ab;
  --line: #24314a; --cat-soft: #1a2b40; --emerald-soft: #12352a;
}
:root[data-theme="dark"] body { background: #0b1120; color: #e8eef7; }
:root[data-theme="dark"] .app-tile,
:root[data-theme="dark"] .set-row,
:root[data-theme="dark"] .set-wallet,
:root[data-theme="dark"] .plans-sheet,
:root[data-theme="dark"] .bf-sheet,
:root[data-theme="dark"] .bf-strip,
:root[data-theme="dark"] .cat-switch { background: #131c2e; border-color: #24314a; color: #e8eef7; }
:root[data-theme="dark"] .plans-head, :root[data-theme="dark"] .set-profile h3,
:root[data-theme="dark"] .app-tile b, :root[data-theme="dark"] .set-txt b { color: #e8eef7; }
:root[data-theme="dark"] .plan-row { background: #0f1728; border-color: #2a3a57; color: #e8eef7; }
:root[data-theme="dark"] .bf-body input, :root[data-theme="dark"] .bf-body select { background: #0f1728; color: #e8eef7; border-color: #2a3a57; }
:root[data-theme="dark"] .topbar { background: #060b16; }

/* ---- eSIM home (Numero-style) ---- */
.es-wrap { max-width: 640px; margin: 0 auto; }
.es-tag { text-align: center; color: var(--muted); font-size: 13.5px; margin-bottom: 18px; letter-spacing: 0.3px; }
.es-balance {
  display: flex; align-items: center; justify-content: space-between;
  background: #eef4fb; border: 1px solid #dbe7f5; border-radius: 40px;
  padding: 14px 22px; text-decoration: none; color: var(--ink); margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.es-balance:hover { transform: translateY(-1px); box-shadow: var(--shadow-2); }
.es-wal { font-size: 15px; }
.es-wal b { font-weight: 700; }
.es-amt { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--cat); }
.es-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.es-card {
  position: relative; background: #f4f7fb; border: 1px solid #e5edf6;
  border-radius: 26px; padding: 30px 20px 26px; text-align: center;
  text-decoration: none; color: var(--ink); min-height: 210px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s, background 0.3s;
}
.es-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(2,132,199,0.16); background: #fff; }
.es-card:active { transform: translateY(-3px) scale(0.98); }
.es-ic {
  font-size: 52px; line-height: 1; margin-bottom: 8px;
  filter: drop-shadow(0 8px 14px rgba(2,132,199,0.20));
}
.es-card b { font-family: var(--font-head); font-size: 18px; font-weight: 800; line-height: 1.2; }
.es-card small { font-size: 12px; color: var(--muted); line-height: 1.45; }
.es-promo {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px;
  border-radius: 50%; background: linear-gradient(135deg,#ec4899,#8b5cf6,#06b6d4);
  color: #fff; font-weight: 800; font-size: 15px; display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(139,92,246,0.4);
}
.es-refer {
  margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: linear-gradient(120deg, #e0f2fe, #ede9fe); border: 1px solid #d6e6f5;
  border-radius: 24px; padding: 22px 24px; flex-wrap: wrap;
}
.es-refer h3 { font-family: var(--font-head); font-size: 20px; color: var(--cat-dark); }
.es-refer p { color: var(--muted); font-size: 14px; margin-top: 2px; }
.es-refer .btn { background: var(--cat); color: #fff; padding: 12px 26px; }
.esim-page .cat-hero { display: none; }
/* eSIM in-app flow (country picker + plans) */
.es-ctygrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.es-cty {
  display: flex; align-items: center; gap: 10px; text-align: left;
  background: var(--surface, #fff); border: 1px solid var(--line, #e6eef5);
  border-radius: 14px; padding: 12px 14px; cursor: pointer; transition: .15s;
  font-size: 14px; color: var(--ink, #0f172a);
}
.es-cty:hover { border-color: var(--cat); transform: translateY(-2px); box-shadow: var(--shadow-1); }
.es-cty b { font-weight: 700; font-size: 13.5px; }
.es-flag { font-size: 22px; line-height: 1; }
.es-plan {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: var(--surface, #fff); border: 1px solid var(--line, #e6eef5);
  border-radius: 14px; padding: 14px 16px; margin-bottom: 10px; cursor: pointer; transition: .15s;
}
.es-plan:hover { border-color: var(--cat); transform: translateY(-2px); box-shadow: var(--shadow-1); }
.es-plan > div { display: flex; flex-direction: column; align-items: flex-start; }
.es-plan b { font-family: var(--font-head); font-size: 18px; color: var(--ink, #0f172a); }
.es-plan small { color: var(--muted); font-size: 12px; }
.es-price { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--cat-dark, #0369a1); }
.es-old { color: #9aa7b2; font-weight: 600; font-size: 12.5px; text-decoration: line-through; margin-right: 4px; }
.es-off { display: inline-block; background: #16a34a; color: #fff; font-size: 10px; font-weight: 800; padding: 2px 6px; border-radius: 999px; vertical-align: middle; }
.es-launch { margin: 0 0 12px; background: linear-gradient(120deg, #dcfce7, #d1fae5); border: 1px solid #a7f3d0; color: #166534; font-weight: 700; font-size: 13px; text-align: center; border-radius: 12px; padding: 10px 12px; }
.es-soon { text-align: center; font-family: var(--font-head); font-weight: 800; font-size: 18px; color: #166534; background: #dcfce7; border-radius: 14px; padding: 14px; margin-top: 4px; }
html[data-theme="dark"] .es-launch, html[data-theme="dark"] .es-soon { background: #16302020; border-color: #24503d; color: #6ee7b7; }
.bf-sel { width: 100%; padding: 12px 14px; border: 1px solid var(--line, #e6eef5); border-radius: 12px; font-size: 15px; background: var(--surface, #fff); color: var(--ink, #0f172a); margin-bottom: 6px; }
.a2c-steps ol { margin: 4px 0 8px; padding-left: 20px; }
.a2c-steps li { margin: 8px 0; line-height: 1.5; font-size: 14.5px; }
html[data-theme="dark"] .bf-sel { background: #16202b; border-color: #24313d; color: #e6eef5; }

/* ===== Travel hero: black, rotatable 3D Kaaba ===== */
/* Travel hero — ASH background, two showcases (Kaaba pilgrims + Worldwide globe) */
.pilgrim-hero {
  background: linear-gradient(180deg, #cbcfd4 0%, #b6bbc2 100%); color: #000;
  padding: 30px 5vw 36px; display: grid; gap: 26px; border-radius: 0 0 32px 32px;
}
@media (min-width: 760px) { .pilgrim-hero { grid-template-columns: 1fr 1fr; align-items: start; } }
.ph-block { text-align: center; }
.ph-title {
  margin: 0 0 14px; font-family: var(--font-head); font-size: 21px; font-weight: 800;
  letter-spacing: 1.5px; color: #000; line-height: 1.25;
}
.ph-hint { margin: 8px 0 0; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: #33383f; opacity: .75; }
.pilgrim-hero .kaaba-stage, .globe-stage { height: 210px; }

/* 3D rotating world globe */
.globe-stage { perspective: 700px; width: 100%; display: flex; align-items: center; justify-content: center; }
.globe3d {
  position: relative; width: 170px; height: 170px; border-radius: 50%; overflow: hidden;
  background: radial-gradient(circle at 34% 30%, #7cc0ea 0%, #2f86c9 42%, #0f5a9e 74%, #0a3f74 100%);
  box-shadow: 0 20px 44px rgba(10,30,60,.40);
}
.g-land {
  position: absolute; top: 0; left: 0; height: 100%; width: 200%;
  background-repeat: repeat-x; background-size: 50% 100%; opacity: .92;
  background-image:
    radial-gradient(ellipse 16% 26% at 20% 40%, #3f9d5a 68%, transparent 70%),
    radial-gradient(ellipse 12% 18% at 38% 64%, #43a05e 68%, transparent 70%),
    radial-gradient(ellipse 20% 15% at 68% 30%, #3f9d5a 68%, transparent 70%),
    radial-gradient(ellipse 10% 22% at 84% 58%, #46a862 68%, transparent 70%),
    radial-gradient(ellipse 8% 12% at 54% 18%, #4aa866 68%, transparent 70%);
  animation: gspin 11s linear infinite;
}
@keyframes gspin { to { transform: translateX(-50%); } }
.g-shade {
  position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  background:
    radial-gradient(circle at 32% 27%, rgba(255,255,255,.5), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 72% 76%, rgba(0,10,30,.5), rgba(0,10,30,0) 55%);
  box-shadow: inset -14px -14px 34px rgba(0,3,25,.55), inset 8px 8px 20px rgba(255,255,255,.16);
}
.kaaba-stage { perspective: 950px; width: 100%; height: 260px; display: flex; align-items: center; justify-content: center; }
.kaaba-3d { position: relative; width: 170px; height: 170px; transform-style: preserve-3d; cursor: grab; }
.kf {
  position: absolute; width: 170px; height: 170px;
  background:
    linear-gradient(to bottom, rgba(201,162,39,0) 30%, #c9a227 30%, #efce65 33.5%, #c9a227 37%, rgba(201,162,39,0) 37%),
    linear-gradient(160deg, #17150e, #050505);
  border: 1px solid rgba(201,162,39,0.35);
  box-shadow: inset 0 0 46px rgba(0,0,0,0.65);
}
.kf-front  { transform: translateZ(85px); }
.kf-back   { transform: rotateY(180deg) translateZ(85px); }
.kf-right  { transform: rotateY(90deg) translateZ(85px); }
.kf-left   { transform: rotateY(-90deg) translateZ(85px); }
.kf-top    { transform: rotateX(90deg) translateZ(85px); background: linear-gradient(160deg, #17150e, #050505); }
.kf-bottom { transform: rotateX(-90deg) translateZ(85px); background: #030303; }
.kf-door {
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  width: 30px; height: 52px; background: linear-gradient(#efce65, #b8901f);
  border-radius: 3px; box-shadow: 0 0 10px rgba(201,162,39,0.5);
}
.kaaba-title { font-family: var(--font-head); font-size: 46px; font-weight: 800; letter-spacing: 0.5px; color: #fff; margin: 0; }
.kaaba-hint { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: #c9a227; opacity: 0.85; margin: 0; }
.kaaba-page .switch-bar { z-index: 60; }
@media (max-width: 420px) {
  .kaaba-3d, .kf { width: 140px; height: 140px; }
  .kf-front  { transform: translateZ(70px); }
  .kf-back   { transform: rotateY(180deg) translateZ(70px); }
  .kf-right  { transform: rotateY(90deg) translateZ(70px); }
  .kf-left   { transform: rotateY(-90deg) translateZ(70px); }
  .kf-top    { transform: rotateX(90deg) translateZ(70px); }
  .kf-bottom { transform: rotateX(-90deg) translateZ(70px); }
  .kaaba-title { font-size: 38px; }
}
html[data-theme="dark"] .es-cty, html[data-theme="dark"] .es-plan { background: #16202b; border-color: #24313d; color: #e6eef5; }
html[data-theme="dark"] .es-plan b, html[data-theme="dark"] .es-cty b { color: #e6eef5; }
@media (max-width: 420px) {
  .es-card { min-height: 175px; padding: 24px 14px; }
  .es-ic { font-size: 42px; }
  .es-card b { font-size: 15px; }
}

/* ===== App bottom tab bar (Home · Cards · Earn · Profile) ===== */
.tabbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; display: flex; background: #fff; border-top: 1px solid var(--line, #e6eef5); padding: 6px 4px calc(6px + env(safe-area-inset-bottom)); box-shadow: 0 -6px 20px rgba(0,0,0,0.06); }
.tabbar a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; text-decoration: none; color: #8b97a3; font-weight: 700; padding: 4px 0; }
.tabbar .tb-ic { font-size: 21px; line-height: 1; filter: grayscale(1); opacity: .7; }
.tabbar small { font-size: 10.5px; }
.tabbar a.on { color: #0e8a4f; }
.tabbar a.on .tb-ic { filter: none; opacity: 1; }
body.has-switch { padding-bottom: 74px; }
html[data-theme="dark"] .tabbar { background: #0f1720; border-color: #1e2a36; }

/* ===== Category grid FAB + toggled quick-switch ===== */
.cat-fab { position: fixed; left: 16px; bottom: 82px; z-index: 201; width: 50px; height: 50px; border-radius: 16px; border: none; background: #64748b; box-shadow: 0 8px 22px rgba(0,0,0,.28); display: grid; grid-template-columns: 1fr 1fr; gap: 5px; place-content: center; padding: 15px; cursor: pointer; }
.cat-fab span { width: 8px; height: 8px; border-radius: 3px; background: #fff; }
.cat-switch { position: fixed; left: 16px; bottom: 144px; z-index: 201; display: flex; flex-direction: column; gap: 3px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 8px; box-shadow: 0 16px 40px rgba(0,0,0,.22); min-width: 190px; }
.cat-switch[hidden] { display: none; }
.cat-switch a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px; text-decoration: none; color: var(--ink,#0f172a); font-weight: 700; font-size: 14px; }
.cat-switch a.active { background: var(--emerald-soft, #e6f4ec); color: #0e8a4f; }
.cat-switch .cs-ic { font-size: 18px; }
html[data-theme="dark"] .cat-switch { background: #16202b; border-color: #24313d; color: #e6eef5; }

/* ===== Virtual Cards page ===== */
.vc-wrap, .earn-wrap { max-width: 460px; margin: 0 auto; }
.vc-top h2, .earn-wrap .vc-top h2 { font-family: var(--font-head); font-size: 26px; }
.vc-top p { color: var(--muted); font-size: 13px; margin-top: 2px; }
.vc-tabs { display: flex; gap: 6px; background: #eef2f6; border-radius: 14px; padding: 5px; margin: 16px 0; }
.vc-tabs button { flex: 1; border: none; background: transparent; padding: 11px; border-radius: 10px; font-weight: 800; color: #64748b; cursor: pointer; }
.vc-tabs button.on { background: #f5b301; color: #1a1200; }
.vcard { position: relative; overflow: hidden; height: 200px; border-radius: 22px; background: radial-gradient(120% 140% at 20% 10%, #2a2f36, #0a0d10 70%); box-shadow: 0 20px 44px rgba(0,0,0,.35); padding: 20px; color: #fff; }
.vc-shine { position: absolute; inset: 0; background: radial-gradient(60% 80% at 80% 0%, rgba(255,255,255,.10), transparent 60%); }
.vc-brand { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; display: grid; place-items: center; }
.vc-brand svg { width: 40px; height: 40px; fill: none; }
.vc-name { position: absolute; bottom: 20px; left: 20px; font-family: var(--font-head); font-size: 20px; font-weight: 800; }
.vc-pill { text-align: center; color: var(--gold, #c9a227); font-size: 12px; font-weight: 700; margin: 14px 0 6px; }
.vc-h { text-align: center; font-family: var(--font-head); font-size: 22px; }
.vc-desc { text-align: center; color: var(--muted); margin: 4px 0 8px; }

/* ===== Earn page ===== */
.earn-hero { background: linear-gradient(120deg,#111,#2b2b2b); color: #fff; border: 1px solid #f5b30155; border-radius: 18px; padding: 20px; margin: 8px 0 16px; }
.earn-hero b { font-family: var(--font-head); font-size: 20px; display: block; }
.earn-hero small { color: #f5b301; }
.earn-bal { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px; display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow-1); }
.earn-amt { font-family: var(--font-head); font-size: 28px; font-weight: 800; }
.earn-wd { color: #9aa7b2; font-weight: 700; }
.earn-note { text-align: center; color: var(--muted); margin: 14px 0; }
.earn-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin: 12px 0; }
.es-step { text-align: center; }
.es-n { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--emerald-soft,#e6f4ec); color: #0e8a4f; font-weight: 800; margin-bottom: 6px; }
.es-step p { font-size: 12px; color: var(--muted); line-height: 1.4; }
.earn-share { background: linear-gradient(120deg,#6d28d9,#7c3aed); color: #fff; border-radius: 16px; padding: 16px; margin: 14px 0 10px; }
.earn-share b { display: block; }
.earn-share small { opacity: .9; }
.earn-link { display: flex; gap: 8px; margin-bottom: 10px; }
.earn-link input { flex: 1; border: 1px solid var(--line); border-radius: 12px; padding: 12px; font-size: 13px; }
.earn-link button { border: 1px solid var(--line); background: #fff; border-radius: 12px; padding: 0 16px; font-weight: 700; cursor: pointer; }

/* WhatsApp channel button (per-category popup) */
.btn-wa-ch { display: block; margin-top: 8px; background: #0e8a4f; color: #fff; text-align: center; padding: 11px; border-radius: 12px; font-weight: 700; text-decoration: none; font-size: 13.5px; }
.btn-wa-ch:hover { filter: brightness(1.05); }

/* 5G Data network drill-down */
.net-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.net-tile { display: flex; flex-direction: column; align-items: center; gap: 8px; background: var(--surface,#fff); border: 1px solid var(--line,#e6eef5); border-radius: 16px; padding: 18px 12px; cursor: pointer; transition: .15s; text-align: center; }
.net-tile:hover { border-color: #0e8a4f; transform: translateY(-2px); box-shadow: var(--shadow-1); }
.net-tile b { font-size: 15px; }
.net-tile small { font-size: 11px; color: var(--muted); }
.net-badge { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 15px; font-weight: 800; font-size: 14px; box-shadow: 0 6px 16px rgba(0,0,0,.14); }
html[data-theme="dark"] .net-tile { background:#16202b; border-color:#24313d; color:#e6eef5; }

/* ============================================================
   TRAVEL booking (Umrah — deposit + installments). Material-3 premium.
   ============================================================ */
/* on-page CTA banner (travel category) */
.tv-cta {
  margin: 18px 5vw 4px; padding: 20px; border-radius: 22px; color: #fff;
  background: linear-gradient(135deg, #16A34A, #0F6B3E);
  box-shadow: 0 16px 40px rgba(15,107,62,.30); position: relative; overflow: hidden;
}
.tv-cta::after { content:""; position:absolute; right:-30px; top:-30px; width:150px; height:150px; border-radius:50%; background:rgba(255,255,255,.10); }
.tv-cta h3 { margin: 0 0 4px; font-family: var(--font-head); font-size: 20px; }
.tv-cta p { margin: 0 0 14px; font-size: 13.5px; opacity: .92; max-width: 30ch; }
.tv-cta-row { display: flex; gap: 10px; flex-wrap: wrap; position: relative; z-index: 1; }
.tv-cta .btn { padding: 12px 18px; border-radius: 14px; font-weight: 700; font-size: 14px; }
.tv-cta .btn-primary { background:#fff; color:#0F6B3E; border-color:#fff; }
.tv-cta .btn-ghost { background: rgba(255,255,255,.15); color:#fff; border:1.5px solid rgba(255,255,255,.55); }

/* package cards */
.tv-pkgs { display: grid; gap: 10px; }
.tv-pkg {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px; border-radius: 16px; border: 2px solid #e6eef5; background: #fff;
  cursor: pointer; transition: border-color .2s, transform .15s, box-shadow .2s; text-align: left;
}
.tv-pkg:hover { transform: translateY(-1px); }
.tv-pkg.on { border-color: #16A34A; box-shadow: 0 8px 22px rgba(22,163,74,.16); }
.tv-pkg-name { font-weight: 700; font-size: 15px; }
.tv-pkg-price { font-family: var(--font-head); font-size: 15px; color: #0F6B3E; }

/* city chips */
.tv-cities { display: flex; gap: 9px; flex-wrap: wrap; }
.tv-city {
  padding: 11px 20px; border-radius: 30px; border: 2px solid #e6eef5; background: #fff;
  font-weight: 600; font-size: 14px; cursor: pointer; transition: .2s;
}
.tv-city.on { border-color: #16A34A; background: #eafaf0; color: #0F6B3E; }

/* progress + status */
.tv-prog { background: #f6f9fc; border: 1px solid #e6eef5; border-radius: 18px; padding: 16px; margin-bottom: 14px; }
.tv-prog-top { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--muted); }
.tv-prog-top b { color: var(--ink); }
.tv-bar { height: 9px; border-radius: 8px; background: #e6eef5; overflow: hidden; margin: 10px 0; }
.tv-bar i { display: block; height: 100%; border-radius: 8px; background: linear-gradient(90deg, #16A34A, #0F6B3E); transition: width .5s cubic-bezier(.22,1,.36,1); }
.tv-prog-bot { display: flex; justify-content: space-between; align-items: center; }
.tv-prog-bot > b { font-family: var(--font-head); font-size: 15px; }
.tv-badge { font-size: 10.5px; font-weight: 800; letter-spacing: .3px; padding: 4px 10px; border-radius: 20px; background: #eef2f7; color: #55627a; text-transform: capitalize; }
.tv-badge.tv-partial { background:#fff3e0; color:#b26a00; }
.tv-badge.tv-paid { background:#e6f7ee; color:#0b7c45; }
.tv-badge.tv-confirmed { background:#e6f7ee; color:#0b7c45; }
.tv-badge.tv-pending { background:#eef2f7; color:#55627a; }
.tv-badge.tv-cancelled { background:#fde8e8; color:#b3261e; }

/* method selector */
.tv-method {
  display: block; width: 100%; text-align: left; padding: 14px 16px; margin-bottom: 10px;
  border: 2px solid #e6eef5; border-radius: 14px; background: #fff; cursor: pointer; transition: .2s;
}
.tv-method.on { border-color: #16A34A; background: #f4fbf7; }
.tv-method b { display: block; font-size: 14.5px; }
.tv-method small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }

/* payment history + booking cards */
.tv-hist { margin-top: 14px; }
.tv-prow { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid #eef2f7; }
.tv-prow b { font-family: var(--font-head); font-size: 14.5px; }
.tv-prow small { display: block; color: var(--muted); font-size: 11.5px; text-transform: capitalize; }
.tv-prow span { font-size: 12.5px; font-weight: 600; text-transform: capitalize; }
.tv-card { display: block; width: 100%; text-align: left; padding: 15px; margin-bottom: 11px; border: 1.5px solid #e6eef5; border-radius: 16px; background: #fff; cursor: pointer; transition: .2s; }
.tv-card:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,.08); }
.tv-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.tv-card-top b { font-size: 15px; }
.tv-card small { display: block; color: var(--muted); font-size: 12px; }
.tv-prev-img { width: 100%; max-height: 260px; object-fit: contain; border-radius: 12px; border: 1px solid #e6eef5; margin: 10px 0; background: #f6f9fc; }

/* skeleton loading shimmer */
.tv-skel { height: 60px; border-radius: 14px; margin-bottom: 12px; background: linear-gradient(90deg,#eef2f7 25%,#f6f9fc 37%,#eef2f7 63%); background-size: 400% 100%; animation: tvShimmer 1.3s ease infinite; }
@keyframes tvShimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* dark mode */
html[data-theme="dark"] .tv-pkg, html[data-theme="dark"] .tv-city, html[data-theme="dark"] .tv-method, html[data-theme="dark"] .tv-card { background:#16202b; border-color:#24313d; color:#e6eef5; }
html[data-theme="dark"] .tv-prog { background:#131c26; border-color:#24313d; }
html[data-theme="dark"] .tv-bar { background:#24313d; }
html[data-theme="dark"] .tv-city.on { background:#0f2a1c; }
html[data-theme="dark"] .tv-method.on { background:#0f2a1c; }
html[data-theme="dark"] .tv-skel { background: linear-gradient(90deg,#131c26 25%,#1b2732 37%,#131c26 63%); background-size: 400% 100%; }

/* ---- Family Umrah enquiry (no prices → WhatsApp) ---- */
.fu-cta {
  display: flex; gap: 14px; align-items: flex-start;
  margin: 18px 5vw 0; padding: 18px; border-radius: 22px;
  background: #fff; border: 1.5px solid #e6eef5; box-shadow: 0 12px 30px rgba(15,23,42,.07);
}
.fu-cta-ic { font-size: 34px; line-height: 1; flex-shrink: 0; }
.fu-cta-txt h3 { margin: 0 0 4px; font-family: var(--font-head); font-size: 18px; color: var(--ink); }
.fu-cta-txt p { margin: 0 0 12px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.fu-cta .btn-primary { padding: 11px 16px; border-radius: 13px; font-weight: 700; font-size: 14px; background: linear-gradient(135deg,#16A34A,#0F6B3E); color:#fff; border:0; }
html[data-theme="dark"] .fu-cta { background:#16202b; border-color:#24313d; }
html[data-theme="dark"] .fu-cta-txt h3 { color:#e6eef5; }

/* number steppers (adults / children / infants) */
.fu-step { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 0; border-bottom: 1px solid #eef2f7; }
.fu-lab b { display: block; font-size: 15px; }
.fu-lab small { display: block; color: var(--muted); font-size: 12px; margin-top: 1px; }
.fu-ctrl { display: flex; align-items: center; gap: 14px; }
.fu-ctrl span { min-width: 26px; text-align: center; font-family: var(--font-head); font-size: 18px; }
.fu-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1.6px solid #16A34A;
  background: #fff; color: #0F6B3E; font-size: 22px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: .15s;
}
.fu-btn:active { background: #eafaf0; transform: scale(.94); }
html[data-theme="dark"] .fu-step { border-color:#24313d; }
html[data-theme="dark"] .fu-btn { background:#16202b; }

/* country flag tiles — fill the icon, subtle frame (override the white 'logo' pad) */
.at-icon.logo:has(.flag) { background: transparent; padding: 7px; box-shadow: none; }
.at-icon .flag { width: 100%; height: 100%; border-radius: 6px; box-shadow: 0 3px 9px rgba(0,0,0,.22); }

/* ============================================================
   UMRAH / RAMADAN packages browser (premium Material-3)
   ============================================================ */
.um-hub { display:flex; align-items:center; gap:14px; width:100%; text-align:left; padding:18px; margin-bottom:12px;
  border:1.5px solid #e6eef5; border-radius:20px; cursor:pointer; transition:.2s; background:#fff; }
.um-hub:hover { transform:translateY(-1px); box-shadow:0 12px 28px rgba(15,23,42,.10); }
.um-hub-umrah { background:linear-gradient(135deg,#0f6b3e,#0a4f2e); color:#fff; border:0; }
.um-hub-ram { background:linear-gradient(135deg,#5b3fa0,#3b2870); color:#fff; border:0; }
.um-hub-ic { font-size:30px; flex-shrink:0; }
.um-hub-t { flex:1; } .um-hub-t b { display:block; font-size:16px; } .um-hub-t small { display:block; opacity:.85; font-size:12px; margin-top:2px; }
.um-hub-ch { font-size:22px; opacity:.7; }
.um-row, .um-city { display:block; width:100%; text-align:left; padding:15px 16px; margin-bottom:10px; border:1.5px solid #e6eef5; border-radius:16px; background:#fff; cursor:pointer; transition:.2s; }
.um-row { display:flex; align-items:center; gap:13px; }
.um-row:hover, .um-city:hover { transform:translateY(-1px); box-shadow:0 8px 20px rgba(0,0,0,.07); }
.um-row-ic { font-size:24px; } .um-row-t { flex:1; } .um-row-t b { display:block; font-size:15px; } .um-row-t small { display:block; color:var(--muted); font-size:12px; }
.um-city-top { display:flex; justify-content:space-between; align-items:center; } .um-city-top b { font-size:15.5px; }
.um-city small { display:block; color:var(--muted); font-size:12px; margin:3px 0 8px; }
.um-route { display:inline-block; font-size:12px; font-weight:600; color:#0f6b3e; background:#eafaf0; border-radius:20px; padding:4px 12px; }
.um-tabs { display:flex; gap:8px; margin-bottom:14px; }
.um-tab { flex:1; padding:11px; border-radius:12px; border:1.6px solid #111; background:#fff; font-weight:800; font-size:12.5px; letter-spacing:.6px; cursor:pointer; }
.um-tab.on { background:#111; color:#fff; }
.um-durinfo { font-size:13px; color:var(--muted); margin-bottom:14px; text-align:center; }
.um-card { border:1.5px solid #e6eef5; border-radius:18px; padding:16px; margin-bottom:14px; background:#fff; border-top:4px solid #9aa4b2; }
.um-card.um-economy { border-top-color:#0f9d58; } .um-card.um-vip { border-top-color:#3b62d8; } .um-card.um-luxury { border-top-color:#c9a227; }
.um-card-top { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:10px; }
.um-card-top b { font-size:17px; font-family:var(--font-head); } .um-price { font-family:var(--font-head); font-size:17px; color:#0f6b3e; }
.um-card-meta { display:flex; flex-direction:column; gap:5px; font-size:12.5px; color:#44506a; margin-bottom:14px; }
.um-seats { color:#b26a00; font-weight:600; }
.um-card-btns { display:flex; gap:9px; } .um-card-btns .btn { flex:1; padding:11px; border-radius:12px; font-size:13.5px; font-weight:700; }
.um-hero-img { height:120px; border-radius:16px; display:grid; place-items:center; font-size:56px; background:linear-gradient(135deg,#0f6b3e,#0a3f24); margin-bottom:14px; }
.um-det-price { font-family:var(--font-head); font-size:26px; color:#0f6b3e; margin-bottom:14px; } .um-det-price small { display:block; font-size:12.5px; color:var(--muted); font-family:var(--font-body); }
.um-visa { display:flex; justify-content:space-between; align-items:center; gap:10px; background:#eafaf0; border:1px solid #b8e6cd; border-radius:12px; padding:12px 14px; margin-top:10px; font-size:13px; }
.um-visa span { text-align:right; }
.um-feats { list-style:none; margin:8px 0 0; padding:0; display:grid; gap:7px; }
.um-feats li { font-size:13.5px; color:#2a3550; }
.um-rec { font-size:9.5px; font-weight:800; background:#0f9d58; color:#fff; border-radius:10px; padding:2px 7px; margin-left:6px; vertical-align:middle; letter-spacing:.4px; }
.um-pil { border:1px solid #e6eef5; border-radius:14px; padding:2px 14px; margin-bottom:6px; }
.bf-body textarea { width:100%; border:1.6px solid #e3e8f0; border-radius:12px; padding:12px 14px; font-family:var(--font-body); font-size:14px; resize:vertical; }
/* dark */
html[data-theme="dark"] .um-hub, html[data-theme="dark"] .um-row, html[data-theme="dark"] .um-city, html[data-theme="dark"] .um-card { background:#16202b; border-color:#24313d; color:#e6eef5; }
html[data-theme="dark"] .um-hub-umrah, html[data-theme="dark"] .um-hub-ram { border:0; }
html[data-theme="dark"] .bf-body textarea { background:#0f1728; border-color:#2a3a57; color:#e8eef7; }

/* ---- Two-Factor (2FA) + Admin dashboard ---- */
.mfa-qr { width: 208px; height: 208px; border-radius: 14px; border: 1px solid #e6eef5; background: #fff; padding: 6px; }
.mfa-input { text-align: center; letter-spacing: 8px; font-size: 22px; font-family: var(--font-head); }
.mfa-codes { background: #0f1728; color: #7CFFB2; padding: 14px; border-radius: 12px; font-family: ui-monospace, monospace; font-size: 14px; line-height: 1.9; white-space: pre-wrap; text-align: center; letter-spacing: 1px; overflow-x: auto; }
.adm-card { border: 1.5px solid #e6eef5; border-radius: 16px; padding: 14px; margin-bottom: 14px; background: #fff; }
.adm-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.adm-top b { font-family: var(--font-head); font-size: 17px; color: #0f6b3e; }
.adm-top span { font-size: 12.5px; color: var(--muted); text-align: right; }
.adm-card > small { display: block; color: var(--muted); font-size: 11.5px; margin: 2px 0 10px; }
.adm-receipt { width: 100%; max-height: 300px; object-fit: contain; border-radius: 12px; border: 1px solid #e6eef5; background: #f6f9fc; margin-bottom: 12px; }
.adm-btns { display: flex; gap: 9px; } .adm-btns .btn { flex: 1; padding: 11px; border-radius: 12px; font-size: 13px; font-weight: 700; }
html[data-theme="dark"] .adm-card { background: #16202b; border-color: #24313d; }

/* ---- Admin price editor ---- */
.adm-price { border: 1.5px solid #e6eef5; border-radius: 14px; padding: 14px; margin-bottom: 11px; background: #fff; }
.adm-price-t { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.adm-price-t b { font-size: 14.5px; }
.adm-edited { font-size: 9.5px; font-weight: 800; background: #fff3e0; color: #b26a00; border-radius: 10px; padding: 2px 8px; }
.adm-price-row { display: flex; align-items: center; gap: 8px; }
.adm-naira { font-family: var(--font-head); font-size: 17px; color: var(--muted); }
.adm-price-in { flex: 1; margin: 0 !important; font-family: var(--font-head); font-size: 16px; }
.adm-save { flex-shrink: 0; padding: 11px 18px !important; border-radius: 12px; font-weight: 700; }
.adm-price-def { display: block; color: var(--muted); font-size: 11px; margin-top: 7px; }
html[data-theme="dark"] .adm-price { background: #16202b; border-color: #24313d; }
.um-hub-fam { background: linear-gradient(135deg,#0f766e,#0b4f4a); color: #fff; border: 0; }
.bf-body .plans-search { margin: 0 0 12px; width: 100%; box-sizing: border-box; }
a.um-row { text-decoration: none; color: var(--ink, #111); }
a.um-row .um-row-t b { color: var(--ink, #111); }
html[data-theme="dark"] a.um-row .um-row-t b { color: #e6eef5; }

/* ============================================================
   HOME 2.0 — premium dashboard (owner mockup, 26 Jul)
   ============================================================ */
.home2-body { background: linear-gradient(180deg,#eef2f6 0%,#e7ecf2 100%); }
.home2 { max-width: 480px; margin: 0 auto; padding: 14px 16px calc(96px + env(safe-area-inset-bottom)); }
.h2-top { display: flex; align-items: center; justify-content: space-between; padding: 6px 2px 2px; }
.h2-top .brand { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.h2-top .brand-logo { width: 34px; height: 34px; }
.h2-top .brand-logo svg { width: 34px; height: 34px; filter: drop-shadow(0 3px 8px rgba(15,107,62,.3)); }
.h2-top .brand-text b { font-family: var(--font-head); font-size: 20px; letter-spacing: .3px; color: var(--ink); }
.h2-top .brand-text b span { color: var(--emerald, #16A34A); }
.h2-actions { display: flex; align-items: center; gap: 12px; }
.h2-icon { position: relative; background: none; border: 0; font-size: 21px; cursor: pointer; line-height: 1; }
.h2-icon .bf-badge { position: absolute; top: -4px; right: -5px; background: #e11; color: #fff; font-size: 9px; min-width: 15px; height: 15px; border-radius: 8px; display: grid; place-items: center; padding: 0 3px; }
.h2-av { width: 38px; height: 38px; border-radius: 50%; border: 0; background: linear-gradient(135deg,#16A34A,#0F6B3E); color: #fff; font-weight: 800; font-size: 15px; cursor: pointer; box-shadow: 0 4px 12px rgba(15,107,62,.3); }
.h2-greet { margin: 14px 2px 12px; }
.h2-greet p { margin: 0; color: #64708a; font-size: 14px; }
.h2-greet h2 { margin: 1px 0 0; font-family: var(--font-head); font-size: 26px; color: var(--ink); }
.h2-search { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 16px; padding: 14px 16px; box-shadow: 0 6px 18px rgba(15,23,42,.06); margin-bottom: 18px; }
.h2-search-ic { color: #9aa4b2; }
.h2-search input { border: 0; outline: 0; flex: 1; font-size: 14px; background: transparent; color: var(--ink); }

/* Data & Bills primary card */
.h2-data { display: flex; gap: 14px; align-items: center; background: #fff; border-radius: 22px; padding: 18px; box-shadow: 0 14px 34px rgba(15,23,42,.09); text-decoration: none; color: var(--ink); margin-bottom: 16px; }
.h2-5g {
  flex-shrink: 0; font-family: var(--font-head); font-weight: 800; font-size: 64px; line-height: 1;
  background: linear-gradient(115deg,#fff6d5 0%,#f7d774 22%,#e0a520 42%,#b8860b 50%,#e0a520 58%,#f7d774 78%,#fff6d5 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-stroke: 0.6px rgba(150,105,15,.45);
  filter: drop-shadow(0 3px 5px rgba(184,134,11,.5));
  animation: goldShine 3.2s linear infinite, gold3d 4s ease-in-out infinite;
}
@keyframes goldShine { 0% { background-position: 0% 50%; } 100% { background-position: 250% 50%; } }
@keyframes gold3d { 0%,100% { transform: perspective(300px) rotateY(-9deg) translateY(0); } 50% { transform: perspective(300px) rotateY(9deg) translateY(-3px); } }
.h2-data-r { flex: 1; min-width: 0; }
.h2-data-r h3 { margin: 0; font-size: 18px; }
.h2-data-r > small { color: #64708a; font-size: 11px; }
.h2-nets { display: flex; gap: 6px; margin: 9px 0; }
.h2-nets span { width: 36px; height: 24px; display: grid; place-items: center; }
.h2-nets svg { width: 100%; height: 100%; object-fit: contain; }
.h2-data-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.h2-instant { font-size: 10.5px; font-weight: 700; color: #b26a00; background: #fff5e6; border-radius: 10px; padding: 4px 9px; white-space: nowrap; }
.h2-buy { background: linear-gradient(135deg,#1e1e1e,#3a3a3a); color: #f5c451; font-weight: 700; font-size: 13px; padding: 10px 16px; border-radius: 22px; white-space: nowrap; }

/* Umrah luxury banner */
.h2-umrah { display: flex; gap: 12px; align-items: center; background: linear-gradient(120deg,#e7f5ec 0%,#f3ece0 100%); border: 1px solid #dcebe1; border-radius: 22px; padding: 16px 18px; margin-bottom: 20px; box-shadow: 0 10px 26px rgba(15,23,42,.06); }
.h2-umrah-txt { flex: 1; }
.h2-umrah-txt h3 { margin: 0 0 4px; font-family: var(--font-head); font-size: 19px; color: #0f5a37; }
.h2-umrah-txt h3 b { color: #c99a2e; }
.h2-umrah-txt p { margin: 0 0 8px; font-size: 12px; color: #4a5568; line-height: 1.5; }
.h2-umrah-links { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; }
.h2-umrah-links a { color: #0f6b3e; text-decoration: none; }
.h2-umrah-links i { color: #b9c6bd; font-style: normal; }
.h2-umrah-badge { flex-shrink: 0; width: 66px; height: 66px; border-radius: 18px; background: linear-gradient(160deg,#111,#333); display: grid; place-items: center; font-size: 34px; box-shadow: 0 8px 20px rgba(0,0,0,.25); }

/* section titles */
.h2-sec { margin: 4px 2px 12px; font-family: var(--font-head); font-size: 15px; color: var(--ink); }

/* service grid (2x2) */
.h2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; }
.h2-card { background: #fff; border-radius: 18px; padding: 15px; text-decoration: none; color: var(--ink); box-shadow: 0 8px 22px rgba(15,23,42,.06); display: flex; flex-direction: column; gap: 3px; transition: transform .15s, box-shadow .2s; }
.h2-card:active { transform: scale(.98); }
.h2-card b { font-size: 14.5px; margin-bottom: 4px; }
.h2-card small { color: #64708a; font-size: 12px; }
.h2-more { background: linear-gradient(135deg,#16A34A,#0F6B3E); color: #fff; align-items: flex-start; justify-content: center; }
.h2-more b, .h2-more small { color: #fff; }
.h2-more small { opacity: .85; }

/* quick actions (horizontal scroll) */
.h2-qa { display: flex; gap: 8px; overflow-x: auto; padding: 2px 2px 6px; scrollbar-width: none; }
.h2-qa::-webkit-scrollbar { display: none; }
.h2-qa-i { flex: 0 0 auto; width: 62px; display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; color: #44506a; font-size: 11px; font-weight: 600; }
.h2-qa-i span { width: 52px; height: 52px; border-radius: 16px; background: #fff; display: grid; place-items: center; font-size: 22px; box-shadow: 0 6px 16px rgba(15,23,42,.08); }

/* dark mode */
html[data-theme="dark"] .home2-body { background: linear-gradient(180deg,#0b1220,#0f1728); }
html[data-theme="dark"] .h2-search, html[data-theme="dark"] .h2-data, html[data-theme="dark"] .h2-card, html[data-theme="dark"] .h2-qa-i span { background: #16202b; }
html[data-theme="dark"] .h2-greet h2, html[data-theme="dark"] .h2-top .brand-text b, html[data-theme="dark"] .h2-sec, html[data-theme="dark"] .h2-card b { color: #e6eef5; }
html[data-theme="dark"] .h2-search input { color: #e6eef5; }
html[data-theme="dark"] .h2-umrah { background: linear-gradient(120deg,#12241a,#20211a); border-color: #24313d; }
html[data-theme="dark"] .h2-data, html[data-theme="dark"] .h2-card, html[data-theme="dark"] .h2-card small { color: #e6eef5; }
html[data-theme="dark"] .h2-qa-i { color: #b6c2d4; }
html[data-theme="dark"] .h2-umrah-txt p { color: #b6c2d4; }
html[data-theme="dark"] .h2-umrah-txt h3 { color: #4ade80; }
html[data-theme="dark"] .h2-umrah-links a { color: #4ade80; }

/* centered picker sheets (choose network / "would you like to buy") */
.plans-overlay.bf-mid { place-items: center; }
.plans-overlay.bf-mid .plans-sheet { width: min(440px, 92vw); max-height: 82vh; border-radius: 26px; animation: bwIn .3s ease; }
.plans-overlay.bf-mid .net-grid { padding: 6px 4px 8px; }

/* live-prices overlay opens TALL (from near the top) so every plan shows */
#plansOverlay .plans-sheet { height: 92vh; max-height: 92vh; }

/* Data banner: 5G with Buy Data stacked underneath */
.h2-data-l { display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; }
.h2-data-l .h2-buy { background: linear-gradient(135deg,#1a1a1a,#3a3a3a); color: #f5c451; font-weight: 700; font-size: 12.5px; padding: 9px 15px; border-radius: 20px; white-space: nowrap; box-shadow: 0 6px 16px rgba(0,0,0,.25); }
/* inline WhatsApp strip (between Data & Bills and Umrah banners) */
.h2-wa { display: flex; align-items: center; gap: 12px; background: linear-gradient(135deg,#25D366,#128C7E); color: #fff; border-radius: 18px; padding: 13px 16px; margin-bottom: 16px; text-decoration: none; box-shadow: 0 10px 24px rgba(18,140,126,.30); }
.h2-wa-ic { font-size: 24px; }
.h2-wa-t { flex: 1; } .h2-wa-t b { display: block; font-size: 14.5px; } .h2-wa-t small { display: block; font-size: 11.5px; opacity: .92; }
.h2-wa-go { font-size: 20px; opacity: .9; }

/* Home Fund Wallet card (replaces search; account shown openly) */
.h2-fund { background: #fff; border-radius: 20px; padding: 18px; margin-bottom: 18px; box-shadow: 0 10px 26px rgba(15,23,42,.08); }
.h2-fund-lbl { margin: 0; color: #64708a; font-size: 12.5px; }
.h2-fund-bal { display: flex; align-items: center; gap: 10px; margin: 2px 0 12px; }
.h2-fund-bal b { font-family: var(--font-head); font-size: 30px; color: var(--ink); }
.h2-eye { background: none; border: 0; font-size: 17px; cursor: pointer; opacity: .55; }
.h2-fund-acct { margin-bottom: 12px; }
.h2-acct-hint { color: #8a94a6; font-size: 12.5px; }
.h2-acct-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: #f4f7fb; border-radius: 12px; padding: 10px 12px; }
.h2-acct-info small { display: block; color: #64708a; font-size: 10.5px; }
.h2-acct-no { font-family: var(--font-head); font-size: 17px; letter-spacing: 1px; color: var(--ink); }
.h2-acct-copy { flex-shrink: 0; background: #0f6b3e; color: #fff; border: 0; border-radius: 10px; padding: 8px 12px; font-size: 12px; font-weight: 700; cursor: pointer; }
.h2-fund-btns { display: flex; gap: 10px; }
.h2-fund-btn { flex: 1; border: 0; border-radius: 14px; padding: 13px; font-weight: 700; font-size: 14px; cursor: pointer; background: #eef2f7; color: var(--ink); }
.h2-fund-btn.primary { background: linear-gradient(135deg,#16A34A,#0F6B3E); color: #fff; }
html[data-theme="dark"] .h2-fund { background: #16202b; }
html[data-theme="dark"] .h2-fund-bal b, html[data-theme="dark"] .h2-acct-no { color: #e6eef5; }
html[data-theme="dark"] .h2-acct-row { background: #0f1728; }
html[data-theme="dark"] .h2-fund-btn { background: #22303f; color: #e6eef5; }

/* mini auto-rotating Kaaba inside the Umrah/Hajj hub sheet */
.um-kaaba-stage { perspective: 800px; height: 165px; display: grid; place-items: center; margin: 2px 0 16px; }
.um-kaaba { transform-style: preserve-3d; animation: umKaabaSpin 14s linear infinite; }
@keyframes umKaabaSpin { from { transform: rotateX(-14deg) rotateY(0deg); } to { transform: rotateX(-14deg) rotateY(360deg); } }

/* Umrah 4-cube animated category */
.um-cubes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; perspective: 900px; }
.um-cube { border: 0; border-radius: 20px; padding: 22px 14px; text-align: center; cursor: pointer; color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 5px; transform-style: preserve-3d;
  animation: umCubeFloat 4.6s ease-in-out infinite; box-shadow: 0 16px 32px rgba(0,0,0,.20); }
.um-cube:active { transform: scale(.96) !important; animation: none; }
.um-cube-ic { font-size: 36px; filter: drop-shadow(0 3px 5px rgba(0,0,0,.25)); }
.um-cube b { font-size: 13.5px; line-height: 1.25; }
.um-cube small { font-size: 11px; opacity: .92; }
.um-cube.umc-1 { background: linear-gradient(140deg,#12a05e,#0a5e34); }
.um-cube.umc-2 { background: linear-gradient(140deg,#3b62d8,#22357f); }
.um-cube.umc-3 { background: linear-gradient(140deg,#d4af37,#8a6d12); }
.um-cube.umc-4 { background: linear-gradient(140deg,#6b4bbd,#33206b); }
@keyframes umCubeFloat { 0%,100% { transform: perspective(900px) rotateY(-9deg) translateY(0); } 50% { transform: perspective(900px) rotateY(9deg) translateY(-7px); } }

/* ===== Currency Exchange module (standalone) ===== */
.fx-topbar { display: flex; align-items: center; gap: 10px; padding: 12px 20px 4px; flex-shrink: 0; }
.fx-base { flex: 1; min-width: 0; border: 1.6px solid #e3e8f0; border-radius: 12px; padding: 10px 12px; font-size: 14px; background: #f6f8fb; }
.fx-updated { font-size: 11px; color: var(--muted); white-space: nowrap; }
.fx-refresh { width: 38px; height: 38px; border-radius: 50%; border: 1px solid #e3e8f0; background: #f4f7fb; font-size: 18px; cursor: pointer; flex-shrink: 0; }
.fx-tabs { display: flex; gap: 8px; padding: 8px 20px 10px; flex-shrink: 0; }
.fx-tabs button { flex: 1; padding: 10px; border-radius: 12px; border: 1.6px solid #111; background: #fff; font-weight: 800; font-size: 12.5px; letter-spacing: .4px; cursor: pointer; }
.fx-tabs button.on { background: #111; color: #fff; }
.fx-body { flex: 1; min-height: 0; overflow-y: auto; }
.fx-hint { font-size: 11.5px; color: var(--muted); margin: 2px 0 10px; }
.fx-row { display: flex; align-items: center; gap: 12px; padding: 12px 4px; border-bottom: 1px solid #eef2f7; cursor: pointer; }
.fx-flag { font-size: 22px; width: 28px; text-align: center; }
.fx-rt { flex: 1; } .fx-rt b { font-size: 14.5px; } .fx-rt small { display: block; color: var(--muted); font-size: 11.5px; }
.fx-val { font-family: var(--font-head); font-size: 15px; }
.fx-star { background: none; border: 0; font-size: 19px; color: #c9a227; cursor: pointer; padding: 2px 4px; }
.fx-conv { display: grid; gap: 6px; }
.fx-amt { font-family: var(--font-head); font-size: 22px; }
.fx-cvrow { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: end; }
.fx-swap { width: 40px; height: 40px; border-radius: 50%; border: 1.6px solid #16A34A; background: #eafaf0; color: #0f6b3e; font-size: 18px; cursor: pointer; }
.fx-result { font-family: var(--font-head); font-size: 30px; color: #0f6b3e; margin-top: 18px; }
.fx-result span { font-size: 16px; color: var(--muted); }
.fx-rate1 { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.fx-chart { background: #f6f9fc; border: 1px solid #e6eef5; border-radius: 16px; padding: 14px; }
.fx-chart-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 14px; }
.fx-chart-top .up { color: #0f9d58; font-weight: 700; font-size: 12.5px; }
.fx-chart-top .down { color: #e0491f; font-weight: 700; font-size: 12.5px; }
.fx-spark { width: 100%; height: 120px; display: block; }
.fx-chart-foot { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-top: 6px; }
.fx-det-big { font-size: 16px; margin-bottom: 14px; } .fx-det-big b { font-family: var(--font-head); font-size: 24px; color: #0f6b3e; }
.fx-cta { display: flex; align-items: center; gap: 14px; margin: 14px 5vw 0; padding: 18px; border-radius: 22px; cursor: pointer; color: #fff; background: linear-gradient(135deg,#0ea5e9,#0369a1); box-shadow: 0 14px 34px rgba(3,105,161,.28); }
.fx-cta-ic { font-size: 30px; } .fx-cta-txt { flex: 1; } .fx-cta-txt h3 { margin: 0 0 3px; font-family: var(--font-head); font-size: 18px; } .fx-cta-txt p { margin: 0; font-size: 12.5px; opacity: .92; }
.fx-cta-go { font-size: 24px; opacity: .9; }
html[data-theme="dark"] .fx-base, html[data-theme="dark"] .fx-refresh, html[data-theme="dark"] .fx-chart { background: #16202b; border-color: #24313d; color: #e6eef5; }
html[data-theme="dark"] .fx-tabs button { background: #16202b; border-color: #2a3a57; color: #e6eef5; }
html[data-theme="dark"] .fx-tabs button.on { background: #e6eef5; color: #0b1220; }
html[data-theme="dark"] .fx-row { border-color: #24313d; }

/* ===== Exchange fintech multi-currency wallet (pre-launch) ===== */
.xw-card { margin: 4px 5vw 0; border-radius: 24px; padding: 22px; color: #fff; position: relative; overflow: hidden; text-align: center;
  background: radial-gradient(120% 90% at 80% 20%, #2c2c2c, #0d0d0d); box-shadow: 0 18px 44px rgba(0,0,0,.35); }
.xw-card::after { content: "$"; position: absolute; right: -6px; bottom: -34px; font-size: 150px; font-family: var(--font-head); font-weight: 800; color: rgba(212,175,55,.14); }
.xw-cur { background: #f3ead3; color: #111; border: 0; border-radius: 22px; padding: 9px 18px; font-weight: 800; font-size: 15px; cursor: pointer; position: relative; z-index: 1; }
.xw-bal-lbl { font-size: 10.5px; letter-spacing: 2px; opacity: .6; margin-top: 18px; text-transform: uppercase; }
.xw-bal { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 4px 0 16px; }
.xw-bal b { font-family: var(--font-head); font-size: 40px; letter-spacing: 4px; }
.xw-eye { background: none; border: 0; color: #fff; font-size: 20px; cursor: pointer; opacity: .85; }
.xw-acct { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff; border-radius: 14px; padding: 11px 16px; font-size: 14px; letter-spacing: 1px; cursor: pointer; position: relative; z-index: 1; }
.xw-actions { display: flex; justify-content: space-around; gap: 8px; margin: 18px 5vw 0; }
.xw-act { background: none; border: 0; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink); font-weight: 600; }
.xw-act-ic { width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg,#f7d774,#e0a520); color: #3a2a00; font-size: 24px; display: grid; place-items: center; box-shadow: 0 8px 18px rgba(224,165,32,.35); }
.xw-rate { display: flex; align-items: center; justify-content: space-between; margin: 20px 5vw 0; background: #fff; border: 1px solid #eef2f7; border-radius: 16px; padding: 14px 18px; font-size: 14.5px; box-shadow: 0 6px 16px rgba(15,23,42,.05); }
.xw-rate b { font-family: var(--font-head); }
.xw-rate a { color: #0f6b3e; font-weight: 700; text-decoration: underline; cursor: pointer; }
.xw-wallet { display: flex; align-items: center; gap: 14px; padding: 16px; margin-bottom: 12px; border: 1.5px solid #e6eef5; border-radius: 16px; }
.xw-w-flag { font-size: 26px; } .xw-w-name { flex: 1; font-size: 15px; font-weight: 600; } .xw-w-bal { font-family: var(--font-head); font-size: 17px; }
.xw-more-row { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; padding: 16px; margin-bottom: 10px; border: 0; background: #f4f7fb; border-radius: 14px; cursor: pointer; font-size: 15px; color: var(--ink); }
.xw-more-ic { color: #c9a227; font-size: 20px; }
html[data-theme="dark"] .xw-rate { background: #16202b; border-color: #24313d; color: #e6eef5; }
html[data-theme="dark"] .xw-act { color: #e6eef5; }
html[data-theme="dark"] .xw-wallet { background: #16202b; border-color: #24313d; }
html[data-theme="dark"] .xw-more-row { background: #16202b; color: #e6eef5; }

/* Umrah banner: whole-tappable + 3D animated icon */
.h2-umrah { cursor: pointer; }
.h2-umrah:active { transform: scale(.99); }
.h2-umrah-cta { display: inline-block; font-size: 13px; font-weight: 700; color: #0f6b3e; }
.h2-umrah-badge { transform-style: preserve-3d; animation: umBadge3d 3.8s ease-in-out infinite; }
.h2-kaaba3d { display: block; font-size: 34px; }
@keyframes umBadge3d { 0%,100% { transform: perspective(420px) rotateY(-20deg) translateY(0); } 50% { transform: perspective(420px) rotateY(20deg) translateY(-4px); } }
html[data-theme="dark"] .h2-umrah-cta { color: #4ade80; }

/* Umrah advert YouTube video banner (in hub) */
.um-video { display: block; position: relative; margin-top: 14px; border-radius: 16px; overflow: hidden; background: #0d0d0d; text-decoration: none; }
.um-video img { width: 100%; display: block; opacity: .88; }
.um-video-play { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,0,0,.92); color: #fff; display: grid; place-items: center; font-size: 22px; flex-shrink: 0; }
.um-video:not(.um-video-ph) .um-video-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.um-video-lbl { position: absolute; left: 12px; bottom: 10px; color: #fff; font-weight: 700; font-size: 13px; text-shadow: 0 1px 3px rgba(0,0,0,.6); }
.um-video-ph { display: flex; align-items: center; gap: 14px; padding: 20px; color: #fff; background: linear-gradient(135deg,#1a1a1a,#333); }
.um-video-ph b { display: block; font-size: 15px; } .um-video-ph small { color: #bbb; font-size: 12px; }

/* Travel hero: globe only, smaller & raised (Kaaba removed) */
.pilgrim-hero.globe-only { grid-template-columns: 1fr; padding: 14px 5vw 20px; }
.globe-only .globe-stage { height: 138px; }
.globe-only .globe3d { width: 116px; height: 116px; }
.globe-only .ph-title { margin-bottom: 6px; font-size: 19px; }

/* Flight page: 2 animated 3D cubes + Skyscanner-style search */
.fl-cubes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 480px; margin: 0 auto; perspective: 900px; }
.fl-cube { border: 0; border-radius: 22px; padding: 30px 16px; text-align: center; cursor: pointer; color: #fff; display: flex; flex-direction: column; align-items: center; gap: 6px; transform-style: preserve-3d; animation: umCubeFloat 4.6s ease-in-out infinite; box-shadow: 0 16px 34px rgba(0,0,0,.22); }
.fl-cube:active { transform: scale(.96) !important; animation: none; }
.fl-cube-ic { font-size: 42px; filter: drop-shadow(0 3px 6px rgba(0,0,0,.3)); }
.fl-cube b { font-size: 16px; } .fl-cube small { font-size: 12px; opacity: .9; }
.fl-cube.fl-dom { background: linear-gradient(140deg,#12a05e,#0a5e34); }
.fl-cube.fl-intl { background: linear-gradient(140deg,#0ea5e9,#0369a1); animation-delay: .4s; }
.fl-trip { display: flex; gap: 8px; margin-bottom: 14px; }
.fl-tt { flex: 1; padding: 10px; border-radius: 30px; border: 1.6px solid #e6eef5; background: #fff; font-weight: 700; font-size: 12.5px; cursor: pointer; }
.fl-tt.on { background: #0369a1; border-color: #0369a1; color: #fff; }
html[data-theme="dark"] .fl-tt { background: #16202b; border-color: #2a3a57; color: #e6eef5; }

/* Flight page: remove green hero background — clean light hero (WhatsApp button stays green) */
.svc-hero.flight-hero { background: linear-gradient(180deg,#eef2f6,#e7ecf2); color: var(--ink); border-radius: 0 0 28px 28px; }
.flight-hero .svc-crumb, .flight-hero .svc-crumb a, .flight-hero .svc-crumb b, .flight-hero h1 { color: var(--ink); }
.flight-hero .tagline { color: #0f6b3e; }
html[data-theme="dark"] .svc-hero.flight-hero { background: linear-gradient(180deg,#0b1220,#0f1728); }
html[data-theme="dark"] .flight-hero .svc-crumb, html[data-theme="dark"] .flight-hero .svc-crumb a, html[data-theme="dark"] .flight-hero .svc-crumb b, html[data-theme="dark"] .flight-hero h1 { color: #e6eef5; }

/* flight: add-destination + flexible dates + multi-city legs */
.fl-add { width: 100%; padding: 13px; border-radius: 14px; border: 1.6px dashed #e0a520; background: #fffdf5; color: #a5710f; font-weight: 700; font-size: 13.5px; cursor: pointer; margin: 8px 0 10px; }
.fl-check { display: flex; align-items: center; gap: 10px; font-size: 13.5px; margin: 4px 0 10px; cursor: pointer; }
.fl-check input { width: 18px; height: 18px; }
.fl-leg { border: 1.5px solid #e6eef5; border-radius: 14px; padding: 12px 14px; margin: 10px 0; background: #f9fbfd; }
.fl-leg-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.fl-leg-head b { font-size: 14px; }
.fl-leg-x { background: #eef2f7; border: 0; width: 26px; height: 26px; border-radius: 50%; cursor: pointer; font-size: 13px; color: #55627a; }
html[data-theme="dark"] .fl-add { background: #1a1608; border-color: #8a6d12; color: #e0a520; }
html[data-theme="dark"] .fl-leg { background: #16202b; border-color: #24313d; }

/* ===== Virtual Cards (Cleva-style preview) ===== */
.cv-card { border-radius: 20px; padding: 22px; color: #2a2000; position: relative; overflow: hidden; background: linear-gradient(135deg,#f7c873,#e8a54d); box-shadow: 0 16px 36px rgba(200,140,40,.3); margin-bottom: 16px; }
.cv-ctop { display: flex; justify-content: space-between; align-items: center; }
.cv-brand { font-family: var(--font-head); font-weight: 800; font-size: 20px; letter-spacing: 1px; }
.cv-active { background: #fff; color: #0f9d58; font-size: 11px; font-weight: 700; border-radius: 20px; padding: 4px 12px; }
.cv-chip { display: block; width: 42px; height: 30px; border-radius: 6px; background: linear-gradient(135deg,#efefef,#bcbcbc); margin: 18px 0 12px; }
.cv-name { font-weight: 700; font-size: 16px; }
.cv-num { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 19px; letter-spacing: 2px; margin: 6px 0 12px; }
.cv-copy { background: none; border: 0; cursor: pointer; font-size: 15px; }
.cv-brow { display: flex; align-items: center; gap: 20px; font-size: 13px; }
.cv-mc { margin-left: auto; display: flex; align-items: center; }
.cv-mc i { width: 26px; height: 26px; border-radius: 50%; display: block; }
.cv-mc i:first-child { background: #eb001b; } .cv-mc i:last-child { background: #f79e1b; margin-left: -12px; opacity: .92; }
.cv-actions { display: flex; gap: 10px; margin-bottom: 16px; }
.cv-act-btn { flex: 1; padding: 13px; border-radius: 14px; border: 1.5px solid #e6eef5; background: #fff; font-weight: 700; font-size: 13.5px; cursor: pointer; color: var(--ink); }
.cv-billing, .cv-tx { background: #fff; border: 1px solid #eef2f7; border-radius: 16px; padding: 16px; margin-bottom: 16px; }
.cv-billing b { font-size: 15px; } .cv-billing p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }
.cv-tx-head { display: flex; justify-content: space-between; align-items: center; }
.cv-tx-head a { color: #0f6b3e; font-weight: 700; font-size: 13px; cursor: pointer; }
.cv-tx-empty { color: var(--muted); font-size: 13px; margin-top: 10px; text-align: center; padding: 12px 0; }
.cv-opts { background: #fff; border: 1px solid #eef2f7; border-radius: 16px; overflow: hidden; }
.cv-opt { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; padding: 15px 16px; border: 0; border-bottom: 1px solid #f0f3f7; background: #fff; cursor: pointer; color: var(--ink); }
.cv-opt:last-child { border-bottom: 0; }
.cv-opt.danger { color: #dc2626; }
.cv-opt-ic { font-size: 18px; width: 22px; text-align: center; }
.cv-opt-t { flex: 1; } .cv-opt-t b { font-size: 14.5px; } .cv-opt-t small { display: block; color: var(--muted); font-size: 12px; }
.cv-limit { background: #fff; border: 1px solid #eef2f7; border-radius: 16px; padding: 16px; margin-bottom: 14px; }
.cv-limit-top { display: flex; justify-content: space-between; color: var(--muted); font-size: 14px; }
.cv-limit-top b { color: var(--ink); }
.cv-limit-amt { font-family: var(--font-head); font-size: 22px; margin: 2px 0 10px; }
.cv-limit-bar { height: 6px; border-radius: 6px; background: #eef2f7; overflow: hidden; }
.cv-limit-bar i { display: block; height: 100%; background: #0f9d58; }
.cv-limit-foot { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 8px; }
html[data-theme="dark"] .cv-act-btn, html[data-theme="dark"] .cv-billing, html[data-theme="dark"] .cv-tx, html[data-theme="dark"] .cv-opts, html[data-theme="dark"] .cv-opt, html[data-theme="dark"] .cv-limit { background: #16202b; border-color: #24313d; color: #e6eef5; }
html[data-theme="dark"] .cv-opt { border-bottom-color: #24313d; }

/* Naira/Dollar card tabs + variants */
.cv-tabs2 { display: flex; gap: 8px; margin-bottom: 14px; }
.cv-tabs2 button { flex: 1; padding: 11px; border-radius: 12px; border: 1.6px solid #e6eef5; background: #fff; font-weight: 700; font-size: 13px; cursor: pointer; color: var(--ink); }
.cv-tabs2 button.on { background: #0f6b3e; color: #fff; border-color: #0f6b3e; }
.cv-card.cv-ngn { background: linear-gradient(135deg,#12a05e,#0a5e34); color: #fff; box-shadow: 0 16px 36px rgba(15,120,60,.28); }
.cv-card.cv-usd { background: linear-gradient(135deg,#f7c873,#e8a54d); color: #2a2000; box-shadow: 0 16px 36px rgba(200,140,40,.3); }
html[data-theme="dark"] .cv-tabs2 button { background: #16202b; border-color: #24313d; color: #e6eef5; }
html[data-theme="dark"] .cv-tabs2 button.on { background: #0f6b3e; border-color: #0f6b3e; color: #fff; }

/* ===== TikTok Coins (live gifting) ===== */
.tk-live { background: #ff2d55; color: #fff; font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 6px; vertical-align: middle; margin-left: 6px; letter-spacing: .5px; animation: tkPulse 1.4s infinite; }
@keyframes tkPulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
.tk-body { background: radial-gradient(120% 90% at 50% 0%, #0e3a24, #06210f 72%); border-radius: 18px; }
.tk-hero { text-align: center; padding: 18px 10px 6px; }
.tk-hero-logo { font-family: var(--font-head); font-size: 30px; color: #fff; font-weight: 800; }
.tk-hero-logo b { color: #f4c542; }
.tk-hero-sub { color: #f4c542; font-size: 13px; font-weight: 700; margin-top: 2px; letter-spacing: .3px; }
.tk-hero-sub span { color: #cfe8d8; }
.tk-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 12px; }
.tk-badges span { background: rgba(244,197,66,.12); border: 1px solid rgba(244,197,66,.4); color: #f4d98a; font-size: 11px; font-weight: 700; padding: 5px 9px; border-radius: 20px; }
.tk-cubes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 18px 4px 6px; }
.tk-cube { border: 0; cursor: pointer; background: none; padding: 0; animation: tkFloat 3.2s ease-in-out infinite; }
@keyframes tkFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.tk-cube-face { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 18px 10px; border-radius: 18px; background: linear-gradient(155deg, #0f4a2c, #072b16); border: 1.5px solid #f4c542; box-shadow: 0 12px 26px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.08); transition: transform .18s; }
.tk-cube:active .tk-cube-face { transform: scale(.95); }
.tk-coin { width: 36px; height: 36px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #ffe487, #e8a417 70%); color: #7a4d00; font-size: 20px; font-weight: 900; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 -2px 3px rgba(0,0,0,.25), 0 3px 6px rgba(0,0,0,.35); border: 1.5px solid #f7d67a; }
.tk-amt { font-family: var(--font-head); font-size: 24px; color: #fff; line-height: 1.05; }
.tk-cube-face small { color: #bfe0cd; font-size: 11px; }
.tk-price { font-family: var(--font-head); font-size: 20px; color: #f4c542; margin-top: 6px; }
.tk-buy { margin-top: 8px; font-size: 11px; font-weight: 800; color: #0a2b16; background: #f4c542; padding: 5px 12px; border-radius: 20px; }
.tk-custom { width: 100%; margin: 14px 0 6px; background: #25d366; color: #04371c; font-weight: 800; border: 0; padding: 14px; border-radius: 14px; cursor: pointer; }
.tk-body .bf-note { color: #bfe0cd; }

/* TikTok custom-amount selector */
.tk-cust-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 22px 16px; border-radius: 20px; background: linear-gradient(155deg, #0f4a2c, #072b16); border: 1.5px solid #f4c542; box-shadow: 0 12px 26px rgba(0,0,0,.4); margin-top: 6px; }
.tk-cust-lbl { color: #bfe0cd; font-size: 13px; font-weight: 700; }
.tk-cust-in { display: flex; align-items: center; gap: 10px; width: 100%; max-width: 300px; }
.tk-cust-in input { flex: 1; text-align: center; font-family: var(--font-head); font-size: 26px; color: #fff; background: rgba(0,0,0,.25); border: 1.5px solid rgba(244,197,66,.5); border-radius: 14px; padding: 12px 8px; -moz-appearance: textfield; }
.tk-cust-in input::-webkit-outer-spin-button, .tk-cust-in input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.tk-step { width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%; border: 1.5px solid #f4c542; background: rgba(244,197,66,.12); color: #f4c542; font-size: 24px; font-weight: 800; cursor: pointer; line-height: 1; }
.tk-step:active { transform: scale(.92); }
.tk-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.tk-chip { background: rgba(255,255,255,.06); border: 1px solid rgba(244,197,66,.4); color: #f4d98a; font-size: 13px; font-weight: 700; padding: 8px 14px; border-radius: 20px; cursor: pointer; }
.tk-chip.on { background: #f4c542; color: #0a2b16; border-color: #f4c542; }
.tk-cust-price { color: #cfe8d8; font-size: 15px; font-weight: 600; margin-top: 4px; }
.tk-cust-price b { display: block; font-family: var(--font-head); font-size: 30px; color: #f4c542; margin-top: 2px; }
.tk-cust-card .tk-custom { max-width: 320px; }

/* Coin logo sizing on TikTok hero + All Services row */
.tk-hero-logo { display: inline-flex; align-items: center; gap: 8px; }
.tk-hero-logo .tk-coin-svg { width: 34px; height: 34px; }
.tk-row-ic .tk-coin-svg { width: 30px; height: 30px; vertical-align: middle; }

/* Transaction direction colors */
.bf-hrow .hr-cr { color: #12a05e; }
.bf-hrow .hr-db { color: #d94141; }
html[data-theme="dark"] .bf-hrow .hr-cr { color: #34d17f; }
html[data-theme="dark"] .bf-hrow .hr-db { color: #ff6b6b; }

/* A2C cash balance card (Withdraw + Add to balance) */
.a2c-cash { background: linear-gradient(135deg, #0f6b3e, #0a5330); color: #fff; border-radius: 16px; padding: 16px; margin-bottom: 14px; text-align: center; box-shadow: 0 10px 24px rgba(15,107,62,.25); }
.a2c-cash-lbl { font-size: 12px; opacity: .85; }
.a2c-cash-bal { font-family: var(--font-head); font-size: 30px; font-weight: 800; margin: 2px 0 12px; }
.a2c-cash-btns { display: flex; gap: 10px; }
.a2c-cbtn { flex: 1; padding: 11px; border-radius: 12px; border: 0; font-weight: 800; font-size: 13px; cursor: pointer; background: #fff; color: #0f6b3e; }
.a2c-cbtn2 { background: rgba(255,255,255,.16); color: #fff; border: 1.5px solid rgba(255,255,255,.5); }

/* A2C automated convert — airtime balance card */
.a2c-bal-card { display: flex; justify-content: space-between; align-items: center; background: #fff7e6; border: 1.5px solid #f4c542; border-radius: 14px; padding: 14px 16px; margin-bottom: 12px; }
.a2c-bal-card span { color: #8a6d1f; font-size: 13px; }
.a2c-bal-card b { font-family: var(--font-head); font-size: 22px; color: #7a4d00; }
html[data-theme="dark"] .a2c-bal-card { background: rgba(244,197,66,.08); }
html[data-theme="dark"] .a2c-bal-card span { color: #f4d98a; }
html[data-theme="dark"] .a2c-bal-card b { color: #ffe487; }

/* Admin Flutterwave float indicator */
.adm-float { background: #e8f6ee; border: 1.5px solid #12a05e; border-radius: 12px; padding: 12px 14px; margin-bottom: 12px; font-size: 14px; color: #0a5330; text-align: center; }
.adm-float b { font-family: var(--font-head); font-size: 18px; }
.adm-float-low { background: #fdeaea; border-color: #d94141; color: #a12727; }
html[data-theme="dark"] .adm-float { background: rgba(18,160,94,.12); color: #34d17f; }
html[data-theme="dark"] .adm-float-low { background: rgba(217,65,65,.12); color: #ff8a8a; }

/* ===== Home redesign (28 Jul): compact balance · Our Services 3D · YouTube pop ===== */
.h2-greet { margin: 6px 0 6px !important; }
.h2-fund { padding: 14px 16px !important; margin-bottom: 12px !important; }
.h2-fund-bal b { font-size: 30px; }
.h2-fund-acct { margin: 8px 0 !important; }

.h2-sec-row { display: flex; align-items: center; justify-content: space-between; margin: 16px 4px 10px; }
.h2-viewall { color: #d4a017; font-weight: 700; font-size: 13px; text-decoration: none; }
.h2-serv { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px 8px; }
.h2-serv-i { display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; color: var(--ink); font-size: 11px; font-weight: 600; text-align: center; line-height: 1.2; }
.h2-serv-ic { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(155deg, #1c2b33, #0b1418); display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 8px 18px rgba(0,0,0,.2); animation: servFloat 3.2s ease-in-out infinite; }
.h2-serv-i:nth-child(2) .h2-serv-ic { animation-delay: .3s; }
.h2-serv-i:nth-child(3) .h2-serv-ic { animation-delay: .6s; }
.h2-serv-i:nth-child(4) .h2-serv-ic { animation-delay: .9s; }
.h2-serv-i:nth-child(5) .h2-serv-ic { animation-delay: .2s; }
.h2-serv-i:nth-child(6) .h2-serv-ic { animation-delay: .5s; }
.h2-serv-i:nth-child(7) .h2-serv-ic { animation-delay: .8s; }
.h2-serv-i:nth-child(8) .h2-serv-ic { animation-delay: 1.1s; }
@keyframes servFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.h2-serv-i:active .h2-serv-ic { transform: scale(.92); }

.tb-yt small { color: #e11d1d !important; font-weight: 800; }
.tb-yt .tb-ic { filter: drop-shadow(0 0 5px rgba(225,29,29,.55)); }
.yt-pop { padding-top: 6px; }
.yt-row { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1.5px solid #e6eef5; border-radius: 14px; margin-bottom: 10px; text-decoration: none; color: var(--ink); }
.yt-row-ic { width: 40px; height: 40px; border-radius: 10px; background: #ffe8e8; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.yt-row-t { flex: 1; font-weight: 700; font-size: 14px; }
.yt-row-go { color: var(--muted); font-size: 18px; }
html[data-theme="dark"] .yt-row { border-color: #24313d; }
html[data-theme="dark"] .yt-row-ic { background: rgba(225,29,29,.15); }

/* Home: Buy on WhatsApp + Transaction History */
.h2-buywa { display: flex; align-items: center; gap: 12px; background: linear-gradient(135deg,#25d366,#0f9d58); color: #fff; border-radius: 16px; padding: 14px 16px; margin: 16px 0 8px; text-decoration: none; box-shadow: 0 10px 24px rgba(15,157,88,.25); }
.h2-buywa-ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 20px; flex: 0 0 42px; }
.h2-buywa-t { flex: 1; }
.h2-buywa-t b { font-size: 16px; display: block; }
.h2-buywa-t small { font-size: 12px; opacity: .92; }
.h2-new { background: rgba(255,255,255,.28); font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 6px; vertical-align: middle; margin-left: 4px; letter-spacing: .5px; }
.h2-buywa-go { font-size: 20px; }
.h2-hist { display: flex; flex-direction: column; }
.h2-hrow { display: flex; align-items: center; gap: 12px; padding: 12px 2px; border-bottom: 1px solid #eef2f6; }
.h2-hrow:last-child { border-bottom: 0; }
.h2-hic { width: 38px; height: 38px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: bold; flex: 0 0 38px; }
.h2-hic.in { background: #e4f7ec; color: #12a05e; }
.h2-hic.out { background: #fdecea; color: #d94141; }
.h2-ht { flex: 1; display: flex; flex-direction: column; }
.h2-ht b { font-size: 14px; }
.h2-ht small { font-size: 11px; color: var(--muted); }
.h2-hamt { font-size: 14px; white-space: nowrap; }
.h2-hamt.in { color: #12a05e; }
.h2-hamt.out { color: var(--ink); }
html[data-theme="dark"] .h2-hrow { border-color: #1c2731; }
html[data-theme="dark"] .h2-hic.in { background: rgba(18,160,94,.15); }
html[data-theme="dark"] .h2-hic.out { background: rgba(217,65,65,.15); }

/* Wallet actions rows (More Options) */
.wa-row { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1.5px solid #e6eef5; border-radius: 16px; margin-bottom: 12px; text-decoration: none; color: var(--ink); }
.wa-ic { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex: 0 0 46px; }
.wa-ic.blue { background: #e6efff; }
.wa-ic.green { background: #e4f7ec; }
.wa-ic.gold { background: #fff4d6; }
.wa-t { flex: 1; display: flex; flex-direction: column; }
.wa-t b { font-size: 16px; }
.wa-t small { font-size: 12px; color: var(--muted); margin-top: 2px; }
.wa-go { color: var(--muted); font-size: 20px; }
html[data-theme="dark"] .wa-row { border-color: #24313d; }

/* Umrah banner: compact rectangle + spinning 360 Kaaba */
.umrah-rect { padding: 16px !important; }
.umrah-rect .h2-umrah-txt p { margin: 4px 0 8px !important; }
.h2-kaaba-spin { display: inline-block; animation: kaabaSpin 4.5s linear infinite; }
@keyframes kaabaSpin { from { transform: perspective(220px) rotateY(0deg); } to { transform: perspective(220px) rotateY(360deg); } }

/* Balance card ~70% compact + eye toggle button */
.h2-fund { padding: 10px 14px !important; }
.h2-fund-lbl { font-size: 12px !important; margin-bottom: 2px !important; }
.h2-fund-bal b { font-size: 23px !important; }
.h2-fund-acct { margin: 6px 0 !important; }
.h2-eye { display: inline-flex; align-items: center; color: var(--muted); background: none; border: 0; cursor: pointer; padding: 4px; margin-left: 4px; }
.h2-fund-btn { padding: 12px !important; font-size: 14px; }

/* Kaaba 3D cube — spins 360° showing each face incl. door */
.kaaba-scene { width: 60px; height: 60px; perspective: 420px; margin: auto; }
.kaaba-cube { width: 60px; height: 60px; position: relative; transform-style: preserve-3d; animation: kaabaCube 7s linear infinite; }
@keyframes kaabaCube { from { transform: rotateX(-14deg) rotateY(0deg); } to { transform: rotateX(-14deg) rotateY(360deg); } }
.kc-face { position: absolute; width: 60px; height: 60px; background: linear-gradient(155deg,#2c2c2c,#0b0b0b); border: 1px solid #000; box-sizing: border-box; }
.kc-face::after { content: ""; position: absolute; left: 0; right: 0; top: 37%; height: 6px; background: linear-gradient(90deg,#c99a12,#f4d778,#c99a12); box-shadow: 0 0 6px rgba(244,197,66,.5); }
.kc-f { transform: translateZ(30px); }
.kc-b { transform: rotateY(180deg) translateZ(30px); }
.kc-r { transform: rotateY(90deg) translateZ(30px); }
.kc-l { transform: rotateY(-90deg) translateZ(30px); }
.kc-t { transform: rotateX(90deg) translateZ(30px); background: #141414; }
.kc-bo { transform: rotateX(-90deg) translateZ(30px); background: #050505; }
.kc-t::after, .kc-bo::after { display: none; }
.kc-f::before { content: ""; position: absolute; left: 40%; top: 46%; width: 20%; height: 32%; background: linear-gradient(#d4af37,#8a6d00); border-radius: 1px; box-shadow: inset 0 0 3px #000; }

/* Fingerprint key on the app-lock keypad */
.bf-pad .pad-bio { color: #12a05e; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.bf-pad .pad-bio:active { opacity: .55; }

/* Balance check codes */
.cb-h { font-size: 12px; color: var(--muted); font-weight: 800; letter-spacing: .5px; margin: 16px 4px 8px; }
.cb-row { display: flex; align-items: center; gap: 10px; width: 100%; padding: 12px 14px; border: 1.5px solid #e6eef5; border-radius: 12px; margin-bottom: 8px; background: #fff; cursor: pointer; text-align: left; }
.cb-net { flex: 0 0 42%; font-weight: 700; font-size: 13px; color: var(--ink); }
.cb-code { flex: 1; font-family: monospace; font-size: 14px; color: #0f6b3e; }
.cb-copy { font-size: 15px; opacity: .6; }
html[data-theme="dark"] .cb-row { background: #16202b; border-color: #24313d; }
/* Address */
.ad-card { display: flex; gap: 14px; align-items: flex-start; background: #e8f6ee; border-radius: 16px; padding: 18px; margin-bottom: 14px; }
.ad-ic { font-size: 28px; }
.ad-t b { font-size: 17px; color: #0a5330; }
.ad-t p { margin: 6px 0 0; font-size: 14px; line-height: 1.6; color: var(--ink); }
html[data-theme="dark"] .ad-card { background: rgba(18,160,94,.1); }
/* Legal docs */
.legal-doc { line-height: 1.7; }
.legal-doc p { font-size: 14px; color: var(--ink); margin: 8px 0; }
.legal-doc h4 { font-size: 15px; font-weight: 800; margin: 18px 0 4px; color: var(--ink); }
.legal-upd { font-style: italic; color: var(--muted); font-size: 13px !important; margin-top: 16px !important; }
.legal-foot { font-size: 12px !important; color: var(--muted); text-align: center; margin-top: 22px !important; padding-top: 14px; border-top: 1px solid #eef2f6; }
html[data-theme="dark"] .legal-foot { border-color: #1c2731; }

/* Fund Wallet cards (Bank Transfer blue / Dynamic yellow) */
.fund-cards { display: flex; gap: 12px; margin-bottom: 16px; }
.fund-c { flex: 1; padding: 18px 14px; border-radius: 16px; border: 0; cursor: pointer; text-align: left; display: flex; flex-direction: column; gap: 2px; background: #eef2f6; color: var(--ink); transition: transform .15s; }
.fund-c-ic { font-size: 22px; margin-bottom: 6px; }
.fund-c b { font-size: 16px; }
.fund-c small { font-size: 12px; opacity: .78; }
.fund-c.on { box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.fund-bank.on { background: linear-gradient(150deg,#2563eb,#1746b0); color: #fff; }
.fund-dyn.on { background: linear-gradient(150deg,#f4c542,#e0a815); color: #241a00; }
html[data-theme="dark"] .fund-c { background: #16202b; }

/* Tawaf: static Kaaba + people circling (real tawaf, anticlockwise) */
.tawaf-scene { width: 72px; height: 72px; position: relative; margin: auto; }
.tawaf-kaaba { position: absolute; left: 50%; top: 50%; width: 30px; height: 34px; transform: translate(-50%,-50%); background: linear-gradient(160deg,#2b2b2b,#080808); border-radius: 3px; box-shadow: 0 4px 10px rgba(0,0,0,.45); z-index: 2; }
.tawaf-kaaba::after { content:""; position:absolute; left:0; right:0; top:30%; height:4px; background: linear-gradient(90deg,#c99a12,#f4d778,#c99a12); }
.tawaf-kaaba::before { content:""; position:absolute; left:40%; top:52%; width:20%; height:42%; background: linear-gradient(#d4af37,#8a6d00); border-radius:1px; }
.tawaf-ring { position: absolute; inset: 0; animation: tawafSpin 5s linear infinite; }
.tawaf-ring i { position: absolute; top: 50%; left: 50%; width: 6px; height: 6px; margin: -3px; border-radius: 50%; background: #f5f5f5; box-shadow: 0 0 3px rgba(0,0,0,.35); }
.tawaf-ring i:nth-child(1){ transform: rotate(0deg) translateX(32px); }
.tawaf-ring i:nth-child(2){ transform: rotate(45deg) translateX(32px); }
.tawaf-ring i:nth-child(3){ transform: rotate(90deg) translateX(32px); }
.tawaf-ring i:nth-child(4){ transform: rotate(135deg) translateX(32px); }
.tawaf-ring i:nth-child(5){ transform: rotate(180deg) translateX(32px); }
.tawaf-ring i:nth-child(6){ transform: rotate(225deg) translateX(32px); }
.tawaf-ring i:nth-child(7){ transform: rotate(270deg) translateX(32px); }
.tawaf-ring i:nth-child(8){ transform: rotate(315deg) translateX(32px); }
@keyframes tawafSpin { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

/* Travel green hero board */
.pilgrim-hero.travel-green { background: linear-gradient(150deg,#12a05e,#0a5330); color: #fff; border-radius: 0 0 22px 22px; padding: 22px 20px 26px; }
.tv-green-title { color: #fff; font-size: 23px; margin: 6px 0 2px; }
.tv-green-sub { color: rgba(255,255,255,.85); font-size: 13px; margin: 0 0 16px; }
.travel-green .tv-cta-row { display: flex; gap: 10px; }
.travel-green .tv-cta-row .btn { flex: 1; }
.travel-green .btn-ghost { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.4); }

/* Kaaba 3D cube — realistic look, slow 360 (owner: no tawaf) — overrides earlier */
.kaaba-scene { width: 66px !important; height: 66px !important; perspective: 520px; margin: auto; }
.kaaba-cube { width: 66px !important; height: 66px !important; animation: kaabaCube 20s linear infinite !important; will-change: transform; backface-visibility: hidden; transform-origin: 50% 50%; }
@keyframes kaabaCube { from { transform: rotateX(-10deg) rotateY(0deg); } to { transform: rotateX(-10deg) rotateY(360deg); } }
.kc-face { width: 66px !important; height: 66px !important; border: 0 !important; border-radius: 7px !important; background:
  repeating-linear-gradient(90deg, rgba(232,200,106,.9) 0 5px, transparent 5px 17px) left 40%/100% 3px no-repeat,
  repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 1px, transparent 1px 12px) bottom/100% 15% no-repeat,
  linear-gradient(to bottom, #282828 0%, #121212 66%, #efe7d0 66%, #f5edd7 79%, #1a1a1a 79%, #060606 100%) !important;
  box-shadow: inset 0 0 9px rgba(0,0,0,.55) !important; }
.kc-face::after { content: "" !important; position: absolute; left: 0; right: 0; top: 22% !important; height: 10px !important; background:
  repeating-linear-gradient(90deg, transparent 0 8px, rgba(48,30,0,.5) 8px 10px),
  linear-gradient(90deg,#a9780a,#f4d778,#e8b923,#f4d778,#a9780a) !important;
  box-shadow: 0 0 5px rgba(244,197,66,.5), inset 0 1px 0 rgba(255,240,180,.6), inset 0 -1px 0 rgba(120,80,0,.6) !important; }
.kc-f::before { content: "" !important; position: absolute; left: 21% !important; top: 40% !important; width: 17% !important; height: 40% !important; background:
  repeating-linear-gradient(0deg, rgba(120,90,0,.35) 0 3px, transparent 3px 6px),
  linear-gradient(#f0d27a,#b8891a) !important; border: 1px solid #7a5c00 !important; border-radius: 5px 5px 0 0 !important; box-shadow: inset 0 0 3px rgba(0,0,0,.5) !important; }
.kc-f { transform: translateZ(33px) !important; }
.kc-b { transform: rotateY(180deg) translateZ(33px) !important; }
.kc-r { transform: rotateY(90deg) translateZ(33px) !important; }
.kc-l { transform: rotateY(-90deg) translateZ(33px) !important; }
/* Accessibility: honour Reduce Motion — hold the Kaaba still (no spin) */
@media (prefers-reduced-motion: reduce) {
  .kaaba-cube { animation: none !important; transform: rotateX(-10deg) rotateY(-24deg) !important; }
}
.kc-t { transform: rotateX(90deg) translateZ(33px) !important; background: #141414 !important; }
.kc-bo { transform: rotateX(-90deg) translateZ(33px) !important; background: #070707 !important; }
.kc-t::after, .kc-bo::after { display: none !important; }

/* ===== Umrah installment LEVEL tracker (booking view) ===== */
.tl-card { background: linear-gradient(160deg,#f4faf6,#eef6f1); border: 1px solid #d8ebe0; border-radius: 20px; padding: 16px 16px 18px; margin-bottom: 14px; }
.tl-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.tl-lvl { display: block; font-size: 11px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; color: #16A34A; }
.tl-name { font-family: var(--font-head); font-size: 17px; color: var(--ink); }
.tl-remain { text-align: right; flex-shrink: 0; }
.tl-remain small { display: block; font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; }
.tl-remain b { font-family: var(--font-head); font-size: 17px; color: #0F6B3E; }
.tl-paid { font-size: 12.5px; color: var(--muted); margin: 4px 0 16px; }
.tl-paid b { color: var(--ink); }
.tl-rail { position: relative; display: flex; justify-content: space-between; margin: 0 6px 14px; }
.tl-rail::before { content: ""; position: absolute; left: 10px; right: 10px; top: 10px; height: 3px; background: #dbe7e0; border-radius: 3px; }
.tl-rail::after { content: ""; position: absolute; left: 10px; top: 10px; height: 3px; width: calc((100% - 20px) * var(--p) / 100); background: linear-gradient(90deg,#16A34A,#0F6B3E); border-radius: 3px; transition: width .6s cubic-bezier(.22,1,.36,1); }
.tl-node { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; width: 20%; }
.tl-dot { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 2px solid #cdddd3; color: #9fb2a8; font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.tl-node.done .tl-dot { background: #16A34A; border-color: #16A34A; color: #fff; }
.tl-node.now .tl-dot { background: #fff; border-color: #16A34A; color: #16A34A; box-shadow: 0 0 0 4px rgba(22,163,74,.15); }
.tl-node small { margin-top: 6px; font-size: 8.5px; line-height: 1.15; text-align: center; color: var(--muted); text-transform: uppercase; letter-spacing: .2px; }
.tl-node.done small, .tl-node.now small { color: var(--ink); font-weight: 700; }
.tl-next { background: #fff; border: 1px dashed #bfe0cd; border-radius: 12px; padding: 10px 12px; font-size: 13px; color: var(--ink); text-align: center; }
.tl-next b { color: #0F6B3E; }
.tl-next.tl-ok { border-style: solid; border-color: #bfe0cd; background: #eafaf0; }
html[data-theme="dark"] .tl-card { background: linear-gradient(160deg,#12241a,#0f1c15); border-color: #1f3a2b; }
html[data-theme="dark"] .tl-name, html[data-theme="dark"] .tl-paid b, html[data-theme="dark"] .tl-node.done small, html[data-theme="dark"] .tl-node.now small { color: #e6efe9; }
html[data-theme="dark"] .tl-dot { background: #0f1c15; border-color: #2a4636; }
html[data-theme="dark"] .tl-next { background: #0f1c15; border-color: #2a4636; color: #e6efe9; }
html[data-theme="dark"] .tl-next.tl-ok { background: #12281b; }
html[data-theme="dark"] .tl-rail::before { background: #223a2c; }

/* Home compact installment card */
.h2-trip { display: block; width: 100%; text-align: left; background: linear-gradient(135deg,#0F6B3E,#16A34A); color: #fff; border: 0; border-radius: 18px; padding: 14px 16px; margin: 0 0 14px; box-shadow: 0 8px 20px rgba(15,107,62,.28); cursor: pointer; }
.h2-trip-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 10px; }
.h2-trip-ttl { font-family: var(--font-head); font-size: 15px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.h2-trip-lvl { flex-shrink: 0; font-size: 11px; font-weight: 800; background: rgba(255,255,255,.22); padding: 3px 9px; border-radius: 20px; }
.h2-trip-bar { height: 8px; border-radius: 8px; background: rgba(255,255,255,.25); overflow: hidden; }
.h2-trip-bar i { display: block; height: 100%; border-radius: 8px; background: #FFD54A; transition: width .6s cubic-bezier(.22,1,.36,1); }
.h2-trip-bot { display: flex; justify-content: space-between; align-items: center; margin-top: 9px; font-size: 12.5px; opacity: .96; }
.h2-trip-bot b { font-size: 13.5px; }

/* Pending-approval states (installment tracker + admin) */
.tl-next.tl-pend { border-style: solid; border-color: #f2d79a; background: #fff8ec; color: #7a5300; }
.tl-next.tl-pend b { color: #a5670a; }
html[data-theme="dark"] .tl-next.tl-pend { background: #2a2212; border-color: #5c4a1e; color: #f0d79a; }
html[data-theme="dark"] .tl-next.tl-pend b { color: #ffd76a; }
.h2-trip-pend { color: #FFD54A; }
.adm-meth { font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 20px; }
.adm-meth.adm-wallet { background: #e8f0fe; color: #1a56db; }
.adm-meth.adm-transfer { background: #e6f7ee; color: #0b7c45; }
html[data-theme="dark"] .adm-meth.adm-wallet { background: #14233f; color: #7aa2f7; }
html[data-theme="dark"] .adm-meth.adm-transfer { background: #123020; color: #6fd39b; }

/* Travel payment quick-select amount chips */
.tv-quick { display: flex; flex-wrap: wrap; gap: 8px; margin: 2px 0 14px; }
.tv-chip { border: 1.5px solid #d8e3ec; background: #fff; color: var(--ink); font-weight: 700; font-size: 13px; padding: 9px 13px; border-radius: 12px; cursor: pointer; font-family: inherit; }
.tv-chip.on { border-color: #16A34A; background: #e9f8f0; color: #0b7c45; }
.tv-chip-full { border-style: dashed; }
.tv-chip-full.on { border-style: solid; }
html[data-theme="dark"] .tv-chip { background: #0f1728; border-color: #2a3a57; color: #e6eef5; }
html[data-theme="dark"] .tv-chip.on { background: #123020; border-color: #16A34A; color: #6fd39b; }

/* KYC verified badge (profile) */
.set-verified { display: inline-flex; align-items: center; gap: 3px; margin-left: 8px; font-size: 11px; font-weight: 800; color: #0b7c45; background: #e6f7ee; padding: 3px 9px; border-radius: 20px; vertical-align: middle; }
html[data-theme="dark"] .set-verified { background: #123020; color: #6fd39b; }
