/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}



.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: #2d5016;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-brand i {
    color: #4a7c59;
    margin-right: 8px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4a7c59;
}

.phone-btn {
    background: #4a7c59;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.phone-btn:hover {
    background: #2d5016;
}

/* Hero Section */
    .hero {
      background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
      color: white;
      padding: 150px 20px 100px;
      text-align: center;
    }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: #fff;
    color: #2d5016;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5016;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.service-card p {
    color: #666;
}

/* Packages Section */
.packages {
    background: #f8f9fa;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    border: 3px solid #4a7c59;
    transform: scale(1.05);
}

.package-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4a7c59;
    color: white;
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
}

.package-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    text-align: left;
}

.feature i {
    color: #4a7c59;
    margin-right: 10px;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.quote-btn {
    background: #4a7c59;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
}

.quote-btn:hover {
    background: #2d5016;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
}

.review-card strong {
    color: #2d5016;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 2rem;
    color: #4a7c59;
    margin-right: 1rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #2d5016;
}

.contact-item a {
    color: #4a7c59;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Quote Form Section */
.quote-form {
    background: #f8f9fa;
    padding: 80px 0;
}

.quote-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d5016;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.submit-btn {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Referral Program Section */
.referral-program {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
    padding: 60px 0;
}

.referral-banner {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    gap: 2rem;
}

.referral-content h3 {
    color: #2d5016;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.referral-content h3 i {
    color: #4a7c59;
    margin-right: 10px;
}

.referral-content p {
    color: #666;
    margin: 0;
}

.referral-inputs {
    display: flex;
    gap: 1rem;
    align-items: end;
}

.referral-inputs input {
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    min-width: 150px;
    transition: border-color 0.3s;
}

.referral-inputs input:focus {
    outline: none;
    border-color: #4a7c59;
}

.referral-btn {
    background: #4a7c59;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.referral-btn:hover {
    background: #2d5016;
}

/* Service Area Map */
.service-map {
    margin-top: 3rem;
    text-align: center;
}

.service-map h3 {
    color: #2d5016;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.map-caption {
    color: #666;
    font-style: italic;
    margin: 0;
}

.map-caption i {
    color: #4a7c59;
    margin-right: 8px;
}

/* Footer */
.footer {
    background: #2d5016;
    color: white;
    text-align: center;
    padding: 2rem 0;
}



@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .service-card,
    .package-card,
    .review-card,
    .contact-item {
        padding: 1.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}
.nav-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.facebook-btn {
  background: #1877f2;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.facebook-btn:hover {
  background: #145dbf;
}@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
  }

  .hero {
    padding: 80px 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .phone-btn,
  .facebook-btn {
    width: 100%;
    text-align: center;
  }
}



    .nav-brand h1 {
      font-size: 1.2rem;
    }

    .nav-menu a {
      font-size: 0.9rem;
      padding: 6px 10px;
    }

    .nav-contact a {
      font-size: 0.9rem;
      padding: 6px 12px;
    }
/* Desktop default */
#about {
  padding-top: 120px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #about {
    padding-top: 200px;
  }

  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1rem;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-brand h1 {
    font-size: 1.2rem;
  }

  .nav-menu a {
    font-size: 0.9rem;
    padding: 6px 10px;
  }

  .nav-contact a {
    font-size: 0.9rem;
    padding: 6px 12px;
  }

  .hero {
    padding: 80px 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .phone-btn,
  .facebook-btn {
    width: 100%;
    text-align: center;
  }
}


