/* ============================================
   BABA AUTOMATION - Global Robot Spare Parts
   Industrial Light Theme with Steel Accents
   ============================================ */

   
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:ital,wght@0,300;0,400;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
:root {
  color-scheme: light;
  --primary: #E8450A;
  --primary-dark: #B5330A;
  --primary-light: #FF5A1F;
  --secondary: #F8F9FA;
  --dark: #FFFFFF;
  --darker: #F1F3F4;
  --surface: #F5F5F5;
  --surface-2: #F8F9FA;
  --surface-3: #E9ECEF;
  --border: rgba(0,0,0,0.08);
  --border-accent: rgba(232,69,10,0.3);
  --text-primary: #212529;
  --text-secondary: #495057;
  --text-muted: #6C757D;
  --steel: #4A90D9;
  --gold: #D4A853;
  --success: #2ECC71;
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow-glow: 0 0 30px rgba(232,69,10,0.2);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.2;
}
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-light); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 3px; }

/* ══════════════════════════════════
   TOP BAR
══════════════════════════════════ */
.top-bar {
  background: var(--darker);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-secondary);
  padding: 6px 0;
  font-family: var(--font-mono);
}
.top-bar a { color: var(--text-secondary); }
.top-bar a:hover { color: var(--primary); }
.top-bar .flag { font-size: 14px; margin-right: 4px; }
.top-bar-divider { color: var(--text-muted); margin: 0 12px; }




/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar-custom {
  background: var(--surface);
  border-bottom: 2px solid var(--primary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.navbar-custom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand { padding: 12px 0; }
.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}
.brand-text-main {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
}
.brand-text-sub {
  font-family: var(--font-mono);
  font-size: 9px; color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
}
.navbar-custom .nav-link {
  color: var(--text-secondary) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px 14px !important;
  position: relative;
  transition: color 0.2s;
}
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--primary);
  transition: left 0.3s, right 0.3s;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--text-primary) !important;
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  left: 14px; right: 14px;
}
.btn-quote {
  background: var(--primary);
  color: white !important;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px !important;
  margin: 10px 0;
  border-radius: 2px;
  clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%);
  transition: background 0.2s;
}
.btn-quote:hover { background: var(--primary-dark) !important; }
.btn-quote::after { display: none !important; }

/* Dropdown */
.navbar-custom .dropdown-menu {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 8px 0;
}
.navbar-custom .dropdown-item {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 8px 20px;
  transition: all 0.2s;
}
.navbar-custom .dropdown-item:hover {
  background: rgba(232,69,10,0.1);
  color: var(--primary);
  padding-left: 28px;
}
.navbar-toggler { border-color: var(--border); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  background: var(--darker);
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,69,10,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,144,217,0.08) 0%, transparent 70%);
  bottom: -50px; left: -50px;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,69,10,0.1);
  border: 1px solid var(--border-accent);
  color: var(--primary);
  font-family: var(--font-mono);
  /* font-size: 11px; */
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero-badge::before { content: '▶'; font-size: 8px; }
.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.hero h1 span { color: var(--primary); }
.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-right { position: relative; }
.hero-robot-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  padding: 24px;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}
.hero-robot-card .card-label {
  font-family: var(--font-mono);
  /* font-size: 10px; */
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.brand-pill {
  display: inline-block;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 11px;
  font-family: var(--font-mono);
  padding: 4px 10px;
  border-radius: 2px;
  margin: 3px;
  transition: all 0.2s;
}
.brand-pill:hover {
  background: rgba(232,69,10,0.15);
  border-color: var(--border-accent);
  color: var(--primary);
}
.shipping-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(46,204,113,0.08);
  border: 1px solid rgba(46,204,113,0.2);
  border-radius: 3px;
  padding: 10px 16px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--success);
}

/* ══════════════════════════════════
   SECTION HEADERS
══════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  font-family: var(--font-mono);
  /* font-size: 11px; */
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  margin: 0 auto;
}

