/* ================================
   Google Sans Self-Hosted Fonts
   ================================ */
@font-face {
  font-family: 'Google Sans';
  src: url('assets/fonts/GoogleSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('assets/fonts/GoogleSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('assets/fonts/GoogleSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('assets/fonts/GoogleSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('assets/fonts/GoogleSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('assets/fonts/GoogleSans-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('assets/fonts/GoogleSans-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('assets/fonts/GoogleSans-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ================================
   Brand Colors
   ================================ */
:root {
  --brand-dark: #023909;
  /* deep green */
  --brand-mid: #104907;
  /* secondary dark green */
  --accent: #4eaf45;
  /* bright green highlight */
  --muted-gray: #6c757d;
  --light-bg: #f7fbf7;
}

/* ================================
   Global Base
   ================================ */
html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Google Sans', Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #ffffff;
  color: #212529;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* ================================
   Navbar / Header
   ================================ */
.header-nav {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(2, 57, 9, 0.04);
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
  position: relative;
}

.header-nav .navbar-brand span {
  color: var(--brand-dark);
  font-weight: 800;
  letter-spacing: 0.1px;
  font-size: 1rem;
}

.header-nav .nav-link {
  color: #263238;
  padding: 0.6rem 0.9rem;
  transition: color .12s ease, transform .08s ease;
  font-size: 0.98rem;
}

.header-nav .nav-link:hover,
.header-nav .nav-link:focus {
  color: var(--accent);
  transform: translateY(-1px);
}

.header-nav .btn-cta {
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 0.45rem 1rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(78, 175, 69, 0.12);
  transition: transform .12s ease, box-shadow .12s ease;
}

.header-nav .btn-cta:hover,
.header-nav .btn-cta:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(16, 73, 7, 0.16);
  color: #fff;
}

.header-nav .dropdown-menu {
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(6, 32, 17, 0.08);
  border: 1px solid rgba(2, 57, 9, 0.04);
}

.header-nav .dropdown-item {
  color: #21302a;
  padding: 0.6rem 1rem;
}

.header-nav .dropdown-item:hover {
  background: rgba(78, 175, 69, 0.06);
  color: var(--brand-mid);
}

.header-nav .navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  background-color: transparent;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 0.3s ease;
}

.header-nav .navbar-toggler:hover {
  background-color: rgba(78, 175, 69, 0.1);
}

.header-nav .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(78, 175, 69, 0.25);
  outline: none;
}

.header-nav .navbar-toggler-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
}

.header-nav .navbar-toggler-icon::before,
.header-nav .navbar-toggler-icon::after,
.header-nav .navbar-toggler-icon span {
  content: '';
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--brand-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.header-nav .navbar-toggler-icon span {
  width: 100%;
}

/* Animated hamburger to X transformation */
.header-nav .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg) translate(7px, 7px);
}

.header-nav .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-nav .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
  opacity: 0;
  transform: scaleX(0);
}

/* Hide navbar toggler on large screens (navbar-expand-lg) */
@media (min-width: 992px) {
  .header-nav .navbar-toggler {
    display: none !important;
  }

  .header-nav .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0.3rem;
  }

  .burger-menu-tooltip {
    display: none !important;
  }
}

/* Hand-drawn pointer tooltip for burger menu (mobile only) */
.burger-menu-tooltip {
  position: fixed;
  top: 10px;
  right: 5px;
  z-index: 1060;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: auto;
  animation: fadeInBounce 0.6s ease-out;
  max-width: 150px;
  cursor: pointer;
}

.burger-menu-tooltip.hidden {
  display: none !important;
}

.tooltip-pointer {
  width: 90px;
  height: 70px;
  margin-bottom: -6px;
  margin-right: 25px;
  opacity: 0.85;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.tooltip-text {
  background: #fff;
  border: 2.5px solid #023909;
  border-radius: 10px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 600;
  color: #023909;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 4px 12px rgba(2, 57, 9, 0.2);
  position: relative;
  transform: rotate(-1.5deg);
  font-family: 'Comic Sans MS', 'Marker Felt', 'Chalkboard', 'Kalam', cursive, sans-serif;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.tooltip-text::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #023909;
  transform: rotate(20deg);
}

.tooltip-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 16px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  transform: rotate(20deg);
}

