/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy: #0a1628;
  --navy-light: #132238;
  --gold: #c9a961;
  --gold-light: #e0c98f;
  --gold-dark: #a88a42;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-400: #adb5bd;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,169,97,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-full { width: 100%; }
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 20px;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,169,97,0.2);
  transition: all 0.3s ease;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { color: var(--gold); font-size: 24px; }
.logo-text { color: var(--white); font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; letter-spacing: 1px; }
.logo-sub { color: var(--gold); font-size: 14px; display: block; letter-spacing: 3px; }
.nav-menu { display: flex; gap: 30px; }
.nav-menu a {
  color: var(--gray-200);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-menu a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 15px; }
.lang-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}
.lang-btn:hover { background: var(--gold); color: var(--navy); }
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold-light); }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a2d4a 100%);
  overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,169,97,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,97,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a961' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; color: var(--white); }
.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--gray-200);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; margin-bottom: 60px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 700px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}
.stat-label { font-size: 13px; color: var(--gray-400); margin-top: 4px; }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-gold { background: linear-gradient(135deg, #faf6ed 0%, #f5edd8 100%); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.section-dark .section-title { color: var(--white); }
.section-title::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
}
.section-subtitle { font-size: 17px; color: var(--gray-600); max-width: 600px; margin: 0 auto; }
.section-dark .section-subtitle { color: var(--gray-400); }

/* ===== Categories ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 1px solid var(--gray-200);
}
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.category-image {
  height: 200px;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.category-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(201,169,97,0.2), transparent 60%);
}
.category-content { padding: 24px; }
.category-content h3 { font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.category-content p { font-size: 14px; color: var(--gray-600); margin-bottom: 16px; }
.category-link {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.category-link:hover { gap: 10px; }

/* ===== Products ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--navy-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,169,97,0.15);
  transition: all 0.3s ease;
}
.product-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.product-image {
  height: 180px;
  background: linear-gradient(135deg, #1a2d4a 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  position: relative;
}
.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.product-info { padding: 18px; }
.product-info h3 { font-size: 15px; color: var(--white); margin-bottom: 10px; line-height: 1.4; min-height: 42px; }
.product-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.spec-tag {
  background: rgba(201,169,97,0.15);
  color: var(--gold-light);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
}
.product-moq { font-size: 13px; color: var(--gray-400); margin-bottom: 14px; }
.product-moq strong { color: var(--gold); }
.product-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.product-btn:hover { background: var(--gold); color: var(--navy); }

/* ===== Features / Why Us ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid var(--gray-200);
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.feature-icon { font-size: 48px; margin-bottom: 20px; }
.feature-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ===== West Africa ===== */
.wa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.wa-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.wa-icon { font-size: 40px; margin-bottom: 16px; }
.wa-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.wa-card p { font-size: 13px; color: var(--gray-600); }
.wa-countries {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.wa-countries > span:first-child { font-weight: 600; color: var(--navy); margin-right: 5px; }
.country-tag {
  background: var(--navy);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* ===== Wholesale Policy ===== */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.policy-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all 0.3s;
}
.policy-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.policy-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 12px;
}
.policy-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.policy-card p { font-size: 14px; color: var(--gray-600); }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--navy-light);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(201,169,97,0.15);
}
.testimonial-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.testimonial-text { color: var(--gray-200); font-size: 14px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author strong { display: block; color: var(--gold); font-size: 15px; }
.testimonial-author span { color: var(--gray-400); font-size: 13px; }

/* ===== Contact ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}
.contact-info h3 { font-size: 24px; color: var(--navy); margin-bottom: 30px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon { font-size: 24px; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--navy); font-size: 14px; margin-bottom: 4px; }
.contact-item p { color: var(--gray-600); font-size: 14px; }
.contact-form-wrapper {
  background: var(--gray-50);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.15);
}

/* ===== Footer ===== */
.footer { background: var(--navy); color: var(--gray-400); padding: 70px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col p { font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: var(--gold); font-size: 16px; margin-bottom: 20px; font-family: 'Inter', sans-serif; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--gray-400); font-size: 14px; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li { font-size: 14px; margin-bottom: 12px; }
.footer-certs { display: flex; gap: 10px; margin-top: 16px; }
.cert-badge {
  background: rgba(201,169,97,0.15);
  color: var(--gold-light);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(201,169,97,0.3);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid, .wa-grid { grid-template-columns: repeat(2, 1fr); }
  .policy-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 20px; gap: 16px; border-bottom: 1px solid rgba(201,169,97,0.2); }
  .nav-menu.active { display: flex; }
  .hamburger { display: block; }
  .nav-cta { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .categories-grid, .products-grid, .features-grid, .wa-grid, .policy-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 60px 0; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}
