@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=JetBrains+Mono:wght@400;500&family=Inter:wght@400;500&display=swap');

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

:root {
  /* Backgrounds - light/white theme */
  --bg: #f8f9fc;
  --bg2: #ffffff;
  --bg3: #f0f2f7;
  --bg4: #e8ebf5;

  /* Brand colors */
  --orange: #FF6B00;
  --orange-dim: rgba(255,107,0,0.12);
  --orange-border: rgba(255,107,0,0.3);
  --blue: #1A56DB;
  --blue-dim: rgba(26,86,219,0.12);
  --blue-border: rgba(26,86,219,0.3);
  --red: #E02424;
  --red-dim: rgba(224,36,36,0.1);
  --red-border: rgba(224,36,36,0.3);

  /* Primary accent = orange */
  --accent: #FF6B00;
  --accent-dim: rgba(255,107,0,0.12);
  --accent-border: rgba(255,107,0,0.3);

  /* Text */
  --text: #0f172a;
  --text-muted: #374151;
  --border: rgba(0,0,0,0.1);
  --border-hover: rgba(255,107,0,0.3);

  --font-display: 'Rajdhani', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'Inter', sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; color: #374151; }
.accent { color: var(--accent); }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: #e05e00; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 11px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--orange);
  color: var(--orange);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover { border-color: var(--orange); color: #fff; background: var(--orange); transform: translateY(-1px); }

/* STATUS BAR */
.status-bar {
  background: #1A56DB;
  border-bottom: none;
  padding: 6px 2rem;
  display: flex;
  color: #fff;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.status-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; color: rgba(255,255,255,0.85); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 6px rgba(255,255,255,0.8); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.divider { color: rgba(255,255,255,0.3); }
.status-online { color: #90EE90; font-weight: 600; }
.status-right { color: rgba(255,255,255,0.85); }
.status-right .accent { color: #FFD700; font-weight: 600; }
@media (max-width: 640px) { .status-bar { display: none; } }

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--text);
}
.logo-bracket { color: #9CA3AF; }
.logo-accent { color: var(--blue); }

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #111827;
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  background: transparent;
  border: none;
  color: #111827;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.icon-btn:hover { color: var(--orange); background: var(--orange-dim); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-mono);
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--text-muted); transition: 0.2s; }

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg2); flex-direction: column; padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); gap: 1rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}

/* HERO */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef2ff 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-tag { color: var(--orange); margin-bottom: 1.25rem; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  color: #111827;
}
.hero-accent-text { color: var(--orange); }
.hero-desc { color: #1f2937; font-size: 15px; line-height: 1.8; max-width: 440px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-quick-links { display: flex; gap: 2rem; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.quick-link {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: #111827; text-decoration: none;
  font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  transition: color var(--transition);
}
.quick-link svg { transition: transform var(--transition); }
.quick-link:hover { color: var(--orange); }
.quick-link:hover svg { transform: translateY(-2px); }

