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

:root {
  --blue: #0ea5e9;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --orange: #f97316;
  --green: #22c55e;
  --teal: #14b8a6;
  --yellow: #eab308;
  --red: #ef4444;

  --bg: #0a0a1a;
  --bg2: #0f0f2a;
  --bg3: #14142e;
  --card: #1a1a3a;
  --card2: #1e1e42;
  --border: rgba(139,92,246,0.2);
  --border2: rgba(139,92,246,0.5);
  --text: #f0f0ff;
  --text2: #a0a0c0;
  --text3: #606080;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Animated bg blobs */
body::before {
  content: '';
  position: fixed;
  top: -20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: blobMove 15s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  bottom: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: blobMove2 18s ease-in-out infinite alternate;
}

@keyframes blobMove { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(5%,5%) scale(1.1); } }
@keyframes blobMove2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-5%,-5%) scale(1.15); } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}

.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }

.logo-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 700; color: white;
  box-shadow: 0 0 20px rgba(139,92,246,0.4);
}

.logo-name { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; background: linear-gradient(135deg, var(--purple), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; line-height: 1; }
.logo-tagline { font-size: 0.6rem; color: var(--text3); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { padding: 8px 16px; color: var(--text2); text-decoration: none; font-size: 0.88rem; font-weight: 500; border-radius: 8px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(139,92,246,0.15); }
.nav-cta { background: linear-gradient(135deg, var(--purple), var(--blue)) !important; color: white !important; font-weight: 600 !important; box-shadow: 0 4px 15px rgba(139,92,246,0.3); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,92,246,0.5) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: linear-gradient(90deg, var(--purple), var(--blue)); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 2rem 60px;
  position: relative; z-index: 1;
  overflow: hidden;
}

.hero-orbs {
  position: absolute; inset: 0; pointer-events: none;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.25;
}
.orb1 { width: 500px; height: 500px; background: var(--purple); top: -100px; right: -100px; animation: orbFloat 8s ease-in-out infinite; }
.orb2 { width: 300px; height: 300px; background: var(--blue); bottom: 0; left: -50px; animation: orbFloat 10s ease-in-out infinite reverse; }
.orb3 { width: 200px; height: 200px; background: var(--pink); top: 40%; left: 40%; animation: orbFloat 12s ease-in-out infinite; }

@keyframes orbFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero-inner { max-width: 1400px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,92,246,0.15); border: 1px solid rgba(139,92,246,0.4);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500; color: #c4b5fd; margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s infinite; }

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700; line-height: 1.05; margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease 0.1s both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 50%, var(--teal) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-desc { color: var(--text2); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; animation: fadeUp 0.7s ease 0.2s both; }

.hero-stats { display: flex; gap: 2.5rem; margin-bottom: 2.5rem; animation: fadeUp 0.7s ease 0.3s both; }
.stat-num { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; background: linear-gradient(135deg, var(--purple), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.72rem; color: var(--text3); letter-spacing: 1px; text-transform: uppercase; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.7s ease 0.4s both; }

.btn-grad {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: white; padding: 14px 28px; border-radius: 12px;
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  box-shadow: 0 4px 20px rgba(139,92,246,0.4);
  transition: all 0.3s;
}
.btn-grad:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(139,92,246,0.5); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(139,92,246,0.5); color: #c4b5fd;
  padding: 13px 28px; border-radius: 12px;
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  transition: all 0.3s; background: rgba(139,92,246,0.05);
}
.btn-outline:hover { border-color: var(--purple); background: rgba(139,92,246,0.15); transform: translateY(-2px); }

/* Hero Right - Chemical Visual */
.hero-visual {
  display: flex; align-items: center; justify-content: center; position: relative;
  animation: fadeUp 0.8s ease 0.3s both;
}

.chem-sphere {
  width: 380px; height: 380px; border-radius: 50%; position: relative;
  background: radial-gradient(circle at 35% 35%, rgba(139,92,246,0.3), rgba(14,165,233,0.1) 50%, transparent 70%);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex; align-items: center; justify-content: center;
  animation: orbFloat 6s ease-in-out infinite;
}

.chem-sphere::before {
  content: ''; position: absolute; inset: -2px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--purple), var(--blue), var(--teal), var(--purple));
  z-index: -1; opacity: 0.3; animation: spin 8s linear infinite;
}

.chem-sphere-inner {
  text-align: center; padding: 2rem;
}

