/* ============================================================
   velQip — Master Stylesheet
   Mobile-first, responsive, cPanel-compatible
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #FBFAFD; color: #1E1B2E; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Base Form Elements ---- */
input, textarea, select, button {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  box-sizing: border-box;
}
input, textarea, select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #E7E1F5;
  border-radius: 10px;
  color: #1E1B2E;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #6D28D9;
  box-shadow: 0 0 0 3px rgba(109,40,217,0.1);
}
textarea { resize: vertical; min-height: 100px; }
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1E1B2E;
  margin-bottom: 6px;
}

/* ---- Tokens ---- */
:root {
  --purple:    #6D28D9;
  --purple-dk: #4C1D95;
  --purple-lt: #F5F0FF;
  --green:     #16A34A;
  --green-lt:  #F0FBF4;
  --orange:    #EA580C;
  --orange-lt: #FFF8F3;
  --blue:      #2563EB;
  --blue-lt:   #F0F8FF;
  --teal:      #0D9488;
  --teal-lt:   #E4F5F3;
  --dark:      #1E1B2E;
  --muted:     #5B5768;
  --border:    #E7E1F5;
  --bg-page:   #FBFAFD;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(76,29,149,0.07);
  --shadow-md: 0 4px 24px rgba(76,29,149,0.12);
  --shadow-lg: 0 16px 48px rgba(76,29,149,0.18);
}