.hero-visual { position: relative; }
.hero-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.hero-img { width: 100%; border-radius: var(--radius-lg); display: block; filter: brightness(0.85); }
.stat-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--orange-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  backdrop-filter: blur(8px);
}
.stat-uptime { top: 16px; right: -20px; }
.stat-clients { bottom: 24px; left: -20px; }
.stat-label { color: #111827; margin-bottom: 2px; font-size: 10px; }
.stat-value { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: #111827; }
.stat-label { color: #6B7280; margin-bottom: 2px; font-size: 10px; }
.stat-value.accent { color: var(--orange); }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
}

/* SECTIONS */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag { color: var(--orange); margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); font-weight: 700; letter-spacing: 0.04em; margin-bottom: 0.75rem; color: #111827; }
.section-sub { color: #111827; font-size: 15px; }
.section-footer { text-align: center; margin-top: 2.5rem; }

/* PRODUCTS */
.products-section { background: #ffffff; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.product-card {
  background: #ffffff;
  padding: 1.5rem;
  position: relative;
  transition: background var(--transition);
}
.product-card:hover { background: #f8f9fc; }
.product-card.featured-card { background: #fff7f0; border: none; outline: 1px solid var(--accent-border); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: #fff;
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  padding: 2px 8px; border-radius: 2px;
}
.badge-featured { background: var(--red); color: #fff; }
.product-img-wrap { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); margin-bottom: 1rem; background: var(--bg4); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; filter: brightness(0.9); }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-cat { color: var(--blue); font-size: 10px; margin-bottom: 4px; }
.product-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: 0.03em; margin-bottom: 4px; color: #0f172a; }
.product-specs { color: #111827; font-size: 11px; margin-bottom: 1rem; }
.product-bottom { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--orange); }
.add-cart-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--orange-dim); border: 1px solid var(--orange-border);
  color: var(--orange);
  font-family: var(--font-mono); font-size: 11px;
  padding: 6px 12px; border-radius: var(--radius);
  cursor: pointer; transition: background var(--transition);
}
.add-cart-btn:hover { background: var(--orange); color: #fff; }

/* SERVICES */
.services-section { background: #f8f9fc; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.service-card {
  background: #ffffff;
  padding: 2rem;
  transition: background var(--transition);
  border-left: 2px solid transparent;
}
.service-card:hover { background: #fff7f0; border-left-color: var(--orange); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.service-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: 0.03em; margin-bottom: 0.5rem; color: #111827; }
.service-card p { color: #1f2937; font-size: 14px; line-height: 1.75; margin-bottom: 1.25rem; }
.service-link { font-family: var(--font-mono); font-size: 11px; color: var(--orange); text-decoration: none; transition: letter-spacing var(--transition); }
.service-link:hover { letter-spacing: 0.1em; }

/* STATS */
.stats-section { background: #1A56DB; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(36px, 5vw, 54px); font-weight: 700; line-height: 1; color: #fff; }
.stat-num span { font-size: 0.6em; color: var(--orange); }
.stat-desc { color: rgba(255,255,255,0.75); margin-top: 6px; font-size: 11px; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

/* CTA */
.cta-section { padding: 5rem 0; background: #f8f9fc; }
.cta-inner {
  background: linear-gradient(135deg, #FF6B00 0%, #e05e00 100%);
  border: none;
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-tag { color: rgba(255,255,255,0.85); margin-bottom: 1rem; }
.cta-title { font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px); font-weight: 700; letter-spacing: 0.04em; line-height: 1.1; margin-bottom: 1rem; color: #fff; }
.cta-desc { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 15px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* CONTACT */
.contact-section { background: #f8f9fc; }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.ci-label { color: #111827; margin-bottom: 2px; }
.ci-value { font-size: 15px; color: #111827; font-weight: 500; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: #ffffff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.submit-btn { width: 100%; font-size: 15px; padding: 14px; }
.form-success {
  display: none;
  background: rgba(255,107,0,0.08);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange);
  text-align: center;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* FOOTER */
.footer { background: #111827; border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand .logo { display: block; margin-bottom: 1rem; }
.footer-tagline { color: #9CA3AF; font-size: 14px; line-height: 1.7; max-width: 260px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 6px 10px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
.social-btn:hover { border-color: var(--orange); color: var(--orange); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-title { color: var(--orange); margin-bottom: 0.5rem; }
.footer-col a { color: #9CA3AF; text-decoration: none; font-size: 14px; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { color: #9CA3AF; font-size: 11px; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #9CA3AF; text-decoration: none; font-size: 13px; transition: color var(--transition); }
.footer-legal a:hover { color: var(--orange); }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   FULL WIDTH FIX
   ============================================ */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.navbar,
.status-bar,
.hero,
.section,
.stats-section,
.cta-section,
.footer,
.filters-bar,
.page-hero,
.contact-section,
.products-section,
.services-section {
  width: 100%;
}

/* Make hero truly full width */
.hero-inner,
.nav-inner,
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Full bleed backgrounds */
.hero { background: var(--bg); }
.products-section { background: #ffffff; }
.stats-section { background: #1A56DB; }
.cta-section { background: var(--bg2); }
.footer { background: #111827; }

/* Responsive padding */
@media (max-width: 768px) {
  .hero-inner,
  .nav-inner,
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ============================================
   READABILITY OVERRIDES - Strong black text
   ============================================ */

/* All body text strong and readable */
body { color: #111827; }

/* Hero */
.hero-title { color: #111827 !important; }
.hero-accent-text { color: var(--orange) !important; }
.hero-desc { color: #1F2937 !important; }
.hero-tag { color: var(--orange) !important; }
.quick-link { color: #374151 !important; }
.quick-link span { color: #374151; }
.quick-link:hover { color: var(--orange) !important; }
.quick-link svg { color: #374151; }
.quick-link:hover svg { color: var(--orange); }

/* Navbar */
.nav-links a { color: #1F2937 !important; }
.nav-links a:hover { color: var(--orange) !important; }
.hamburger span { background: #374151 !important; }
.logo-name { color: #111827 !important; }

/* Status bar - white text on blue */
.status-bar { color: rgba(255,255,255,0.9) !important; }
.status-bar .mono { color: rgba(255,255,255,0.9) !important; }
.status-bar .status-dot { background: #fff !important; box-shadow: 0 0 6px rgba(255,255,255,0.6) !important; }
.status-bar .status-online { color: #FFD700 !important; }
.status-bar .divider { color: rgba(255,255,255,0.4) !important; }
.status-bar .accent { color: #FFD700 !important; }

/* Sections */
.section-title { color: #111827 !important; }
.section-sub { color: #4B5563 !important; }
.section-tag { color: var(--orange) !important; }

/* Products */
.product-name { color: #111827 !important; }
.product-specs { color: #6B7280 !important; }
.product-detail { color: #4B5563 !important; }
.product-cat { color: var(--blue) !important; }

/* Services */
.service-card h3 { color: #111827 !important; }
.service-card p { color: #374151 !important; }

/* Stat cards on hero */
.stat-label { color: #6B7280 !important; }
.stat-value { color: #111827 !important; }
.stat-value.accent { color: var(--orange) !important; }

/* Stats section - white text on blue bg */
.stats-section .stat-num { color: #fff !important; }
.stats-section .stat-desc { color: rgba(255,255,255,0.8) !important; }
.stats-section .stat-num span { color: #FFD700 !important; }

/* Contact */
.ci-value { color: #111827 !important; }
.ci-label { color: #6B7280 !important; }
.form-group label { color: #374151 !important; }
.form-group input, .form-group select, .form-group textarea { color: #111827 !important; }

/* Footer */
.footer-col a { color: #9CA3AF !important; }
.footer-col a:hover { color: var(--orange) !important; }
.footer-copy { color: #9CA3AF !important; }
.footer-tagline { color: #9CA3AF !important; }

/* General mono text - context dependent */
.page-hero .mono { color: #6B7280 !important; }
.page-breadcrumb { color: #6B7280 !important; }
.page-breadcrumb a { color: #6B7280 !important; }
.page-title { color: #111827 !important; }
.page-desc { color: #374151 !important; }

/* CTA section - white text on orange bg */
.cta-section .cta-tag { color: rgba(255,255,255,0.85) !important; }
.cta-section .cta-title { color: #fff !important; }
.cta-section .cta-desc { color: rgba(255,255,255,0.9) !important; }

/* Icon buttons */
.icon-btn { color: #374151 !important; }
.icon-btn:hover { color: var(--orange) !important; }