@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.85);
  }

  60% {
    transform: translateY(3px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Hide tooltip on large screens */
@media (min-width: 992px) {
  .burger-menu-tooltip {
    display: none !important;
  }
}

/* Adjust for very small screens */
@media (max-width: 375px) {
  .tooltip-text {
    font-size: 10px;
    padding: 6px 9px;
    white-space: normal;
    max-width: 120px;
  }

  .tooltip-pointer {
    width: 75px;
    height: 60px;
    margin-right: 20px;
  }
}

/* ================================
   Buttons
   ================================ */
.btn-accent {
  background: var(--accent);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: transform .12s ease, box-shadow .12s ease;
}

.btn-accent:hover,
.btn-accent:focus {
  background: #3e9c3a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 73, 7, 0.15);
  color: #fff;
}

.btn-outline-dark {
  border: 2px solid var(--brand-dark);
  color: var(--brand-dark);
  font-weight: 600;
}

.btn-outline-dark:hover {
  background: var(--brand-dark);
  color: #fff;
}

/* ================================
   Sections & Cards
   ================================ */
.responsive-illustration {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(2, 57, 9, 0.06);
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 6px 20px rgba(2, 57, 9, 0.06);
  transition: transform .15s ease, box-shadow .15s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.10);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(78, 175, 69, 0.12);
  color: var(--brand-mid);
  font-weight: 700;
}

/* ================================
   Footer
   ================================ */
.site-footer {
  background: var(--brand-dark);
  color: #eaf4ec;
  font-size: 0.95rem;
  margin-bottom: 0;
  padding-bottom: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-footer .footer-brand span {
  color: #ffffff;
  font-weight: 700;
}

.site-footer .footer-heading {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.site-footer .footer-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.5;
}

.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 0.4rem;
  transition: color 0.2s ease;
}

.site-footer .footer-links a:hover {
  color: var(--accent);
}

.site-footer .footer-contact li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer .footer-contact i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.site-footer .footer-socials a {
  color: #ffffff;
  margin-right: 0.8rem;
  font-size: 1.25rem;
  transition: color 0.2s ease, transform 0.15s ease;
}

.site-footer .footer-socials a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
}

.site-footer .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0.4rem;
}

.site-footer .footer-bottom-links a:hover {
  color: var(--accent);
}

.site-footer .footer-tagline {
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Sticky header adjustments */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  /* above other elements */
}

/* Prevent content hiding under header */
body {
  padding-top: 70px;
  /* adjust depending on navbar height */
}

/* Page Hero with Parallax Effect */
.page-hero {
  position: relative;
  height: 230px;
  /* standard height */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 2rem;

  background-size: contain;
  background-position: center;
  background-attachment: fixed;
  /* <— key for parallax */
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 57, 9, 0.85) 0%, rgba(2, 57, 9, 0.65) 60%, rgba(2, 57, 9, 0.4) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: #fff;
  font-weight: 800;
  font-size: 2.5rem;
  margin: 0;
  text-align: left;
}

.page-hero p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  padding-top: 4px;
  margin: 0;
}

/* Mobile responsive styles for page-hero */
@media (max-width: 768px) {
  .page-hero {
    height: auto;
    min-height: 280px;
    justify-content: center;
    align-items: center;
    background-attachment: scroll;
    /* Fix parallax issues on mobile */
    background-size: cover;
    padding: 3rem 0;
    margin-bottom: 2rem;
  }

  .page-hero .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 100%;
    width: 100%;
  }

  .page-hero h1 {
    font-size: 1.75rem;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 1rem;
    padding: 0;
  }

  .page-hero p {
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.6;
    padding-top: 0;
    margin-top: 0.5rem;
  }

  .page-hero .lead {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .page-hero {
    min-height: 260px;
    padding: 2.5rem 0;
  }

  .page-hero .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
    width: 100%;
  }

  .page-hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.25;
  }

  .page-hero p,
  .page-hero .lead {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
}

/* ===============================
   PRE-FOOTER CTA SECTION
   =============================== */

.pre-footer-cta {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0;
  margin: 0;
  /* no gaps before footer */
  color: #fff;
  width: 100%;
  max-width: 100%;
}

.pre-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(2, 57, 9, 0.90) 0%,
      rgba(2, 57, 9, 0.65) 50%,
      rgba(2, 57, 9, 0.35) 100%);
  z-index: 0;
}

