/* ============================================================
   Nziyane Group — Brand Colors
   Navy: #1a2e6e | Teal: #3db5c8 | Green: #4ea535
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1a2e6e;
  --navy-light: #243b8a;
  --navy-dark:  #0f1d4a;
  --teal:       #3db5c8;
  --teal-light: #5bc5d5;
  --teal-dark:  #2a9aac;
  --green:      #4ea535;
  --green-light:#62c045;
  --green-dark: #3b7e28;
  --silver:     #8a9ab5;
  --white:      #ffffff;
  --off-white:  #f8fafd;
  --light-bg:   #eef4fb;
  --text-dark:  #0d1b3e;
  --text-mid:   #374166;
  --text-light: #6b7a9e;
  --border:     #dce6f5;
  --shadow-sm:  0 2px 10px rgba(26,46,110,0.08);
  --shadow-md:  0 8px 32px rgba(26,46,110,0.13);
  --shadow-lg:  0 20px 60px rgba(26,46,110,0.18);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1rem; }

p  { color: var(--text-mid); line-height: 1.75; }
a  { text-decoration: none; color: inherit; }
img{ max-width: 100%; height: auto; display: block; }

.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding{ padding: 88px 0; }
.section-padding-sm{ padding: 56px 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--teal);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 80px; gap: 16px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img   { height: 58px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-menu a {
  display: block; padding: 8px 13px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--navy); border-radius: 8px;
  transition: var(--transition); white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active { background: var(--light-bg); color: var(--teal-dark); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--teal) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1){ transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 16px 24px; }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block; padding: 12px 16px;
  color: var(--navy); font-weight: 500;
  border-radius: 8px; transition: var(--transition);
}
.mobile-nav a:hover { background: var(--light-bg); color: var(--teal); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary  { background: var(--teal);  color: var(--white); border-color: var(--teal); }
.btn-primary:hover  { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,181,200,0.35); }
.btn-navy     { background: var(--navy);  color: var(--white); border-color: var(--navy); }
.btn-navy:hover     { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,46,110,0.3); }
.btn-green    { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover    { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(78,165,53,0.35); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline:hover  { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: var(--white); padding: 0;
  position: relative; overflow: hidden;
  min-height: 92vh; display: flex; align-items: center;
}
/* Video background */
.hero-video-bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-video-bg video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(8,15,44,0.82) 0%, rgba(26,46,110,0.72) 55%, rgba(10,20,55,0.85) 100%);
}
.hero > .container {
  position: relative; z-index: 1; width: 100%;
}
.hero-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; z-index: 1;
  padding: 110px 0 90px; width: 100%;
}
.hero-content { max-width: 820px; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(61,181,200,0.15); border: 1px solid rgba(61,181,200,0.3);
  color: var(--teal-light); padding: 6px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--teal); }
.hero-content > p { color: rgba(255,255,255,0.88); font-size: 1.08rem; margin-bottom: 16px; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-tagline {
  color: rgba(255,255,255,0.95) !important;
  font-size: 1.12rem !important; font-weight: 500;
  margin-bottom: 36px !important;
  max-width: 640px; margin-left: auto !important; margin-right: auto !important;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--white); padding: 36px 0; box-shadow: var(--shadow-md); position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-item { padding: 16px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number { display: block; font-size: 2.1rem; font-weight: 800; color: var(--navy); font-family: 'Poppins', sans-serif; }
.stat-number span { color: var(--teal); }
.stat-label { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--light-bg); color: var(--teal-dark);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 600px; margin: 0 auto; font-size: 1.02rem; }
.divider { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; }
.divider-line { height: 2px; width: 56px; background: var(--border); border-radius: 2px; }
.divider-dot  { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; }

/* ============================================================
   DIVISIONS (Home)
   ============================================================ */
/* ── About / Business Description ─────────────────────────── */
.about-section { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 420px; gap: 72px; align-items: start;
}
.about-text .section-tag { margin-bottom: 16px; }
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.about-text h2 span { color: var(--teal); }
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; font-size: 1.02rem; }
.about-values { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.about-value {
  display: flex; align-items: flex-start; gap: 14px;
}
.value-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(61,181,200,0.1); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.about-value strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.about-value span { font-size: 0.875rem; color: var(--text-light); }
.about-sidebar { display: flex; flex-direction: column; gap: 20px; }
.about-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border);
}
.about-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.about-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.about-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.about-card-highlight { background: var(--navy); border-color: var(--navy); }
.bbee-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.bbee-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 50px;
  background: linear-gradient(135deg, rgba(26,46,110,0.07) 0%, rgba(61,181,200,0.07) 100%);
  border: 1.5px solid rgba(26,46,110,0.2);
  font-size: 0.875rem; font-weight: 700; color: var(--navy);
}
.bbee-badge svg { color: var(--teal); flex-shrink: 0; }
.footer-credentials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.footer-credential {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 50px;
  background: rgba(61,181,200,0.15); border: 1px solid rgba(61,181,200,0.3);
  font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.95);
  letter-spacing: 0.3px;
}
.about-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.highlight-item { text-align: center; }
.highlight-num { display: block; font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--teal); line-height: 1; }
.highlight-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.divisions-section { background: var(--off-white); }
.divisions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.divisions-grid-bottom { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; max-width: 760px; margin: 28px auto 0; }

