/* ==========================================================================
   SGNCO â€“ Bootstrapped Theme
   This file overrides Bootstrap 5 tokens + adds custom components.
   ========================================================================== */

/* ------------------------------
   1. Root Design Tokens
   ------------------------------ */
:root {
  /* Brand Colors */
  --sgn-green: #67c23a;
  --sgn-dark: #192b1f;
  --sgn-light: #eef6f0;

  /* Neutral Colors */
  --sgn-text: #2c2c2c;
  --sgn-text-light: #6c757d;
  --sgn-bg: #f8f9fa;
  --sgn-white: #ffffff;

  /* Shadows */
  --sgn-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --sgn-shadow-md: 0 4px 18px rgba(0,0,0,0.08);

  /* Border Radius */
  --sgn-radius-sm: 6px;
  --sgn-radius: 12px;
  --sgn-radius-lg: 20px;

  /* Typography */
  --sgn-font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing Scale */
  --sgn-space-1: 6px;
  --sgn-space-2: 12px;
  --sgn-space-3: 18px;
  --sgn-space-4: 24px;
  --sgn-space-5: 32px;
  --sgn-space-6: 48px;
}

/* ------------------------------
   2. Base Elements
   ------------------------------ */
body {
  background: var(--sgn-bg);
  color: var(--sgn-text);
  font-family: var(--sgn-font);
}

h1, h2, h3, h4, h5 { font-weight: 700; }

/* Remove blue link style */
a {
  text-decoration: none !important;
  color: inherit;
}

/* ------------------------------
   3. Buttons
   ------------------------------ */
.btn-success {
  background: var(--sgn-green) !important;
  border-color: var(--sgn-green) !important;
  padding: 10px 26px;
  border-radius: var(--sgn-radius-sm);
  font-weight: 600;
}

.btn-success:hover {
  background: #59b131 !important;
  border-color: #59b131 !important;
}

.btn-outline-success {
  color: var(--sgn-green);
  border-color: var(--sgn-green);
  padding: 9px 26px;
}

.btn-outline-success:hover {
  background: var(--sgn-green);
  color: #fff;
}

/* ------------------------------
   4. Navbar
   ------------------------------ */
.navbar {
  background: var(--sgn-white) !important;
  box-shadow: var(--sgn-shadow-sm);
}

.nav-link {
  font-weight: 500;
  padding: 10px 14px !important;
}

.nav-link.active,
.nav-link:hover {
  color: var(--sgn-green) !important;
}

/* ------------------------------
   5. Hero Section
   ------------------------------ */
/* HERO WRAPPER */
/* HERO WRAPPER */
.hero-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 360px;
}

/* Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(55%);
}

/* Right-side Globe Icon */
.hero-icon {
  position: absolute;
  right: 40px;
  bottom: 20px;
  width: 260px;
  height: auto;
  z-index: 3;
}

/* Dark overlay on content area */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 60px;
  z-index: 4;
  color: #fff;
}

/* Title styling */
/*.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
}*/

.text-green {
  color: #7bd038;
}

/* Description text */
/*.hero-text {
  font-size: 1rem;
  color: #e1e1e1;
}*/

/* Call Label */
/*.hero-call {
  font-size: 0.95rem;
  color: #ddd;
}*/

/* Layout Wrapper */
.impact-wrapper {
  padding: 20px 0;
}

/* Left Title */
/*.impact-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #2f2f2f;
}

 Left Description 
.impact-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}*/

/* Cards */
.impact-stat-card {
  background: #eaeaea;
  border-radius: 14px;
  padding: 20px 15px;
  width: 140px;
  text-align: center;
  box-shadow: 0px 4px 24px rgba(0,0,0,0.12);
}

/* Icon circle */
.impact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
}

.impact-icon img {
  width: 68px;
  height: 68px;
}

/* Numbers */
/*.impact-number {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #333;
}*/

/* Labels */
.impact-label {
  margin: 2px 0 0;
  font-size: 0.9rem;
  color: #6c6c6c;
}


/* ------------------------------
   6. Stat Cards
   ------------------------------ */
.stat-card {
  background: var(--sgn-white);
  border-radius: var(--sgn-radius);
  padding: var(--sgn-space-3);
  box-shadow: var(--sgn-shadow-md);
  text-align: center;
}

.stat-card img {
  width: 58px;
  margin-bottom: var(--sgn-space-2);
}

.stat-card h5 {
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-card p {
  color: var(--sgn-text-light);
  margin: 0;
}

/* ------------------------------
   7. "What We Collect" Cards
   ------------------------------ */
/* Section Title */
/*.collect-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2f2f2f;
}

 Subtitle 
.collect-subtitle {
  font-size: 1rem;
  color: #6c6c6c;
  line-height: 1.6;
  margin-top: 6px;
}*/
.mt-3 {
    margin-top: 1rem !important;
}
.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}
.align-items-center {
    align-items: center !important;
}
.gap-3 {
    gap: 1rem !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
/* Card Container */
.collect-card {
  background: #eaeaea;
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;

  /* heavy feather shadow like your screenshot */
  box-shadow: 
      0px 8px 24px rgba(0,0,0,0.10),
      0px 1px 6px rgba(0,0,0,0.04),
      0px 18px 48px rgba(0,0,0,0.08);
}

/* Centered image */
.collect-img {
  max-height: 180px;
  object-fit: contain;
  width: auto;
  display: block;
  margin: auto;
}

/* Text below card */
.collect-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2f2f2f;
}