/* ══════════════════════════════════
   SECTIONS
══════════════════════════════════ */
section { padding: 80px 0; }
.section-dark { background: var(--darker); }
.section-surface { background: var(--surface); }

/* ══════════════════════════════════
   BRAND LOGOS STRIP
══════════════════════════════════ */
.brands-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
}
.brands-scroll {
  display: flex;
  gap: 0;
  animation: scrollBrands 20s linear infinite;
  width: max-content;
}
@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 50px;
  border-right: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  transition: color 0.3s;
  min-width: 160px;
}
.brand-logo-item:hover { color: var(--primary); }

/* ══════════════════════════════════
   PRODUCT CATEGORY CARDS
══════════════════════════════════ */
.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  transition: all 0.3s;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.category-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.category-card:hover::before { transform: scaleX(1); }
.category-icon {
  width: 56px; height: 56px;
  background: rgba(232,69,10,0.1);
  border: 1px solid var(--border-accent);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.category-card h5 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.category-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}
.category-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  margin-top: 12px;
}

/* ══════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════ */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  display: flex;
    /* ADD */
    flex-direction: column;
    /* ADD */
}
.product-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  transform: translateY(-3px);
}
.product-img-wrap {
  /* background: var(--surface-2); */
  background: white;
  /* height: 290px; */
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 42px;
}
.product-img-placeholder span {
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

/* .product-card-body { padding: 18px; } */
.product-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-brand-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(232,69,10,0.08);
  border: 1px solid var(--border-accent);
  padding: 2px 8px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 8px;
  align-self: flex-start;
}
.product-card h6 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.product-model {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.product-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 14px;}

/* ══════════════════════════════════
   BRAND PAGE CARDS
══════════════════════════════════ */
.brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.brand-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.brand-card-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: block;
}
.brand-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.brand-parts-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  background: rgba(232,69,10,0.08);
  border: 1px solid var(--border-accent);
  padding: 4px 12px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 16px;
}

/* ══════════════════════════════════
   WHY CHOOSE SECTION
══════════════════════════════════ */
.why-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 100%;
  transition: all 0.3s;
}
.why-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}
.why-icon {
  width: 48px; height: 48px;
  background: rgba(232,69,10,0.1);
  border: 1px solid var(--border-accent);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-card h6 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.why-card p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ══════════════════════════════════
   INDUSTRIES
══════════════════════════════════ */
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}
.industry-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}
.industry-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.industry-card h6 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.industry-card p { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ══════════════════════════════════
   GLOBAL MAP SECTION
══════════════════════════════════ */
.markets-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.market-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.market-item:hover {
  border-color: var(--border-accent);
  color: var(--text-primary);
}
.market-item .flag { font-size: 18px; }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn-primary-custom {
  background: var(--primary);
  color: white;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,69,10,0.4);
}
.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border-accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-custom:hover {
  background: rgba(232,69,10,0.1);
  color: var(--primary);
  border-color: var(--primary);
}
.btn-sm-custom {
  padding: 6px 14px;
  font-size: 11px;
}

/* ══════════════════════════════════
   FORMS / RFQ
══════════════════════════════════ */
.rfq-section { background: var(--darker); }
.rfq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 4px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.form-control-custom, .form-select-custom {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 2px;
  padding: 10px 14px;
  width: 100%;
  transition: border-color 0.2s;
}
.form-control-custom:focus, .form-select-custom:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface-3);
  color: var(--text-primary);
}
.form-control-custom::placeholder { color: var(--text-muted); }
.form-select-custom option { background: var(--surface-2); }
.form-label-custom {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
}
textarea.form-control-custom { min-height: 100px; resize: vertical; }