/* inner layout */
.pre-footer-cta .cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

/* left text block */
.pre-footer-cta .cta-text {
  max-width: 62%;
  min-width: 280px;
}

.pre-footer-cta h2 {
  color: #fff;
  font-weight: 800;
  margin: 0 0 .4rem;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.15;
}

.pre-footer-cta p.lead {
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 .8rem;
  font-size: 1rem;
}

.pre-footer-cta .cta-tagline {
  color: rgba(255, 255, 255, 0.95);
  margin-top: 1rem;
  font-weight: 600;
}

/* right side actions */
.pre-footer-cta .cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
}

/* wrapper for label */
.cta-label-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Big non-clickable label */
.cta-label {
  background: var(--accent);
  color: #fff;
  padding: .72rem 1.05rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 10px 28px rgba(16, 73, 7, 0.15);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  pointer-events: none;
  /* not clickable */
  user-select: none;
  transition: all .15s ease;
}

/* Make cta-label clickable when it's a link - glassy white */
.cta-label.btn-contact-link {
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cta-label.btn-contact-link:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Subtitle under label */
.cta-label-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: .85rem;
  margin-top: .3rem;
  text-align: center;
  width: 100%;
}

/* Buttons row */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Ghost-style buttons */
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: .7rem .9rem;
  border-radius: 10px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  /* stack label + subtext */
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 140px;
  text-decoration: none;
  transition: all .15s ease;
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

/* Button main and sub lines */
.btn-ghost .btn-main {
  font-size: 1rem;
  font-weight: 700;
}

.btn-ghost .btn-sub {
  display: block;
  /* force next line */
  font-size: .78rem;
  font-weight: 500;
  margin-top: .2rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Accessibility */
.btn-ghost:focus {
  outline: 3px solid rgba(78, 175, 69, 0.25);
  outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .pre-footer-cta .cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pre-footer-cta .cta-text {
    max-width: 100%;
  }

  .pre-footer-cta .cta-actions {
    width: 100%;
    align-items: center;
    gap: 1rem;
    margin-top: 1.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: .8rem;
  }

  .btn-ghost {
    width: 100%;
    max-width: 260px;
  }
}

/* ================================
   Logo Auto-Scroll Section
   ================================ */
.logo-scroll-container {
  overflow: hidden;
  width: 100%;
  margin: 2rem 0;
  padding: 1.5rem 0;
  position: relative;
}

.logo-scroll-container::before,
.logo-scroll-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.logo-scroll-container::before {
  left: 0;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 100%);
}

.logo-scroll-container::after {
  right: 0;
  background: linear-gradient(to left,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 100%);
}

.logo-scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

.logo-scroll-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: scroll-logos 30s linear infinite;
  width: fit-content;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0 1rem;
  text-align: center;
}

.logo-item img {
  display: block;
  object-fit: contain;
}

