:root {
  --green: #2e8b3a;
  --green-light: #43c455;
  --green-dark: #1c6126;
  --blue: #1565c0;
  --blue-light: #1e88e5;
  --blue-mid: #1976d2;
  --mix-start: #1565c0;
  --mix-end: #1e7a3a;
  --cream: #eef4ff;
  --dark: #071529;
  --text: #1a2a1c;
  --muted: #5a6a70;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: linear-gradient(90deg, #071529 0%, #0a2a40 50%, #071e10 100%);
  color: #aad4ff;
  font-size: 12.5px;
  padding: 8px 40px;
  display: flex;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(30,136,229,0.25);
}
.topbar a { color: #43c455; text-decoration: none; }

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #1565c0, #2e8b3a) 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  box-shadow: 0 2px 20px rgba(21,101,192,0.12);
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 58px; }
.nav-logo-text { line-height: 1.1; }
.nav-logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--dark);
}
.nav-logo-text span { font-size: 11px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #1565c0, #2e8b3a);
  transition: width .3s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, #1565c0 0%, #2e8b3a 100%);
  color: white !important;
  padding: 10px 22px;
  border-radius: 4px;
  transition: opacity .2s, transform .2s !important;
  box-shadow: 0 4px 16px rgba(21,101,192,0.35);
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); color: white !important; }
.nav-cta::after { display: none !important; }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, #030d1a 0%, #071e35 25%, #0a2e18 55%, #071e10 80%, #030d1a 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 40%, rgba(21,101,192,0.28) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 70%, rgba(46,139,58,0.25) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 100%, rgba(30,136,229,0.1) 0%, transparent 40%);
}
.hero-deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.hero-deco:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -100px; background: radial-gradient(circle, #1e88e5, transparent); }
.hero-deco:nth-child(2) { width: 300px; height: 300px; bottom: -100px; left: 60px; background: radial-gradient(circle, #43c455, transparent); }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px 80px 80px;
  animation: fadeUp .9s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(21,101,192,0.25), rgba(46,139,58,0.2));
  border: 1px solid rgba(67,196,85,0.5);
  color: #7de88a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  color: white;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero h1 span {
  background: linear-gradient(90deg, #43c455, #1e88e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, #1565c0 0%, #2e8b3a 100%);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform .2s, opacity .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(21,101,192,0.4);
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(21,101,192,0.5); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.35);
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #43c455, #1e88e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; }

.hero-visual {
  position: relative;
  z-index: 2;
  padding: 60px 60px 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeRight .9s .2s ease both;
}
.hero-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.hero-img-card {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.hero-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.hero-img-card:hover img { transform: scale(1.06); }
.hero-img-card .card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: white;
  padding: 20px 12px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-img-card.tall { grid-row: span 2; aspect-ratio: unset; }

/* ── SECTION COMMONS ── */
section { padding: 80px 80px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #1565c0, #2e8b3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 560px; }

/* ── CATEGORIES ── */
.categories { background: white; }
.cat-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.cat-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/2.2;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(21,101,192,0.15);
  transition: transform .3s, box-shadow .3s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(21,101,192,0.25); }
.cat-card-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .5s;
}
.cat-card:hover .cat-card-bg { transform: scale(1.06); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(5,20,50,0.6) 60%, rgba(5,30,15,0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.cat-desc { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.cat-arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #1565c0, #2e8b3a);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity .3s, transform .3s;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: scale(1); }

/* ── PRODUCTS ── */
.products { background: var(--cream); }
.products-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(21,101,192,0.08);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(21,101,192,0.18); }
.product-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-img img { transform: scale(1.08); }
.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: linear-gradient(135deg, #1565c0, #2e8b3a);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 1;
}
.product-info { padding: 18px; display: flex; flex-direction: column; }
.product-category {
  font-size: 12px;
  color: #1565c0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.product-desc { font-size: 12.5px; color: var(--muted); line-height: 1.5; flex-grow: 1; margin-bottom: 8px; }
.product-spec { font-size: 12px; color: #1565c0; font-weight: 600; margin-bottom: 12px; }
.product-info p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.product-cta {
  display: block;
  text-align: center;
  background: transparent;
  border: 1.5px solid #1565c0;
  color: #1565c0;
  padding: 8px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  margin: 14px 0 0 0;
}
.product-cta:hover { background: linear-gradient(135deg, #1565c0, #2e8b3a); color: white; border-color: transparent; }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #eef4ff 0%, #e8f5e9 100%);
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 60px;
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-hero-content h1 span { color: #1565c0; }
.page-hero-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* CONTENT SECTION */
.content-section {
  padding: 80px 40px;
}

/* FILTER TABS */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
  align-items: center;
}
.filter-btn {
  padding: 10px 20px;
  border: 2px solid #dce8f5;
  background: white;
  color: var(--text);
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.filter-btn:hover { border-color: #1565c0; color: #1565c0; }
.filter-btn.active {
  background: linear-gradient(135deg, #1565c0, #2e8b3a);
  color: white;
  border-color: transparent;
}

/* ── ABOUT ── */
.about {
  background: linear-gradient(135deg, #030d1a 0%, #071e35 40%, #071e10 70%, #030d1a 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 80px;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.about-img-main img { width: 100%; display: block; }
.about-img-inset {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 180px;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.about-img-inset img { width: 100%; display: block; }
.about-green-bar {
  position: absolute;
  top: -16px; left: -16px;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #1565c0, #2e8b3a);
  border-radius: 10px;
  opacity: 0.9;
}
.about-content { color: white; }
.about-content .section-tag { background: linear-gradient(90deg, #43c455, #1e88e5); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-content .section-title { color: white; }
.about-content .section-sub { color: rgba(255,255,255,0.65); margin-bottom: 32px; max-width: 100%; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.5;
}
.feature-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #1565c0, #2e8b3a);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  margin-top: 1px;
}
.govt-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(21,101,192,0.2), rgba(46,139,58,0.15));
  border: 1px solid rgba(30,136,229,0.3);
  border-radius: 8px;
  padding: 14px 20px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}
.govt-badge span { font-size: 22px; }

/* ── WHY US ── */
.why-us { background: white; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 52px; }
.why-card {
  padding: 36px 28px;
  border-radius: 14px;
  border: 1.5px solid #dce8f5;
  background: var(--cream);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.why-card:hover { border-color: #1565c0; box-shadow: 0 10px 30px rgba(21,101,192,0.12); transform: translateY(-4px); }
.why-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, #1565c0, #2e8b3a);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  box-shadow: 0 6px 20px rgba(21,101,192,0.3);
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(135deg, #030d1a 0%, #071e35 40%, #071e10 70%, #030d1a 100%);
  color: rgba(255,255,255,0.65);
  padding: 60px 80px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 50px; }
.footer-logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: white;
  display: block;
  line-height: 1.1;
}
.footer-logo-text span { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.footer-desc { font-size: 13.5px; line-height: 1.75; margin-bottom: 22px; }
.footer-contact-item { display: flex; gap: 8px; font-size: 13px; margin-bottom: 8px; align-items: flex-start; }
.footer-contact-item span:first-child { flex-shrink: 0; color: var(--green-light); }
footer h4 { color: white; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13.5px; transition: color .2s; }
.footer-links a:hover { color: #43c455; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
}
.footer-bottom a { color: #43c455; text-decoration: none; }

/* ── GOVT BODIES CAROUSEL ── */
.govt-section {
  background: white;
  padding: 70px 80px;
  overflow: hidden;
}
.govt-header {
  text-align: center;
  margin-bottom: 48px;
}
.govt-header .section-title { margin: 0 auto 12px; }
.govt-header .section-sub { margin: 0 auto; text-align: center; }
.carousel-wrapper {
  position: relative;
}
.carousel-track-outer {
  overflow: hidden;
  border-radius: 16px;
}
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.govt-card {
  flex: 0 0 calc(25% - 18px);
  background: var(--cream);
  border-radius: 14px;
  border: 1.5px solid #dce8f5;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer;
}
.govt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(21,101,192,0.15);
  border-color: #1565c0;
}
.govt-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: white;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.govt-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter .3s;
}
.govt-card:hover .govt-card-img img { filter: grayscale(0%); }
.govt-card-body {
  padding: 16px 18px 18px;
  border-top: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(90deg, #1565c0, #2e8b3a) border-box;
  border-top: 2px solid transparent;
}
.govt-card-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 4px;
}
.govt-card-body p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.govt-card-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #eef4ff 0%, #e8f5e9 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #8bacc8;
  font-size: 13px;
  font-weight: 500;
}
.govt-card-placeholder span { font-size: 32px; opacity: 0.5; }

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid #dce8f5;
  background: white;
  cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  color: #1565c0;
  box-shadow: 0 2px 10px rgba(21,101,192,0.1);
}
.carousel-btn:hover {
  background: linear-gradient(135deg, #1565c0, #2e8b3a);
  border-color: transparent;
  color: white;
  box-shadow: 0 6px 20px rgba(21,101,192,0.3);
}
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #dce8f5;
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: linear-gradient(90deg, #1565c0, #2e8b3a);
}

/* ══════════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN - COMPLETE FIX                              */
/* ══════════════════════════════════════════════════════════════ */

/* TABLET (900px) */
@media (max-width: 900px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  section { padding: 60px 24px; }
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 24px 40px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 36px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about { grid-template-columns: 1fr; padding: 60px 24px; }
  .about-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 40px 24px; }
  .page-hero-content h1 { font-size: 36px; }
  .content-section { padding: 40px 24px; }
  .section-title { font-size: 32px; }
  .govt-section { padding: 50px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* SMALL TABLET / LARGE MOBILE (768px) */
@media (max-width: 768px) {
  .topbar { padding: 8px 20px; gap: 16px; font-size: 11px; flex-wrap: wrap; }
  .topbar span:last-child { margin-left: 0; }
  nav { padding: 12px 20px; flex-wrap: wrap; }
  .nav-logo { flex: 1; }
  .nav-logo img { height: 48px; }
  .nav-logo-text strong { font-size: 18px; }
  .nav-links { display: none; }
  section { padding: 40px 20px; }
  .hero { min-height: 60vh; }
  .hero-content { padding: 40px 20px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 28px; }
  .hero-desc { font-size: 14px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .stat-num { font-size: 22px; }
  .cat-grid { grid-template-columns: 1fr; gap: 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
  .product-name { font-size: 14px; }
  .product-cta { padding: 8px 12px; font-size: 12px; }
  .about { grid-template-columns: 1fr; padding: 40px 20px; gap: 40px; }
  .about-visual { display: none; }
  .about h2 { font-size: 28px; }
  .about-img-inset { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .page-hero { padding: 30px 20px; margin-bottom: 30px; }
  .page-hero-content h1 { font-size: 28px; }
  .page-hero-desc { font-size: 13px; }
  .content-section { padding: 30px 20px; }
  .section-title { font-size: 24px; margin-bottom: 24px; }
  .filter-tabs { gap: 8px; margin-bottom: 24px; }
  .filter-btn { padding: 8px 14px; font-size: 12px; }
  .govt-section { padding: 40px 20px; }
  .govt-header { margin-bottom: 36px; }
  .carousel-track { gap: 16px; }
  .govt-card { flex: 0 0 calc(50% - 8px); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* MOBILE (600px) */
@media (max-width: 600px) {
  .topbar { flex-direction: column; gap: 8px; padding: 6px 16px; text-align: center; font-size: 10px; }
  nav { padding: 10px 16px; }
  .nav-logo { min-width: 100%; justify-content: center; margin-bottom: 8px; }
  .nav-logo img { height: 40px; }
  .nav-logo-text strong { font-size: 16px; }
  .nav-links { display: none; }
  section { padding: 30px 16px; }
  .hero { min-height: 50vh; }
  .hero-content { padding: 30px 16px; }
  .hero h1 { font-size: 24px; }
  .hero-desc { font-size: 13px; }
  .hero-stats { gap: 16px; }
  .cat-grid { gap: 16px; }
  .products-grid { gap: 12px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .product-info { padding: 12px; }
  .product-name { font-size: 13px; }
  .product-desc { font-size: 11px; }
  .product-cta { padding: 6px 10px; font-size: 11px; }
  .about { padding: 30px 16px; }
  .about-green-bar { width: 60px; height: 60px; }
  .why-card { padding: 24px 16px; }
  .why-card h3 { font-size: 16px; }
  .page-hero { padding: 20px 16px; margin-bottom: 20px; }
  .page-hero-content h1 { font-size: 22px; }
  .page-hero-desc { font-size: 12px; }
  .content-section { padding: 20px 16px; }
  .section-title { font-size: 20px; margin-bottom: 16px; }
  .filter-tabs { gap: 6px; margin-bottom: 16px; }
  .filter-btn { padding: 6px 12px; font-size: 11px; }
  .govt-section { padding: 30px 16px; }
  .carousel-track { gap: 12px; }
  .govt-card { flex: 0 0 calc(100% - 12px); }
  .carousel-nav { gap: 12px; margin-top: 24px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 16px; }
  .footer-grid { gap: 24px; padding: 0; }
  .footer-desc { font-size: 12px; }
  footer { padding: 40px 16px 20px; }
}

/* SMALL MOBILE (400px) */
@media (max-width: 400px) {
  .topbar { padding: 5px 12px; font-size: 9px; }
  nav { padding: 8px 12px; }
  .nav-logo img { height: 35px; }
  .nav-logo-text strong { font-size: 14px; }
  .nav-logo-text span { font-size: 9px; }
  section { padding: 20px 12px; }
  .hero { min-height: 45vh; }
  .hero-content { padding: 20px 12px; }
  .hero h1 { font-size: 20px; line-height: 1.3; }
  .hero p { font-size: 12px; }
  .hero-badge { font-size: 9px; padding: 4px 12px; }
  .cat-grid { gap: 12px; }
  .products-grid { gap: 10px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
  .product-name { font-size: 12px; }
  .product-desc { font-size: 10px; }
  .product-cta { padding: 5px 8px; font-size: 10px; }
  .why-card { padding: 16px 12px; }
  .why-icon { width: 44px; height: 44px; font-size: 18px; }
  .why-card h3 { font-size: 14px; }
  .why-card p { font-size: 12px; }
  .page-hero { padding: 16px 12px; }
  .page-hero-content h1 { font-size: 18px; }
  .page-hero-desc { font-size: 11px; }
  .content-section { padding: 16px 12px; }
  .section-title { font-size: 18px; margin-bottom: 12px; }
  .filter-btn { padding: 5px 10px; font-size: 10px; }
  .govt-section { padding: 20px 12px; }
  .govt-card-body h4 { font-size: 12px; }
  .govt-card-body p { font-size: 11px; }
  footer { padding: 30px 12px 15px; }
  .footer-logo-text strong { font-size: 16px; }
  .footer-logo img { height: 40px; }
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}