/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: linear-gradient(to bottom right, #ffffff, #e6ffe6);
  color: #000;
  overflow-x: hidden;
}

/* GENERAL */
img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  background: #007a33;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 500;
  transition: background 0.3s ease;
  margin-top: 20px;
}

.btn:hover {
  background: #005c26;
}

/* SCROLL TO TOP BUTTON */
#scrollBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007a33;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
}
/* NAVBAR */
.navbar {
  background: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #e6ffe6;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 1.5rem;
  color: #007a33;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #007a33;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #007a33;
}


/* ACTIVE NAV LINK GLOW */
nav a.active {
  color: #007a33;
  font-weight: bold;
  position: relative;
}

nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #00cc66;
  box-shadow: 0 0 6px #00cc66, 0 0 12px #00cc66;
  border-radius: 4px;
}
/* HERO SECTION */
.services-hero {
  background: linear-gradient(to bottom right, #ffffff, #e6ffe6);
  padding: 80px 20px;
  text-align: center;
  color: #007a33;
}

.services-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.services-hero p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: auto;
}

/* SERVICE DETAIL */
.service-detail {
  max-width: 900px;
  margin: auto;
  padding: 50px 20px;
}

.service-detail h2,
.service-detail h3 {
  color: #007a33;
  margin-bottom: 15px;
}

.service-detail p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.reasons {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.reasons li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.reasons li::before {
  content: "✔";
  color: #007a33;
  position: absolute;
  left: 0;
  top: 0;
}

/* FOOTER */
.footer {
  background-color: #003d1f;
  color: white;
  padding: 50px 20px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #e6ffe6;
}

.footer-col p,
.footer-col a {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid #2a5d4a;
  margin-top: 30px;
}

/* ================= MEDIA QUERIES ================= */
@media (max-width: 992px) {
  .services-hero h1 {
    font-size: 2.3rem;
  }

  .services-hero p {
    font-size: 1rem;
  }

  .service-detail {
    padding: 40px 15px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 60px;
    right: 0;
    width: 0;
    overflow: hidden;
    flex-direction: column;
    background-color: white;
    transition: width 0.3s ease;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 0;
    z-index: 999;
  }

  nav.active {
    width: 200px;
    padding: 15px 20px;
  }

  nav a {
    font-size: 1.1rem;
    color: #007a33;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  nav.active a {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Active nav glow for mobile */
  nav a.active {
    background-color: #e6ffe6;
    border-left: 4px solid #00cc66;
    padding-left: 10px;
    box-shadow: inset 3px 0 5px rgba(0, 204, 102, 0.3);
  }

  nav a.active::after {
    display: none;
  }

  .navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }


  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .services-hero h1 {
    font-size: 2rem;
  }

  .services-hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services-hero h1 {
    font-size: 1.6rem;
  }

  .services-hero p {
    font-size: 0.95rem;
  }

  .footer-col h3 {
    font-size: 1rem;
  }

  .footer-col p,
  .footer-col a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}