.logo-item .text-success {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover (optional) */
.logo-scroll-container:hover .logo-scroll-track {
  animation-play-state: paused;
}

/* ================================
   UI Cards
   ================================ */
.ui-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 12px 36px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ui-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* ================================
   Text Utilities
   ================================ */
.text-success {
  color: var(--accent) !important;
}

.text-info {
  color: var(--brand-mid) !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-purple {
  color: #7c35cf !important;
}

.text-accent {
  color: var(--accent) !important;
}

/* ================================
   Skill Cards
   ================================ */
.skill-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ================================
   Icon Circle
   ================================ */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

/* ================================
   Story Cards
   ================================ */
.story-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 36px rgba(2, 57, 9, 0.09);
  padding: 2rem 1.5rem 1.5rem;
  border-left: 4px solid var(--accent);
  transition: box-shadow .2s, transform .2s;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.story-card:hover {
  box-shadow: 0 16px 36px rgba(2, 57, 9, 0.19);
  transform: translateY(-3px);
}

.story-card h5 {
  color: var(--brand-dark);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.story-card blockquote {
  font-style: italic;
  color: #212529;
  font-size: 1.05rem;
  padding-left: 12px;
  border-left: 2px solid var(--muted-gray);
  background: transparent;
}

@media (max-width: 991.98px) {
  .row.success-stories>.col-md-4 {
    min-width: 90vw;
    margin: 0 auto;
  }

  .story-card {
    margin-bottom: 1rem;
  }
}

/* ================================
   Impact Section
   ================================ */
.impact-section {
  position: relative;
  min-height: 550px;
  color: #fff;
  margin-bottom: 3rem;
  padding: 0;
  overflow: hidden;
}

.impact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  z-index: 1;
}

.impact-section .container,
.impact-section .container>.position-relative {
  position: relative;
  z-index: 2;
}

.stat-block {
  margin-bottom: 1.5rem;
}

.stat-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.stat-desc {
  display: block;
  font-size: 1.05rem;
  color: #f7fbf7;
}

.stat-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.impact-section.mb-0 {
  min-height: auto;
  padding: 2rem 0;
}

.impact-box {
  background: rgba(2, 57, 9, 0.6);
  border-radius: 16px;
  box-shadow: 0 5px 40px rgba(2, 57, 9, 0.10);
  padding: 2rem 1.5rem;
  margin-bottom: 1rem;
  min-height: 210px;
}

.impact-box h5 {
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}

.impact-box ul li {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.bg-light {
  background: #f7fbf7 !important;
}

/* ================================
   Job Cards
   ================================ */
.ui-job-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(2, 57, 9, 0.09);
  padding: 1.5rem 2rem;
  margin-bottom: 1.25rem;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1px solid #eaeef1;
  min-height: 195px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ui-job-card:hover {
  box-shadow: 0 22px 44px rgba(2, 57, 9, 0.13);
  transform: translateY(-2px) scale(1.02);
}

.job-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  font-size: 1.45rem;
  box-shadow: 0 2px 8px rgba(78, 175, 69, 0.14);
  flex-shrink: 0;
}

.job-details-list {
  margin-bottom: 0;
  margin-left: 3.2rem;
  padding-left: 0.6rem;
  color: #212529;
  font-size: 1.05rem;
}

.job-details-list li {
  margin-bottom: 0.4rem;
  list-style: disc;
}

.ecosystem-img {
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(2, 57, 9, 0.09);
  object-fit: cover;
  width: 100%;
  max-width: 440px;
  height: 250px;
  min-width: 220px;
  margin-top: 0;
  background: #eaf4ec;
}

@media (max-width: 1200px) {
  .ecosystem-img {
    max-width: 370px;
    height: 200px;
  }

  .ui-job-card {
    padding: 1.15rem 1rem;
  }
}

@media (max-width: 991px) {
  .ecosystem-img {
    max-width: 99vw;
    height: 180px;
    margin: 1rem auto 0;
    display: block;
  }

  .ui-job-card {
    margin-bottom: 1rem;
    min-height: unset;
  }

  .job-details-list {
    margin-left: 2rem;
  }

  .bg-light {
    padding: 2rem 0;
  }
}

@media (max-width: 767px) {
  .job-details-list {
    margin-left: 0.3rem;
    font-size: 1rem;
  }

  .ui-job-card {
    padding: 1rem;
  }

  .ecosystem-img {
    height: 150px;
  }
}

/* ================================
   RE Journey Section
   ================================ */
.re-journey-section {
  background: #f7fbf7;
  border-radius: 16px;
  margin-bottom: 2rem;
  padding: 2rem 1rem;
}

@media (max-width: 991px) {
  .re-journey-section .stat-value {
    font-size: 1.62rem;
  }

  .re-journey-section {
    padding: 1.4rem .6rem;
  }
}

/* ================================
   Benefits Section
   ================================ */
#benefits .benefit-card {
  border-radius: 14px;
  background-color: #f9fdf9;
  transition: all 0.3s ease;
}

#benefits .benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(30, 120, 60, 0.15);
  background-color: #ffffff;
}

#benefits h2 {
  color: #000;
  font-size: 2rem;
}

#benefits h5 {
  color: #176c36;
}

#benefits p {
  color: #555;
  line-height: 1.6;
}

#benefits img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  #benefits h2 {
    font-size: 1.6rem;
  }

  #benefits p {
    font-size: 0.95rem;
  }
}

/* ================================
   Impact Cards
   ================================ */
.impact-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.impact-card p {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
}

/* ================================
   Background Color Utilities
   ================================ */
.bg-green {
  background-color: #b7f3c8;
  color: #058c42;
}

.bg-blue {
  background-color: #e3f0ff;
  color: #0d6efd;
}