.collect-text {
  font-size: 0.9rem;
  color: #777;
  margin-top: 4px;
}


/* Section Background */
/* Make left and right equal height */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.mb-5 {
    margin-bottom: 3rem !important;
}
.why-row {
  display: flex;
  align-items: stretch;
}

.align-items-stretch {
    align-items: stretch !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.flex-column {
    flex-direction: column !important;
}
.d-flex {
    display: flex !important;
}
/* Left image wrapper */
.why-left {
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
}

/* Image fills full height */
.why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* Right column cards stretch vertically */
.why-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Reason cards */
.why-card {
  background: #f5f7f8;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow:
    0px 2px 4px rgba(0,0,0,0.05),
    0px 8px 26px rgba(0,0,0,0.08);
}


/* ------------------------------
   8. Why Choose Us
   ------------------------------ */
.reason-box {
  background: var(--sgn-white);
  border-radius: var(--sgn-radius-sm);
  padding: var(--sgn-space-3);
  margin-bottom: var(--sgn-space-2);
  box-shadow: var(--sgn-shadow-sm);
  font-weight: 500;
}

/* ------------------------------
   9. Who We Serve
   ------------------------------ */
.who-icon img {
  width: 60px;
  margin-bottom: var(--sgn-space-2);
}

.who-icon p {
  margin: 0;
  font-weight: 500;
}
.fw-bold {
    font-weight: 700 !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.g-4, .gy-4 {
    --bs-gutter-y: 1.5rem;
}
.g-4, .gx-4 {
    --bs-gutter-x: 1.5rem;
}
/* ------------------------------
   10. Pickup Form
   ------------------------------ */
/* Title */
.pickup-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2f2f2f;
}
.fw-bold {
    font-weight: 700 !important;
}
.mt-4 {
    margin-top: 1.5rem !important;
}
.g-4, .gy-4 {
    --bs-gutter-y: 1.5rem;
}
.g-4, .gx-4 {
    --bs-gutter-x: 1.5rem;
}

/* Subtitle */
.pickup-subtitle {
  color: #6d6d6d;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Main Box */
.pickup-box {
  background: #e6e3e2;
  padding: 35px 25px;
  border-radius: 16px;
}

/* Labels */
.pickup-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3a3a3a;
  display: block;
  margin-bottom: 6px;
}

/* Inputs */
.pickup-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: none;
  background: #f7f8f9;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
  font-size: 1.5rem;
}

.pickup-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(103,194,58,0.25);
}

/* Textarea */
.pickup-textarea {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: #f7f8f9;
  border: none;
  font-size: 1.5rem;
  resize: none;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}

.pickup-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(103,194,58,0.25);
}

/* Submit Button */
.pickup-btn {
  background: #7ad540;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 2rem;
  padding: 10px 32px;
  border: none;
  border-radius: 10px;
  transition: 0.2s;
}

.pickup-btn:hover {
  background: #6bc538;
}

/* Footer text */
.pickup-footer {
  color: #6c6c6c;
  font-size: 1.5rem;
}

.pickup-mandatory {
  font-size: 1.5rem;
}
/* ================================
   MOBILE RESPONSIVE ADJUSTMENTS
   ================================ */
@media (max-width: 768px) {

  /* Reduce title size */
  .pickup-title {
    font-size: 2rem;
    text-align: center;
  }

  /* Subtitle centered */
  .pickup-subtitle {
    text-align: center;
    font-size: 0.9rem;
    margin-top: -8px;
  }

  /* Form container padding */
  .pickup-box {
    padding: 22px 18px;
    border-radius: 12px;
  }

  /* Input fields full width */
  .pickup-input,
  .pickup-textarea {
    font-size: 1.5rem;
    padding: 12px 14px;
  }

  /* Label adjustments */
  .pickup-label {
    font-size: 1.5rem;
  }

  /* Stack fields vertically */
  .pickup-box .row > div {
    margin-bottom: 10px;
  }

  /* Submit button full width */
  .pickup-btn {
    width: 100%;
    padding: 12px;
    font-size: 2rem;
  }

  /* Footer text centered */
  .pickup-footer {
    text-align: center;
    font-size: 1.5rem;
  }

  /* Mandatory fields center */
  .pickup-mandatory {
    text-align: center;
    margin-top: 5px;
  }
}



/* ------------------------------
   11. Footer (optional) 
   ------------------------------ */
/* Footer Background */
.footer-section {
  background: #e6e6e6;
  border-radius: 16px 16px 0 0;
}

/* Logo */
.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 8px;
}

/* Small description */
.footer-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Heading */
.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2d2d2d;
}

/* Links */
.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  font-size: 0.95rem;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #6bc538;
}

/* Divider */
.footer-divider {
  border-top: 1px solid #ccc;
  opacity: 0.4;
}

/* Copyright */
.footer-copy {
  color: #444;
  font-size: 0.9rem;
}

/* Social Icons */
.social-icon {
  font-size: 1.25rem;
  color: #444;
  background: #fff;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.social-icon:hover {
  background: #6bc538;
  color: #fff;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .footer-heading, .footer-links li a {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-logo, .footer-desc {
    text-align: center;
  }
}
