/* =========================================
   CENTAURUSS IT SERVICES — LIGHT THEME
   Design: Crisp white + deep indigo + saffron accent
   Font: Plus Jakarta Sans (display) + Inter (body)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --white:        #ffffff;
  --off-white:    #f7f8fc;
  --surface:      #eef0f8;
  --surface-2:    #e3e6f4;
  --border:       #d4d9ee;
  --border-light: #eaecf6;

  --indigo-deep:  #1a1f5e;
  --indigo-mid:   #2d3494;
  --indigo-light: #4a55c4;
  --indigo-pale:  #eceffe;

  --accent:       #e85d20;
  --accent-light: #f4784a;
  --accent-pale:  #fff0ea;

  --text-dark:    #0f1230;
  --text-body:    #3d4270;
  --text-muted:   #8b92b8;
  --text-light:   #aeb5d4;

  --shadow-sm:  0 2px 8px rgba(26,31,94,0.07);
  --shadow-md:  0 6px 24px rgba(26,31,94,0.11);
  --shadow-lg:  0 16px 48px rgba(26,31,94,0.14);
  --shadow-xl:  0 32px 80px rgba(26,31,94,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text-body);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--indigo-light); border-radius: 3px; }

/* =========================================
   NAVBAR
   ========================================= */
#mainNav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
}
#mainNav.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.97);
}
.nav-logo { height: 46px; width: auto; }
.navbar-nav .nav-link {
  color: var(--text-body) !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 14px !important;
  transition: color 0.2s;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px; right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--indigo-deep) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.btn-nav-cta {
  background: var(--indigo-deep) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 9px 22px !important;
  font-weight: 200 !important;
  transition: background 0.2s !important;
  text-decoration: none;
}
.btn-nav-cta::after { display: none !important; }
.btn-nav-cta:hover { background: var(--accent) !important; }
.toggler-icon { color: var(--indigo-deep); font-size: 22px; }
.navbar-toggler {
  border: 1px solid var(--border);
  padding: 6px 10px;
  background: var(--white);
}
.navbar-toggler:focus { box-shadow: none; }

/* =========================================
   HERO — MAGAZINE BANNER STYLE
   ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--indigo-deep);
}
.hero-bg-image {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.08;
}
/* Decorative shapes */
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,93,32,0.25) 0%, transparent 70%);
  z-index: 1;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,85,196,0.3) 0%, transparent 70%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.dot-pulse {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.accent-text { color: var(--accent-light); }

/* Underline decoration on hero accent */
.hero-title .accent-text {
  position: relative;
  display: inline-block;
}
.hero-title .accent-text::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.75;
}

/* Buttons */
.btn-primary-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 34px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(232,93,32,0.35);
}
.btn-primary-cta:hover {
  background: var(--accent-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232,93,32,0.45);
}
.btn-ghost-cta {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 14px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}
.btn-ghost-cta:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-item { text-align: left; padding-right: 36px; }
.stat-number {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-number sup { font-size: 20px; }
.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  margin-top: 4px;
  display: block;
}
.stat-divider {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.15);
  margin-right: 36px;
}

