/* ═══════════════════════════════════════════
   ZAVA TECHNOLOGIES LTD — STYLESHEET
   styles.css  |  Light Theme — White + Navy + Blue
   FIXED VERSION — classes match HTML exactly
═══════════════════════════════════════════ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --bg-deep:    #ffffff;
  --bg-dark:    #f0f4ff;
  --bg-card:    #ffffff;
  --bg-card2:   #e8eeff;
  --cyan:       #0066ff;
  --cyan-dim:   #003399;
  --blue:       #0044cc;
  --blue-glow:  rgba(0,68,204,0.18);
  --cyan-glow:  rgba(0,102,255,0.15);
  --green:      #00aa55;
  --slate:      #1a3a6b;
  --slate-dim:  #4a6fa5;
  --navy:       #0a1f44;
  --white:      #0a1f44;
  --white-dim:  #1e3a6e;
  --muted:      #5a7aaa;
  --text:       #1e3a6e;
  --border:     rgba(0,68,204,0.12);
  --border2:    rgba(0,68,204,0.18);
  --shadow-sm:  0 2px 12px rgba(0,87,231,0.06);
  --shadow-md:  0 8px 40px rgba(0,87,231,0.1);
  --font-head:  'Sora', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --font-mono:  'JetBrains Mono', monospace;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background: #f0f4ff; }
::-webkit-scrollbar-thumb { background: #0066ff; border-radius:3px; }

/* ── UTILITY ── */
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.text-center { text-align:center; }
.mx-auto { margin-left:auto; margin-right:auto; }

/* ── HEADER ─────────────────────────────────────────────── */
#header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: 0 4px 28px rgba(0,87,231,.14); }
#header .container-fluid { padding: 13px 28px; max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; }

.logo-wrap { text-decoration: none !important; display:flex; align-items:center; gap:10px; }
.logo-wrap img { height:42px; width:42px; object-fit:contain; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--cyan); }

#navmenu ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
#navmenu ul li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  transition: color 0.2s;
  position: relative;
}
#navmenu ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.2s;
}
#navmenu ul li a:hover { color: var(--cyan); }
#navmenu ul li a:hover::after { transform: scaleX(1); }
#navmenu ul li a.active { color: var(--cyan); }
#navmenu ul li a.active::after { transform: scaleX(1); }

.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--navy);
}

.btn-wa-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #25d366, #128c3a);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all .25s;
}
.btn-wa-nav:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,211,102,0.4); }

.btn-getstarted {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: all .25s;
}
.btn-getstarted:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,87,231,0.35); }

/* Mobile nav */
@media (max-width: 991px) {
  #navmenu ul { display: none; }
  .mobile-nav-toggle { display: block; }
  #navmenu.mobile-open ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 16px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,68,204,0.1);
  }
  #navmenu.mobile-open ul li a { font-size: 16px; padding: 8px 0; border-bottom: 1px solid var(--border); display:block; }
}

/* ── HERO ──────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(160deg, #ffffff 0%, #eef3ff 50%, #dde8ff 100%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.hero-blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,102,255,0.10) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: float1 8s ease-in-out infinite;
}
.hero-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,68,204,0.08) 0%, transparent 70%);
  bottom: 0; left: -150px;
  animation: float2 10s ease-in-out infinite;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,102,255,0.08);
  border: 1px solid rgba(0,102,255,0.2);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.1em;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--green);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero-title .accent {
  color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 38px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-ph {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(0,87,231,0.3);
}
.btn-ph:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,87,231,0.4); }

.btn-oh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 11px 24px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  transition: all .25s;
}
.btn-oh:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

.btn-wh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c3a);
  color: #fff;
  padding: 13px 24px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-wh:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.45); }

.pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,68,204,0.06);
  border: 1px solid rgba(0,68,204,0.15);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
  transition: all 0.2s;
}
.pill:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,102,255,0.08); }

.hero-img-float {
  max-height: 480px;
  width: auto;
  animation: heroFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,87,231,0.15));
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ── FEATURED SERVICES ──────────────────────────────────── */
#featured-services { padding: 80px 0; background: #fff; }
.feat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  transition: all .3s ease;
  box-shadow: var(--shadow-sm);
}
.feat:hover {
  border-color: rgba(0,87,231,0.28);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,87,231,0.13);
}
.ficon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,87,231,0.1), rgba(0,87,231,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--blue);
  margin-bottom: 18px;
  overflow: hidden;
}
.ficon img { width: 28px; height: 28px; object-fit: contain; }
.feat h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feat p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}

