/* BENON TRADERS - Custom Styles */

/* Color system (Option B: Premium Blue-Gold) */
:root {
  --bt-navy: #002b5b;
  --bt-navy-dark: #001b3b;
  --bt-gold: #daa520;
  --bt-gold-soft: #f3d38a;
  --bt-light-bg: #f5f6fa;
  --bt-body: #222222;
  --bt-muted: #6c757d;
}

/* General resets */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--bt-body);
  background-color: #ffffff;
  scroll-behavior: smooth;
}

/* Navbar */
#mainNavbar {
  background-color: var(--bt-navy);
}

.navbar-brand {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

/* UNIFIED LOGO RULE */
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 32px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    height: 28px;
  }
}

/* Navbar links */
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #ffffff;
}

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

/* Custom buttons */
.btn-primary {
  background-color: var(--bt-navy);
  border-color: var(--bt-navy);
}

.btn-primary:hover {
  background-color: var(--bt-navy-dark);
  border-color: var(--bt-navy-dark);
}

.btn-gold {
  background-color: var(--bt-gold);
  border-color: var(--bt-gold);
  color: #000;
}

.btn-gold:hover {
  background-color: #c79218;
  border-color: #c79218;
  color: #000;
}

/* Utility text colors */
.text-gold { color: var(--bt-gold); }
.text-light-50 { color: rgba(255, 255, 255, 0.5); }
.text-light-75 { color: rgba(255, 255, 255, 0.75); }

/* Sections */
.section-padding {
  padding: 80px 0;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bt-gold);
}

.section-title {
  font-weight: 700;
}

/* HERO */
.hero-section {
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 60px;
  background:
    radial-gradient(circle at top left, rgba(218, 165, 32, 0.18), transparent 60%),
    radial-gradient(circle at bottom right, rgba(0, 43, 91, 0.4), #020916);
  color: #ffffff;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw + 1rem, 3.1rem);
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.02rem;
  max-width: 620px;
}

.hero-kicker {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bt-gold-soft);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  max-height: 420px;
  width: 100%;
  object-fit: cover;
}

.hero-stats-card {
  position: absolute;
  right: 6%;
  bottom: 6%;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  font-size: 0.86rem;
}

.hero-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background-color: var(--bt-navy);
  color: #ffffff;
}

.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bt-navy); /* Changed from bt-muted */
}

.stat-value {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bt-navy-dark); /* Ensures high contrast */
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background-color: var(--bt-light-bg);
  font-size: 0.78rem;
    color: var(--bt-navy-dark); /* Ensures high contrast */

}

/* ABOUT */
.about-card {
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-list li {
  margin-bottom: 0.6rem;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 43, 91, 0.07);
  color: var(--bt-navy);
}

/* CATEGORY CARDS */
.category-card { border: none; }

.category-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

/* SOLUTIONS */
.solution-pill {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #ffffff;
}

.solution-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(218, 165, 32, 0.12);
  color: var(--bt-gold);
}

/* STEPS */
.steps-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.step-item {
  background-color: var(--bt-light-bg);
  border-radius: 0.9rem;
  padding: 0.85rem 0.9rem;
}

.step-number {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bt-gold);
  margin-bottom: 0.25rem;
}

/* MARKETS */
.market-card {
  padding: 1.5rem 1.4rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #ffffff;
}

.market-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 43, 91, 0.08);
  color: var(--bt-navy);
  margin-bottom: 0.7rem;
}

.highlight-box {
  padding: 1.2rem 1.4rem;
  border-radius: 1rem;
  background-color: #020916;
  color: #ffffff;
}

/* CONTACT */
#contact { overflow: hidden; }

.contact-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(218, 165, 32, 0.22), transparent 60%),
              radial-gradient(circle at bottom right, rgba(5, 79, 145, 0.7), transparent 50%);
  opacity: 0.7;
  pointer-events: none;
}

.contact-form-card { position: relative; z-index: 1; }

.contact-info-block { position: relative; z-index: 1; }

/* FOOTER */
.footer { font-size: 0.85rem; }

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* RESPONSIVE FIXES */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 100px;
    text-align: left;
  }

  .hero-stats-card {
    position: static;
    margin-top: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 64px 0;
  }

  .hero-title {
    font-size: 2rem;
  }
}
