/* ----------------------------------------------------
   app-ultra-full.css — premium app landing page styles
   ----------------------------------------------------
   Place at: assets/css/app-ultra-full.css
   -------------------------------------------------- */

:root{
  --bg-1: #f4f9ff;
  --bg-2: #ffffff;
  --accent: #2563eb;
  --accent-2:#0b84ff;
  --muted: #64748b;
  --glass: rgba(255,255,255,0.6);
  --radius: 18px;
  --shadow-1: 0 12px 30px rgba(3,10,37,0.06);
  --shadow-2: 0 24px 60px rgba(3,10,37,0.08);
  --container: 1150px;
  --transition: 200ms cubic-bezier(.2,.9,.2,1);
  --g1: linear-gradient(135deg,#eef6ff 0%, #ffffff 100%);
}

/* reset & base */
*{box-sizing:border-box}
html,body{height:100%;margin:0;background:var(--bg-1);color:#071124;font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--container);margin:0 auto;padding:22px}
.small{font-size:13px;color:var(--muted)}
.muted{color:var(--muted)}

/* -------- header -------- */
.site-header{background:linear-gradient(0deg, rgba(255,255,255,0.6), rgba(255,255,255,0.6));backdrop-filter: blur(6px);position:sticky;top:0;z-index:50;box-shadow:var(--shadow-1)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:10px 0}
.brand{display:flex;align-items:center;gap:12px}
.brand-logo{width:48px;height:48px;border-radius:12px;object-fit:contain}
.brand-title{display:block;font-weight:700;font-size:18px}
.brand-sub{display:block;font-size:12px;color:var(--muted)}
.site-nav ul{display:flex;gap:10px;list-style:none;margin:0;padding:0}
.site-nav a{padding:8px 10px;border-radius:10px;font-weight:600;color:var(--muted)}
.site-nav a.active, .site-nav a:hover{color:var(--accent);background:rgba(37,99,235,0.06)}

/* header actions */
.header-actions{display:flex;align-items:center;gap:12px}
.lang-toggle{display:flex;gap:8px}
.lang-btn{border-radius:8px;padding:6px 8px;border:1px solid rgba(14,50,100,0.06);background:#fff;cursor:pointer;font-weight:700}
.lang-btn.active{background:var(--accent);color:#fff;border-color:var(--accent)}
.btn{display:inline-flex;align-items:center;gap:8px;padding:10px 14px;border-radius:12px;background:#fff;border:1px solid rgba(3,10,37,0.04);cursor:pointer}
.btn-cta{background:var(--accent);color:#fff;padding:10px 14px;border-radius:12px;font-weight:700;box-shadow:0 8px 24px rgba(37,99,235,0.14)}

/* -------- main hero -------- */
.main{padding-top:18px;padding-bottom:40px}
.hero{display:flex;gap:32px;align-items:center;padding:30px 0}
.hero-left{flex:1;min-width:320px}
.hero-right{width:380px;display:flex;justify-content:center;align-items:center}

/* eyebrow, title, lead */
.eyebrow{display:inline-block;padding:6px 10px;border-radius:12px;background:rgba(11,118,255,0.06);color:var(--accent);font-weight:700;font-size:13px;margin-bottom:12px}
.title{font-size:34px;line-height:1.02;margin:6px 0 12px;font-weight:800}
.lead{color:var(--muted);font-size:15px;margin-bottom:18px}

/* hero CTAs */
.hero-ctas{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.store-badge{display:flex;align-items:center;gap:12px;background:linear-gradient(90deg,var(--accent),var(--accent-2));color:#fff;padding:10px 14px;border-radius:12px;box-shadow:0 12px 34px rgba(37,99,235,0.12);font-weight:700}
.store-badge svg{opacity:0.98}
.store-badge .badge-text small{display:block;font-size:11px;opacity:0.9}
.store-badge .badge-text strong{display:block;font-size:14px}
.btn-primary{background:var(--accent);color:#fff;padding:10px 16px;border-radius:12px;font-weight:800;box-shadow:0 12px 34px rgba(37,99,235,0.12)}
.btn-primary:hover{transform:translateY(-2px)}
.feature-pills{display:flex;flex-wrap:wrap;gap:10px;list-style:none;padding:0;margin:12px 0}
.feature-pills li{background:#fff;padding:8px 12px;border-radius:999px;border:1px solid rgba(3,10,37,0.04);font-weight:600}

/* meta row */
.meta-row{display:flex;gap:18px;margin-top:16px;align-items:center}
.meta-item{text-align:center}
.meta-strong{color:var(--accent);display:block;font-weight:800}

/* -------- phone mockup (3D feel) -------- */
.phone-mock{width:320px;height:700px;display:flex;align-items:center;justify-content:center;perspective:1200px;position:relative}
.phone-frame{width:260px;height:520px;border-radius:34px;overflow:hidden;background:linear-gradient(180deg,#ffffff,#f3fbff);box-shadow:0 30px 80px rgba(3,10,37,0.12);transform-style:preserve-3d;transition:transform 180ms ease}
.phone-screen{width:100%;height:100%;object-fit:cover;display:block}
.phone-shadow{position:absolute;bottom:10px;left:50%;transform:translateX(-50%);width:220px;height:40px;border-radius:50%;filter:blur(24px);background:radial-gradient(closest-side, rgba(3,10,37,0.12), transparent)}
.phone-glow{position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at 30% 10%, rgba(37,99,235,0.06), transparent 30%), radial-gradient(circle at 70% 80%, rgba(11,132,255,0.04), transparent 25%)}

/* slight hover lift */
.phone-mock:hover .phone-frame{transform: translateY(-6px) rotateX(2deg) rotateY(6deg)}

/* -------- features grid -------- */
.section{margin-top:36px}
.section-title{font-size:22px;margin-bottom:12px;font-weight:800}
.features-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.feature-card{background:linear-gradient(180deg,#fff,#fbfdff);padding:18px;border-radius:14px;box-shadow:var(--shadow-1);border:1px solid rgba(3,10,37,0.03)}
.feature-card h3{margin:0 0 6px;font-size:16px}
.feature-card p{margin:0;color:var(--muted);font-size:14px}

/* small screens: wrap features as 2 columns */
@media (max-width:1100px){
  .features-grid{grid-template-columns:repeat(2,1fr)}
}

/* -------- carousel ---------- */
.carousel{margin-top:14px;overflow:hidden;border-radius:16px;box-shadow:var(--shadow-2);background:linear-gradient(180deg,#ffffff,#f7fbff)}
.carousel-track{display:flex;gap:12px;padding:16px 12px;align-items:center;animation:carouselScroll 28s linear infinite}
.carousel-item{flex:0 0 auto;width:220px;border-radius:12px;overflow:hidden}
.carousel-item img{width:100%;height:360px;object-fit:cover;border-radius:10px;display:block}
@keyframes carouselScroll{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}
/* Pause animation when hovered */
.carousel:hover .carousel-track{animation-play-state:paused}

/* duplicate images method ensures smooth infinite scroll */

/* -------- two-column cards (changelog / faq) -------- */
.two-col{display:grid;grid-template-columns:1fr 380px;gap:20px;margin-top:24px}
.card{background:var(--bg-2);padding:18px;border-radius:14px;box-shadow:var(--shadow-1);border:1px solid rgba(3,10,37,0.03)}
.changelog ul{list-style:none;padding:0;margin:0}
.changelog li{padding:8px 0;border-bottom:1px dashed rgba(3,10,37,0.04);font-size:14px}
.faq details{margin-bottom:10px}
.faq summary{cursor:pointer;font-weight:700}

/* -------- download CTA panel -------- */
.download-cta{margin-top:28px}
.download-panel{display:flex;gap:18px;align-items:center;padding:18px;border-radius:14px;background:linear-gradient(180deg,#ffffff,#f3fbff);box-shadow:var(--shadow-2)}
.download-box{display:flex;align-items:center;gap:12px}
.dl-logo{width:64px;height:64px;border-radius:12px;object-fit:contain}
.download-actions{margin-left:auto;display:flex;flex-direction:column;gap:10px;align-items:flex-end}
.btn.large{padding:12px 20px;border-radius:14px;font-weight:800}
.btn-outline{padding:10px 16px;border-radius:12px;border:1px solid rgba(3,10,37,0.06);background:transparent;color:var(--accent);font-weight:700}
.dl-meta{font-size:13px;color:var(--muted)}

/* -------- footer -------- */
.site-footer{border-top:1px solid rgba(3,10,37,0.03);margin-top:36px;padding:18px 0;text-align:center;color:var(--muted)}

/* -------- utilities & responsive -------- */
.wrap{padding-left:18px;padding-right:18px}
.small{font-size:13px}
.hidden{display:none}

/* responsive adjustments */
@media (max-width:980px){
  .hero{flex-direction:column-reverse;gap:28px}
  .hero-right{width:100%;display:flex;justify-content:center}
  .phone-mock{width:260px;height:560px}
  .carousel-item img{height:240px}
  .two-col{grid-template-columns:1fr}
  .features-grid{grid-template-columns:1fr 1fr}
  .download-panel{flex-direction:column;align-items:stretch}
  .download-actions{align-items:stretch}
}

/* micro-interactions */
a.btn, .store-badge { transition: transform var(--transition), box-shadow var(--transition); }
a.btn:active, .store-badge:active { transform: translateY(1px) }
.feature-card:hover { transform: translateY(-6px); transition: transform var(--transition); }

/* accessibility focus */
a:focus, button:focus { outline: 3px solid rgba(37,99,235,0.18); outline-offset: 2px; border-radius:8px; }

/* small helper classes */
.center{display:flex;align-items:center;justify-content:center}
.column{display:flex;flex-direction:column}
.float-ws {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  padding: 0;
  box-shadow: 0 10px 24px rgba(15,23,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  z-index: 50;
  left: 1850px;
}
.float-fb {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2938c4;
  color: #fff;
  padding: 0;
  box-shadow: 0 10px 24px rgba(15,23,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  z-index: 50;
  left: 1790px;
}
.float-insta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #b82e7e;
  color: #fff;
  padding: 0;
  box-shadow: 0 10px 24px rgba(15,23,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  z-index: 50;
  left: 1730px;
}
.eh-header{
  background:#fff;
  border-bottom:1px solid #eaeef3;
  position:sticky;
  top:0;
  z-index:1000;
}

.container.nav{
  max-width:1200px;
  margin:auto;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* DESKTOP (unchanged) */
.nav-right{
  display:flex;
  align-items:center;
  gap:16px;
}

.nav-right ul{
  display:flex;
  gap:14px;
  list-style:none;
  margin:0;
  padding:0;
}

.nav-right a{
  font-size:13px;
  color:#334155;
  text-decoration:none;
  padding:4px 0;
  border-bottom:2px solid transparent;
}

.nav-right a:hover{
  border-color:#0ea5a4;
}

/* TOGGLES */
.nav-toggle,
.nav-close{
  display:none;
  background:none;
  border:none;
  font-size:22px;
  cursor:pointer;
}

/* OVERLAY */
.nav-overlay{display:none}

/* ================= MOBILE ================= */
@media (max-width:900px){

  .nav-toggle{display:block}

  /* 🔥 HALF SCREEN MENU */
  .nav-right{
    position:fixed;
    top:-60vh;              /* hidden */
    left:0;
    width:100%;
    height:60vh;            /* 👈 HALF SCREEN */
    background:#fff;

    padding:18px;
    flex-direction:column;
    gap:16px;

    transition:top .35s ease;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
    z-index:1001;
  }

  .nav-right.open{
    top:0;                  /* slide down */
  }

  .nav-close{
    display:block;
    align-self:flex-end;
    font-size:20px;
  }

  .nav-right ul{
    flex-direction:column;
    gap:12px;
  }

  .nav-right a{
    border:none;
    font-size:14px;
  }

  #enquireTop{
    margin-top:auto;
    width:100%;
  }

  .nav-overlay{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    opacity:0;
    pointer-events:none;
    transition:.3s;
    z-index:1000;
  }

  .nav-overlay.show{
    opacity:1;
    pointer-events:auto;
  }
}
/* ==============================
   FINAL WHITE + MOBILE POLISH
   ============================== */

/* Global white feel */
body{
  background:#f7fafc;
  color:#0f172a;
}

/* Containers cleaner */
.wrap{
  padding-left:16px;
  padding-right:16px;
}

/* Cards = pure white */
.card,
.feature-card,
.download-panel,
.carousel,
.phone-frame{
  background:#ffffff !important;
  border:1px solid rgba(15,23,42,.05);
  box-shadow:0 10px 28px rgba(15,23,42,.06);
}

/* Text clarity */
.lead,
.feature-card p,
.small,
.muted{
  color:#475569;
}

/* Buttons – soft & premium */
.btn,
.btn-outline{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
}

.btn-primary{
  background:#0ea5a4;
  border:none;
  box-shadow:0 10px 24px rgba(14,165,164,.18);
}

/* Hover = subtle only */
.btn:hover,
.store-badge:hover{
  transform:translateY(-1px);
}

/* Pills – lighter */
.feature-pills li{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.06);
}

/* Header cleaner */
.site-header{
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(15,23,42,.06);
}

/* ===== MOBILE FIRST ===== */
@media (max-width:900px){

  /* Hero spacing */
  .hero{
    padding-top:16px;
    gap:22px;
  }

  .title{
    font-size:26px;
    line-height:1.15;
  }

  .lead{
    font-size:14px;
  }

  /* Buttons full width on phone */
  .hero-ctas,
  .download-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-ctas a,
  .hero-ctas button,
  .download-actions a{
    width:100%;
    justify-content:center;
  }

  /* Phone mock not oversized */
  .phone-mock{
    height:520px;
  }

  .phone-frame{
    height:480px;
  }

  /* Carousel images not too tall */
  .carousel-item img{
    height:220px;
  }

  /* Features grid */
  .features-grid{
    gap:14px;
  }

  /* Floating buttons – thumb safe */
  .float-ws{bottom:18px}
  .float-fb{bottom:80px}
  .float-insta{bottom:142px}
}
/* ==================================================
   FINAL MICRO-POLISH — WHITE + MOBILE PERFECT
   (ADD AT VERY END)
   ================================================== */

/* Global white & soft contrast */
body{
  background:#f8fafc;
  color:#0f172a;
}

/* Reduce visual heaviness */
.wrap{padding-left:14px;padding-right:14px}

/* Cards ultra clean */
.card,
.feature-card,
.download-panel,
.carousel,
.phone-frame{
  background:#ffffff !important;
  border:1px solid rgba(15,23,42,.04);
  box-shadow:0 8px 24px rgba(15,23,42,.05);
}

/* Text balance */
.lead{font-size:14.5px}
.small,.muted{color:#64748b}

/* Buttons refined */
.btn{
  border-radius:10px;
  padding:9px 14px;
}
.btn-primary{
  background:#0ea5a4;
  box-shadow:0 8px 18px rgba(14,165,164,.18);
}

/* Hero spacing tighter */
.hero{
  padding-top:18px;
  padding-bottom:18px;
}

/* Pills lighter */
.feature-pills li{
  padding:7px 11px;
  font-size:13px;
}

/* Phone mock — not bulky */
.phone-mock{
  height:560px;
}
.phone-frame{
  height:480px;
  border-radius:30px;
}

/* ================= MOBILE MAGIC ================= */
@media (max-width:900px){

  /* Headings smaller & clean */
  .title{
    font-size:24px;
    line-height:1.15;
  }

  .lead{
    font-size:14px;
    margin-bottom:14px;
  }

  /* CTA full-width */
  .hero-ctas,
  .download-actions{
    flex-direction:column;
    gap:10px;
  }

  .hero-ctas a,
  .hero-ctas button,
  .download-actions a{
    width:100%;
    justify-content:center;
  }

  /* Phone size perfect */
  .phone-mock{
    width:240px;
    height:500px;
  }
  .phone-frame{
    height:440px;
  }

  /* Features grid cleaner */
  .features-grid{
    gap:12px;
  }

  /* Carousel height controlled */
  .carousel-item img{
    height:210px;
  }

  /* Download panel compact */
  .download-panel{
    padding:14px;
    gap:12px;
  }

  /* Floating buttons thumb-safe */
  .float-ws{bottom:16px}
  .float-fb{bottom:78px}
  .float-insta{bottom:140px}
}

/* Micro interactions smooth */
.btn,
.store-badge,
.feature-card{
  transition:transform .18s ease, box-shadow .18s ease;
}
.feature-card:hover{
  transform:translateY(-4px);
}

/* Remove any accidental heaviness */
img{
  image-rendering:auto;
}
.float-ws,.float-fb,.float-insta{position:fixed;right:18px;width:52px;height:52px;border-radius:50%;color:#fff;padding:0;box-shadow:0 10px 24px rgba(15,23,42,0.25);display:flex;align-items:center;justify-content:center;text-decoration:none;font-size:20px;z-index:1200}
.float-ws{background:#25D366;bottom:18px}
.float-fb{background:#1877F2;bottom:86px}
.float-insta{background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);bottom:154px}