/* ── DIVIDER ── */
.ldiv {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,68,204,0.15), transparent);
  margin: 0;
}

/* ── ABOUT ──────────────────────────────────────────────── */
#about { padding: 100px 0; background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%); }

.abox {
  background: linear-gradient(135deg, #ffffff, #e8eeff);
  border: 1px solid rgba(0,68,204,0.15);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,68,204,0.08);
}
.abox::before {
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), transparent);
}

.aig {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.aii {
  background: rgba(0,68,204,0.05);
  border: 1px solid rgba(0,68,204,0.12);
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  transition: all 0.2s;
}
.aii:hover {
  border-color: var(--cyan);
  background: rgba(0,102,255,0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,68,204,0.12);
}
.aii .e { font-size:28px; margin-bottom:8px; }
.aii p { font-size:11px; color:var(--slate); font-weight:600; }

.asr { display: grid; grid-template-columns: repeat(3,1fr); gap:12px; }
.ast {
  background: rgba(0,68,204,0.05);
  border: 1px solid rgba(0,68,204,0.12);
  border-radius:8px;
  padding:12px;
  text-align:center;
}
.ast strong {
  font-family: var(--font-head);
  font-size:22px; font-weight:800; color: var(--cyan); display:block;
}
.ast span { font-size:11px; color:var(--slate); font-weight:500; }

.stag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--cyan);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.stag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--cyan);
}
.stag.center { justify-content: center; }
.stag.center::before { display:none; }

.sh {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}
.sh span { color: var(--cyan); }

.ssub {
  font-size: 17px;
  color: var(--slate);
  max-width: 560px;
  line-height: 1.7;
}

.apts { margin-top:28px; display:flex; flex-direction:column; gap:14px; }
.apt { display: flex; align-items: flex-start; gap: 14px; }
.apic {
  width: 36px; height: 36px; flex-shrink:0;
  background: rgba(0,68,204,0.08);
  border: 1px solid rgba(0,68,204,0.2);
  border-radius: 8px;
  display:flex; align-items:center; justify-content:center;
  font-size:16px;
}
.aptx h4 { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:2px; }
.aptx p  { font-size:13px; color:var(--slate); }

/* ── SERVICES ───────────────────────────────────────────── */
#services { padding: 100px 0; background: #f0f4ff; }

.service-item-card {
  background: #fff;
  border: 1px solid #e4e9f7;
  border-radius: 16px;
  padding: 28px 26px 32px;
  height: 100%;
  transition: all .3s ease;
  box-shadow: 0 2px 20px rgba(0,87,231,0.06);
  position: relative;
}
.service-item-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #38bdf8);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity .3s;
}
.service-item-card:hover {
  border-color: rgba(0,87,231,0.28);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,87,231,0.13);
}
.service-item-card:hover::before { opacity: 1; }

.sic-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  overflow: hidden;
}
.sic-icon img { width: 30px; height: 30px; object-fit: contain; }

.service-item-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-item-card > p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.72;
  margin-bottom: 16px;
}
.sic-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sic-list li {
  font-size: 13.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
  font-family: var(--font-body);
}
.sic-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ── WHY CHOOSE ──────────────────────────────────────────── */
#why-choose { padding: 100px 0; background: #ffffff; }

