/* ===========================
   NNOBOA COLOR SYSTEM
=========================== */

:root {
  --midnight-blue: #0B1C2D;
  --sand: #D8CFC4;
  --copper: #C47A2C;
  --off-white: #F5F5F5;
}

/* ===========================
   NAVBAR
=========================== */

.nnoboa-navbar {
  background-color: var(--midnight-blue);
  padding: 18px 0;
}

.navbar-brand {
  color: var(--sand);
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.navbar-brand:hover {
  color: var(--sand);
}

/* Nav links */
.nnoboa-navbar .nav-link {
  color: var(--sand);
  font-weight: 500;
  margin: 0 10px;
}

.nnoboa-navbar .nav-link:hover {
  color: var(--off-white);
}

/* Dropdown */
.dropdown-menu {
  background-color: var(--midnight-blue);
  border: none;
}

.dropdown-item {
  color: var(--sand);
}

.dropdown-item:hover {
  background-color: transparent;
  color: var(--copper);
}

/* CTA Button */
.nnoboa-btn-primary {
  background-color: var(--copper);
  color: var(--midnight-blue);
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
}

.nnoboa-btn-primary:hover {
  background-color: #b66e25;
  color: var(--midnight-blue);
}

/* Mobile toggle */
.navbar-toggler {
  border-color: var(--sand);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ===========================
   HERO SECTION
=========================== */

.nnoboa-hero {
  background-color: var(--midnight-blue);
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-title {
  color: var(--off-white);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-title span {
  color: var(--copper);
}

.hero-subtext {
  color: var(--sand);
  font-size: 1.1rem;
  margin-top: 20px;
  max-width: 520px;
}

/* CTA Buttons */
.nnoboa-btn-secondary {
  background: transparent;
  border: 1px solid var(--sand);
  color: var(--sand);
  padding: 10px 20px;
  border-radius: 6px;
}

.nnoboa-btn-secondary:hover {
  border-color: var(--copper);
  color: var(--copper);
}

/* Metric Card */
.hero-metric-card {
  background-color: var(--off-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero-metric-card h6 {
  color: var(--midnight-blue);
  font-weight: 600;
  margin-bottom: 20px;
}

.metric {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: var(--midnight-blue);
}

.metric.highlight strong {
  color: var(--copper);
  font-size: 1.2rem;
}

/* =========================
   VALUE PILLARS SECTION
   ========================= */

.value-pillars {
  background-color: #f5efe6; /* Sand */
  padding: 80px 20px;
}

.section-header h2 {
  font-size: 2.4rem;
  color: #0b1f3b; /* Midnight Blue */
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  color: #444;
}

/* Grid Layout */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Tablet */
@media (max-width: 992px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}


/* Individual Pillar Card */
.pillar-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 35px 30px;
  border-top: 4px solid #b87333; /* Copper */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pillar-card h4 {
  font-size: 1.3rem;
  color: #0b1f3b;
  font-weight: 600;
  margin-bottom: 15px;
}

.pillar-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* =========================
   HOW NNOBOA WORKS SECTION
   ========================= */

.how-it-works {
  background-color: #0b1f3b; /* Midnight Blue */
  padding: 90px 20px;
  color: #ffffff;
}

.how-it-works .section-header h2 {
  color: #ffffff;
}

.how-it-works .section-header p {
  color: #d6d6d6;
  max-width: 720px;
  margin: 0 auto 60px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* Step Card */
.step-card {
  background-color: rgba(255, 255, 255, 0.06);
  padding: 35px 25px;
  border-radius: 10px;
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  background-color: rgba(255, 255, 255, 0.1);
}

.step-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #b87333; /* Copper */
  display: block;
  margin-bottom: 15px;
}

.step-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.step-card p {
  font-size: 0.95rem;
  color: #dddddd;
  line-height: 1.6;
}

/* Tablet */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   WHY NNOBOA SECTION
   ========================= */

.why-nnoboa {
  background-color: #ffffff;
  padding: 90px 20px;
}

.why-nnoboa .section-header h2 {
  color: #0b1f3b;
}

.why-nnoboa .section-header p {
  max-width: 760px;
  margin: 0 auto 70px;
  font-size: 1.05rem;
  color: #444;
}

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Cards */
.comparison-card {
  padding: 40px 35px;
  border-radius: 12px;
}

.old-way {
  background-color: #f5efe6; /* Sand */
}

.new-way {
  background-color: #0b1f3b; /* Midnight Blue */
  color: #ffffff;
}

.comparison-card h4 {
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.old-way h4 {
  color: #0b1f3b;
}

.new-way h4 {
  color: #ffffff;
}

/* Lists */
.comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-card li {
  font-size: 0.95rem;
  margin-bottom: 14px;
  position: relative;
  padding-left: 22px;
}

/* Bullet Indicators */
.old-way li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #b87333;
}

.new-way li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b87333;
  font-weight: bold;
}

/* CTA Text */
.why-cta {
  margin-top: 60px;
}

.why-cta p {
  font-size: 1.1rem;
  color: #0b1f3b;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    padding: 30px 25px;
  }
}

/* =========================
   FEATURED SERVICES SECTION
   ========================= */

.featured-services {
  background-color: #f5efe6; /* Sand */
  padding: 90px 20px;
}

.featured-services .section-header h2 {
  color: #0b1f3b;
}

.featured-services .section-header p {
  max-width: 760px;
  margin: 0 auto 60px;
  color: #444;
  font-size: 1.05rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}


.service-card {
  background: #0f253d;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Service Card */
.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 35px 30px;
  border-bottom: 4px solid #b87333; /* Copper */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card h4 {
  font-size: 1.25rem;
  color: #0b1f3b;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #b87333;
  text-decoration: none;
}

.service-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   SIMULATION TEASER
   ========================= */

.simulation-teaser {
  background-color: #0b1f3b; /* Midnight Blue */
  padding: 100px 20px;
  color: #ffffff;
}

.simulation-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Text */
.simulation-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.simulation-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #dddddd;
  margin-bottom: 25px;
}

.simulation-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.simulation-text li {
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
}

.simulation-text li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #b87333; /* Copper */
}

/* CTA Button */
.btn-simulation {
  display: inline-block;
  padding: 14px 28px;
  background-color: #b87333;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-simulation:hover {
  background-color: #a4632a;
}

/* Mock Dashboard */
.mock-dashboard {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.25);
}

