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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px; 
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f8fdf6;
  color: #333;
}

/* Navigation Container */
.nav {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 1.2rem 2rem;
  max-width: 100%;
  margin: 2rem auto;
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Flex container */
.nav-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}


/* Logo */
.logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

/* Hide checkbox */
.nav-toggle {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  height: 40px;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #3e5d30;
  border-radius: 2px;
}

/* Nav Links - desktop */
.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #3e5d30;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  text-decoration: underline;
  color: #6a4f2d;
}

/* =====================
   MOBILE STYLES
===================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 1rem 0;
    border-radius: 0 0 12px 12px;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }

  .nav-toggle:checked + .nav-inner .nav-links {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  /* Make sure nav-inner stays aligned */
  .nav-inner {
    align-items: center;
  }
}


/* Hero Section */
.hero {
  background: #f8fdf6;
  padding: 1.5rem 2rem 3rem;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #3e5d30;
  margin-bottom: 1rem;
}

.hero-text h1 span {
  color: #6e8c4a;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #3e5d30;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #6a4f2d;
}

/* Hero Image */
.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  max-width: 68%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    padding-bottom: 0rem;
  }

  .nav {
    flex-direction: column;
  }
  
  .hero {
    padding-bottom: 0rem; /* reduce bottom padding overall */
  }

  .nav nav a {
    margin: 0.5rem 0;
  }
  
  .nav-inner {
    padding: 0; /* remove the side spacing */
    max-width: 100%; /* override desktop constraint */
  }


  .hero-image img {
    max-width: 92%;
  }
  
  .hero-image {
    margin-bottom: 2rem;
  }
  
  .btn {
    margin-bottom: 0rem; /* control spacing under button */
  }
  
}



/* About Us Section */
.about-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.about-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
}

.about-text {
  flex: 1 1 50%;
  padding: 1rem;
}

.about-text h2 {
  font-size: 2rem;
  color: #3e5d30;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text p {
    text-align: left;
  }
}

/* Location Section */
.location-section {
  background-color: #f8fdf6;
  text-align: center;
  padding: 3rem 2rem;
}

.location-section h2 {
  color: #3e5d30;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.location-toggle {
  background-color: #e7f3e4;
  border: none;
  border-radius: 8px;
  color: #3e5d30;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: background 0.3s;
}

.location-toggle:hover {
  background-color: #d4e8d2;
}

.location-box {
  display: inline-block;
  background-color: #3e5d30;
  color: #fff;
  padding: 1rem 2rem;
  margin: 0.5rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.location-box:hover {
  background-color: #6a4f2d;
  transition: background-color 0.3s ease;
}


.location-full {
  display: none;
  margin-top: 1.5rem;
}

.location-full.show {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .location-full.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .location-box {
    display: inline-block;
    width: auto;
    margin: 0;
    padding: 0.8rem 1.5rem;
  }
}




/* Services Overview */
/* Services Overview */
.services-overview {
  padding: 4rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.services-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.services-intro h2 {
  color: #3e5d30;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.services-intro p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

/* Grid container for rows */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1rem;
}

/* Each row of service cards */
.services-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Center the second row of 2 cards */
.services-row.center-two {
  justify-content: center;
}

/* Individual service card */
.service-card {
  background: #f8fdf6;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  flex: 1 1 0;
  max-width: 350px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #3e5d30;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
}

/* Responsive layout */
@media (max-width: 768px) {
  .services-row {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    max-width: 100%;
  }
}



/* Testimonials */
.testimonials-section {
  background-color: #f8fdf6;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonials-section h2 {
  color: #3e5d30;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  flex: 1 1 400px;
  max-width: 450px;
  text-align: left;
}

.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.testimonial-author {
  font-weight: bold;
  color: #3e5d30;
  text-align: left;
  font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
  background-color: #f8fdf6;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.contact-section h2 {
  color: #3e5d30;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-message {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.contact-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-card p {
  font-size: 1.1rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.contact-card i {
  font-size: 1.2rem;
  color: #3e5d30;
}

.contact-card a {
  color: #3e5d30;
  text-decoration: none;
  font-weight: bold;
}

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

/* Team Section */
.team-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
}

.team-section h2 {
  color: #3e5d30;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.team-intro p {
  margin-bottom: 1rem;
}

.team-subtext {
  font-size: 1rem;
  color: #555;
  font-style: normal; /* avoids italic if you're not using it elsewhere */
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  padding: 0 1rem;
  margin-left: auto;
  margin-right: auto;
}


.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex: 1 1 250px;
  max-width: 330px;
  text-align: center;
  border: 1px solid #eaeaea;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);

}



.team-member img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-member h3 {
  margin-bottom: 0.25rem;
  color: #3e5d30;
}

.team-member p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .team-member {
    background-color: #f8fdf6;
  }
}