.wc {
  background: linear-gradient(135deg, #ffffff, #eef3ff);
  border: 1px solid rgba(0,68,204,0.12);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  position:relative; overflow:hidden;
  box-shadow: 0 2px 12px rgba(0,68,204,0.06);
  height: 100%;
}
.wc::before {
  content:''; position:absolute;
  bottom:-60px; left:50%; transform:translateX(-50%);
  width:120px; height:120px; border-radius:50%;
  background: radial-gradient(circle, rgba(0,68,204,0.08) 0%, transparent 70%);
  transition: all 0.3s;
}
.wc:hover { border-color:var(--blue); transform:translateY(-5px); box-shadow:0 20px 50px rgba(0,68,204,0.15); }
.wc:hover::before { width:200px; height:200px; bottom:-100px; }
.wi { font-size:36px; margin-bottom:16px; display:block; }
.wc h4 { font-family:var(--font-head); font-size:17px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.wc p  { font-size:13px; color:var(--slate); line-height:1.6; }

/* ── STATS BANNER ───────────────────────────────────────── */
#stats-banner {
  background: linear-gradient(135deg, #0a1f44, #0044cc);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 80px 0;
}
.snum {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  background: linear-gradient(135deg, #7dd3fc, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  display:block;
}
.slbl { font-size:15px; color: rgba(255,255,255,0.75); font-weight:500; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
#testimonials { padding: 100px 0; background: #f0f4ff; }

.tc {
  background: #ffffff;
  border: 1px solid rgba(0,68,204,0.12);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.3s; position:relative;
  box-shadow: 0 2px 12px rgba(0,68,204,0.06);
  height: 100%;
}
.tc:hover { border-color: rgba(0,102,255,0.3); transform:translateY(-4px); box-shadow:0 16px 40px rgba(0,68,204,0.12); }
.tq {
  font-size: 48px; color: var(--cyan);
  font-family: Georgia, serif; line-height: 1;
  margin-bottom: 12px; opacity: 0.25;
}
.tt { font-size: 15px; color: var(--slate); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.ts { color: #f59e0b; letter-spacing: 2px; font-size:14px; margin-bottom:16px; }
.tav {
  width:44px; height:44px; border-radius:50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-weight:800; font-size:16px; color:#ffffff; flex-shrink:0;
}
.tn { font-size:14px; font-weight:700; color:var(--navy); }
.tr { font-size:12px; color:var(--slate); }

/* ── PORTFOLIO ──────────────────────────────────────────── */
#portfolio { padding: 100px 0; background: #ffffff; }

.pc {
  background: #ffffff;
  border: 1px solid rgba(0,68,204,0.12);
  border-radius: 14px; overflow: hidden; transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0,68,204,0.06);
  height: 100%;
}
.pc:hover { border-color:rgba(0,102,255,0.3); transform:translateY(-5px); box-shadow:0 20px 50px rgba(0,68,204,0.15); }
.pt {
  height: 200px; display: flex; align-items: center;
  justify-content: center; font-size: 64px;
  position: relative; overflow: hidden;
}
.pt img { max-width: 140px; max-height: 140px; width: auto; height: auto; object-fit: contain; }
.pt::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to bottom, transparent 50%, #ffffff 100%);
}
.pb { padding:24px; }
.pb h4 { font-family:var(--font-head); font-size:17px; font-weight:700; color:var(--navy); margin-bottom:6px; }
.pb p  { font-size:13px; color:var(--slate); margin-bottom:14px; }
.ptag {
  display:inline-flex; align-items:center; gap:5px;
  background: rgba(0,102,255,0.08); border: 1px solid rgba(0,102,255,0.2);
  border-radius:100px; padding: 4px 12px;
  font-size:11px; color:var(--cyan); font-family:var(--font-mono);
}

/* ── BLOG ───────────────────────────────────────────────── */
#blog { padding: 100px 0; background: #f0f4ff; }

.bc {
  background: #ffffff;
  border: 1px solid rgba(0,68,204,0.12);
  border-radius: 14px; overflow: hidden; transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0,68,204,0.06);
  height: 100%;
}
.bc:hover { border-color:rgba(0,102,255,0.3); transform:translateY(-5px); box-shadow:0 16px 40px rgba(0,68,204,0.12); }
.bth { height: 160px; display:flex; align-items:center; justify-content:center; font-size:52px; border-bottom:1px solid rgba(0,68,204,0.1); background: linear-gradient(135deg, #eef3ff, #dde8ff); }
.bth img { max-width: 100px; max-height: 100px; width: auto; height: auto; object-fit: contain; }
.bb { padding:24px; }
.btag {
  background:rgba(0,68,204,0.08); border:1px solid rgba(0,68,204,0.2);
  border-radius:100px; padding:2px 10px;
  font-size:10px; font-family:var(--font-mono); color:var(--cyan); letter-spacing:0.1em;
}
.bdate { font-size:11px; color:var(--slate-dim); }
.bb h4 { font-family:var(--font-head); font-size:16px; font-weight:700; color:var(--navy); margin-bottom:8px; line-height:1.3; }
.bb p  { font-size:13px; color:var(--slate); line-height:1.6; margin-bottom:16px; }
.rm { font-size:13px; color:var(--cyan); font-weight:600; display:flex; align-items:center; gap:5px; cursor:pointer; transition: color .2s; }
.rm:hover { color:var(--blue); }

/* ── CONTACT ────────────────────────────────────────────── */
#contact { padding: 100px 0; background: #ffffff; }

.cic {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  transition: all .2s;
}
.cic:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.cii {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(0,87,231,0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.cic h5 {
  font-size: 11px;
  color: var(--muted);
  margin: 0 0 2px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-family: var(--font-head);
}
.cic p {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
  font-family: var(--font-head);
}

.cfb {
  background: linear-gradient(135deg, #fff, var(--bg-dark));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 38px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cfb::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #38bdf8);
}
.cfb h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-label-mod {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  display: block;
  margin-bottom: 6px;
}

.input-wrap {
  position: relative;
}
.input-wrap > i {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 15px;
  pointer-events: none;
  z-index: 1;
}

.form-ctrl {
  width: 100%;
  background: #fff;
  border: 1.5px solid rgba(0,87,231,0.18);
  border-radius: 10px;
  padding: 11px 14px 11px 38px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  transition: all .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-ctrl:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,87,231,0.1);
}
.form-ctrl::placeholder { color: var(--muted); }

textarea.form-ctrl {
  padding-left: 14px;
  resize: vertical;
  min-height: 120px;
}

select.form-ctrl {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a7aaa' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.bsub {
  background: linear-gradient(135deg, var(--blue), #0044b3);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,87,231,0.3);
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bsub:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,87,231,0.4);
}

.bwc {
  background: linear-gradient(135deg, #25d366, #128c3a);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: all .25s;
  text-decoration: none;
}
.bwc:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  color: #fff !important;
}

.form-msg {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  margin-top: 4px;
}
.form-msg-loading {
  background: var(--bg-dark);
  color: var(--blue);
  border: 1px solid rgba(0,87,231,0.2);
}
.form-msg-success {
  background: rgba(34,197,94,0.08);
  color: #15803d;
  border: 1px solid rgba(34,197,94,0.3);
  font-weight: 600;
}
.form-msg-error {
  background: rgba(239,68,68,0.08);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,0.3);
}

/* ── FOOTER ─────────────────────────────────────────────── */
#footer { background: var(--navy); color: rgba(255,255,255,.72); }
.footer-top { padding: 56px 0 36px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-top .row { display: flex; flex-wrap: wrap; }
.footer-top .row > [class*="col-"] { margin-bottom: 0; }
.sitename { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: #fff; }
.sitename span { color: #7dd3fc; }
.footer-contact p { font-size: 13.5px; color: rgba(255,255,255,.62); line-height: 1.85; font-family: var(--font-body); margin-bottom: 6px; }
.footer-contact strong { color: rgba(255,255,255,.9); }
.footer-links h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: .04em; }
.footer-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links ul li a { font-size: 13px; color: rgba(255,255,255,.58); transition: color .2s; font-family: var(--font-body); display: inline-flex; align-items: center; gap: 6px; }
.footer-links ul li a:hover { color: #7dd3fc; }
.social-links { display:flex; gap:10px; flex-wrap: wrap; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 15px; transition: all .2s; text-decoration: none; }
.social-links a:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }
.footer-copyright { padding: 20px 0; }
.footer-copyright p { font-size: 13px; color: rgba(255,255,255,.4); margin: 0; font-family: var(--font-body); }
.footer-copyright strong { color: #7dd3fc; }
.footer-copyright a { transition: color .2s; color: rgba(255,255,255,.45); }
.footer-copyright a:hover { color: #7dd3fc !important; }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-lbl {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  font-family: var(--font-head);
}
.wa-float a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c3a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: waPulse 3s ease-in-out infinite;
  transition: all .3s;
}
.wa-float a:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

/* ── SCROLL TOP ───────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 9998;
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(0,87,231,0.3);
  text-decoration: none;
}
#scroll-top.show {
  opacity: 1;
  visibility: visible;
}
#scroll-top:hover {
  background: var(--navy);
  transform: translateY(-3px);
  color: #fff;
}

/* ── KEYFRAME ANIMATIONS ── */
@keyframes float1      { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,40px)} }
@keyframes float2      { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-30px)} }
@keyframes pulse       { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.8)} }
@keyframes fadeInUp    { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes waPulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.3); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-title { font-size: 36px; }
  .hero-img-float { max-height: 500px; }
}
@media (max-width: 767px) {
  .hero-btns { flex-direction: column; }
  .hero-btns a { justify-content: center; width: 100%; }
  .pills { justify-content: center; }
  .cfb { padding: 0px 0px; }
  .bsub, .bwc { width: 100%; justify-content: center; }
  .aig { grid-template-columns: repeat(2, 1fr); }
  .asr { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .aig { grid-template-columns: repeat(2, 1fr); }
}