/* ============================================================
   ENC Website CSS — v3
   enc.co.zw
============================================================ */

/* ---- Variables ---- */
:root {
  --primary:     #0057b8;
  --primary-dk:  #003d82;
  --primary-lt:  #e8f0fc;
  --secondary:   #00a8e8;
  --accent:      #f39c12;
  --success:     #27ae60;
  --danger:      #e74c3c;
  --dark:        #0d1b2a;
  --dark2:       #1a2d45;
  --text:        #2d3748;
  --muted:       #6c7a89;
  --border:      #e2e8f0;
  --bg-light:    #f7f9fc;
  --bg-section:  #f0f4f8;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,.07);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.12);
  --font-main:   'Plus Jakarta Sans', sans-serif;
  --font-head:   'Space Grotesk', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--text); background: #fff; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* ============================================================
   CONTACT BAR — above nav
============================================================ */
.contact-bar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.contact-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.contact-bar-left, .contact-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-bar a {
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.contact-bar a:hover { color: #fff; }
.contact-bar a strong { color: #fff; }
.contact-bar a i { color: var(--secondary); }
.contact-bar-socials { display: flex; gap: 10px; }
.contact-bar-socials a { width: 28px; height: 28px; background: rgba(255,255,255,.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.contact-bar-socials a:hover { background: var(--primary); color: #fff; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar-main {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: all .3s;
}
.navbar-main.scrolled { padding: 8px 0; box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-icon {
  width: 40px; height: 40px; background: var(--primary); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px;
}
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--dark); line-height: 1; display: block; }
.brand-sub { font-size: 10px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; display: block; }
.nav-link { font-weight: 600; font-size: 14px; color: var(--dark)!important; padding: 8px 12px!important; border-radius: 8px; transition: .2s; }
.nav-link:hover, .nav-link.active { background: var(--primary-lt); color: var(--primary)!important; }
.dropdown-menu { border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px; }
.dropdown-item { border-radius: 8px; font-size: 14px; font-weight: 500; padding: 8px 12px; }
.dropdown-item:hover { background: var(--primary-lt); color: var(--primary); }
.btn-cart {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-section); border-radius: 10px; color: var(--dark); font-size: 18px; border: 1px solid var(--border);
  position: relative; transition: .2s;
}
.btn-cart:hover { background: var(--primary-lt); color: var(--primary); }
.cart-badge {
  position: absolute; top: -4px; right: -4px; background: var(--danger); color: #fff;
  width: 18px; height: 18px; border-radius: 50%; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   HERO
============================================================ */
.hero-section {
  background: linear-gradient(135deg, var(--dark) 0%, #0d2d5c 60%, var(--primary) 100%);
  padding: 80px 0 70px;
  overflow: hidden;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.hero-title { font-size: clamp(32px,5vw,52px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.hero-title .highlight { color: var(--accent); }
.hero-subtitle { font-size: 17px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 24px; }
.btn-xl { padding: 14px 28px; font-size: 16px; font-weight: 700; border-radius: 10px; }
.btn-outline-light { border: 2px solid rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.08); }
.btn-outline-light:hover { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.6); }
.hero-domain-search {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25); border-radius: 10px; padding: 10px 14px;
  max-width: 460px;
}
.hero-domain-search input {
  background: transparent; border: none; outline: none; color: #fff;
  flex: 1; font-size: 14px; font-family: var(--font-main);
}
.hero-domain-search input::placeholder { color: rgba(255,255,255,.5); }
.hero-stats { display: flex; gap: 24px; margin-top: 20px; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--accent); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 600; }

/* Hero Visual */
.hero-visual { position: relative; padding: 20px; }
.hero-browser {
  background: #fff; border-radius: 14px; box-shadow: 0 24px 60px rgba(0,0,0,.4);
  overflow: hidden; transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
}
.browser-bar {
  background: #f0f4f8; padding: 10px 14px; display: flex; align-items: center; gap: 6px;
}
.browser-bar span { width: 10px; height: 10px; border-radius: 50%; background: #e74c3c; }
.browser-bar span:nth-child(2) { background: #f39c12; }
.browser-bar span:nth-child(3) { background: #27ae60; }
.browser-url {
  flex: 1; background: #fff; border-radius: 6px; padding: 4px 10px;
  font-size: 12px; color: var(--muted); margin-left: 8px; border: 1px solid var(--border);
}
.browser-body { padding: 16px; }
.mock-nav { height: 12px; background: var(--primary-lt); border-radius: 4px; margin-bottom: 10px; }
.mock-hero { height: 60px; background: linear-gradient(135deg,var(--primary),var(--secondary)); border-radius: 8px; margin-bottom: 10px; }
.mock-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.mock-cards div { height: 40px; background: var(--bg-section); border-radius: 6px; }
.hero-float-card {
  position: absolute; background: #fff; border-radius: 10px; padding: 8px 14px;
  font-size: 12px; font-weight: 700; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 6px;
  animation: float 3s ease-in-out infinite;
}
.card-1 { top: 15%; right: -10px; animation-delay: 0s; }
.card-2 { top: 45%; right: -20px; animation-delay: .7s; }
.card-3 { bottom: 15%; right: -5px; animation-delay: 1.4s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ============================================================
   SECTIONS
============================================================ */
.section-pad { padding: 80px 0; }
.section-light { background: var(--bg-light); }
.section-gradient { background: linear-gradient(135deg,#f0f4ff 0%,#fff 60%); }
.section-dark { background: var(--dark); }
.section-label {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--primary-lt); color: var(--primary); padding: 6px 14px;
  border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(26px,4vw,40px); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 12px; }
.section-title span { color: var(--primary); }
.section-subtitle { font-size: 16px; color: var(--muted); max-width: 540px; margin: 0 auto; }

/* ============================================================
   WHY CARDS
============================================================ */
.why-card {
  background: #fff; border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--border); transition: .3s; height: 100%;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.why-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.why-card h5 { font-weight: 800; margin-bottom: 10px; font-size: 16px; }
.why-card p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0; }

/* Stat banner */
.stat-banner {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0;
  background: var(--dark); border-radius: var(--radius-lg); overflow: hidden;
}
.stat-item { flex: 1; min-width: 160px; padding: 24px; text-align: center; }
.stat-item span { display: block; }
.stat-num { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--accent); }
.stat-item span:last-child { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 600; margin-top: 4px; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,.08); }

/* ============================================================
   JOURNEY (HOW IT WORKS)
============================================================ */
.journey-track { position: relative; }
.journey-line {
  position: absolute; top: 60px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 3px; background: linear-gradient(to right, var(--primary), var(--success));
  z-index: 0; display: none;
}
@media(min-width:992px){ .journey-line { display: block; } }
.journey-step {
  background: #fff; border-radius: var(--radius-lg); padding: 28px 24px; text-align: center;
  border: 2px solid var(--border); transition: .3s; cursor: pointer; height: 100%; position: relative; z-index: 1;
}
.journey-step:hover, .journey-step.focused {
  border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px);
}
.journey-step.focused { background: var(--primary-lt); }
.journey-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 18px;
  margin: 0 auto 12px; position: relative; z-index: 2;
}
.journey-icon { font-size: 36px; margin-bottom: 12px; }
.journey-step h5 { font-weight: 800; font-size: 16px; margin-bottom: 6px; }

/* Package Finder */
.package-finder-wrap { max-width: 720px; margin: 0 auto; }
.package-finder {
  background: #fff; border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.finder-step { display: none; }
.finder-step.active { display: block; }
.finder-options { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.finder-opt {
  padding: 12px 18px; border-radius: 10px; border: 2px solid var(--border);
  background: #fff; font-weight: 600; font-size: 14px; cursor: pointer; transition: .2s;
  display: flex; align-items: center; gap: 8px;
}
.finder-opt:hover, .finder-opt.selected { background: var(--primary); color: #fff; border-color: var(--primary); }
.finder-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: .2s; }
.finder-dot.active { background: var(--primary); transform: scale(1.3); }
.finder-match { padding: 16px; }
.finder-match-badge {
  display: inline-block; background: #dcfce7; color: var(--success); padding: 4px 12px;
  border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 8px;
}

/* ============================================================
   PACKAGE CARDS
============================================================ */
.package-card {
  background: #fff; border-radius: var(--radius-lg); border: 2px solid var(--border);
  transition: .3s; overflow: hidden; height: 100%; display: flex; flex-direction: column;
  position: relative;
}
.package-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pkg-badge {
  position: absolute; top: 12px; right: 12px; background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 20px; z-index: 2;
}

/* Package preview image area */
.pkg-preview {
  height: 160px; overflow: hidden; position: relative; cursor: pointer; background: var(--bg-section);
}
.pkg-preview-img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.pkg-preview:hover .pkg-preview-img { transform: scale(1.06); }
.pkg-preview-placeholder {
  height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--muted); gap: 8px; font-size: 32px;
}
.pkg-preview-placeholder span { font-size: 12px; font-weight: 600; }
.pkg-preview-overlay {
  position: absolute; inset: 0; background: rgba(0,87,184,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: .3s;
}
.pkg-preview:hover .pkg-preview-overlay { opacity: 1; }
.pkg-preview-overlay span { color: #fff; font-weight: 700; font-size: 13px; }

.pkg-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pkg-cat { font-size: 11px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.pkg-name { font-size: 16px; font-weight: 800; margin-bottom: 6px; color: var(--dark); }
.pkg-price { margin-bottom: 14px; }
.pkg-price sup { font-size: 16px; font-weight: 800; color: var(--primary); vertical-align: top; margin-top: 4px; }
.pkg-price span.val, .pkg-price > *:not(sup):not(span) {
  font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--primary);
}
.pkg-price span { font-size: 12px; color: var(--muted); font-weight: 600; }
.pkg-features { list-style: none; padding: 0; margin: 0 0 16px; flex: 1; }
.pkg-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text); margin-bottom: 6px; line-height: 1.5; }
.pkg-features li i { color: var(--success); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.pkg-features li.more { color: var(--muted); font-size: 12px; font-style: italic; }

/* 3 Client Action Buttons */
.pkg-actions { display: flex; gap: 6px; margin-top: auto; }
.btn-specs, .btn-enquiry, .btn-basket {
  flex: 1; padding: 9px 6px; border-radius: 8px; font-size: 12px; font-weight: 700;
  border: 2px solid; cursor: pointer; transition: .2s; display: flex; align-items: center; justify-content: center; gap: 5px;
}
.btn-specs { background: var(--primary-lt); color: var(--primary); border-color: var(--primary); }
.btn-specs:hover { background: var(--primary); color: #fff; }
.btn-enquiry { background: #dcfce7; color: var(--success); border-color: var(--success); }
.btn-enquiry:hover { background: var(--success); color: #fff; }
.btn-basket { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-basket:hover { background: #e67e22; border-color: #e67e22; }
.btn-xs { padding: 4px 8px!important; font-size: 11px!important; }

/* Category filter */
.category-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.filter-btn {
  padding: 8px 18px; border-radius: 20px; border: 2px solid var(--border);
  background: #fff; font-weight: 600; font-size: 13px; cursor: pointer; transition: .2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============================================================
   PACKAGE PREVIEW MODAL
============================================================ */
.preview-main-img-wrap {
  background: var(--bg-section); min-height: 300px; max-height: 420px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.preview-main-img { width: 100%; max-height: 420px; object-fit: contain; }
.preview-no-img { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px; }
.preview-thumbs { display: flex; gap: 10px; padding: 12px 16px; background: #fff; border-top: 1px solid var(--border); overflow-x: auto; }
.preview-thumb {
  flex-shrink: 0; cursor: pointer; border-radius: 8px; overflow: hidden;
  border: 3px solid var(--border); transition: .2s; width: 90px;
}
.preview-thumb.active { border-color: var(--primary); }
.preview-thumb img { width: 90px; height: 60px; object-fit: cover; display: block; }
.preview-thumb span { display: block; font-size: 10px; font-weight: 700; text-align: center; padding: 3px; color: var(--muted); background: #fafbfd; }
.preview-info-strip { background: var(--bg-light); border-top: 1px solid var(--border); }

/* ============================================================
   HOSTING CARDS
============================================================ */
.hosting-card {
  background: #fff; border-radius: var(--radius-lg); border: 2px solid var(--border);
  padding: 28px; transition: .3s; height: 100%; display: flex; flex-direction: column; position: relative;
}
.hosting-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.hosting-popular { border-color: var(--primary)!important; }
.hosting-popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-size: 11px; font-weight: 800;
  padding: 4px 14px; border-radius: 0 0 10px 10px;
}
.hosting-header { text-align: center; padding-bottom: 20px; margin-bottom: 16px; border-bottom: 1px solid var(--border); }
.hosting-header h4 { font-weight: 800; margin-bottom: 4px; }
.hosting-price sup { font-size: 16px; font-weight: 800; color: var(--primary); vertical-align: top; margin-top: 4px; }
.hosting-price { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--primary); }
.hosting-price span { font-size: 14px; color: var(--muted); font-weight: 600; }
.hosting-month { font-size: 12px; color: var(--muted); margin-top: 4px; }
.hosting-features { list-style: none; padding: 0; margin: 0 0 16px; flex: 1; }
.hosting-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; padding: 5px 0; border-bottom: 1px solid var(--border); }
.hosting-features li:last-child { border-bottom: none; }
.hosting-features li i { color: var(--success); }

/* ============================================================
   DOMAIN PRICES
============================================================ */
.domain-search-box { display: flex; gap: 8px; margin: 16px 0; }
.domain-search-box input { flex: 1; }
.domain-price-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px;
}
.domain-price-item {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
  padding: 14px 16px; display: flex; align-items: center; gap: 10px; transition: .2s;
}
.domain-price-item:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.domain-ext { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--primary); min-width: 60px; }
.domain-desc { font-size: 11px; color: var(--muted); flex: 1; }
.domain-price-val { font-weight: 800; color: var(--dark); white-space: nowrap; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonial-card {
  background: rgba(255,255,255,.05); border-radius: var(--radius-lg); padding: 24px;
  border: 1px solid rgba(255,255,255,.1); height: 100%;
}
.testimonial-stars { color: var(--accent); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 40px; height: 40px; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 16px;
}
.testimonial-author strong { color: #fff; font-size: 14px; display: block; }
.testimonial-author small { color: rgba(255,255,255,.55); font-size: 12px; }

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #004494 100%);
  padding: 80px 0;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); }
.footer-top { padding: 60px 0 40px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-logo .brand-name { color: #fff; }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contacts a { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); transition: .2s; }
.footer-contacts a:hover { color: #fff; }
.footer-contacts a i { color: var(--secondary); width: 16px; }
.footer-heading { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.55); transition: .2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-newsletter { display: flex; background: rgba(255,255,255,.08); border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.footer-newsletter input { flex: 1; background: transparent; border: none; outline: none; padding: 10px 14px; color: #fff; font-size: 13px; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter button { background: var(--primary); border: none; padding: 10px 16px; color: #fff; cursor: pointer; }
.footer-newsletter button:hover { background: var(--primary-dk); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: .2s; }
.footer-socials a:hover { background: var(--primary); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 16px 0; font-size: 12px; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); transition: .2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ============================================================
   WHATSAPP FLOAT + BACK TO TOP
============================================================ */
.whatsapp-float {
  position: fixed; bottom: 24px; left: 24px; background: #25d366; color: #fff;
  padding: 12px 20px; border-radius: 40px; font-size: 20px; z-index: 1000;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); display: flex; align-items: center; font-weight: 700;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { background: #20ba5a; color: #fff; }
@keyframes pulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 30px rgba(37,211,102,.7)} }
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px;
  background: var(--primary); color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; z-index: 1000; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .3s;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }

/* ============================================================
   ADMIN PANEL STYLES
============================================================ */
.admin-wrap { display: flex; min-height: 100vh; }
.sidebar {
  width: 260px; background: linear-gradient(180deg,var(--dark) 0%,var(--dark2) 100%);
  position: fixed; top: 0; left: 0; height: 100vh; overflow-y: auto; z-index: 200;
  display: flex; flex-direction: column;
}
.sidebar-brand { padding: 20px; border-bottom: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; gap: 12px; }
.sidebar-brand .brand-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; }
.sidebar-brand .brand-name { font-size: 18px; color: #fff; }
.sidebar-brand .brand-sub { font-size: 10px; color: rgba(255,255,255,.35); }
.sidebar-section { padding: 16px 16px 4px; font-size: 10px; font-weight: 700; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: 1px; }
.sidebar-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 16px; color: rgba(255,255,255,.65);
  font-size: 13.5px; font-weight: 500; border-radius: 8px; margin: 1px 8px; text-decoration: none; transition: .2s;
  border-left: 2px solid transparent;
}
.sidebar-link:hover { background: rgba(255,255,255,.07); color: #fff; }
.sidebar-link.active { background: rgba(0,87,184,.35); color: #fff; border-left-color: var(--secondary); }
.sidebar-link i { font-size: 16px; width: 20px; }
.admin-main { margin-left: 260px; flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
.admin-topbar {
  background: #fff; border-bottom: 1px solid var(--border); padding: 14px 28px;
  display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.admin-content { padding: 28px; flex: 1; }
.kpi-card { background: #fff; border-radius: 14px; padding: 22px; box-shadow: 0 2px 12px rgba(0,0,0,.05); border: 1px solid var(--border); }
.kpi-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 12px; }
.kpi-num { font-family: var(--font-head); font-size: 30px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.kpi-label { font-size: 12px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.data-card { background: #fff; border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,.05); border: 1px solid var(--border); overflow: hidden; }
.data-card-header { padding: 16px 20px; border-bottom: 1px solid var(--bg-section); display: flex; justify-content: space-between; align-items: center; }
.data-card-header h5 { font-family: var(--font-head); font-weight: 700; font-size: 15px; margin: 0; }
.data-table { font-size: 13.5px; }
.data-table th { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); border-bottom: 2px solid var(--bg-section); padding: 12px 16px; background: #fafbfd; }
.data-table td { padding: 12px 16px; vertical-align: middle; border-bottom: 1px solid #f5f7fa; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #fafbfd; }
.status-badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.status-active { background: #dcfce7; color: #166534; }
.status-inactive, .status-draft { background: #f1f5f9; color: #475569; }
.status-suspended, .status-danger { background: #fee2e2; color: #991b1b; }
.status-paid { background: #dcfce7; color: #166534; }
.status-partial, .status-pending { background: #fef3c7; color: #92400e; }
.status-sent { background: #dbeafe; color: #1e40af; }
.status-overdue { background: #fee2e2; color: #991b1b; }
.status-cancelled { background: #f1f5f9; color: #64748b; }
.account-badge { display: inline-flex; align-items: center; background: var(--primary-lt); color: var(--primary); padding: 2px 8px; border-radius: 6px; font-size: 11px; font-weight: 700; }
.form-label { font-size: 12px; font-weight: 700; color: #374151; text-transform: uppercase; letter-spacing: .3px; margin-bottom: 5px; }
.form-control, .form-select { border-radius: 8px; border: 1px solid var(--border); font-size: 14px; padding: 9px 13px; }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,87,184,.1); }
.sidebar-toggle { display: none; }
@media(max-width:991px) {
  .sidebar { transform: translateX(-100%); transition: .3s; }
  .sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .sidebar-toggle { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--bg-section); border: none; border-radius: 8px; cursor: pointer; }
}

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  background: linear-gradient(135deg,var(--dark) 0%,var(--primary) 100%);
  padding: 60px 0 50px; color: #fff; text-align: center;
}
.page-hero h1 { font-size: clamp(26px,4vw,40px); font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 16px; margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,.6); }
.breadcrumb-item.active { color: rgba(255,255,255,.9); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ============================================================
   INSTALL PAGE
============================================================ */
.install-wrap { min-height: 100vh; background: linear-gradient(135deg,var(--dark),#0d2d5c); display: flex; align-items: center; justify-content: center; padding: 40px 16px; }
.install-card { background: #fff; border-radius: 20px; padding: 40px; width: 100%; max-width: 680px; box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.install-step { display: none; }
.install-step.active { display: block; }
.step-indicator { display: flex; gap: 0; margin-bottom: 32px; }
.step-ind-item { flex: 1; text-align: center; padding: 10px; font-size: 12px; font-weight: 700; border-bottom: 3px solid var(--border); color: var(--muted); }
.step-ind-item.active { border-bottom-color: var(--primary); color: var(--primary); }
.step-ind-item.done { border-bottom-color: var(--success); color: var(--success); }
.install-result { padding: 16px; border-radius: 10px; margin: 8px 0; font-size: 14px; }
.install-result.ok { background: #dcfce7; color: #166534; }
.install-result.fail { background: #fee2e2; color: #991b1b; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media(max-width:768px) {
  .section-pad { padding: 50px 0; }
  .hero-section { padding: 50px 0; }
  .hero-stats { gap: 16px; }
  .contact-bar { display: none; }
  .pkg-actions { flex-direction: column; }
  .btn-specs, .btn-enquiry, .btn-basket { flex: none; }
  .journey-step { margin-bottom: 16px; }
  .stat-banner { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }
  .package-finder { padding: 20px; }
  .whatsapp-float { padding: 12px; border-radius: 50%; bottom: 16px; left: 16px; }
  .back-to-top { bottom: 16px; right: 16px; }
  .domain-price-grid { grid-template-columns: 1fr 1fr; }
}
