:root {
    --primary-green: #0b7c5b;
    --primary-green-dark: #07523d;
    --dark-accent: #111827;
    --light-bg: #f5f7fa;
    --text-color: #1f2933;
    --muted-text: #6b7280;
    --border-radius-lg: 1.25rem;
    --transition-base: all 0.25s ease;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
  }
  
  /* Logo */
  .logo {
    height: 40px;
    width: auto;
  }
  
  /* Navbar */
  .navbar {
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
  }
  
  .navbar.scrolled {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  }
  
  .nav-link {
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
  }
  
  .nav-link.active {
    color: var(--primary-green) !important;
  }
  
  .btn-cta-pill {
    background-color: var(--primary-green);
    color: #ffffff !important;
    border-radius: 999px;
    padding: 0.55rem 1.6rem;
    font-weight: 600;
    box-shadow: 0 12px 25px rgba(11, 124, 91, 0.35);
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  }
  
  .btn-cta-pill:hover,
  .btn-cta-pill:focus {
    background-color: var(--primary-green-dark);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 16px 30px rgba(7, 82, 61, 0.4);
  }
  
  /* Hero */
  .hero-section {
    position: relative;
    min-height: 90vh;
    background-image: url("https://images.pexels.com/photos/4108715/pexels-photo-4108715.jpeg?auto=compress&cs=tinysrgb&w=1600");
    background-size: cover;
    background-position: center;
    color: #ffffff;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(11, 124, 91, 0.9), rgba(15, 23, 42, 0.95));
    mix-blend-mode: multiply;
  }
  
  .hero-section .container {
    position: relative;
    z-index: 1;
  }
  
  .badge.bg-success-soft {
    background-color: rgba(16, 185, 129, 0.15);
    color: #e5f9f2;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-weight: 500;
  }
  
  .trust-badges .badge-pill {
    background-color: rgba(15, 23, 42, 0.7);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
  }
  
  /* Hero form card */
  .hero-form-card {
    border-radius: 1.5rem;
  }
  
  .hero-form-card .form-control,
  .hero-form-card .form-select {
    border-radius: 0.75rem;
  }
  
  /* Generic sections */
  .section-padding {
    padding: 4.5rem 0;
  }
  
  .section-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--dark-accent);
  }
  
  .section-subtitle {
    color: var(--muted-text);
    max-width: 640px;
  }
  
  /* Services */
  .service-card {
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
  }
  
  .service-image-wrapper {
    overflow: hidden;
  }
  
  .service-image-wrapper img {
    transition: transform 0.4s ease;
  }
  
  .service-card:hover .service-image-wrapper img {
    transform: scale(1.05);
  }
  
  .learn-more-link {
    font-weight: 600;
    color: var(--primary-green);
  }
  
  .learn-more-link:hover {
    color: var(--primary-green-dark);
  }
  
  /* Authority / Stats */
  .authority-section {
    background-color: #ffffff;
  }
  
  .stat-card {
    padding: 1.5rem 1rem;
    border-radius: 1.25rem;
    background-color: var(--light-bg);
  }
  
  /* Strong CTA */
  .cta-strong-section {
    background: linear-gradient(135deg, var(--primary-green-dark), #052e27);
    color: #ffffff;
  }
  
  /* Inner hero */
  .inner-hero-section {
    padding: 3.5rem 0 2.5rem;
    background: radial-gradient(circle at top left, rgba(11, 124, 91, 0.08), transparent),
      linear-gradient(to bottom, #ffffff, #f9fafb);
  }
  
  .inner-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-accent);
  }
  
  /* Contact side box */
  .contact-side-box {
    border-radius: 1.25rem;
  }
  
  /* Gallery */
  .gallery-card img {
    border-radius: 1.25rem 1.25rem 0 0;
  }
  
  /* Footer */
  .footer {
    background-color: #ffffff;
  }
  
  .footer-link {
    color: var(--muted-text);
    font-size: 0.9rem;
    text-decoration: none;
  }
  
  .footer-link:hover {
    color: var(--primary-green);
  }
  
  /* Floating WhatsApp */
  .whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: var(--transition-base);
  }
  
  .whatsapp-float:hover {
    transform: translateY(-2px) scale(1.05);
    color: #ffffff;
  }
  
  /* Honeypot */
  .hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    visibility: hidden;
    height: 0;
    width: 0;
  }
  
  /* Forms */
  .form-control:focus,
  .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.15rem rgba(11, 124, 91, 0.15);
  }
  
  /* Responsive tweaks */
  @media (max-width: 767.98px) {
    .hero-section {
      min-height: auto;
      padding: 4rem 0 3rem;
    }
  }
  
  @media (max-width: 991.98px) {
    .section-padding {
      padding: 3.25rem 0;
    }
  }