:root {
  --primary-green: #0a6b2d;
  --dark-green: #043816;
  --accent-gold: #d4a843;
  --accent-red: #d32f2f;
  --bg-dark: #071224;
  --bg-card: #0f1f38;
  --bg-light: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP BAR */
.top-bar {
  background: var(--bg-dark);
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 20px;
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-socials {
  display: flex;
  gap: 15px;
}

.top-socials a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.top-socials a:hover {
  color: var(--accent-gold);
}

/* NAVBAR */
#navbar {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark-green);
  line-height: 1.2;
}

.brand-tagline {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-red);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-green);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: white;
  padding: 80px 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 18, 36, 0.95), rgba(4, 56, 22, 0.85));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 168, 67, 0.2);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.highlight-gold {
  color: var(--accent-gold);
}

.highlight-green {
  color: var(--primary-green);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 30px;
}

.hero-cta-group {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-gold {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

.btn-gold:hover {
  background: #c29532;
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
}

.btn-outline-light:hover {
  background: white;
  color: var(--bg-dark);
}

.hero-trust-bar {
  display: flex;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--accent-gold);
}

/* HERO PROFILE CARD */
.hero-profile-card {
  background: rgba(15, 31, 56, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.card-logo {
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  padding: 4px;
}

.badge-brand {
  font-size: 0.75rem;
  background: var(--accent-red);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.proprietor-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.proprietor-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.proprietor-info h4 {
  font-size: 1.1rem;
  color: white;
}

.proprietor-info .role {
  font-size: 0.85rem;
  color: var(--accent-gold);
}

.proprietor-info .loc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.quick-contact-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-contact-pills a {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s;
}

.quick-contact-pills a:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* SECTIONS COMMON */
.section {
  padding: 80px 0;
}

.sub-heading {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-green);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.sub-heading.light {
  color: var(--accent-gold);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-title.light {
  color: white;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.align-center {
  align-items: center;
}

/* ABOUT */
.business-card-wrap {
  position: relative;
}

.biz-card-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.main-card {
  border: 3px solid white;
}

.sub-card {
  margin-top: 15px;
  border: 3px solid white;
}

.feature-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 25px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-dark);
}

.check-item i {
  color: var(--primary-green);
}

/* PRODUCTS */
.products-section {
  background: var(--bg-dark);
  color: white;
}

.products-banner-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: 30px 0 50px;
  height: 320px;
}

.products-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay-badge {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7, 18, 36, 0.9);
  color: var(--accent-gold);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 700;
  border: 1px solid var(--accent-gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 16px;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card.featured {
  border: 2px solid var(--accent-gold);
  position: relative;
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-red);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
}

.product-icon-wrap {
  font-size: 3rem;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

.product-footer .origin {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.inquire-btn {
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
}

/* TRADE NETWORK */
.corridor-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 20px;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.corridor-node {
  text-align: center;
}

.country-flag {
  font-size: 2rem;
  display: block;
}

.corridor-node strong {
  display: block;
  font-size: 0.95rem;
}

.corridor-node small {
  color: #64748b;
  font-size: 0.75rem;
}

.corridor-arrow {
  font-size: 1.5rem;
  color: var(--primary-green);
}

.trade-map-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CREDENTIALS */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.credential-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.cred-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.logo-contain {
  object-fit: contain;
}

/* CONTACT */
.contact-section {
  background: var(--bg-dark);
  color: white;
}

.contact-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.c-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.c-icon {
  width: 45px;
  height: 45px;
  background: rgba(212, 168, 67, 0.15);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.c-item strong {
  display: block;
  color: white;
  font-size: 0.95rem;
}

.c-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.contact-form-side {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.form-title {
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: white;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* FOOTER */
.footer {
  background: #040914;
  color: var(--text-muted);
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
}

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

.footer-brand-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 45px;
}

.footer-brand-info h3 {
  color: white;
  font-size: 1.1rem;
}

.footer-brand-info p {
  font-size: 0.75rem;
  color: var(--accent-gold);
}

.float-wa {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
}

@media (max-width: 900px) {
  .hero-grid, .grid-2col, .contact-box-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.3rem; }
  .nav-menu { display: none; }
  .top-info span:nth-child(3) { display: none; }
}