.mock-dashboard p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.mock-dashboard span {
  font-size: 0.85rem;
  color: #cccccc;
}

/* Responsive */
@media (max-width: 992px) {
  .simulation-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.nnoboa-footer {
  background: #0b1c2d; /* Midnight Blue */
  color: #f5f2eb; /* Sand */
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #d6b36a; /* Copper */
  text-transform: uppercase;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #f5f2eb;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #d6b36a;
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 32px 0 16px;
}

.footer-mini-link {
  color: #f5f2eb;
  text-decoration: none;
  margin-left: 8px;
}

.footer-mini-link:hover {
  color: #d6b36a;
}

.contact-teaser {
  background: linear-gradient(135deg, #0b1c2d, #112a42);
  padding: 50px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-teaser h3 {
  color: #f5f2eb;
  margin-bottom: 8px;
}

.contact-teaser p {
  color: #d6cbb8;
  font-size: 15px;
  max-width: 650px;
}

.contact-teaser .btn-success {
  background: #25d366;
  border: none;
}

.contact-teaser .btn-warning {
  background: #b87333;
  border: none;
  color: #fff;
}

.page-hero {
  background: #0b1c2d;
  padding: 80px 20px;
  text-align: center;
  color: #f5f2eb;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.donate-purpose,
.donate-methods,
.donate-contact,
.donate-cta {
  padding: 60px 20px;
}

.donate-purpose p {
  max-width: 800px;
}

.impact-list {
  margin-top: 24px;
  padding-left: 0;
  list-style: none;
}

.impact-list li {
  margin-bottom: 10px;
}

.donate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.donate-card {
  background: #112a42;
  padding: 24px;
  border-radius: 12px;
  border-top: 4px solid #b87333;
}

.donate-card h3 {
  margin-top: 0;
  color: #e6d3a3;
}

.donate-contact {
  background: #0b1c2d;
  color: #f5f2eb;
  text-align: center;
}

.contact-box {
  margin-top: 16px;
  font-size: 18px;
}

.donate-cta {
  text-align: center;
  background: #112a42;
}

.donate-cta h2 {
  margin-bottom: 10px;
  color: #e6d3a3;
}

.donate-card p {
  color: #fff
}

.insights-section {
  padding: 80px 20px;
}

.featured {
  background: #112a42;
  padding: 36px;
  border-radius: 16px;
  margin-bottom: 60px;
  border-left: 6px solid #b87333;
}

.insight-card {
  background: #112a42;
  padding: 26px;
  border-radius: 14px;
  transition: transform 0.2s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
}

.insight-tag {
  display: inline-block;
  font-size: 12px;
  background: rgba(184, 115, 51, 0.15);
  color: #d6b36a;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.insight-card h2,
.insight-card h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #f5f2eb;
}

.insight-excerpt {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 14px;
  color: #cccccc;
}


.read-more,
.insight-card a {
  color: #b87333;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover,
.insight-card a:hover {
  text-decoration: underline;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Responsive */
@media (max-width: 1000px) {
  .insights-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

.hero-metric-card {
  /* background: #112a42; */
  padding: 28px;
  border-radius: 16px;
  border-left: 4px solid #b87333;
}

.sim-note {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 18px;
}

.sim-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.sim-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.sim-list li.profit strong {
  color: #e6d3a3;
}

.badge-focus {
  background: #b87333;
  /* color: #fff; */
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

