/* ================================================================
   MULTFLEX GENERAL SUPPLY — style.css v3.0
   Bootstrap 5 + Custom dark theme | Poppins font
   Designed by KIKAVU TECH SOLUTIONS (https://kikavutechsolutions.com)
   ================================================================ */

/* ----------------------------------------------------------------
   1. VARIABLES & BASE
   ---------------------------------------------------------------- */
:root {
  --navy:        #0a192f;
  --navy-2:      #0f2644;
  --navy-3:      #112240;
  --navy-card:   #0d2137;
  --gold:        #f59e0b;
  --gold-2:      #fb923c;
  --gold-glow:   rgba(245,158,11,.18);
  --gold-soft:   rgba(245,158,11,.08);
  --wa-green:    #25d366;
  --text:        #e2e8f0;
  --muted:       #94a3b8;
  --border:      rgba(255,255,255,.08);
  --border-gold: rgba(245,158,11,.3);
  --shadow:      0 20px 60px rgba(0,0,0,.5);
  --shadow-sm:   0 4px 24px rgba(0,0,0,.3);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --ease:        cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- Section spacing ---- */
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 60px 0; }

/* ---- Section header ---- */
.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold-glow);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 14px;
}
.section-tag::before {
  content:''; width:5px; height:5px; border-radius:50%;
  background: var(--gold); display: inline-block;
  animation: dot-pulse 2s ease infinite;
}
@keyframes dot-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; line-height: 1.2; color: #fff;
  margin-bottom: .75rem;
}
.section-sub {
  font-size: .95rem; color: var(--muted);
  max-width: 580px; line-height: 1.85;
}
.section-header-center { text-align: center; margin-bottom: 52px; }
.section-header-center .section-sub { margin: 0 auto; }