.big-formula {
  font-family: 'Space Mono', monospace;
  font-size: 3rem; font-weight: 700;
  background: linear-gradient(135deg, white, rgba(196,181,253,0.8));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.5rem;
}

.molecule-nodes {
  position: absolute; inset: -40px;
}

.node {
  position: absolute; background: var(--card2); border: 2px solid;
  border-radius: 50%; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700;
  animation: nodeFloat 4s ease-in-out infinite;
}
.node:nth-child(1) { top: 10%; left: 5%; border-color: var(--orange); color: var(--orange); animation-delay: 0s; }
.node:nth-child(2) { top: 5%; right: 15%; border-color: var(--blue); color: var(--blue); animation-delay: 0.5s; }
.node:nth-child(3) { bottom: 15%; left: 5%; border-color: var(--green); color: var(--green); animation-delay: 1s; }
.node:nth-child(4) { bottom: 10%; right: 5%; border-color: var(--pink); color: var(--pink); animation-delay: 1.5s; }
.node:nth-child(5) { top: 50%; right: 0%; border-color: var(--teal); color: var(--teal); animation-delay: 2s; }
.node:nth-child(6) { top: 50%; left: 0%; border-color: var(--yellow); color: var(--yellow); animation-delay: 2.5s; }

@keyframes nodeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===== TICKER ===== */
.ticker {
  padding: 14px 0;
  background: linear-gradient(90deg, rgba(139,92,246,0.1), rgba(14,165,233,0.1));
  border-top: 1px solid rgba(139,92,246,0.2);
  border-bottom: 1px solid rgba(139,92,246,0.2);
  overflow: hidden; position: relative; z-index: 1;
}
.ticker-track { display: flex; gap: 3rem; animation: ticker 40s linear infinite; white-space: nowrap; }
.ticker-item { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--text2); font-weight: 500; }
.ticker-price { font-weight: 700; font-size: 0.88rem; }
.tp-blue { color: var(--blue); }
.tp-purple { color: var(--purple); }
.tp-green { color: var(--green); }
.tp-orange { color: var(--orange); }
.tp-pink { color: var(--pink); }
.tp-teal { color: var(--teal); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTION ===== */
.section { padding: 90px 2rem; position: relative; z-index: 1; }
.section-alt { background: rgba(14,14,42,0.5); }
.container { max-width: 1400px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-label { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--purple); margin-bottom: 12px; }
.section-title { font-family: 'Rajdhani', sans-serif; font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: var(--text); }
.section-title .highlight { background: linear-gradient(135deg, var(--purple), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-sub { color: var(--text2); font-size: 0.95rem; margin-top: 12px; }

/* ===== CATEGORY CARDS ===== */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1.2rem; }

.category-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 18px;
  text-align: center; text-decoration: none;
  transition: all 0.3s; position: relative; overflow: hidden;
}

.category-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 16px;
  background: var(--grad, linear-gradient(135deg, rgba(139,92,246,0.1), rgba(14,165,233,0.05)));
  opacity: 0; transition: opacity 0.3s;
}

.cc-0 { --grad: linear-gradient(135deg,rgba(139,92,246,.15),rgba(14,165,233,.1)); }
.cc-1 { --grad: linear-gradient(135deg,rgba(14,165,233,.15),rgba(20,184,166,.1)); }
.cc-2 { --grad: linear-gradient(135deg,rgba(20,184,166,.15),rgba(34,197,94,.1)); }
.cc-3 { --grad: linear-gradient(135deg,rgba(34,197,94,.15),rgba(234,179,8,.1)); }
.cc-4 { --grad: linear-gradient(135deg,rgba(249,115,22,.15),rgba(239,68,68,.1)); }
.cc-5 { --grad: linear-gradient(135deg,rgba(236,72,153,.15),rgba(139,92,246,.1)); }
.cc-6 { --grad: linear-gradient(135deg,rgba(234,179,8,.15),rgba(249,115,22,.1)); }
.cc-7 { --grad: linear-gradient(135deg,rgba(239,68,68,.15),rgba(236,72,153,.1)); }
.cc-8 { --grad: linear-gradient(135deg,rgba(14,165,233,.15),rgba(139,92,246,.1)); }

