:root {
  --navy: #1B3A5C;
  --gold: #C9A84C;
  --gold-light: #e8c96e;
  --cream: #F8F5F0;
  --text: #2c2c2c;
  --muted: #6b7280;
  --white: #ffffff;
  --border: #e5e0d8;
  --shadow: 0 4px 24px rgba(27,58,92,0.10);
}

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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }

/* ── HEADER ── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-text span { color: var(--gold); }

nav { display: flex; gap: 28px; align-items: center; }

nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2440 60%, #1a3a5c 100%);
  color: var(--white);
  padding: 90px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
}

.trust-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.trust-item .icon { font-size: 1.1rem; }

/* ── SECTION COMMONS ── */
section { padding: 72px 24px; }

.section-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

/* ── PRODUCTS ── */
.products-section { background: var(--cream); }

.products-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(27,58,92,0.15);
}

.product-img {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #f0ebe0 0%, #e8e0d0 100%);
}

.product-body { padding: 18px; }

.product-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: #8a6e2a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.product-price small {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
  display: block;
}

.btn-add {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-add:hover { background: var(--gold); color: var(--navy); }

/* ── CATEGORIES ── */
.categories-section { background: var(--white); }

.categories-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.cat-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 28px 16px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: 1.5px solid var(--border);
}

.cat-card:hover {
  background: var(--navy);
  transform: translateY(-3px);
}

.cat-card:hover .cat-name { color: var(--white); }
.cat-card:hover .cat-icon { filter: brightness(10); }

.cat-icon { font-size: 2.4rem; margin-bottom: 10px; }

.cat-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s;
}

/* ── WHY US ── */
.why-section { background: var(--navy); color: var(--white); }

.why-section .section-title { color: var(--white); }
.why-section .section-sub { color: rgba(255,255,255,0.65); }

.why-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 30px 22px;
  text-align: center;
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ── CORPORATE BANNER ── */
.corporate-section {
  background: linear-gradient(135deg, #f5f0e8 0%, #ede7d9 100%);
  padding: 64px 24px;
}

.corporate-inner {
  max-width: 900px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.corporate-text { flex: 1; min-width: 260px; }

.corporate-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.corporate-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.corporate-img {
  flex: 1;
  min-width: 220px;
  text-align: center;
  font-size: 6rem;
}

/* ── FOOTER ── */
footer {
  background: #0d1f36;
  color: rgba(255,255,255,0.6);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand .logo-text { font-size: 1.2rem; margin-bottom: 10px; display: block; }

.footer-desc {
  font-size: 0.84rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-contact { font-size: 0.84rem; line-height: 2; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 0.84rem;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  font-size: 0.78rem;
  line-height: 1.7;
}

.disclaimer-box {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.disclaimer-box strong { color: var(--gold-light); }

.footer-copy { text-align: center; color: rgba(255,255,255,0.3); font-size: 0.76rem; }

/* ── AWARENESS PAGE ── */
.awareness-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d1f36 0%, #1B3A5C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.awareness-card {
  background: var(--white);
  border-radius: 20px;
  max-width: 620px;
  width: 100%;
  padding: 52px 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.awareness-icon { font-size: 4rem; margin-bottom: 20px; }

.awareness-card h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

.awareness-card .subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.alert-box {
  background: #fff8e1;
  border: 1.5px solid #f0c040;
  border-radius: 10px;
  padding: 18px 22px;
  text-align: left;
  margin-bottom: 28px;
}

.alert-box h3 {
  color: #7a5c00;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.alert-box ul {
  padding-left: 18px;
  font-size: 0.87rem;
  color: #5a4200;
  line-height: 1.8;
}

.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
  text-align: left;
}

.tip-item {
  background: var(--cream);
  border-radius: 10px;
  padding: 16px;
}

.tip-item .tip-icon { font-size: 1.4rem; margin-bottom: 6px; }

.tip-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.tip-item p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.awareness-footer-note {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 10px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  nav { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .awareness-card { padding: 36px 24px; }
  .trust-inner { gap: 20px; }
}