/* ---- Utility ---- */
.text-gold { background: linear-gradient(135deg,var(--gold),var(--gold-2)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.bg-navy   { background: var(--navy); }
.bg-navy2  { background: var(--navy-2); }

/* ---- Card base ---- */
.mf-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.mf-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

/* ================================================================
   2. BUTTONS
   ================================================================ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #000 !important;
  font-weight: 700; font-family: 'Poppins', sans-serif;
  font-size: .87rem; border-radius: 100px;
  padding: 10px 26px; border: none;
  box-shadow: 0 4px 20px var(--gold-glow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,158,11,.4);
}

.btn-outline-gold {
  background: transparent; color: var(--gold) !important;
  border: 2px solid var(--gold) !important;
  font-weight: 700; font-family: 'Poppins', sans-serif;
  font-size: .87rem; border-radius: 100px;
  padding: 10px 26px;
  transition: all .25s var(--ease);
}
.btn-outline-gold:hover {
  background: var(--gold); color: #000 !important;
}

.btn-glass {
  background: rgba(255,255,255,.07);
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.2) !important;
  font-weight: 600; font-family: 'Poppins', sans-serif;
  font-size: .87rem; border-radius: 100px;
  padding: 10px 26px; backdrop-filter: blur(10px);
  transition: all .25s var(--ease);
}
.btn-glass:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: var(--gold-glow);
}

.btn-wa-footer {
  display: inline-flex; align-items: center;
  background: var(--wa-green);
  color: #fff !important;
  font-weight: 700; font-family: 'Poppins', sans-serif;
  font-size: .83rem; border-radius: 100px;
  padding: 9px 20px; border: none;
  transition: background .25s, transform .25s;
}
.btn-wa-footer:hover { background: #1da851; transform: translateY(-2px); color:#fff!important; }

/* ================================================================
   3. TOP BAR
   ================================================================ */
.topbar {
  background: var(--navy-3);
  border-bottom: 1px solid var(--border);
  font-size: .78rem;
}
.topbar-link {
  color: var(--muted);
  transition: color .2s;
}
.topbar-link:hover { color: var(--gold); }
.topbar-wa {
  background: var(--wa-green);
  color: #fff !important;
  padding: 3px 12px; border-radius: 100px;
  font-weight: 600;
  transition: background .2s;
}
.topbar-wa:hover { background: #1da851; }

/* ================================================================
   4. NAVBAR
   ================================================================ */
.mf-navbar {
  background: rgba(10, 25, 47, .97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: box-shadow .3s var(--ease);
}
.mf-navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.4); }

/* Logo */
.nav-logo { height: 46px; width: auto; }

/* Nav links */
.mf-nav-link {
  font-size: .87rem; font-weight: 500;
  color: rgba(255,255,255,.75) !important;
  padding: 14px 14px !important;
  border-radius: 8px;
  transition: all .25s var(--ease) !important;
  position: relative;
}
.mf-nav-link::after {
  content: '';
  position: absolute; bottom: 8px; left: 14px; right: 14px;
  height: 2px; background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transition: transform .3s var(--ease);
}
.mf-nav-link:hover,
.mf-nav-link.active {
  color: var(--gold) !important;
  background: var(--gold-soft) !important;
}
.mf-nav-link.active::after,
.mf-nav-link:hover::after { transform: scaleX(1); }

/* Custom hamburger toggler */
.mf-toggler {
  border: 1.5px solid var(--border-gold) !important;
  border-radius: 8px !important;
  padding: 7px 10px !important;
  background: transparent !important;
  display: flex; flex-direction: column; gap: 5px;
}
.mf-toggler span {
  display: block; width: 22px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: all .3s var(--ease);
}
.mf-toggler[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mf-toggler[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mf-toggler[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mf-toggler:focus { box-shadow: 0 0 0 3px var(--gold-glow) !important; }

/* Mobile collapse styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(10,25,47,.98);
    border-top: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 8px 0 16px;
    margin: 0 -12px;
  }
  .mf-nav-link { padding: 12px 20px !important; border-radius: 0; font-size: .95rem; }
  .mf-nav-link::after { display: none; }
}

/* ================================================================
   5. HERO SECTION
   ================================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 0;
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: .13;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(130deg, var(--navy) 0%, rgba(10,25,47,.9) 55%, rgba(10,25,47,.55) 100%);
}
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hero-body { position: relative; z-index: 3; padding-top: 80px; padding-bottom: 80px; }

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-glow); border: 1px solid var(--gold);
  color: var(--gold); font-size: .75rem; font-weight: 700;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 22px;
}
.hero-badge-dot { width:6px; height:6px; border-radius:50%; background:var(--gold); animation:dot-pulse 2s ease infinite; }

.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 520px; margin-bottom: 2.25rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; color: var(--muted);
  background: var(--gold-soft); border: 1px solid rgba(255,255,255,.1);
  padding: 5px 12px; border-radius: 100px;
}
.trust-chip i { color: var(--gold); }

/* Hero image side */
.hero-img-wrap { position: relative; }
.hero-main-img { width: 100%; border-radius: var(--radius-xl); border: 2px solid var(--border); box-shadow: var(--shadow); }

/* Floating info cards */
.float-card {
  position: absolute;
  background: rgba(13,33,55,.97); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-sm); animation: float-y 4s ease-in-out infinite;
}
.float-card strong { display:block; font-size:.95rem; font-weight:800; color:#fff; }
.float-card span   { font-size:.7rem; color:var(--muted); }
.fc-icon { width:40px; height:40px; min-width:40px; background:var(--gold-glow); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; color:var(--gold); }
.float-card-a { bottom:-18px; left:-20px; animation-delay:0s; }
.float-card-b { top:20px; right:-20px; animation-delay:2s; }
@keyframes float-y { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* Scroll indicator */
.hero-scroll { position:absolute; bottom:28px; left:50%; transform:translateX(-50%); z-index:4; }
.scroll-mouse { width:26px; height:44px; border:2px solid rgba(255,255,255,.28); border-radius:13px; display:flex; justify-content:center; padding-top:6px; }
.scroll-wheel { width:3px; height:8px; background:var(--gold); border-radius:2px; animation:scroll-w 2s ease infinite; }
@keyframes scroll-w { 0%,100%{transform:translateY(0);opacity:1} 70%{transform:translateY(14px);opacity:0} }

/* Particles */
.particle { position:absolute; border-radius:50%; background:rgba(245,158,11,.12); animation:pt-rise linear infinite; }
@keyframes pt-rise { from{transform:translateY(110vh) rotate(0deg);opacity:0} 10%{opacity:1} 90%{opacity:1} to{transform:translateY(-10vh) rotate(360deg);opacity:0} }

/* ================================================================
   6. STATS BAR
   ================================================================ */
.stats-bar { position:relative; z-index:10; margin-top:-40px; }
.stats-bar .container { position:relative; }
.stat-card-wrap {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stat-item {
  padding: 36px 20px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background .3s;
  position: relative; overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--gold),var(--gold-2));
  transform:scaleX(0); transition:transform .4s var(--ease);
}
.stat-item:hover { background: var(--gold-soft); }
.stat-item:hover::before { transform:scaleX(1); }
.stat-icon  { font-size:1.6rem; color:var(--gold); margin-bottom:.5rem; }
.stat-value { font-size:2.4rem; font-weight:900; color:#fff; line-height:1; }
.stat-label { font-size:.78rem; color:var(--muted); margin-top:.4rem; font-weight:500; }

/* ================================================================
   7. ABOUT SNIPPET (Home page)
   ================================================================ */
.about-imgs-wrap { position:relative; padding-bottom:60px; }
.about-img-main  { border-radius:var(--radius-xl); overflow:hidden; border:2px solid var(--border); box-shadow:var(--shadow); }
.about-img-main img { width:100%; height:420px; object-fit:cover; }
.about-img-float {
  position:absolute; bottom:0; right:-16px; width:55%;
  border-radius:var(--radius-lg); overflow:hidden;
  border:3px solid var(--navy); box-shadow:var(--shadow);
}
.about-img-float img { width:100%; height:200px; object-fit:cover; }
.exp-badge {
  position:absolute; top:20px; left:-16px;
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  color:#000; border-radius:var(--radius-lg); padding:18px 22px;
  text-align:center; box-shadow:0 8px 30px var(--gold-glow);
}
.exp-num { display:block; font-size:1.8rem; font-weight:900; line-height:1; }
.exp-txt  { font-size:.68rem; font-weight:700; margin-top:4px; }

/* Feature items */
.feat-item {
  display:flex; gap:14px; align-items:flex-start;
  padding:16px; border-radius:var(--radius); transition:.3s;
  background: var(--navy-card); border:1px solid var(--border);
}
.feat-item:hover { border-color:var(--border-gold); transform:translateY(-3px); }
.feat-icon { width:40px; height:40px; min-width:40px; background:var(--gold-glow); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:.95rem; color:var(--gold); }
.feat-item strong { display:block; font-size:.87rem; color:#fff; font-weight:700; }
.feat-item p { font-size:.77rem; color:var(--muted); margin:0; line-height:1.5; }

/* ================================================================
   8. PRODUCT CARDS (index.php featured + products.php)
   ================================================================ */
.prod-card {
  background: var(--navy-card); border:1px solid var(--border);
  border-radius: var(--radius-xl); overflow:hidden;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s;
}
.prod-card:hover { transform:translateY(-10px); border-color:var(--border-gold); box-shadow:var(--shadow); }

.prod-img { position:relative; height:230px; overflow:hidden; }
.prod-img img { width:100%; height:100%; object-fit:cover; transition:transform .55s ease; }
.prod-card:hover .prod-img img { transform:scale(1.07); }
.prod-tag {
  position:absolute; top:12px; left:12px;
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  color:#000; font-size:.67rem; font-weight:800;
  padding:4px 11px; border-radius:100px;
}
.prod-overlay {
  position:absolute; inset:0;
  background:rgba(10,25,47,.82); backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .3s;
}
.prod-card:hover .prod-overlay { opacity:1; }

.prod-body { padding:22px; }
.prod-cat  { display:block; font-size:.68rem; font-weight:700; color:var(--gold); letter-spacing:.08em; text-transform:uppercase; margin-bottom:6px; }
.prod-body h3 { font-size:.97rem; font-weight:700; color:#fff; margin-bottom:8px; line-height:1.35; }
.prod-body p  { font-size:.82rem; color:var(--muted); margin-bottom:14px; line-height:1.65; }
.prod-link { display:inline-flex; align-items:center; gap:6px; font-size:.82rem; font-weight:700; color:var(--gold); transition:gap .25s; }
.prod-link:hover { gap:12px; }

/* Filter buttons */
.filter-btn {
  font-family:'Poppins',sans-serif; font-size:.82rem; font-weight:600;
  color:var(--muted); background:var(--navy-card);
  border:1px solid var(--border); border-radius:100px;
  padding:8px 20px; cursor:pointer; transition:all .25s var(--ease);
}
.filter-btn:hover,.filter-btn.active {
  color:#000; background:linear-gradient(135deg,var(--gold),var(--gold-2));
  border-color:transparent; box-shadow:0 4px 18px var(--gold-glow);
}

/* ================================================================
   9. WHY CHOOSE US
   ================================================================ */
.why-section { position:relative; padding:96px 0; overflow:hidden; }
.why-bg { position:absolute; inset:0; }
.why-bg img { width:100%; height:100%; object-fit:cover; opacity:.1; }
.why-bg-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(10,25,47,.97),rgba(10,25,47,.9)); }
.why-card {
  background:rgba(255,255,255,.04); border:1px solid var(--border);
  border-radius:var(--radius-xl); padding:32px 24px; transition:.35s var(--ease);
}
.why-card:hover { background:var(--gold-glow); border-color:var(--gold); transform:translateY(-6px); }
.why-icon { width:54px; height:54px; background:var(--gold-glow); border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:1.4rem; color:var(--gold); margin-bottom:18px; }
.why-card h5 { font-size:.97rem; font-weight:700; color:#fff; margin-bottom:8px; }
.why-card p  { font-size:.83rem; color:rgba(255,255,255,.6); line-height:1.75; margin:0; }

/* ================================================================
   10. CLIENTS
   ================================================================ */
.clients-logos-wrap {
  background:var(--navy-card); border:1px solid var(--border);
  border-radius:var(--radius-xl); padding:36px;
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:20px;
}
.client-logo { padding:10px 18px; border-radius:var(--radius); opacity:.5; transition:.3s; }
.client-logo:hover { opacity:1; transform:scale(1.06); }
.client-logo img { height:46px; width:auto; object-fit:contain; filter:brightness(0) invert(1); }

/* Testimonials */
.testi-card {
  background:var(--navy-card); border:1px solid var(--border);
  border-radius:var(--radius-xl); padding:32px;
  transition:.3s var(--ease);
}
.testi-card:hover { border-color:var(--border-gold); transform:translateY(-4px); }
.testi-quote { font-size:1.8rem; color:var(--gold); opacity:.4; margin-bottom:14px; }
.testi-card p  { font-size:.88rem; color:var(--muted); font-style:italic; line-height:1.8; margin-bottom:20px; }
.testi-author { display:flex; align-items:center; gap:14px; }
.testi-avatar { width:50px; height:50px; border-radius:50%; object-fit:cover; border:2px solid var(--gold); }
.testi-name   { display:block; font-size:.88rem; font-weight:700; color:#fff; }
.testi-role   { font-size:.75rem; color:var(--muted); }

/* ================================================================
   11. CTA STRIP
   ================================================================ */
.cta-strip {
  background:linear-gradient(135deg,var(--navy-3),var(--navy-2));
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:72px 0;
}
.cta-strip h2 { font-size:clamp(1.5rem,3.5vw,2.2rem); font-weight:800; color:#fff; margin-bottom:.5rem; }
.cta-strip p  { color:var(--muted); font-size:.95rem; margin:0; }

/* ================================================================
   12. PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  position:relative; min-height:380px;
  display:flex; align-items:flex-end;
  padding-bottom:56px;
}
.page-hero-bg { position:absolute; inset:0; }
.page-hero-bg img { width:100%; height:100%; object-fit:cover; opacity:.18; }
.page-hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(10,25,47,.6) 0%, var(--navy) 100%);
}
.page-hero-body { position:relative; z-index:2; }
.breadcrumb-nav { display:flex; align-items:center; gap:8px; font-size:.78rem; color:var(--muted); margin-bottom:16px; }
.breadcrumb-nav a { color:var(--gold); transition:opacity .2s; }
.breadcrumb-nav a:hover { opacity:.75; }
.breadcrumb-nav i { font-size:.6rem; }
.page-hero-body h1 { font-size:clamp(2rem,5vw,3.2rem); font-weight:900; color:#fff; margin-bottom:.75rem; }
.page-hero-body .lead { color:var(--muted); font-size:1rem; }

/* ================================================================
   13. SERVICES PAGE
   ================================================================ */
.svc-row-img { border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow); }
.svc-row-img img { width:100%; height:380px; object-fit:cover; transition:transform .55s ease; }
.svc-row-img:hover img { transform:scale(1.04); }
.svc-number { font-size:3rem; font-weight:900; color:var(--gold-glow); line-height:1; margin-bottom:.25rem; }
.svc-body h3 { font-size:1.5rem; font-weight:800; color:#fff; margin-bottom:.75rem; }
.svc-body > p { color:var(--muted); line-height:1.85; font-size:.93rem; margin-bottom:1.5rem; }
.svc-checklist { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:9px; }
.svc-checklist li { display:flex; align-items:center; gap:10px; font-size:.87rem; color:var(--text); }
.svc-checklist li i { color:var(--gold); font-size:.78rem; flex-shrink:0; }
.svc-divider { border-color:var(--border); margin:64px 0; }

/* ================================================================
   14. ABOUT PAGE
   ================================================================ */
.stat-pill {
  background:var(--navy-card); border:1px solid var(--border);
  border-radius:var(--radius); padding:16px 20px; text-align:center; flex:1; min-width:90px;
}
.stat-pill-num { display:block; font-size:1.5rem; font-weight:900; color:var(--gold); line-height:1; }
.stat-pill-lbl { display:block; font-size:.72rem; color:var(--muted); margin-top:4px; }

.mv-card { background:var(--navy-card); border:1px solid var(--border); border-radius:var(--radius-xl); padding:32px; height:100%; transition:.3s var(--ease); }
.mv-card:hover { border-color:var(--border-gold); transform:translateY(-4px); }
.mv-icon { width:54px; height:54px; background:var(--gold-glow); border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:1.3rem; color:var(--gold); margin-bottom:18px; }
.mv-card h4 { font-size:1.05rem; font-weight:800; color:#fff; margin-bottom:.75rem; }
.mv-card p  { font-size:.86rem; color:var(--muted); line-height:1.78; margin:0; }
.values-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.values-list li { display:flex; align-items:center; gap:10px; font-size:.86rem; color:var(--muted); }
.values-list li i { color:var(--gold); font-size:.75rem; }

.team-card { background:var(--navy-card); border:1px solid var(--border); border-radius:var(--radius-xl); padding:28px 20px; text-align:center; transition:.3s var(--ease); height:100%; }
.team-card:hover { border-color:var(--border-gold); transform:translateY(-6px); }
.team-avatar { width:88px; height:88px; border-radius:50%; object-fit:cover; border:3px solid var(--gold); margin:0 auto 14px; }
.team-card h5 { font-size:.92rem; font-weight:700; color:#fff; margin-bottom:4px; }
.team-card small { color:var(--muted); font-size:.77rem; }
.team-soc { display:flex; justify-content:center; gap:8px; margin-top:14px; }
.team-soc a { width:32px; height:32px; background:var(--gold-glow); border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:.78rem; transition:.25s; }
.team-soc a:hover { background:var(--gold); color:#000; }

/* ================================================================
   15. CONTACT PAGE
   ================================================================ */
.contact-info-item { display:flex; gap:16px; align-items:flex-start; }
.ci-icon { width:48px; height:48px; min-width:48px; background:var(--gold-glow); border:1px solid var(--border-gold); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; color:var(--gold); flex-shrink:0; }
.ci-icon.wa-icon { background:rgba(37,211,102,.14); border-color:rgba(37,211,102,.3); color:var(--wa-green); }
.contact-info-item h6 { font-size:.88rem; font-weight:700; color:#fff; margin-bottom:3px; }
.contact-info-item p, .contact-info-item a { font-size:.84rem; color:var(--muted); margin:0; transition:color .2s; }
.contact-info-item a:hover { color:var(--gold); }

.soc-btn { width:40px; height:40px; background:var(--navy-card); border:1px solid var(--border); border-radius:10px; display:flex; align-items:center; justify-content:center; color:var(--muted); font-size:.88rem; transition:.25s; }
.soc-btn:hover { background:var(--gold-glow); border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }
.soc-btn.wa-soc:hover { background:rgba(37,211,102,.14); border-color:var(--wa-green); color:var(--wa-green); }

.cf-panel { background:var(--navy-card); border:1px solid var(--border); border-radius:var(--radius-xl); padding:40px; }
.cf-panel h4 { font-size:1.15rem; font-weight:800; color:#fff; margin-bottom:28px; }

.form-label { font-size:.77rem; font-weight:600; color:var(--muted); text-transform:uppercase; letter-spacing:.06em; }
.form-control, .form-select {
  font-family:'Poppins',sans-serif; font-size:.9rem; color:#fff !important;
  background:rgba(255,255,255,.04) !important; border:1px solid var(--border) !important;
  border-radius:var(--radius) !important; padding:12px 16px;
}
.form-control::placeholder { color:rgba(255,255,255,.22) !important; }
.form-control:focus, .form-select:focus {
  border-color:var(--gold) !important; background:var(--gold-soft) !important;
  box-shadow:0 0 0 3px rgba(245,158,11,.14) !important;
}
.form-select option { background:var(--navy-3); }
.form-control.is-invalid { border-color:#ef4444 !important; }
.req { color:var(--gold); }
.form-note { font-size:.76rem; color:var(--muted); display:flex; align-items:center; justify-content:center; gap:6px; }

.form-success { text-align:center; padding:48px 20px; }
.form-success .success-icon { font-size:3.5rem; color:#22c55e; margin-bottom:16px; }
.form-success h4 { font-size:1.4rem; color:#fff; margin-bottom:8px; }
.form-success p  { color:var(--muted); }

.alert-err { background:rgba(239,68,68,.1); border:1px solid rgba(239,68,68,.3); color:#fca5a5; font-size:.86rem; padding:12px 16px; border-radius:var(--radius-sm); }

.qc-card { background:var(--navy-card); border:1px solid var(--border); border-radius:var(--radius-xl); padding:36px 24px; text-align:center; transition:.3s var(--ease); display:block; }
.qc-card:hover { border-color:var(--border-gold); transform:translateY(-6px); box-shadow:var(--shadow-sm); }
.qc-card.wa-card:hover { border-color:rgba(37,211,102,.4); }
.qc-icon { width:62px; height:62px; background:var(--gold-glow); border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:1.6rem; color:var(--gold); margin:0 auto 16px; }
.qc-card.wa-card .qc-icon { background:rgba(37,211,102,.14); color:var(--wa-green); }
.qc-card h5 { font-size:1rem; font-weight:700; color:#fff; margin-bottom:6px; }
.qc-card .qc-val { font-size:.88rem; color:var(--gold); font-weight:600; margin-bottom:4px; display:block; }
.qc-card .qc-note { font-size:.77rem; color:var(--muted); }

/* ================================================================
   16. FOOTER
   ================================================================ */
.mf-footer {
  background: rgba(0,0,0,.35);
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.footer-top { padding: 72px 0 48px; }
.footer-logo { height: 46px; width: auto; }
.footer-desc { font-size:.84rem; color:var(--muted); line-height:1.85; }

.footer-heading {
  font-size:.88rem; font-weight:700; color:#fff;
  margin-bottom:20px; padding-bottom:12px;
  border-bottom:1px solid var(--border);
  position:relative;
}
.footer-heading::after {
  content:''; position:absolute; bottom:-1px; left:0;
  width:36px; height:2px;
  background:linear-gradient(90deg,var(--gold),var(--gold-2));
  border-radius:2px;
}

.footer-links li { margin-bottom:9px; }
.footer-links a { font-size:.83rem; color:var(--muted); display:flex; align-items:center; gap:7px; transition:all .2s; }
.footer-links a i { font-size:.62rem; color:var(--gold); transition:transform .2s; }
.footer-links a:hover { color:var(--gold); padding-left:4px; }
.footer-links a:hover i { transform:translateX(3px); }

.footer-contact li { display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; font-size:.83rem; color:var(--muted); }
.fc-icon { width:30px; height:30px; min-width:30px; background:var(--gold-glow); border-radius:7px; display:flex; align-items:center; justify-content:center; font-size:.78rem; color:var(--gold); flex-shrink:0; }
.wa-fc { background:rgba(37,211,102,.14); color:var(--wa-green); }
.footer-contact a { color:var(--muted); transition:color .2s; }
.footer-contact a:hover { color:var(--gold); }

/* Social icons */
.social-icon {
  width:38px; height:38px; background:var(--navy-card);
  border:1px solid var(--border); border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  color:var(--muted); font-size:.88rem;
  transition:all .25s var(--ease);
}
.social-icon:hover { background:var(--gold-glow); border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }
.social-wa:hover   { background:rgba(37,211,102,.14); border-color:var(--wa-green); color:var(--wa-green); }

/* Footer divider / bottom bar */
.footer-divider {
  background: rgba(0,0,0,.25);
  border-top: 1px solid var(--border);
}
.footer-copy { font-size:.8rem; color:var(--muted); }
.kikavu-link {
  color: var(--gold);
  font-weight: 700;
  transition: opacity .2s;
}
.kikavu-link:hover { opacity:.8; color:var(--gold); }

/* ================================================================
   17. FLOATING BUTTONS
   ================================================================ */
.wa-fab {
  position:fixed; bottom:88px; right:24px; z-index:999;
  width:56px; height:56px; background:var(--wa-green);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:1.55rem; color:#fff;
  box-shadow:0 4px 24px rgba(37,211,102,.45);
  transition:transform .3s var(--ease), box-shadow .3s;
  animation:wa-pulse 3s ease-in-out infinite;
}
.wa-fab:hover { transform:scale(1.12); box-shadow:0 8px 32px rgba(37,211,102,.55); color:#fff; }
.wa-fab-tip {
  position:absolute; right:66px;
  background:rgba(0,0,0,.88); color:#fff; font-size:.72rem; font-weight:700;
  padding:5px 11px; border-radius:6px; white-space:nowrap;
  opacity:0; transition:opacity .25s; pointer-events:none;
  font-family:'Poppins',sans-serif;
}
.wa-fab:hover .wa-fab-tip { opacity:1; }
@keyframes wa-pulse { 0%,100%{box-shadow:0 4px 24px rgba(37,211,102,.45)} 50%{box-shadow:0 4px 36px rgba(37,211,102,.7)} }

.btn-top {
  position:fixed; bottom:24px; right:24px; z-index:999;
  width:46px; height:46px;
  background:var(--navy-card); border:1px solid var(--border-gold);
  border-radius:50%; color:var(--gold); font-size:.92rem;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  opacity:0; transform:translateY(20px); transition:all .3s var(--ease);
}
.btn-top.visible { opacity:1; transform:translateY(0); }
.btn-top:hover   { background:var(--gold); color:#000; transform:translateY(-3px); }

/* ================================================================
   17b. MISC HELPERS
   ================================================================ */

/* Product filter hide */
.product-card.filtered-out { display: none !important; }

/* About images: correct height on smaller containers */
.about-img-main img { width:100%; height:420px; object-fit:cover; }

/* Page hero: ensure padding from sticky navbar */
.page-hero { padding-top: 0; }

/* Svc-body inline styles baseline */
.svc-body { color: var(--text); }

/* ================================================================
   18. RESPONSIVE OVERRIDES
   ================================================================ */
@media (max-width:991.98px) {
  .hero-body { padding-top:60px; }
  .hero-img-col { display:none; }
  .about-imgs-wrap { display:none; }
  .stats-bar { margin-top:0; }
}

@media (max-width:767.98px) {
  .section-pad { padding:64px 0; }
  .hero h1 { font-size:2rem; }
  .cta-strip { padding:52px 0; }
  .cta-strip .d-flex { flex-direction:column; gap:12px; }
  .cf-panel { padding:28px 20px; }
  .footer-top { padding:48px 0 32px; }
  .stat-item { border-right:none; border-bottom:1px solid var(--border); }
  .stat-item:last-child { border-bottom:none; }
}

/* ================================================================
   19. IMAGE PLACEHOLDER (shown when images are missing / 0-byte)
   ================================================================ */
.img-placeholder {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  height:100%;
  min-height:180px;
  background:linear-gradient(135deg,var(--navy-card) 0%,#0f2d4a 100%);
  border:1px solid var(--border);
  border-radius:inherit;
  color:var(--muted);
  font-size:.75rem;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.img-placeholder i { font-size:2rem; color:var(--gold); opacity:.35; }