/* Hero Printer Visual */
.hero-printer-visual {
  position: relative;
  padding: 40px 20px;
}
.printer-frame {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.printer-body {
  background: linear-gradient(145deg, #ffffff, #f0f4ff);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 18px;
  padding: 24px;
  width: 220px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.15) inset;
}
.printer-screen {
  background: var(--indigo-deep);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', monospace;
  font-size: 11px;
  color: #4ade80;
}
.screen-dot { width: 8px; height: 8px; border-radius: 50%; }
.screen-dot.ready { background: #4ade80; box-shadow: 0 0 8px #4ade80; }
.printer-slot {
  background: var(--indigo-deep);
  border-radius: 4px;
  padding: 10px 8px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.paper-strip {
  height: 3px;
  background: #fff;
  border-radius: 2px;
  opacity: 0;
  animation: paperFeed 3s ease-in-out infinite;
}
.paper-strip.p1 { animation-delay: 0s; width: 90%; }
.paper-strip.p2 { animation-delay: 0.4s; width: 70%; }
@keyframes paperFeed {
  0%, 100% { opacity: 0; transform: translateY(-4px); }
  30%, 70% { opacity: 1; transform: translateY(0); }
}
.printer-btns { display: flex; gap: 8px; }
.pbtn {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--border);
}
.pbtn.active { background: var(--accent); box-shadow: 0 0 8px rgba(232,93,32,0.5); }
.toner-side {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 12px;
}
.toner-cart {
  width: 32px; height: 42px;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.t-k { background: #1a1a2e; border: 2px solid #333; }
.t-c { background: #0ea5e9; border: 2px solid #38bdf8; }
.t-m { background: #ec4899; border: 2px solid #f472b6; }
.t-y { background: #eab308; border: 2px solid #fbbf24; }

.floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}
.card-top { top: 20px; left: -24px; animation-delay: 0s; }
.card-bottom { bottom: 20px; right: -14px; animation-delay: 2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* =========================================
   TICKER
   ========================================= */
.ticker-wrap {
  background: var(--indigo-deep);
  overflow: hidden;
  padding: 16px 0;
}
.ticker-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: white;
}
.ticker-track .sep { color: var(--accent); font-weight: 900; font-size: 14px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================
   SECTION COMMONS
   ========================================= */
.section-block { padding: 100px 0; }
.section-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.section-title .accent-text { color: var(--accent); position: relative; }
.section-intro {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
}
.section-body {
  color: var(--text-body);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.8;
  text-align: justify;
}

/* =========================================
   ABOUT
   ========================================= */
.about-section { background: var(--off-white); }
.about-visual-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-visual-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}
.about-badge-1, .about-badge-2 {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}
.about-badge-1 { top: -20px; right: 20px; border-left: 3px solid var(--accent); }
.about-badge-2 { bottom: 30px; left: -20px; border-left: 3px solid var(--indigo-light); }
.about-badge-1 i { font-size: 22px; color: var(--accent); }
.about-badge-2 i { font-size: 22px; color: var(--indigo-light); }
.about-badge-1 strong, .about-badge-2 strong { display: block; font-size: 14px; }
.about-badge-1 small, .about-badge-2 small { color: var(--text-muted); font-size: 11px; font-weight: 500; }
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.feature-chip {
  background: var(--indigo-pale);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--indigo-mid);
  display: flex;
  align-items: center;
  gap: 7px;
}
.feature-chip i { color: var(--accent); font-size: 13px; }

/* =========================================
   SERVICES
   ========================================= */
.services-section { background: var(--white); }
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(232,93,32,0.13);
}
.service-card.featured {
  border-color: var(--indigo-light);
  box-shadow: 0 0 0 4px var(--indigo-pale), var(--shadow-md);
}
.service-card.featured::after {
  content: 'POPULAR';
  position: absolute;
  top: 16px; left: 16px;
  background: var(--indigo-deep);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
}
.service-card-img {
  background: var(--indigo-pale);
  overflow: hidden;
  padding: 20px;
}
.service-card-img img { width: 100%; display: block; transition: transform 0.4s; height: 170px; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 24px; flex: 1; }
.service-card-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card-body p {
  color: var(--text-body);
  font-size: 13.5px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li {
  font-size: 13px;
  color: var(--text-body);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  color: var(--indigo-mid);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-top: 1px solid var(--border);
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.service-link:hover {
  background: var(--indigo-deep);
  color: #fff;
}

/* =========================================
   TONER CATEGORIES — NEW SECTION
   ========================================= */
.categories-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.categories-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cat-tab {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 9px 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.cat-tab:hover, .cat-tab.active {
  background: var(--indigo-deep);
  border-color: var(--indigo-deep);
  color: #fff;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.cat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s;
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.cat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cat-icon {
  width: 52px; height: 52px;
  background: var(--indigo-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--indigo-light);
  margin: 0 auto 14px;
  transition: all 0.25s;
}
.cat-card:hover .cat-icon {
  background: var(--accent-pale);
  color: var(--accent);
}
.cat-card h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.cat-card small {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
}
.cat-badge {
  display: inline-block;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 8px;
  text-transform: uppercase;
}

/* =========================================
   BRANDS
   ========================================= */
.brands-section { background: var(--white); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s;
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.brand-tile:hover {
  border-color: var(--indigo-light);
  background: var(--indigo-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.brand-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-tile span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-muted);
  line-height: 1.2;
  transition: color 0.25s;
  letter-spacing: -0.01em;
}
.brand-tile:hover span { color: var(--indigo-deep); }

/* =========================================
   WHY US
   ========================================= */
.whyus-section { background: var(--off-white); }
.why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.why-card:hover {
  border-color: var(--indigo-light);
  box-shadow: 0 12px 36px rgba(26,31,94,0.11);
  transform: translateY(-4px);
}
.why-icon {
  width: 50px; height: 50px;
  background: var(--indigo-pale);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--indigo-light);
  margin-bottom: 18px;
  transition: all 0.25s;
}
.why-card:hover .why-icon {
  background: var(--accent-pale);
  color: var(--accent);
  border-color: rgba(232,93,32,0.2);
}
.why-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

/* =========================================
   PROCESS
   ========================================= */
.process-section {
  background: var(--indigo-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.process-section .section-eyebrow { color: var(--accent-light); }
.process-section .section-eyebrow::before { background: var(--accent-light); }
.process-section .section-title { color: #fff; }
.process-section .section-title .accent-text { color: var(--accent-light); }
.process-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.process-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  transition: all 0.3s;
}
.process-step:hover {
  border-color: var(--accent);
  background: rgba(232,93,32,0.08);
  transform: translateY(-4px);
}
.step-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  color: var(--accent-light);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  opacity: 0.7;
  font-weight: 700;
}
.step-icon {
  font-size: 32px;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.process-step h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0;
}
.process-connector {
  font-size: 28px;
  color: rgba(255,255,255,0.2);
  padding: 0 8px;
  align-self: center;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section { background: var(--off-white); }
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card.featured {
  border-color: var(--indigo-light);
  box-shadow: 0 0 0 4px var(--indigo-pale), var(--shadow-md);
}
.t-quote { font-size: 40px; color: var(--indigo-pale); line-height: 1; }
.testimonial-card p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--indigo-deep), var(--indigo-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 14px; color: var(--text-dark); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.t-author small { font-size: 11.5px; color: var(--text-muted); }
.t-stars { color: #f59e0b; font-size: 12px; display: flex; gap: 2px; }

/* =========================================
   CONTACT
   ========================================= */
.contact-section { background: var(--white); }
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ci-icon {
  width: 44px; height: 44px;
  background: var(--indigo-pale);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--indigo-light);
  flex-shrink: 0;
}
.contact-info-item small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 700;
}
.contact-info-item a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
  display: block;
}
.contact-info-item a:hover { color: var(--accent); }
.contact-info-item span { font-size: 14px; color: var(--text-body); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 42px; height: 42px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-body);
  text-decoration: none;
  transition: all 0.25s;
}
.social-link:hover {
  background: var(--indigo-deep);
  border-color: var(--indigo-deep);
  color: #fff;
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-box {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 22px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-box-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.form-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 8px;
}
.cf-input {
  background: var(--white) !important;
  border: 1.5px solid var(--border) !important;
  color: var(--text-dark) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  transition: all 0.25s !important;
  box-shadow: none !important;
}
.cf-input:focus {
  border-color: var(--indigo-light) !important;
  box-shadow: 0 0 0 3px var(--indigo-pale) !important;
  outline: none !important;
}
.cf-input::placeholder { color: var(--text-light) !important; }
.cf-input option { background: #fff; color: var(--text-dark); }
.form-msg {
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
}
.form-msg.success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.form-msg.error { background: #fff5f5; border: 1px solid #fca5a5; color: #991b1b; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--indigo-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 80px;
}
.footer-logo { height: 50px; width: auto; }
.footer-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: var(--accent-light);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  font-style: italic;
}
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li { display: flex; align-items: flex-start; gap: 10px; }
.footer-links a, .footer-links span {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-links a:hover { color: var(--accent-light); }
.contact-footer-links i { color: var(--accent-light); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.3); margin: 0; }

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all 0.3s;
  animation: waBounce 3s ease-in-out infinite;
}
.wa-float:hover { background: #1ebb55; color: #fff; transform: scale(1.1); }
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991.98px) {
  .section-block { padding: 70px 0; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .process-track { flex-direction: column; align-items: center; }
  .process-connector { transform: rotate(90deg); padding: 0; }
  .process-step { max-width: 100%; width: 100%; }
  .navbar-collapse { background: #fff; border-radius: 12px; margin-top: 12px; padding: 16px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
}
@media (max-width: 767.98px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-box { padding: 24px 18px; }
  .hero-title { font-size: 44px; }
  .about-badge-1, .about-badge-2 { display: none; }
  .hero-actions { display: flex; flex-direction: column; gap: 14px; }
  .btn-ghost-cta { text-align: center; }
  .stat-item { padding-right: 20px; }
  .stat-divider { margin-right: 20px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   TONER SPOTLIGHT SECTION
   ========================================= */
.toner-spotlight-section {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.toner-brand-block {
  margin-bottom: 56px;
}
.toner-brand-block:last-child { margin-bottom: 0; }

.toner-brand-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-light);
}
.tbh-label {
  background: var(--indigo-deep);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 8px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.toner-brand-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.tbh-badge {
  margin-left: auto;
  background: var(--indigo-pale);
  color: var(--indigo-mid);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.toner-product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.toner-product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.toner-product-card:hover {
  border-color: var(--indigo-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.toner-img-wrap {
  background: var(--off-white);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  position: relative;
}
.toner-mfr-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.toner-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease;
}
.toner-product-card:hover .toner-img-wrap img {
  transform: scale(1.05);
}

.toner-product-info {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.toner-product-info h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
}
.toner-product-info p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.tp-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.tp-black    { background: #1a1a1a; color: #fff; }
.tp-colour   { background: linear-gradient(90deg, #e63946, #f4a261, #2a9d8f, #1a1f5e); color: #fff; }
.tp-compatible { background: var(--surface-2); color: var(--text-body); }

.tp-enquire {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--indigo-light);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
  margin-top: 4px;
}
.tp-enquire:hover {
  color: var(--accent);
  gap: 8px;
}

/* =========================================
   PRINTER SHOWCASE SECTION
   ========================================= */
.printer-showcase-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.printer-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.pch-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.pch-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.printer-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.printer-showcase-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.printer-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--indigo-light);
}

.psc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--indigo-deep);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 2;
}
.psc-badge-canon { background: var(--accent); }
.psc-badge-new   { background: #059669; }

.psc-img {
  height: 220px;
  overflow: hidden;
  background: var(--surface);
}
.psc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.printer-showcase-card:hover .psc-img img {
  transform: scale(1.06);
}

.psc-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.psc-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  margin-bottom: 6px;
}
.psc-body h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}
.psc-body > p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.psc-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.psc-specs li {
  font-size: 12.5px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}
.psc-specs li i {
  color: #059669;
  font-size: 14px;
  flex-shrink: 0;
}

/* =========================================
   RESPONSIVE — TONER & PRINTER
   ========================================= */
@media (max-width: 1100px) {
  .toner-product-row { grid-template-columns: repeat(2, 1fr); }
  .printer-showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .toner-product-row { grid-template-columns: 1fr; }
  .printer-showcase-grid { grid-template-columns: 1fr; }
  .toner-brand-header { flex-wrap: wrap; }
  .tbh-badge { margin-left: 0; }
  .printer-cat-header { flex-wrap: nowrap; }
}