.category-card:hover { transform: translateY(-6px); border-color: var(--border2); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.category-card:hover::before { opacity: 1; }

.cat-icon { font-size: 2.8rem; margin-bottom: 12px; display: block; }
.cat-name { font-weight: 600; font-size: 0.88rem; color: var(--text); margin-bottom: 4px; }
.cat-count { font-size: 0.72rem; color: var(--text3); }

.cat-pill {
  display: inline-block; padding: 2px 10px; border-radius: 100px;
  font-size: 0.65rem; font-weight: 600; margin-top: 8px; letter-spacing: 0.5px;
}
.pill-purple { background: rgba(139,92,246,.2); color: #c4b5fd; }
.pill-blue { background: rgba(14,165,233,.2); color: #7dd3fc; }
.pill-green { background: rgba(34,197,94,.2); color: #86efac; }
.pill-orange { background: rgba(249,115,22,.2); color: #fdba74; }
.pill-pink { background: rgba(236,72,153,.2); color: #f9a8d4; }
.pill-teal { background: rgba(20,184,166,.2); color: #5eead4; }
.pill-yellow { background: rgba(234,179,8,.2); color: #fde68a; }
.pill-red { background: rgba(239,68,68,.2); color: #fca5a5; }

/* ===== PRODUCT GRID ===== */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

.product-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; transition: all 0.3s;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(139,92,246,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

.product-img-placeholder {
  height: 160px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}

/* per-category gradient headers */
.pg-purple { background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(14,165,233,0.15)); }
.pg-blue   { background: linear-gradient(135deg, rgba(14,165,233,0.3), rgba(20,184,166,0.15)); }
.pg-green  { background: linear-gradient(135deg, rgba(34,197,94,0.3), rgba(20,184,166,0.15)); }
.pg-orange { background: linear-gradient(135deg, rgba(249,115,22,0.3), rgba(239,68,68,0.15)); }
.pg-pink   { background: linear-gradient(135deg, rgba(236,72,153,0.3), rgba(139,92,246,0.15)); }
.pg-teal   { background: linear-gradient(135deg, rgba(20,184,166,0.3), rgba(14,165,233,0.15)); }
.pg-yellow { background: linear-gradient(135deg, rgba(234,179,8,0.3), rgba(249,115,22,0.15)); }
.pg-red    { background: linear-gradient(135deg, rgba(239,68,68,0.3), rgba(236,72,153,0.15)); }
.pg-indigo { background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(139,92,246,0.15)); }

.chem-formula { font-family: 'Space Mono', monospace; font-size: 2rem; font-weight: 700; color: rgba(255,255,255,0.7); }
.chem-name { font-size: 0.62rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); }

.product-badge {
  position: absolute; top: 12px; right: 12px;
  padding: 3px 10px; border-radius: 100px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.5px;
}

.product-body { padding: 18px; }
.product-name { font-weight: 600; font-size: 0.95rem; color: var(--text); margin-bottom: 12px; line-height: 1.4; }

.product-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.spec-item { background: rgba(255,255,255,0.03); border-radius: 8px; padding: 8px 10px; }
.spec-label { font-size: 0.65rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 2px; }
.spec-value { font-size: 0.78rem; color: var(--text2); font-weight: 500; }

.product-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.06); }
.product-price { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; }
.product-price small { font-size: 0.72rem; color: var(--text3); font-family: 'Poppins', sans-serif; font-weight: 400; }

.btn-quote {
  padding: 8px 16px; border-radius: 8px; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: all 0.2s; border: 2px solid;
}

/* ===== FILTER TABS ===== */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }

.filter-tab {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text2); padding: 8px 18px; font-size: 0.82rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.filter-tab:hover { border-color: rgba(139,92,246,0.4); color: var(--text); }
.filter-tab.active { background: linear-gradient(135deg, var(--purple), var(--blue)); color: white; border-color: transparent; box-shadow: 0 4px 15px rgba(139,92,246,0.3); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
.feature-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 18px; display: flex; gap: 12px; align-items: flex-start; }
.feature-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.feature-text h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.feature-text p { font-size: 0.75rem; color: var(--text3); line-height: 1.5; }

.info-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
}
.info-card-header {
  padding: 24px; background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(14,165,233,0.1));
  border-bottom: 1px solid var(--border);
}
.info-card-header h3 { font-family: 'Rajdhani',sans-serif; font-size: 1.2rem; font-weight: 700; color: white; }
.info-card-header p { font-size: 0.8rem; color: var(--text2); margin-top: 4px; }
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.85rem; }
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--text3); }
.info-value { color: var(--text); font-weight: 500; text-align: right; max-width: 60%; }