/* ---- Utility ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 64px 0; }
.bg-white { background: #fff; }
.text-center { text-align: center; }
.text-purple { color: var(--purple); }
.mb-40 { margin-bottom: 40px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px; font-weight: 700;
  font-size: 14px; font-family: 'Inter', sans-serif;
  cursor: pointer; border: none; transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg,#7C3AED,#4C1D95); color: #fff; box-shadow: 0 4px 20px rgba(109,40,217,0.35); }
.btn-primary:hover { box-shadow: 0 8px 28px rgba(109,40,217,0.45); }
.btn-secondary { background: #fff; color: var(--purple-dk); box-shadow: 0 4px 16px rgba(76,29,149,0.1); }
.btn-outline { background: transparent; color: var(--purple); border: 1.5px solid var(--purple); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 13px 26px; font-size: 15px; }

/* ---- Typography ---- */
.sec-eyebrow { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.sec-h2 { font-family: 'Poppins', sans-serif; font-size: clamp(24px,3vw,32px); font-weight: 800; color: var(--dark); }
.sec-bar { width: 52px; height: 4px; background: linear-gradient(90deg,var(--purple),var(--teal)); border-radius: 4px; margin-top: 12px; }
.sec-desc { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* ============================================================
   HEADER
   ============================================================ */
header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 20px rgba(76,29,149,0.1); }
.navbar {
  max-width: 1320px; margin: 0 auto;
  padding: 10px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo-img { height: 32px; width: auto; display: block; }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  font-size: 13.5px; font-weight: 600; color: var(--dark);
  padding: 8px 11px; border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active { background: #F4EEFC; color: var(--purple); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; display: block; transition: transform 0.3s; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(76,29,149,0.15); min-width: 200px;
  display: none; flex-direction: column; padding: 8px; z-index: 100;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: flex; }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: background 0.2s; color: var(--dark);
}
.dropdown-menu a:hover { background: var(--purple-lt); color: var(--purple); }
.dm-icon { font-size: 16px; }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 2px;
  padding: 12px 16px 16px; border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 11px 14px; border-radius: 9px; font-size: 14px; font-weight: 600;
  color: var(--dark); transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover { background: var(--purple-lt); color: var(--purple); }
.mobile-dl { margin-top: 8px; }

/* ============================================================
   STORE MODAL
   ============================================================ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 999;
  align-items: center; justify-content: center;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: #fff; border-radius: 22px; padding: 38px 32px;
  max-width: 400px; width: 90%; text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.modal-box h3 { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.modal-box p { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.modal-store-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px; border-radius: 14px; font-weight: 700; font-size: 15px;
  text-decoration: none; margin-bottom: 12px; transition: opacity 0.2s;
}
.modal-store-btn:hover { opacity: 0.9; }
.modal-google { background: linear-gradient(135deg,#7C3AED,#4C1D95); color: #fff; }
.modal-apple  { background: #1E1B2E; color: #fff; }
.modal-close  { background: none; border: none; color: var(--muted); font-size: 13.5px; cursor: pointer; padding: 8px; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background: linear-gradient(150deg,#EEE8FF 0%,#E8F0FF 30%,#F5F0FF 60%,#EAF4FF 100%);
  padding: 32px 0 0; position: relative; overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle,rgba(109,40,217,0.06) 1px,transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-orb1 { width:420px;height:420px;background:radial-gradient(circle,rgba(109,40,217,0.1) 0%,transparent 70%);top:-120px;right:-80px; }
.hero-orb2 { width:300px;height:300px;background:radial-gradient(circle,rgba(13,148,136,0.08) 0%,transparent 70%);bottom:-60px;left:-40px; }
.hero-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 32px; align-items: flex-end; position: relative; z-index: 2;
}
.hero-left { padding-bottom: 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(109,40,217,0.08); border: 1px solid rgba(109,40,217,0.18);
  padding: 7px 16px; border-radius: 999px; font-size: 12px; font-weight: 700;
  color: #4C1D95; margin-bottom: 18px;
}
.hero-dot { width:7px;height:7px;border-radius:50%;background:var(--green);animation:pulse 2s infinite;flex-shrink:0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(1.5);} }
.hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px,4vw,48px); font-weight: 800; line-height: 1.1;
  margin-bottom: 14px; color: var(--dark);
}
.hero-pur { color: var(--purple); }
.hero-grad {
  background: linear-gradient(135deg,#4C1D95,#0D9488);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 480px; margin-bottom: 22px; }
.hero-br { display: none; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }
.hero-pill {
  background: #fff; border: 1px solid var(--border); padding: 6px 14px;
  border-radius: 999px; font-size: 12px; font-weight: 600; color: #4C1D95;
  box-shadow: var(--shadow-sm);
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hstat-n { font-family:'Poppins',sans-serif;font-size:22px;font-weight:800;color:var(--purple-dk); }
.hstat-l { font-size:11.5px;color:var(--muted);margin-top:2px; }
.hero-right { display: flex; justify-content: center; align-items: flex-end; margin-left:-30px; margin-right:-20px; }
.hero-img-wrap { position: relative; width: 100%; max-width: 600px; }
.hero-img-wrap img {
  width: 100%; height: auto; display: block;
  opacity: 0.93;
  filter: brightness(1.04) saturate(0.96);
  -webkit-mask-image: linear-gradient(to bottom,transparent 0%,black 10%,black 82%,transparent 100%),
                      linear-gradient(to right,transparent 0%,black 14%,black 90%,transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to bottom,transparent 0%,black 10%,black 82%,transparent 100%),
              linear-gradient(to right,transparent 0%,black 14%,black 90%,transparent 100%);
  mask-composite: intersect;
}

/* ============================================================
   BRAND ECOSYSTEM
   ============================================================ */
.brand-sec-head { text-align: center; margin-bottom: 40px; }
.brand-sec-head .sec-bar { margin: 12px auto 16px; }
.brand-sec-head .sec-desc { max-width: 560px; margin: 0 auto; }
.brand-card-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; align-items: stretch;
}
.brand-img-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.brand-img-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.brand-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; flex: 1; }

/* ============================================================
   FEATURES IMAGE
   ============================================================ */