.bg-orange {
  background-color: #ffe7c2;
  color: #f57c00;
}

.bg-purple {
  background-color: #f1e3ff;
  color: #a855f7;
}

/* ================================
   Economic Impact Section
   ================================ */
.economic-impact-section {
  position: relative;
  background: linear-gradient(135deg, rgba(2, 57, 9, 0.95) 0%, rgba(4, 90, 15, 0.9) 100%), url('assets/impact-bg.webp') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.economic-impact-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 57, 9, 0.7) 0%, rgba(4, 90, 15, 0.65) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.economic-impact-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}

.economic-impact-section p {
  color: #e8e8e8;
  font-size: 1.1rem;
  line-height: 1.6;
}

.economic-stat {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.economic-stat:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(78, 175, 69, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.economic-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #4eaf45;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(78, 175, 69, 0.3);
  line-height: 1.2;
}

.economic-stat-desc {
  font-size: 0.95rem;
  color: #e8e8e8;
  line-height: 1.5;
  font-weight: 400;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: #f8f9fa;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(78, 175, 69, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.benefit-card h5 {
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
}

.benefit-card ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #e8e8e8;
  line-height: 1.6;
}

/* ================================
   Skills Training Section
   ================================ */
.skills-training-section {
  background-color: #f9fafb;
}

.skills-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.skills-card {
  border-radius: 15px;
  transition: all 0.3s ease;
  background-color: #fff;
}

.skills-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.skills-card ul li {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* ================================
   WhatsApp Floating Button
   ================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: 'Google Sans', Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
  animation: whatsappGlow 2s ease-in-out infinite;
}

/* WhatsApp button glow animation */
@keyframes whatsappGlow {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0.7),
      0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6),
      0 0 0 10px rgba(37, 211, 102, 0),
      0 0 0 20px rgba(37, 211, 102, 0);
  }
}

.whatsapp-btn:hover {
  background: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5),
    0 0 0 0 rgba(37, 211, 102, 0.7),
    0 0 0 0 rgba(37, 211, 102, 0.4);
  animation: whatsappGlowHover 2s ease-in-out infinite;
}

/* WhatsApp button glow animation on hover */
@keyframes whatsappGlowHover {

  0%,
  100% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5),
      0 0 0 0 rgba(37, 211, 102, 0.8),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7),
      0 0 0 12px rgba(37, 211, 102, 0),
      0 0 0 24px rgba(37, 211, 102, 0);
  }
}

.whatsapp-btn:active {
  transform: scale(0.95);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

.whatsapp-dropdown {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-float.active .whatsapp-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-dropdown-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e9ecef;
  background: #f8f9fa;
  border-radius: 12px 12px 0 0;
}

.whatsapp-dropdown-header span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.whatsapp-dropdown-menu {
  padding: 8px;
  max-height: 400px;
  overflow-y: auto;
}

.whatsapp-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #212529;
  transition: all 0.2s ease;
  margin-bottom: 4px;
}

.whatsapp-option:hover {
  background: rgba(78, 175, 69, 0.08);
  color: var(--brand-mid);
  transform: translateX(-2px);
}

.whatsapp-option:last-child {
  margin-bottom: 0;
}

.whatsapp-option-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.whatsapp-option-text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-btn {
    width: 56px;
    height: 56px;
  }

  .whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-dropdown {
    width: 260px;
    bottom: 70px;
    right: 0;
  }

  .whatsapp-dropdown-header {
    padding: 14px 18px;
  }

  .whatsapp-dropdown-header span {
    font-size: 0.9rem;
  }

  .whatsapp-option {
    padding: 11px 14px;
  }

  .whatsapp-option-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .whatsapp-dropdown {
    width: calc(100vw - 30px);
    max-width: 280px;
    right: 0;
  }
}

/* ================================
   Bento Grid Section
   ================================ */
.bento-grid-section {
  padding: 80px 0 84px 0;
  background: #f7fbf7;
}

.bento-grid-section .container {
  padding-top: 58px;
  padding-bottom: 58px;
}

.bento-grid-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 24px;
  height: 836px;
}

.bento-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
}

/* Upgrade Discount Card */
.bento-upgrade-card {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #ffffff;
  min-height: 263px;
}

.bento-upgrade-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bento-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #008f5e;
  margin: 0;
}

