/* =============================================
   BENTONVILLE MERCHANTS INTERNATIONAL
   Shared Stylesheet
   ============================================= */

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

:root {
  --green:       #4E9A1A;
  --green-dark:  #3A7214;
  --green-light: #6BBE27;
  --navy:        #0F1F35;
  --navy-mid:    #1A3050;
  --navy-light:  #243D5C;
  --white:       #FFFFFF;
  --off-white:   #F8FAFB;
  --gray:        #E8EDF2;
  --text:        #1A2535;
  --text-muted:  #5A6B7C;
  --placeholder: #CDD5DE;
  --radius:      10px;
  --shadow:      0 4px 24px rgba(15,31,53,0.10);
  --shadow-lg:   0 12px 48px rgba(15,31,53,0.16);
  --max-w:       1100px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,31,53,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,190,39,0.15);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 44px; height: 44px; flex-shrink: 0;
}
.logo-mark img { width: 44px; height: 44px; object-fit: contain; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text span:first-child { font-size: 13px; font-weight: 700; color: white; letter-spacing: 0.3px; }
.logo-text span:last-child  { font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.45); letter-spacing: 1.2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500;
  padding: 8px 10px; border-radius: 6px; transition: all 0.2s;
}
.nav-links a:hover         { color: white; background: rgba(255,255,255,0.08); }
.nav-links a.active        { color: white; }
.nav-links a.nav-cta       { background: var(--green); color: white; font-weight: 600; }
.nav-links a.nav-cta:hover { background: var(--green-dark); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 130px 32px 72px;
  text-align: center;
}
.page-hero-label {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green-light);
  border: 1px solid rgba(107,190,39,0.3); padding: 5px 14px;
  border-radius: 50px; margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 54px); font-weight: 900; color: white;
  letter-spacing: -1px; line-height: 1.1; margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,0.65); max-width: 540px;
  margin: 0 auto; line-height: 1.65;
}

/* ── SECTIONS ── */
section { padding: 88px 32px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--green-dark); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: var(--navy);
  line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 14px;
}
.section-sub { font-size: 16px; color: var(--text-muted); line-height: 1.65; max-width: 540px; }
.section-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green); color: white; text-decoration: none;
  font-weight: 700; font-size: 15px; padding: 14px 30px;
  border-radius: var(--radius); transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(107,190,39,0.3); display: inline-block;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--navy); text-decoration: none;
  font-weight: 600; font-size: 14px; padding: 12px 24px;
  border-radius: var(--radius); border: 1.5px solid var(--gray);
  transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--navy); }

/* ── PLACEHOLDER HELPERS ── */
.placeholder-img {
  background: var(--placeholder);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.placeholder-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(107,190,39,0.12); color: var(--green-dark);
  padding: 3px 10px; border-radius: 4px; margin-bottom: 8px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 72px 32px; text-align: center;
}
.cta-banner h2 {
  font-size: clamp(24px, 3.5vw, 40px); font-weight: 900; color: white;
  letter-spacing: -0.5px; margin-bottom: 12px; line-height: 1.15;
}
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn-white {
  background: white; color: var(--green-dark); text-decoration: none;
  font-weight: 800; font-size: 15px; padding: 16px 36px;
  border-radius: var(--radius); transition: all 0.2s; display: inline-block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 56px 32px 28px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.28); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: var(--green-light); text-decoration: none; font-size: 12px; }

/* ── HAMBURGER BUTTON ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-burger:hover { background: rgba(255,255,255,0.08); }
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: white; border-radius: 2px;
  transition: all 0.25s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
}
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(15,31,53,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(107,190,39,0.2);
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 12px 16px;
    font-size: 15px; border-radius: 8px;
  }
  .nav-links a.nav-cta {
    margin-top: 8px; text-align: center;
    padding: 13px 16px;
  }
}
@media (max-width: 600px) {
  section { padding: 64px 20px; }
  .page-hero { padding: 110px 20px 56px; }
  .nav-inner { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}
