* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    .logo {
      height: 100px;
      width: auto;
  }
    body {
      font-family: Arial, sans-serif;
      background: #f5f8f2;
      color: #1f2d1f;
    }
    
    .navbar {
    width: 100%;
    padding: 5px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}
    
    .navbar h2 {
      color: #2f7d32;
    }
    
    .nav-button {
      text-decoration: none;
      background: #2f7d32;
      color: white;
      padding: 10px 18px;
      border-radius: 999px;
      font-weight: bold;
    }
    
    .hero {
      position: relative;
  
      min-height: 100vh;
  
      background-image: url("images/background.png");
      background-size: 100%;
      background-position: center 20%;
      background-repeat: no-repeat;
  
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
  
      padding: 80px 8%;
  
      overflow: hidden;
  }
  
  /* Dark overlay for readability */
  .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
  }
  
  /* Keep all hero content above the overlay */
  .hero > * {
      position: relative;
      z-index: 1;
  }
  
  /* Hero text */
  .hero-text {
      max-width: 620px;
  }
  
  .small-title {
      color: #7CFC00;
      font-weight: bold;
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 2px;
  }
  
  .hero h1 {
      font-size: 58px;
      line-height: 1.05;
      margin-bottom: 20px;
      color: white;
  }
  
  .subtitle {
      font-size: 20px;
      line-height: 1.6;
      color: white;
      margin-bottom: 30px;
  }
  
  /* Buttons */
  .hero-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
  }
  
  .price {
      font-size: 52px;
      font-weight: bold;
      color: #7CFC00;
      margin-bottom: 10px;
  }
    
  .main-button,
  .secondary-button {
      display: inline-block;
      text-decoration: none;
      cursor: pointer;
      padding: 14px 24px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: bold;
      transition: all 0.2s ease;
  }
  
  /* Main buttons (Search Address, Calculate, etc.) */
  .main-button {
      background: #2f7d32;
      color: white;
      border: 2px solid #2f7d32;
  }
  
  .main-button:hover {
      background: #27692a;
  }
  
  /* Secondary buttons (Start, Finish, Add Another Area, Clear) */
  .secondary-button {
      background: white;
      color: #2f7d32;
      border: 2px solid #2f7d32;
  }
  
  .secondary-button:hover {
      background: #f3f3f3;
  }
  
  /* Active button (currently selected) */
  .secondary-button.active {
      background: #2f7d32;
      color: white;
  }
    
    .hero-card {
      background: white;
      padding: 35px;
      border-radius: 24px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
      max-width: 340px;
    }
    
    .hero-card h3 {
      font-size: 24px;
      margin-bottom: 15px;
    }
    
    .price {
      font-size: 52px;
      font-weight: bold;
      color: #2f7d32;
      margin-bottom: 10px;
    }
    
    .services,
    .estimate-section,
    .contact {
      padding: 70px 8%;
      text-align: center;
    }
    
    .services h2,
    .estimate-section h2,
    .contact h2 {
      font-size: 38px;
      margin-bottom: 35px;
    }

    .estimator-box {
      max-width: 500px;
      margin: 35px auto 0;
      background: white;
      color: #1f2d1f;
      padding: 35px;
      border-radius: 18px;
  }
  
  .estimator-box label {
      display: block;
      text-align: left;
      font-weight: bold;
      margin-bottom: 10px;
  }
  
  .estimator-box input {
      width: 100%;
      padding: 14px;
      font-size: 18px;
      border: 2px solid #d8d8d8;
      margin-bottom: 20px;
  }
  
  .estimate-result {
      margin-top: 25px;
      font-size: 22px;
      font-weight: bold;
      color: #0f3d11;
  }
    
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }
    
    .service-card {
      background: white;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    }
    
    .service-card h3 {
      color: #2f7d32;
      margin-bottom: 12px;
    }
    
    .estimate-section {
      background: linear-gradient(0deg, #132513, #324e32);
      color: white;
      padding: 80px 8%;
      text-align: center;
  }
    
  .estimate-section p {
      max-width: 650px;
      margin: 0 auto 25px;
      color: rgb(173, 228, 166);
      line-height: 1.6;
  }
    .contact p {
      max-width: 650px;
      margin: 0 auto 25px;
      color: #4d5b4d;
      line-height: 1.6;
    }
    
    .contact {
      background: #1f2d1f;
      color: white;
    }
    
    .contact p {
      color: #dfe8df;
    }
    
    @media (max-width: 800px) {
      .hero {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 50px;
      }
    
      .hero h1 {
        font-size: 42px;
      }
    
      .service-grid {
        grid-template-columns: 1fr;
      }
    
      .navbar {
        padding: 18px 5%;
      }
    
      .hero,
      .services,
      .estimate-section,
      .contact {
        padding-left: 5%;
        padding-right: 5%;
      }
    }
    .portfolio {
      padding: 80px 8%;
      background: linear-gradient(0deg, #132513, #324e32);
  }
  
  .portfolio h2 {
      text-align: center;
      font-size: 42px;
      margin-bottom: 40px;
      color: white;
  }
  
  .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 18px;
  }
  
  .gallery img {
      width: 100%;
      height: auto;
      display: block;
  }
  .pressure-washing {
      padding: 80px 8%;
      background: white;
      text-align: center;
  }
  
  .pressure-washing h2 {
      font-size: 40px;
      margin-bottom: 35px;
      color: #2f7d32;
  }
  
  .pressure-washing img {
      width: 100%;
      max-width: 1000px;
      height: auto;
      display: block;
      margin: 0 auto;
  }
  .social-links {
      margin-top: 35px;
  
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
  }
  
  .nextdoor-link {
      font-size: 20px;
      font-weight: bold;
      color: white;
      text-decoration: none;
  }
  
  .social-links a {
      color: white;
      transition: transform .2s ease, opacity .2s ease;
  }
  
  .social-links i {
      font-size: 34px;
  }
  
  .social-links a:hover {
      transform: scale(1.15);
      opacity: .8;
  }

  #map {
      width: 100%;
      height: 500px;
      margin-top: 25px;
      margin-bottom: 25px;
      border: 2px solid #d8d8d8;
  }
  
  #address-search {
      width: 100%;
      padding: 14px;
      font-size: 18px;
      border: 2px solid #d8d8d8;
      margin-bottom: 15px;
  }
  
  .map-buttons {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 15px;
  }
  #area-output,
#estimate-output {
    color: #222;
    font-size: 22px;
    font-weight: bold;
    margin-top: 18px;
}

.estimate-layout {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 35px;
      margin-top: 30px;
  }
  
  .map-container {
      flex: 1;
      max-width: 900px;
  }
  
  .estimate-steps {
      width: 320px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 16px;
      padding: 25px;
      text-align: left;
      color: white;
      position: sticky;
      top: 30px;
  }
  
  .estimate-steps p {
      margin-bottom: 15px;
      font-size: 20px;
      color: white;
  }
  
  .estimate-steps ol {
      padding-left: 22px;
      margin: 0;
  }
  
  .estimate-steps li {
      margin-bottom: 12px;
      line-height: 1.6;
  }
  .estimate-content {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 60px;
      max-width: 1200px;
      margin: 35px auto 0;
    }
    
    .estimate-steps {
      width: 300px;
      flex-shrink: 0;
      margin-top: 0;
    }
    
    .estimator-box {
      width: 760px;
      max-width: 760px;
      margin: 0;
    }
    .estimate-form {
      margin-top: 25px;
    }
    
    .estimate-form input {
      width: 100%;
      padding: 14px;
      font-size: 16px;
      margin-bottom: 14px;
      border: 2px solid #d8d8d8;
    }