.bento-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  color: #334155;
  margin: 0;
}

.bento-price {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  background: linear-gradient(180deg, #008f5e 0%, #4eaf45 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.8px;
}

.bento-divider {
  height: 2px;
  background: url('data:image/svg+xml,<svg width="285" height="2" xmlns="http://www.w3.org/2000/svg"><path d="M0 1h285" stroke="%23e2e8f0" stroke-width="2" stroke-dasharray="4 4"/></svg>') no-repeat;
  margin: 4px 0;
}

.bento-discount-code {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 16px;
}

.bento-code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 8px;
}

.bento-barcode {
  height: 22px;
  width: 100%;
}

.bento-barcode img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Typeface Showcase */
.bento-typeface-showcase {
  grid-column: 2;
  grid-row: 1;
  background: linear-gradient(135deg, #006a45 0%, #00b380 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 17px;
  min-height: 262px;
}

.bento-typeface-content {
  position: relative;
  z-index: 2;
}

.bento-typeface-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
}

.bento-typeface-large {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.bento-color-strip {
  display: flex;
  height: 24px;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.color-swatch {
  flex: 1;
  height: 100%;
}

.bento-typeface-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: 1;
}

.bento-typeface-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
}

/* Building Mockup */
.bento-building-mockup {
  grid-column: 3;
  grid-row: 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 262px;
}

.bento-building-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Smartphone Mockup */
.bento-smartphone-mockup {
  grid-column: 1;
  grid-row: 2;
  background: transparent;
}

.bento-smartphone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Logo Card */
.bento-logo-card {
  grid-column: 2;
  grid-row: 2;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bento-logo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.bento-logo-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-logo-icon img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.bento-logo-text {
  font-size: 34px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

/* Image Item */
.bento-image-item {
  grid-column: 3;
  grid-row: 2;
  background: transparent;
}

.bento-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Billboard Mockup */
.bento-billboard {
  grid-column: 1 / 3;
  grid-row: 3;
  background: #1e293b;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.bento-billboard-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.bento-billboard-slogan {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.68px;
}

.bento-billboard-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/greenery.webp') center/cover;
  opacity: 0.3;
}

/* Promotional Graphic */
.bento-promo-graphic {
  grid-column: 3;
  grid-row: 3;
  background: linear-gradient(135deg, #006a45 0%, #4eaf45 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.bento-promo-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.bento-promo-text {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.68px;
}

.bento-promo-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(104, 229, 113, 0.3) 0%, transparent 70%);
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    height: auto;
    min-height: 1200px;
  }

  .bento-upgrade-card {
    grid-column: 1;
    grid-row: 1;
  }

  .bento-typeface-showcase {
    grid-column: 2;
    grid-row: 1;
  }

  .bento-building-mockup {
    grid-column: 1 / 3;
    grid-row: 2;
    height: 300px;
  }

  .bento-smartphone-mockup {
    grid-column: 1;
    grid-row: 3;
    height: 300px;
  }

  .bento-logo-card {
    grid-column: 2;
    grid-row: 3;
  }

  .bento-image-item {
    grid-column: 1 / 3;
    grid-row: 4;
    height: 300px;
  }

  .bento-billboard {
    grid-column: 1 / 3;
    grid-row: 5;
    height: 250px;
  }

  .bento-promo-graphic {
    grid-column: 1 / 3;
    grid-row: 6;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bento-item {
    grid-column: 1 !important;
  }

  .bento-upgrade-card {
    grid-row: 1;
  }

  .bento-typeface-showcase {
    grid-row: 2;
    height: 300px;
  }

  .bento-building-mockup {
    grid-row: 3;
    height: 250px;
  }

  .bento-smartphone-mockup {
    grid-row: 4;
    height: 250px;
  }

  .bento-logo-card {
    grid-row: 5;
    height: 250px;
  }

  .bento-image-item {
    grid-row: 6;
    height: 250px;
  }

  .bento-billboard {
    grid-row: 7;
    height: 200px;
  }

  .bento-promo-graphic {
    grid-row: 8;
    height: 200px;
  }

  .bento-typeface-large {
    font-size: 20px;
  }

  .bento-typeface-title {
    font-size: 24px;
  }

  .bento-billboard-slogan,
  .bento-promo-text {
    font-size: 24px;
  }
}