.division-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; text-align: center;
  box-shadow: var(--shadow-sm); border: 2px solid transparent;
  transition: var(--transition); position: relative; overflow: hidden;
  cursor: pointer; display: flex; flex-direction: column; align-items: center;
}
.division-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transition: var(--transition);
}
.division-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.division-card:hover::before { background: linear-gradient(90deg, var(--teal), var(--green)); height: 6px; }

.division-icon {
  width: 80px; height: 80px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: var(--transition);
}
.division-card:hover .division-icon { transform: scale(1.1); }

.icon-navy  { background: rgba(26,46,110,0.09);  color: var(--navy); }
.icon-teal  { background: rgba(61,181,200,0.11);  color: var(--teal); }
.icon-green { background: rgba(78,165,53,0.10);  color: var(--green); }

.division-card h3 { margin-bottom: 12px; font-size: 1.12rem; }
.division-card p  { font-size: 0.885rem; color: var(--text-light); margin-bottom: 24px; flex: 1; }

.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-weight: 600; font-size: 0.875rem; transition: var(--transition); }
.card-link:hover { gap: 10px; color: var(--navy); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-logo-display {
  background: linear-gradient(135deg, var(--light-bg), var(--white));
  border-radius: var(--radius-lg); padding: 60px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--border); box-shadow: var(--shadow-md);
}
.about-logo-display img { max-width: 260px; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: var(--white);
  padding: 20px 24px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-md);
}
.about-badge .badge-num { font-size: 1.8rem; font-weight: 800; display: block; color: var(--teal); }
.about-badge .badge-text { font-size: 0.75rem; opacity: 0.75; }

.about-content { padding-left: 16px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p  { margin-bottom: 16px; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--light-bg); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--teal);
}
.feature-item h4 { font-size: 0.88rem; margin-bottom: 2px; }
.feature-item p  { font-size: 0.8rem; color: var(--text-light); margin: 0; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card  { text-align: center; padding: 32px 20px; }
.why-icon  {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.why-card h4 { margin-bottom: 10px; font-size: 1rem; }
.why-card p  { font-size: 0.875rem; color: var(--text-light); }

/* ============================================================
   PROVINCES
   ============================================================ */
.provinces-section { background: linear-gradient(140deg, var(--navy-dark), var(--navy)); color: var(--white); }
.provinces-section .section-header h2 { color: var(--white); }
.provinces-section .section-tag { background: rgba(61,181,200,0.15); color: var(--teal-light); }
.provinces-section .section-header p { color: rgba(255,255,255,0.75); }

.provinces-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 860px; margin: 0 auto; }
.province-item {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 20px;
  display: flex; align-items: center; gap: 12px; transition: var(--transition);
}
.province-item:hover { background: rgba(61,181,200,0.14); border-color: rgba(61,181,200,0.35); transform: translateY(-2px); }
.province-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-teal  { background: var(--teal); }
.dot-green { background: var(--green); }
.province-item span { font-weight: 500; font-size: 0.9rem; color: rgba(255,255,255,0.9); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; color: var(--white); flex-shrink: 0;
}
.contact-item h4 { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-item p,
.contact-item a { color: var(--navy); font-weight: 500; font-size: 0.95rem; }
.contact-item a:hover { color: var(--teal); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text-mid); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: 10px;
  font-size: 0.9rem; font-family: inherit;
  color: var(--text-dark); background: var(--white);
  transition: var(--transition); outline: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(61,181,200,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-img { height: 50px; margin-bottom: 16px; background: rgba(255,255,255,0.95); border-radius: 8px; padding: 5px 10px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; opacity: 0.9; color: rgba(255,255,255,0.9); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.1); display: flex;
  align-items: center; justify-content: center;
  color: var(--white); transition: var(--transition);
}
.social-link:hover { background: var(--teal); transform: translateY(-2px); }
.footer-col h4 {
  color: var(--white); font-size: 0.88rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li { font-size: 0.875rem; color: rgba(255,255,255,0.62); }
.footer-links a {
  color: rgba(255,255,255,0.62); font-size: 0.875rem;
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--teal); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; opacity: 0.9; color: rgba(255,255,255,0.9); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; opacity: 0.6; transition: var(--transition); }
.footer-bottom-links a:hover { opacity: 1; color: var(--teal); }

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(140deg, var(--navy-dark), var(--navy));
  color: var(--white); padding: 76px 0;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  top: -40%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61,181,200,0.12) 0%, transparent 70%);
}
.page-hero-icon {
  width: 80px; height: 80px; border-radius: 20px;
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: var(--teal); position: relative;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; position: relative; }
.page-hero p  { color: rgba(255,255,255,0.82); max-width: 580px; margin: 0 auto; font-size: 1.07rem; position: relative; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 20px; font-size: 0.83rem; position: relative;
}
.breadcrumb a       { color: var(--teal); }
.breadcrumb .sep    { color: rgba(255,255,255,0.35); }
.breadcrumb .current{ color: rgba(255,255,255,0.7); }