/* ===== CONTACT ===== */
.contact-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.2rem; margin-bottom: 3rem; }

.contact-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px;
  display: flex; gap: 16px; align-items: flex-start; transition: all 0.3s;
}
.contact-card:hover { border-color: rgba(139,92,246,0.4); transform: translateY(-3px); }
.contact-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.contact-info h3 { font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text3); margin-bottom: 6px; }
.contact-info p, .contact-info a { font-size: 0.9rem; color: var(--text); text-decoration: none; line-height: 1.6; }
.contact-info a:hover { color: var(--purple); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.contact-form {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 36px;
}

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text2); margin-bottom: 8px; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text); padding: 12px 16px; border-radius: 10px;
  font-family: 'Poppins',sans-serif; font-size: 0.88rem; outline: none; transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(139,92,246,0.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit {
  width: 100%; padding: 14px; border: none; border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: white; font-size: 1rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 20px rgba(139,92,246,0.4); transition: all 0.3s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139,92,246,0.5); }

/* MAP */
.map-wrap {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* PAYMENT */
.payment-modes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.payment-badge { padding: 5px 14px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; }

/* ===== RATINGS ===== */
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.star-yellow { color: var(--yellow); }
.rating-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.rating-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--yellow), var(--orange)); }

/* ===== FOOTER ===== */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 2rem 28px; position: relative; z-index: 1; }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--text3); font-size: 0.83rem; line-height: 1.8; margin: 1rem 0 1.5rem; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text); margin-bottom: 1rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--border); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text3); font-size: 0.83rem; text-decoration: none; transition: color 0.2s; display: flex; gap: 6px; align-items: center; }
.footer-col a:hover { color: var(--purple); }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; color: var(--text3); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(5,5,15,0.9); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--card2); border: 1px solid rgba(139,92,246,0.4); border-radius: 24px;
  max-width: 680px; width: 100%; max-height: 88vh; overflow-y: auto;
  transform: scale(0.95); transition: transform 0.3s; box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-header { padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: flex-start; }
.modal-close { width: 32px; height: 32px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--text2); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.modal-close:hover { background: rgba(239,68,68,0.2); border-color: var(--red); color: var(--red); }
.modal-body { padding: 28px; }
.modal-product-header { display: grid; grid-template-columns: 140px 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.modal-product-img { width: 140px; height: 140px; border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.modal-price { font-family: 'Rajdhani',sans-serif; font-size: 2.5rem; font-weight: 700; background: linear-gradient(135deg, var(--purple), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.modal-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 1.5rem; }
.modal-spec-item { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 12px 14px; }
.modal-spec-label { font-size: 0.65rem; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.modal-spec-value { font-size: 0.88rem; color: var(--text); font-weight: 500; }
.modal-desc { font-size: 0.85rem; color: var(--text2); line-height: 1.8; margin-bottom: 1.5rem; }
.modal-address { background: rgba(139,92,246,0.08); border: 1px solid rgba(139,92,246,0.2); border-radius: 12px; padding: 16px; font-size: 0.8rem; color: var(--text3); line-height: 1.7; }

/* ===== TRUST STRIP ===== */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.5rem; }
.trust-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; text-align: center; transition: all 0.3s; }
.trust-card:hover { transform: translateY(-4px); border-color: rgba(139,92,246,0.4); }
.trust-num { font-family: 'Rajdhani',sans-serif; font-size: 2rem; font-weight: 700; margin-top: 12px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(14,165,233,0.1));
  border: 1px solid rgba(139,92,246,0.3); border-radius: 24px; padding: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}

/* ===== SEARCH ===== */
.search-wrap { display: flex; gap: 0; max-width: 520px; margin-top: 24px; }
.search-wrap input { flex: 1; background: var(--card); border: 1px solid var(--border); border-right: none; border-radius: 12px 0 0 12px; color: var(--text); padding: 13px 18px; font-family: 'Poppins',sans-serif; font-size: 0.9rem; outline: none; }
.search-wrap input:focus { border-color: rgba(139,92,246,0.5); }
.search-wrap button { background: linear-gradient(135deg, var(--purple), var(--blue)); color: white; border: none; border-radius: 0 12px 12px 0; padding: 13px 20px; font-size: 1rem; cursor: pointer; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.6; transform:scale(0.95); } }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.4); border-radius: 3px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 1rem 2rem; flex-direction: column; gap: 4px; }
  .nav-links.open { display: flex; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .modal-product-header { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
}