/* ================================
   Why Choose Bento Grid
   ================================ */
.why-choose-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-feature-card {
  grid-column: 1;
  grid-row: 1 / 3;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(2, 57, 9, 0.1);
}

.bento-feature-icon {
  margin-bottom: 20px;
}

.bento-feature-card h5 {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.bento-standard-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-standard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(2, 57, 9, 0.08);
}

.bento-standard-card .icon {
  margin-bottom: 16px;
}

.bento-standard-card h6 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.bento-image-card {
  grid-column: 2 / 4;
  grid-row: 3;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 30px rgba(2, 57, 9, 0.06);
  border: 1px solid rgba(2, 57, 9, 0.04);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(2, 57, 9, 0.08);
}

.bento-image-overlay {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.bento-image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-image-content {
  flex: 1;
}

.bento-image-content h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

/* Responsive Design for Why Choose Bento Grid */
@media (max-width: 992px) {
  .why-choose-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 20px;
  }

  .bento-feature-card {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .bento-image-card {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .why-choose-bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bento-feature-card,
  .bento-image-card {
    grid-column: 1;
  }

  .bento-image-card {
    flex-direction: column;
    text-align: center;
  }

  .bento-image-overlay {
    width: 100px;
    height: 100px;
  }
}

/* Phone Call Button Styles */
.phone-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9998;
  font-family: 'Google Sans', Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.phone-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #007bff;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
  text-decoration: none;
}

.phone-btn:hover {
  background: #0056b3;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 123, 255, 0.5);
  color: #fff;
}

.phone-btn:active {
  transform: scale(0.95);
}

.phone-btn svg {
  width: 28px;
  height: 28px;
}

/* ================================
   Stat Strip Styling
   ================================ */
.stat-strip {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(2, 57, 9, 0.08);
  margin: 20px auto 0 auto;
  max-width: 1200px;
}

.stat-strip.mb-0 {
  margin-bottom: 10px !important;
}

/* Remove spacing between stat strip container and next section */
.container:has(.stat-strip)+.section-white,
.container:has(.stat-strip)~.section-white {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Fallback for browsers that don't support :has() */
.section-white[style*="padding-top: 0"] {
  padding-top: 0 !important;
}

/* Remove spacing between section-white and section-giant */
.section-white+.section-giant,
.section-white~.section-giant {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.section-giant[style*="padding-top: 0"] {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ================================
   Hero Video Styling
   ================================ */
.hero-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(2, 57, 9, 0.15);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.hero-video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-video-container {
    min-height: 300px;
    margin-top: 30px;
    display: block !important;
  }
}

@media (max-width: 768px) {
  .hero-video-container {
    min-height: 250px;
    border-radius: 12px;
    margin-top: 20px;
    display: block !important;
  }

  .hero-video,
  .hero-video-container img {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .hero-video-container {
    min-height: 200px;
    margin-top: 15px;
  }
}

.stat-strip .stat {
  padding: 20px 15px;
  transition: transform 0.2s ease;
}

.stat-strip .stat:hover {
  transform: translateY(-2px);
}

.stat-strip .stat h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1.2;
}

.stat-strip .stat small {
  font-size: 14px;
  color: var(--muted-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

/* Mobile Responsive for Stat Strip */
@media (max-width: 768px) {
  .stat-strip {
    margin: 15px auto;
    padding: 20px 10px !important;
    border-radius: 12px;
  }

  .stat-strip .row {
    margin: 0;
  }

  .stat-strip .stat {
    padding: 16px 10px;
    margin-bottom: 8px;
  }

  .stat-strip .stat h3 {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .stat-strip .stat small {
    font-size: 11px;
    letter-spacing: 0.3px;
  }
}

@media (max-width: 480px) {
  .stat-strip {
    padding: 16px 8px !important;
  }

  .stat-strip .stat {
    padding: 12px 8px;
  }

  .stat-strip .stat h3 {
    font-size: 20px;
  }

  .stat-strip .stat small {
    font-size: 10px;
  }
}

/* Mobile Responsive for Phone Button */
@media (max-width: 768px) {
  .phone-float {
    bottom: 85px;
    right: 15px;
  }

  .phone-btn {
    width: 56px;
    height: 56px;
  }

  .phone-btn svg {
    width: 26px;
    height: 26px;
  }
}