/* ============================================================
   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; border-radius: 14px;
  background: linear-gradient(140deg, var(--emerald), var(--emerald-deep));
  display: grid; place-items: center;
  box-shadow: var(--shadow-2);
}
.brand-logo svg { width: 24px; height: 24px; fill: var(--gold); transform: rotate(45deg); }
.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: 58px; height: 58px; border-radius: 18px; font-size: 27px;
  display: grid; place-items: center;
  background: var(--cat-soft, var(--emerald-soft));
  border: 1px solid var(--line);
  transition: transform 0.35s;
}
.app-tile:hover .at-icon { transform: scale(1.1) rotate(-4deg); }
.at-icon.logo { background: #fff; padding: 8px; }
.at-icon.logo svg { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(18, 36, 26, 0.12)); }
.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: linear-gradient(135deg, var(--cat, #7c3aed), var(--cat-dark, #351173));
  border-radius: 24px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  box-shadow: 0 18px 44px rgba(53, 17, 115, 0.30);
}
.bfs-left b { font-family: var(--font-head); font-size: 17px; display: block; }
.bfs-left small { font-size: 10px; letter-spacing: 2.5px; opacity: 0.75; font-weight: 700; }
.bfs-bal { font-family: var(--font-head); font-size: clamp(26px, 4vw, 34px); font-weight: 800; }
.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: rgba(255, 255, 255, 0.14); color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.bfs-mini {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14); color: #fff; cursor: pointer; font-size: 15px;
}
.bfs-mini:hover { background: rgba(255, 255, 255, 0.28); }

/* 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;
}

/* 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;
}
