:root {
  --primary: #1a6b3c;
  --primary-dark: #0f4425;
  --primary-light: #e8f5ee;
  --accent: #f4a61d;
  --blue: #1a4a6b;
  --text: #1a1a2e;
  --text-muted: #6c757d;
  --border: #e8e9ea;
  --white: #ffffff;
  --bg-light: #f8f9fa;
}

* { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text); }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }

/* Topbar */
.topbar { background: var(--primary-dark); }

/* Navbar */
.navbar { border-bottom: 2px solid var(--primary); }
.nav-link { font-weight: 500; color: var(--text) !important; transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

/* Section Styling */
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-title { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }

/* Hero */
.hero-section { height: 90vh; min-height: 550px; }
.hero-slide { height: 90vh; min-height: 550px; background-size: cover; background-position: center; position: relative; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,40,20,0.75) 0%, rgba(10,40,20,0.4) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 650px; }
.hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: white; font-weight: 700; }
.hero-content .lead { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin: 1rem 0 2rem; }
.hero-badge { background: var(--accent); color: #000; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 15px; display: inline-block; }
.text-highlight { color: var(--accent); }

/* Stats Bar */
.stats-bar { background: var(--primary); }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: white; }
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

/* Category Cards */
.category-card { border-radius: 12px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; background: white; }
.category-card:hover { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.cat-image-wrap { position: relative; overflow: hidden; height: 200px; }
.cat-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.category-card:hover .cat-img { transform: scale(1.05); }
.cat-overlay { position: absolute; inset: 0; background: rgba(10,40,20,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.category-card:hover .cat-overlay { opacity: 1; }
.cat-icon { width: 45px; height: 45px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; margin-bottom: 8px; margin-top: -22px; }
.cat-link { color: var(--primary); font-weight: 600; text-decoration: none; font-size: 0.9rem; }

/* Product Cards */
.product-card { border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); transition: all 0.3s; background: white; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.prod-img-wrap { position: relative; overflow: hidden; height: 200px; }
.prod-img { width: 100%; height: 100%; object-fit: cover; }
.prod-cat-badge { position: absolute; top: 10px; left: 10px; background: var(--primary); color: white; font-size: 0.7rem; padding: 3px 10px; border-radius: 20px; }
.prod-featured-badge { position: absolute; top: 10px; right: 10px; background: var(--accent); color: #000; font-size: 0.7rem; padding: 3px 10px; border-radius: 20px; }
.prod-title { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; }

/* Specs */
.specs-table { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.spec-row { display: flex; padding: 6px 12px; border-bottom: 1px solid var(--border); font-size: 0.8rem; }
.spec-row:last-child { border-bottom: none; }
.spec-key { color: var(--text-muted); min-width: 100px; }
.spec-val { font-weight: 500; }
.spec-mini-list { list-style: none; padding: 0; margin: 0; font-size: 0.78rem; }
.spec-mini-list li { color: var(--text-muted); padding: 2px 0; }

/* Specs Detail */
.specs-detail-table { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.spec-detail-row { display: flex; border-bottom: 1px solid var(--border); }
.spec-detail-row:last-child { border-bottom: none; }
.spec-detail-key { background: var(--bg-light); padding: 10px 15px; min-width: 180px; font-weight: 600; font-size: 0.85rem; border-right: 1px solid var(--border); }
.spec-detail-val { padding: 10px 15px; font-size: 0.85rem; }

/* Why Us */
.why-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
.why-icon { width: 40px; height: 40px; background: var(--primary-light); color: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Certifications */
.cert-card { background: white; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); transition: all 0.3s; border: 1px solid var(--border); }
.cert-card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.cert-icon { font-size: 2rem; color: var(--accent); }

/* Global Presence */
.country-pill { display: inline-block; background: rgba(255,255,255,0.15); color: white; padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; border: 1px solid rgba(255,255,255,0.2); }
.country-card { display: flex; align-items: center; gap: 10px; background: white; border-radius: 10px; padding: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border: 1px solid var(--border); transition: all 0.2s; }
.country-card:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.1); transform: translateY(-2px); }
.country-flag { font-size: 1.8rem; }
.region-heading { font-family: 'Inter', sans-serif; color: var(--primary); font-weight: 700; padding-bottom: 8px; border-bottom: 2px solid var(--primary-light); }

/* Contact */
.contact-info-item { display: flex; align-items: flex-start; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.ci-icon { width: 44px; height: 44px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }

/* Mission Cards */
.mission-card { background: white; border-radius: 12px; padding: 30px; box-shadow: 0 2px 15px rgba(0,0,0,0.06); height: 100%; border-top: 4px solid var(--primary); }
.mission-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }

/* Process Timeline */
.process-step { padding: 20px 15px; }
.process-num { width: 40px; height: 40px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 10px; }
.process-icon { font-size: 1.5rem; color: var(--accent); margin-bottom: 10px; }

/* Quality */
.quality-checklist { list-style: none; padding: 0; }
.quality-checklist li { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.cert-detail-card { background: white; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); overflow: hidden; border-left: 4px solid var(--primary); }
.cert-detail-header { display: flex; align-items: center; gap: 15px; background: var(--bg-light); padding: 15px 20px; }
.cert-detail-icon { font-size: 1.8rem; color: var(--accent); }
.test-card { display: flex; gap: 15px; align-items: flex-start; background: white; border-radius: 10px; padding: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.test-icon { font-size: 1.8rem; min-width: 40px; }

/* About Stats */
.about-stat-box { background: var(--bg-light); border-radius: 10px; padding: 20px; text-align: center; }

/* CTA Box */
.cta-box { background: var(--bg-light); border-radius: 15px; padding: 50px 30px; border: 2px solid var(--border); }

/* Info Chips */
.info-chip { display: flex; align-items: center; gap: 12px; background: var(--bg-light); border-radius: 10px; padding: 12px 15px; }
.info-chip i { font-size: 1.3rem; }
.info-chip small { display: block; color: var(--text-muted); font-size: 0.75rem; }

/* Page Hero */
.page-hero { padding: 60px 0; }

/* Footer */
.footer-main { background: #0f1f17; color: rgba(255,255,255,0.8); }
.footer-heading { color: white; font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 15px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { padding: 4px 0; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; gap: 10px; padding: 6px 0; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-contact i { color: var(--accent); width: 15px; margin-top: 3px; }
.social-icon { width: 34px; height: 34px; background: rgba(255,255,255,0.1); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background 0.2s; }
.social-icon:hover { background: var(--primary); color: white; }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 25px; left: 25px; width: 56px; height: 56px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; text-decoration: none; box-shadow: 0 4px 15px rgba(37,211,102,0.4); z-index: 9999; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 4px 15px rgba(37,211,102,0.4)} 50%{box-shadow:0 4px 25px rgba(37,211,102,0.7)} }

/* Back to Top */
.back-to-top { position: fixed; bottom: 90px; right: 25px; width: 44px; height: 44px; background: var(--primary); color: white; border: none; border-radius: 50%; display: none; align-items: center; justify-content: center; cursor: pointer; z-index: 999; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.back-to-top.show { display: flex; }

/* Global Stats */
.global-stat { background: white; border-radius: 12px; padding: 25px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.global-stat h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 5px; }

/* Trust Badges */
.trust-badge { background: white; border-radius: 10px; padding: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.trust-badge i { font-size: 2rem; }

/* Quote Card */
.quote-form-card { border: 1px solid var(--border); }

/* Google Translate */
#google_translate_element select { border-radius: 4px; border: 1px solid rgba(255,255,255,0.3); background: transparent; color: white; font-size: 0.8rem; }

/* Responsive */
@media(max-width: 768px) {
  .hero-section { height: 70vh; }
  .hero-slide { height: 70vh; }
  .section-title { font-size: 1.5rem; }
  .stat-number { font-size: 2rem; }
  .whatsapp-float { bottom: 15px; left: 15px; width: 50px; height: 50px; font-size: 1.4rem; }
}