.features-img-section { padding: 0; line-height: 0; }
.features-img-section img { width: 100%; display: block; }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.why-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 14px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 88px; height: 88px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; overflow: hidden;
}
.why-icon img { width: 100%; height: 100%; object-fit: cover; }
.why-card h4 { font-family:'Poppins',sans-serif;font-size:13.5px;font-weight:700;margin-bottom:7px;line-height:1.4; }
.why-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   VISION
   ============================================================ */
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.vision-img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.vision-img-wrap img { width: 100%; height: auto; display: block; }
.vision-tag { font-size:12px;font-weight:700;color:var(--purple);letter-spacing:.08em;text-transform:uppercase;margin-bottom:10px; }
.vision-h2 { font-family:'Poppins',sans-serif;font-size:clamp(22px,2.5vw,28px);font-weight:800;line-height:1.25;margin-bottom:14px;color:var(--dark); }
.vision-p { font-size:14px;color:var(--muted);line-height:1.75;margin-bottom:26px; }
.vision-stats { display: flex; flex-direction: column; gap: 12px; }
.vstat-row { display:flex;align-items:center;gap:14px;padding:11px 16px;background:#F9F5FF;border-radius:12px; }
.vstat-ico { width:36px;height:36px;border-radius:9px;background:#fff;display:flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0;box-shadow:0 2px 8px rgba(76,29,149,0.1); }
.vstat-txt { flex:1;font-size:13px;color:var(--muted);font-weight:500; }
.vstat-num { font-family:'Poppins',sans-serif;font-size:20px;font-weight:800;color:var(--purple); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg,#2D0B5E 0%,#4C1D95 50%,#2D0B5E 100%);
  padding: 64px 0; position: relative; overflow: hidden;
}
.cta-section::before { content:'';position:absolute;width:400px;height:400px;border-radius:50%;background:rgba(109,40,217,0.2);right:-80px;top:-100px; }
.cta-section::after  { content:'';position:absolute;width:280px;height:280px;border-radius:50%;background:rgba(109,40,217,0.15);left:-60px;bottom:-60px; }
.cta-inner { max-width:700px;margin:0 auto;padding:0 28px;text-align:center;position:relative;z-index:2; }
.cta-inner h2 { font-family:'Poppins',sans-serif;font-size:clamp(26px,3.5vw,34px);font-weight:800;color:#fff;margin-bottom:10px;line-height:1.2; }
.cta-inner h2 span { color:#A78BFA; }
.cta-inner p { color:rgba(255,255,255,0.75);font-size:15px;margin-bottom:32px;line-height:1.7; }
.cta-store-row { display:flex;gap:14px;justify-content:center;flex-wrap:wrap; }
.cta-store-btn {
  display:flex;align-items:center;gap:10px;
  background:rgba(255,255,255,0.1);border:1.5px solid rgba(255,255,255,0.25);
  border-radius:12px;padding:12px 22px;color:#fff;font-size:14px;font-weight:700;
  text-decoration:none;transition:background 0.2s,transform 0.2s;
}
.cta-store-btn:hover { background:rgba(255,255,255,0.2);transform:translateY(-2px); }
.csb-sub  { font-size:10px;font-weight:400;opacity:0.7;display:block;line-height:1.2; }
.csb-name { font-size:15px;font-weight:800;display:block; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background:#1E1035 !important;color:#fff !important;padding:52px 0 24px; }
.footer-inner { max-width:1180px;margin:0 auto;padding:0 60px; }
.footer-grid { display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px; }
.footer-logo-img { height:36px;width:auto;display:block;margin-bottom:16px; }
.footer-about p { color:rgba(255,255,255,0.55) !important;font-size:13.5px;line-height:1.7;max-width:260px;margin-bottom:18px; }
.footer-store-row { display:flex;gap:10px;flex-wrap:wrap; }
.footer-store-btn {
  display:flex;align-items:center;gap:7px;
  background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.14);
  border-radius:9px;padding:9px 16px;color:#fff;font-size:12.5px;font-weight:700;
  text-decoration:none;transition:background 0.2s;
}
.footer-store-btn:hover { background:rgba(255,255,255,0.14); }
footer h5 { font-size:14px;font-weight:700;margin-bottom:16px;color:#fff !important; }
footer ul { list-style:none !important; padding:0 !important; margin:0 !important; }
footer ul li { margin-bottom:11px; list-style:none !important; }
footer ul li a { color:rgba(255,255,255,0.55) !important;font-size:13.5px;text-decoration:none;transition:color 0.2s; }
footer ul li a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08);padding-top:22px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px; }
.footer-bottom p { color:rgba(255,255,255,0.35);font-size:13px; }
.footer-bottom-links { display:flex;gap:20px; }
.footer-bottom-links a { color:rgba(255,255,255,0.45);font-size:13px;text-decoration:none;transition:color 0.2s; }
.footer-bottom-links a:hover { color:#fff; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { padding:56px 0;background:linear-gradient(135deg,#F5F0FF,#E8F0FF); }
.page-hero h1 { font-family:'Poppins',sans-serif;font-size:clamp(28px,4vw,42px);font-weight:800;margin-bottom:12px; }
.page-hero p { font-size:16px;color:var(--muted);max-width:560px; }

/* ============================================================
   DAILYBASKET PAGE
   ============================================================ */
.db-hero { background:#fff;padding:0; }
.db-hero-inner { display:grid;grid-template-columns:1fr 1fr;min-height:420px;align-items:stretch; }
.db-hero-left { padding:56px 48px;display:flex;flex-direction:column;justify-content:center; }
.db-eyebrow { font-size:11.5px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--green);margin-bottom:12px; }
.db-h1 { font-family:'Poppins',sans-serif;font-size:clamp(28px,3.5vw,40px);font-weight:800;line-height:1.15;margin-bottom:14px;color:var(--dark); }
.db-h1 span { color:var(--purple); }
.db-sub { font-size:14.5px;color:var(--muted);margin-bottom:24px;line-height:1.7; }
.db-hero-right { position:relative;overflow:hidden;min-height:360px; }
.db-hero-img { width:100%;height:100%;object-fit:cover;display:block; }

/* ============================================================
   DEALZ PAGE
   ============================================================ */
.dz-hero { background:linear-gradient(135deg,#fff,#FAF5FF);padding:0; }
.dz-hero-inner { display:grid;grid-template-columns:1fr 1fr;min-height:420px;align-items:center; }
.dz-hero-left { padding:56px 48px; }
.dz-hero-right { position:relative;overflow:hidden;min-height:360px; }
.dz-hero-img { width:100%;height:100%;object-fit:cover;display:block; }

/* ============================================================
   TAILWAG / QIPASSIST (coming soon)
   ============================================================ */
.coming-hero { padding:80px 0;text-align:center; }
.coming-badge { display:inline-block;background:#FFF7ED;color:#EA580C;font-size:11.5px;font-weight:700;padding:6px 16px;border-radius:999px;margin-bottom:16px;letter-spacing:.06em;text-transform:uppercase; }
.coming-badge.teal { background:#E4F5F3;color:var(--teal); }

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-section { min-height:80vh;display:flex;align-items:center;justify-content:center;padding:48px 24px; }
.login-card { background:#fff;border-radius:var(--radius-lg);box-shadow:var(--shadow-md);padding:40px;max-width:480px;width:100%; }

/* ============================================================
   CONTACT / ABOUT / BUSINESS / FAQ
   ============================================================ */
.content-section { padding:56px 0; }
.content-section h2 { font-family:'Poppins',sans-serif;font-size:clamp(22px,3vw,28px);font-weight:800;margin-bottom:16px; }
.content-section p { color:var(--muted);font-size:15px;line-height:1.75;margin-bottom:16px; }
/* FAQ styles are defined in pages/faq.php inline <style> block */

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom:18px; }
.form-label { display:block;font-size:13.5px;font-weight:600;margin-bottom:6px;color:var(--dark); }
.form-control {
  width:100%;padding:11px 14px;border:1.5px solid var(--border);border-radius:var(--radius-sm);
  font-size:14px;font-family:'Inter',sans-serif;color:var(--dark);
  background:#fff;transition:border-color 0.2s;outline:none;
}
.form-control:focus { border-color:var(--purple); }
textarea.form-control { resize:vertical;min-height:120px; }

/* ============================================================
   ADMIN
   ============================================================ */
.admin-wrapper { max-width:1100px;margin:0 auto;padding:32px 24px; }
.admin-table { width:100%;border-collapse:collapse;font-size:13.5px; }
.admin-table th { background:#F9F5FF;color:var(--purple-dk);font-weight:700;padding:12px 14px;text-align:left;border-bottom:2px solid var(--border); }
.admin-table td { padding:11px 14px;border-bottom:1px solid var(--border);color:var(--dark); }
.admin-table tr:hover td { background:#FAFAFA; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:960px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .hero-inner { grid-template-columns:1fr; }
  .hero-right { display:none; }
  .hero-br { display:none; }
  .brand-card-grid { grid-template-columns:1fr 1fr;gap:14px; }
  .why-grid { grid-template-columns:1fr 1fr;gap:12px; }
  .vision-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .db-hero-inner, .dz-hero-inner { grid-template-columns:1fr; }
  .db-hero-left, .dz-hero-left { padding:36px 24px; }
  .db-hero-right, .dz-hero-right { min-height:240px; }
}
@media(max-width:560px) {
  .container { padding:0 16px; }
  .navbar { padding:10px 16px; }
  .hero-inner { padding:0 16px; }
  .hero-left { padding-bottom:32px; }
  .brand-card-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .cta-store-row { flex-direction:column;align-items:center; }
  .cta-store-btn { width:100%;max-width:280px;justify-content:center; }
  .section { padding:48px 0; }
}

/* ===== GLOBAL ANIMATIONS ===== */
/* Fade up on scroll */
.anim-fade-up {
  opacity:0;transform:translateY(28px);
  transition:opacity 0.6s cubic-bezier(0.16,1,0.3,1),transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.anim-fade-up.in-view { opacity:1;transform:translateY(0); }

/* Fade in */
.anim-fade-in {
  opacity:0;
  transition:opacity 0.7s ease;
}
.anim-fade-in.in-view { opacity:1; }

/* Slide in left */
.anim-slide-left {
  opacity:0;transform:translateX(-32px);
  transition:opacity 0.6s cubic-bezier(0.16,1,0.3,1),transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.anim-slide-left.in-view { opacity:1;transform:translateX(0); }

/* Slide in right */
.anim-slide-right {
  opacity:0;transform:translateX(32px);
  transition:opacity 0.6s cubic-bezier(0.16,1,0.3,1),transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.anim-slide-right.in-view { opacity:1;transform:translateX(0); }

/* Stagger delays */
.anim-delay-1 { transition-delay:0.1s; }
.anim-delay-2 { transition-delay:0.2s; }
.anim-delay-3 { transition-delay:0.3s; }
.anim-delay-4 { transition-delay:0.4s; }
.anim-delay-5 { transition-delay:0.5s; }

/* Card hover lift */
.hover-lift { transition:transform 0.2s ease,box-shadow 0.2s ease; }
.hover-lift:hover { transform:translateY(-6px);box-shadow:0 16px 40px rgba(76,29,149,0.15); }

/* Pulse badge animation */
@keyframes badgePulse {
  0%,100% { box-shadow:0 0 0 0 rgba(109,40,217,0.4); }
  50% { box-shadow:0 0 0 8px rgba(109,40,217,0); }
}
.badge-pulse { animation:badgePulse 2.5s infinite; }

/* Shimmer for loading/highlights */
@keyframes shimmer {
  from { background-position:-200% center; }
  to { background-position:200% center; }
}
.text-shimmer {
  background:linear-gradient(90deg,#6D28D9 0%,#A78BFA 40%,#6D28D9 80%);
  background-size:200% auto;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  animation:shimmer 3s linear infinite;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .anim-fade-up,.anim-fade-in,.anim-slide-left,.anim-slide-right {
    opacity:1;transform:none;transition:none;
  }
}


/* ===== CRITICAL DISPLAY OVERRIDES ===== */
/* These ensure header/nav always render correctly
   regardless of page-level inline style conflicts */
header#siteHeader {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid #E7E1F5 !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 200 !important;
  box-shadow: 0 2px 12px rgba(76,29,149,0.06) !important;
}
header#siteHeader .navbar {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 10px 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
}
header#siteHeader .nav-logo-img,
header#siteHeader img.nav-logo-img {
  height: 42px !important;
  width: auto !important;
  display: block !important;
  max-width: none !important;
  max-height: 42px !important;
}
header#siteHeader .nav-links {
  display: flex !important;
  gap: 4px !important;
  align-items: center !important;
}
header#siteHeader .nav-links a {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  padding: 8px 11px !important;
  border-radius: 8px !important;
  white-space: nowrap !important;
}
header#siteHeader .nav-actions {
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
}

/* ===== CONTACT PAGE STYLES ===== */
.eyebrow { font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#6D28D9;margin-bottom:12px; }
.text-gray { color:#5B5768; }
.mt-8 { margin-top:8px; }
.mt-12 { margin-top:12px; }
.mt-16 { margin-top:16px; }
.orange { color:#EA580C; }
.teal { color:#0D9488; }
.reveal-left, .reveal-right { opacity:1; }

.contact-grid {
  display:grid;grid-template-columns:1fr 1.4fr;gap:48px;align-items:start;
}
.contact-info-item {
  display:flex;align-items:flex-start;gap:16px;
  background:#fff;border-radius:16px;padding:20px;
  border:1px solid #E7E1F5;margin-bottom:16px;
  box-shadow:0 2px 12px rgba(76,29,149,0.06);
}
.contact-info-item h4 {
  font-family:'Poppins',sans-serif;font-size:14px;font-weight:700;
  color:#1E1B2E;margin-bottom:4px;
}
.ci-icon {
  width:44px;height:44px;border-radius:12px;background:#F5F0FF;
  display:flex;align-items:center;justify-content:center;
  font-size:22px;flex-shrink:0;
}
.ci-icon.teal { background:#E4F5F3; }
.ci-icon.orange { background:#FFF0E6; }

.card-box {
  background:#fff;border-radius:20px;padding:32px;
  border:1px solid #E7E1F5;
  box-shadow:0 4px 24px rgba(76,29,149,0.08);
}
.card-box h3 {
  font-family:'Poppins',sans-serif;font-size:20px;font-weight:700;
  color:#1E1B2E;margin-bottom:20px;
}
.form-group { margin-bottom:16px; }
.form-group label {
  display:block;font-size:13px;font-weight:600;color:#1E1B2E;margin-bottom:6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width:100%;padding:12px 16px;border:1.5px solid #E7E1F5;
  border-radius:10px;font-size:14px;font-family:'Inter',sans-serif;
  color:#1E1B2E;background:#fff;outline:none;
  transition:border-color 0.2s,box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color:#6D28D9;box-shadow:0 0 0 3px rgba(109,40,217,0.1);
}
.form-group textarea { resize:vertical;min-height:120px; }
.form-row { display:grid;grid-template-columns:1fr 1fr;gap:16px; }
.form-msg { margin-top:12px;font-size:14px;font-weight:600;display:none; }
.form-msg.success { color:#16A34A;display:block; }
.form-msg.error { color:#DC2626;display:block; }

@media(max-width:760px) {
  .contact-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
}

/* ===== FOR BUSINESSES PAGE ===== */
.mt-24 { margin-top:24px; }
.bg-white { background:#fff; }

.brand-hero {
  padding:72px 0;
  background:linear-gradient(135deg,#2D0B5E,#4C1D95,#6D28D9);
  position:relative;overflow:hidden;
}
.brand-hero .container {
  display:flex;align-items:center;justify-content:space-between;gap:32px;
}
.brand-hero h1 {
  font-family:'Poppins',sans-serif;font-size:clamp(28px,4vw,44px);
  font-weight:800;color:#fff;margin-bottom:16px;line-height:1.2;
}
.brand-hero p {
  font-size:15.5px;color:rgba(255,255,255,0.8);line-height:1.75;
  max-width:560px;margin-bottom:0;
}
.brand-emoji {
  font-size:96px;flex-shrink:0;
  opacity:0.85;
  animation:floatEmoji 4s ease-in-out infinite;
}
@keyframes floatEmoji {
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-12px);}
}
.biz-hero-bg { background:linear-gradient(135deg,#2D0B5E,#4C1D95,#6D28D9); }
.btn-white {
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;color:#6D28D9;
  padding:12px 24px;border-radius:999px;
  font-weight:700;font-size:14px;text-decoration:none;
  border:none;cursor:pointer;transition:transform 0.2s,box-shadow 0.2s;
  box-shadow:0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,0.2); }

.section-head { text-align:center;margin-bottom:44px; }
.section-head h2 {
  font-family:'Poppins',sans-serif;font-size:clamp(22px,3vw,32px);
  font-weight:800;color:#1E1B2E;margin-bottom:8px;
}
.section-head p { font-size:15px;color:#5B5768;max-width:520px;margin:0 auto; }
.bar {
  width:52px;height:4px;
  background:linear-gradient(90deg,#6D28D9,#0D9488);
  border-radius:4px;margin:0 auto 16px;
}

.biz-steps {
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
  margin-top:12px;
}
.biz-step {
  background:#fff;border-radius:20px;padding:28px 24px;text-align:center;
  border:1.5px solid #E7E1F5;
  box-shadow:0 2px 14px rgba(76,29,149,0.07);
  transition:transform 0.2s,box-shadow 0.2s;
}
.biz-step:hover { transform:translateY(-5px);box-shadow:0 12px 32px rgba(76,29,149,0.12); }
.bs-num {
  width:52px;height:52px;border-radius:50%;
  background:linear-gradient(135deg,#6D28D9,#4C1D95);
  color:#fff;font-family:'Poppins',sans-serif;
  font-size:22px;font-weight:800;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 16px;
}
.biz-step h4 {
  font-family:'Poppins',sans-serif;font-size:16px;font-weight:700;
  color:#1E1B2E;margin-bottom:8px;
}
.biz-step p { font-size:13.5px;color:#5B5768;line-height:1.65;margin:0; }
.stagger-children > * { opacity:1; }

@media(max-width:760px) {
  .biz-steps { grid-template-columns:1fr 1fr; }
  .brand-emoji { font-size:64px; }
  .brand-hero .container { flex-direction:column;text-align:center; }
}
@media(max-width:480px) {
  .biz-steps { grid-template-columns:1fr; }
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position:fixed;bottom:28px;right:28px;z-index:999;
  width:60px;height:60px;border-radius:50%;
  background:linear-gradient(135deg,#25D366,#128C7E);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 24px rgba(37,211,102,0.5);
  text-decoration:none;
  animation:waPulse 2.5s infinite;
  transition:transform 0.2s;
}
.wa-float:hover { transform:scale(1.12); }
.wa-float svg { width:32px;height:32px;fill:#fff; }
.wa-tooltip {
  position:absolute;right:72px;top:50%;transform:translateY(-50%);
  background:#1E1B2E;color:#fff;padding:7px 14px;border-radius:8px;
  font-size:12.5px;font-weight:600;white-space:nowrap;
  opacity:0;transition:opacity 0.2s;pointer-events:none;
}
.wa-tooltip::after {
  content:'';position:absolute;left:100%;top:50%;transform:translateY(-50%);
  border:6px solid transparent;border-left-color:#1E1B2E;
}
.wa-float:hover .wa-tooltip { opacity:1; }
@keyframes waPulse {
  0%,100%{ box-shadow:0 6px 24px rgba(37,211,102,0.5),0 0 0 0 rgba(37,211,102,0.4); }
  50%{ box-shadow:0 6px 24px rgba(37,211,102,0.5),0 0 0 14px rgba(37,211,102,0); }
}

/* ===== FOOTER GUARANTEE — always dark, always white text ===== */
footer { background: #1E1035 !important; color: #fff !important; }
footer .footer-grid > div { background: #1E1035 !important; }
footer h5 { color: #fff !important; font-weight: 700 !important; font-size: 14px !important; margin-bottom: 16px !important; }
footer ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
footer ul li { list-style: none !important; margin-bottom: 11px !important; }
footer ul li::marker { display: none !important; content: '' !important; }
footer ul li a { color: rgba(255,255,255,0.6) !important; text-decoration: none !important; font-size: 13.5px !important; }
footer ul li a:hover { color: #fff !important; }
footer p { color: rgba(255,255,255,0.55) !important; }
.footer-about p { color: rgba(255,255,255,0.55) !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08) !important; }
.footer-bottom p { color: rgba(255,255,255,0.35) !important; font-size: 13px !important; }
.footer-bottom-links a { color: rgba(255,255,255,0.45) !important; font-size: 13px !important; text-decoration: none !important; }
.footer-bottom-links a:hover { color: #fff !important; }