.values-intro {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #444;
  margin-top: 3.5rem;
}


.badge-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .badge-bar {
    flex-direction: column;
    align-items: center;
  }

  .badge {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}

.badge {
  position: relative;
  background-color: #6a8652; /* Olive green */
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: default;
  transition: background-color 0.2s ease;
}

.badge:hover {
  background-color: #2d4f2f; /* Forest green */
}

.badge::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -2.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #333;
  padding: 0.4rem 0.8rem;
  border: 1px solid #6a8652; /* Olive green border */
  border-radius: 0.4rem;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.badge:hover::after {
  opacity: 1;
}


/* Footer */
.footer-section {
  background-color: #3e5d30;
  color: #ffffff;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.9rem;
  margin-top: 1.5rem;
  color: #d8f3e5;
}

@media (min-width: 768px) {
  .contact-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
  }

  .contact-info {
    flex: 1;
    text-align: left;
  }

  .contact-info h2,
  .contact-info .contact-message {
    text-align: left;
  }

  .contact-info p {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .contact-info .label {
    font-weight: bold;
    color: #3e5d30;
  }

  .contact-info a {
    font-weight: bold;
    color: #6e8c4a;
    text-decoration: none;
  }

  .contact-info a:hover {
    color: #6a4f2d;
    text-decoration: underline;
  }

  .contact-divider {
    width: 1px;
    background-color: #cde0cc;
    height: auto;
    align-self: stretch;
  }

  .contact-form {
    flex: 1;
  }

  .contact-form .form-row {
    display: flex;
    gap: 1rem;
  }

  .contact-form .form-row input {
    flex: 1;
  }
}







@media (max-width: 480px) {
  .footer-nav {
    gap: 1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: center;
  }

  .footer-nav a {
    font-size: 0.95rem;
  }
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-logo-frame {
  background-color: #ffffff;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: auto;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* Contact Section */
.contact-section {
  background-color: #f8fdf6;
  padding: 4rem 2rem;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-info {
  text-align: center;
  color: #3e5d30;
  font-size: 1.05rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #3e5d30;
}

.contact-message {
  margin-bottom: 1rem;
  color: #444;
  font-size: 1.05rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-info i {
  color: #3e5d30;
}

.contact-info a {
  color: #6e8c4a;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  color: #6a4f2d;
  text-decoration: underline;
}

.contact-divider {
  background-color: #cde0cc;
  width: 100%;
  height: 1px;
  margin: 2rem 0;
}

.contact-divider {
  align-self: stretch;
}


/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #f4f4f4;
  font-family: inherit;
  color: #333;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form button {
  background-color: #3e5d30;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #6a4f2d;
}

.contact-info i {
  color: #3e5d30;
  font-size: 1.1rem;
}


/* Responsive Layout */
@media (min-width: 768px) {
  .contact-container {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }
  
  .contact-info,
  .contact-form {
    flex: 1;
  }

  .contact-info {
    text-align: left;
  }

  .contact-divider {
    width: 1px;
    height: auto;
    background-color: #cde0cc;
    margin: 0 1.5rem;
  }

  .contact-form .form-row {
    flex-direction: row;
    gap: 1rem;
  }

  .contact-form .form-row input {
    flex: 1;
  }
  
  .contact-info p {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }






}


.footer-copy {
  text-align: center;
  font-size: 0.9rem;
  color: inherit;
  margin-top: 1rem;
}

.footer-copy .no-link {
  display: block;         /* Forces it onto a new line */
  margin-top: 0.25rem;    /* Adds a little spacing above */
  pointer-events: none;   /* Prevents link interactions */
  text-decoration: none;
  color: inherit;         /* Uses parent text color */
}

.footer-copy .no-link {
  display: block;
  margin-top: 0.25rem;
  pointer-events: none;
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
}


.no-link {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
  user-select: text;
  -webkit-touch-callout: default;
  -webkit-user-select: text;
}


/* Floating Contact Button */
.floating-contact-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #3e5d30;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
  z-index: 999;
}

.floating-contact-btn:hover {
  background-color: #5a4225;
}