/* ══════════════════════════════════
   PRODUCT DETAIL
══════════════════════════════════ */
.product-detail-img {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  margin-bottom: 12px;
}
.product-thumb {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-thumb.active, .product-thumb:hover { border-color: var(--primary); }
.spec-table { width: 100%; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td {
  padding: 10px 14px;
  font-size: 13px;
}
.spec-table td:first-child {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  width: 40%;
  background: var(--surface-2);
}
.spec-table td:last-child { color: var(--text-primary); }

/* ══════════════════════════════════
   BLOG
══════════════════════════════════ */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
}
.blog-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.blog-img-placeholder {
  height: 180px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border-bottom: 1px solid var(--border);
}
.blog-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.blog-body { padding: 20px; }
.blog-card h6 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.blog-card p { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════
   PAGE HEADER BANNER
══════════════════════════════════ */
.page-banner {
  background: var(--darker);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  opacity: 0.4;
}
.page-banner h1 {
  font-size: clamp(28px, 4vw, 44px);
  position: relative;
}
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  position: relative;
  margin-top: 10px;
}
.breadcrumb-custom a { color: var(--primary); }
.breadcrumb-custom span { color: var(--text-muted); }

/* ══════════════════════════════════
   FILTERS SIDEBAR
══════════════════════════════════ */
.filter-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px;
}
.filter-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s;
}
.filter-item:hover { color: var(--primary); }
.filter-checkbox {
  width: 14px; height: 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  background: var(--surface-2);
}
.filter-item.active .filter-checkbox {
  background: var(--primary);
  border-color: var(--primary);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--darker);
  border-top: 1px solid var(--border);
}
.footer-top {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { margin-bottom: 16px; }
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}
.footer-contact-icon { color: var(--primary); width: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--primary);
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.footer-certifications {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cert-badge {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  height: 100%;
}
.contact-info-card .icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.contact-info-card h5 {
  font-family: var(--font-display);
  font-size: 17px;
  margin-bottom: 8px;
}
.contact-info-card p, .contact-info-card a {
  font-size: 13px;
  color: var(--text-secondary);
}
.map-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ══════════════════════════════════
   TICKER
══════════════════════════════════ */
.ticker-bar {
  background: var(--primary);
  padding: 8px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  animation: ticker 25s linear infinite;
  width: max-content;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  padding: 0 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.ticker-item::before { content: '◆'; font-size: 8px; opacity: 0.6; }

/* ══════════════════════════════════
   ABOUT PAGE
══════════════════════════════════ */
.about-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 4px;
  padding: 28px 20px;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
}
.about-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-mono);
}
.timeline { border-left: 2px solid var(--border); padding-left: 30px; }
.timeline-item {
  position: relative;
  margin-bottom: 28px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -39px; top: 6px;
  width: 14px; height: 14px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--darker);
}
.timeline-year {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.timeline-item h6 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.timeline-item p { font-size: 13px; color: var(--text-muted); }

/* ══════════════════════════════════
   NOTIFICATION / ALERT
══════════════════════════════════ */
.alert-custom {
  background: rgba(46,204,113,0.08);
  border: 1px solid rgba(46,204,113,0.3);
  border-radius: 3px;
  padding: 12px 18px;
  color: var(--success);
  font-size: 13px;
  display: none;
  align-items: center;
  gap: 10px;
}
.alert-custom.show { display: flex; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 768px) {
  .hero { padding: 50px 0 40px; }
  .hero-stats { gap: 24px; }
  section { padding: 50px 0; }
  .rfq-card { padding: 24px; }
  .footer-top { padding: 40px 0 28px; }
  .top-bar .d-md-flex { display: none !important; }
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.5s ease forwards; }

/* ══════════════════════════════════
   UTILITY
══════════════════════════════════ */
.text-primary-custom { color: var(--primary) !important; }
.text-muted-custom { color: var(--text-muted) !important; }
.text-secondary-custom { color: var(--text-secondary) !important; }
.bg-surface { background: var(--surface); }
.border-custom { border: 1px solid var(--border); }
.mono { font-family: var(--font-mono); }
.divider { border-top: 1px solid var(--border); margin: 32px 0; }


@media (max-width: 768px) {

  .brand-text-main {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .brand-text-sub {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

}