/* ============================================================
   SERVICES GRID (Inner pages)
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.service-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; background: var(--light-bg);
}
.service-card h3 { font-size: 1.04rem; margin-bottom: 10px; }
.service-card p  { font-size: 0.875rem; color: var(--text-light); }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-mid); }
.feature-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white); padding: 76px 0; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; }
.cta-btns      { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Highlight strip */
.highlight-strip {
  background: var(--light-bg); border-radius: var(--radius-lg);
  padding: 40px 48px; display: flex; align-items: center;
  gap: 32px; margin-bottom: 60px; border: 1px solid var(--border);
}
.highlight-strip-icon {
  width: 72px; height: 72px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.highlight-strip h3 { margin-bottom: 8px; }
.highlight-strip p  { font-size: 0.9rem; margin: 0; }

/* Product grid */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.product-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.product-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.product-card h4 { font-size: 0.95rem; margin-bottom: 8px; }
.product-card p  { font-size: 0.82rem; color: var(--text-light); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid    { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 960px) {
  .hero          { min-height: 80vh; }
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .about-content { padding-left: 0; }
  .about-badge   { position: static; margin-top: 24px; display: inline-block; }
  .contact-grid  { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .provinces-grid{ grid-template-columns: repeat(2,1fr); }
  .divisions-grid{ grid-template-columns: repeat(2,1fr); }
  .highlight-strip { flex-direction: column; text-align: center; padding: 32px; }
}
@media (max-width: 768px) {
  .nav-menu   { display: none; }
  .hamburger  { display: flex; }
  .header-inner { height: 68px; }
  .logo-img   { height: 48px; }
  .section-padding { padding: 60px 0; }
  .divisions-grid        { grid-template-columns: 1fr; }
  .divisions-grid-bottom { grid-template-columns: 1fr; max-width: 100%; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row      { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .provinces-grid{ grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .stat-item   { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd){ border-right: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .why-grid    { grid-template-columns: 1fr; }
  .container   { padding: 0 16px; }
  .hero-btns   { flex-direction: column; align-items: center; }
  .about-features { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 100vh; }
  .hero-inner { padding: 80px 0 60px; }
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.55);
  transition: var(--transition);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.65); }
.btn-whatsapp {
  background: #25D366; color: var(--white); border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da851; border-color: #1da851;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.project-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--transition);
  display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.project-browser {
  background: #e8eef7; border-bottom: 1px solid var(--border); padding: 10px 14px 0;
}
.browser-bar {
  background: white; border-radius: 6px 6px 0 0;
  padding: 8px 12px; display: flex; align-items: center; gap: 8px;
  border: 1px solid #d0dae8; border-bottom: none;
}
.browser-dots { display: flex; gap: 5px; }
.browser-dot { width: 9px; height: 9px; border-radius: 50%; }
.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1; background: #f0f4fb; border-radius: 4px;
  padding: 3px 10px; font-size: 0.71rem; color: var(--text-light);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.project-preview {
  height: 190px; display: flex; align-items: center; justify-content: center;
}
.project-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-info { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.project-info h3 { font-size: 1.02rem; margin-bottom: 8px; }
.project-info p { font-size: 0.83rem; color: var(--text-light); margin-bottom: 14px; flex: 1; }
.project-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.project-tag {
  background: var(--light-bg); color: var(--teal-dark);
  font-size: 0.71rem; font-weight: 600; padding: 3px 10px; border-radius: 50px;
}
@media (max-width: 960px) { .projects-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .projects-grid { grid-template-columns: 1fr; } }

/* ============================================================
   OFFICE SUPPLIES — PRODUCT IMAGES
   ============================================================ */
.product-card-img {
  width: 100%; height: 140px; object-fit: cover; display: block;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: transform 0.4s ease;
}
.product-card-has-img { padding: 0 !important; overflow: hidden; }
.product-card-has-img .product-card-body { padding: 20px; }
.product-card-has-img .product-icon { margin: 0 0 12px; }
.product-card-has-img:hover .product-card-img { transform: scale(1.04); }
.product-card-img-wrap { overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
