/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #ffffff, #e6ffe6);
  color: #000;
  overflow-x: hidden;
}

/* GENERAL */
a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* 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 */
.contact-hero {
  background: linear-gradient(to bottom right, #ffffff, #e6ffe6);
  padding: 80px 20px;
  text-align: center;
  color: #007a33;
}

.contact-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: auto;
}

/* CONTACT SECTION */
.quick-contact {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.contact-box {
  background: white;
  border-left: 5px solid #007a33;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 30px 25px;
  text-align: center;
  border-radius: 6px;
  flex: 1 1 300px;
}

.contact-box h2 {
  color: #007a33;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #007a33;
  color: white;
  border-radius: 25px;
  font-weight: 500;
  transition: background 0.3s ease;
  font-size: 1rem;
}

.btn:hover {
  background: #005c26;
}
.contact-box .btn.call-btn {
  display: inline-block;
  margin-bottom: 10px;
}

/* 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;
}

/* RESPONSIVE */
@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);
    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%;
  }

  .quick-contact {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 1.6rem;
  }

  .contact-hero p {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .footer-col h3 {
    font-size: 1rem;
  }

  .footer-col p,
  .footer-col a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }
}
