@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Montserrat:wght@600;700&display=swap');

:root {
  --green: #009f4d;
  --green-light: #00b362;
  --gray-light: #f2f3f5;
  --gray-medium: #777;
  --gray-dark: #2e2e2e;
  --black: #111;
  --white: #fff;
  --transition: 0.35s ease;
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--gray-dark);
  background-color: var(--white);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

main, section, .content {
  margin-top: 85px;
}

html {
  scroll-behavior: smooth;
}

:root {
  --green-dark: #007a36;
}

.header {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  z-index: -2;
  pointer-events: none;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: -1;
  pointer-events: none;
}

.header-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo img {
  height: 58px;
  width: 58px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: transparent;
  border: 2px solid rgba(0, 176, 80, 0.6);
  box-shadow: 0 0 10px rgba(0, 176, 80, 0.25);
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(0, 176, 80, 0.45);
}

.logo a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.logo a span {
  color: var(--green);
}

.logo a:hover {
  color: var(--green);
  text-shadow: 0 0 12px rgba(0,176,80,0.6);
}


.header-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0 2rem;
  box-sizing: border-box;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

.nav a {
  position: relative;
  color: #f3f3f3;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0.5rem 0;
  letter-spacing: 0.3px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--green-light);
  text-shadow: 0 0 10px rgba(0,176,80,0.4);
}

.nav a:hover::after {
  width: 100%;
}

.nav a.active {
  color: var(--green);
  font-weight: 600;
}

.nav a.active::after {
  width: 100%;
}

.logo img {
  height: 58px;
  width: 58px;
  border-radius: 50%;
  border: 2px solid rgba(0, 176, 80, 0.6);
  box-shadow: 0 0 10px rgba(0, 176, 80, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.header-content:hover .logo img {
  box-shadow: 0 0 20px rgba(0, 176, 80, 0.55);
  transform: scale(1.05);
  filter: brightness(1.15);
}

.header-content {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

.header-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: var(--white);
  z-index: 20;
  max-width: 900px;
}

.header-text-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}

.header-text-content p {
  font-size: 1.2rem;
  color: #f0f0f0;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

.contact-btn {
  display: inline-block;
  margin-top: 1.8rem;
  padding: 0.9rem 2.4rem;
  background: linear-gradient(135deg, #009f4d, #007a36);
  color: #fff;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  z-index: 3001;
  pointer-events: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(0,176,80,0.55);
  animation: pulse 1.4s infinite alternate;
}

@keyframes pulse {
  from { transform: scale(1.05); }
  to { transform: scale(1.1); }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  z-index: 1500;
}

.burger span {
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.4s ease;
}


.about {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f2f5f3);
  padding: 100px 15%;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/about-bg.jpg") center/cover no-repeat;
  opacity: 0.12;
  z-index: 1;
}

.about-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(200, 230, 200, 0.6);
  border-radius: 25px;
  padding: 3.5rem 4rem;
  box-shadow: 0 12px 35px rgba(0, 128, 64, 0.08);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.about-container:hover {
  box-shadow: 0 18px 50px rgba(0, 128, 64, 0.15);
  transform: translateY(-4px);
}

.about-text {
  flex: 1;
  color: #1f3b2a;
}

.about-text h2 {
  font-family: "Montserrat", sans-serif;
  color: #004d26;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  position: relative;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 90px;
  height: 4px;
  background: #00a05a;
  border-radius: 2px;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #2b4633;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.about-text strong {
  color: #007f3f;
  font-weight: 700;
}

.about-text ul {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.about-text li {
  font-size: 1.1rem;
  margin: 0.7rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: #1f3b2a;
  transition: color 0.3s ease;
}

.about-text li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00a05a;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.about-text li:hover {
  color: #007f3f;
}
.about-text li:hover::before {
  transform: scale(1.2);
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 25px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 176, 80, 0.25);
}


.why-us {
  position: relative;
  padding: 120px 8%;
  text-align: center;
  color: #f5f5f5;
  background: url('your-image.jpg') center/cover no-repeat;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.why-us h2 {
  position: relative;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.why-us h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, #00b09b, #96c93d);
  border-radius: 2px;
}

.why-us p {
  position: relative;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.8;
  max-width: 750px;
  margin: 1.5rem auto 0;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 1s ease forwards;
}

.why-us p:nth-of-type(1) { animation-delay: 0.4s; }
.why-us p:nth-of-type(2) { animation-delay: 0.6s; }
.why-us p:nth-of-type(3) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.services {
  position: relative;
  padding: 120px 10%;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f6f7 0%, #e9ecef 100%);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" fill="none" stroke="rgba(0,0,0,0.04)" stroke-width="1"><circle cx="100" cy="100" r="80"/></svg>') repeat;
  opacity: 0.4;
  z-index: 0;
}

.services::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, rgba(0,0,0,0.08) 100%);
  mix-blend-mode: soft-light;
  opacity: 0.3;
  z-index: 1;
}

.services h2 {
  position: relative;
  z-index: 2;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 2.6rem;
  letter-spacing: 1px;
  margin-bottom: 3rem;
  margin-top: 60px;
}

.services h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin: 12px auto 0;
}

.accordion {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  box-shadow: 0 10px 50px rgba(0, 128, 64, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 0;
  max-width: 950px;
  margin: 0 auto;
}

.accordion-item {
  border-radius: 20px;
  margin: 15px auto;
  max-width: 950px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 6px 18px rgba(0,128,64,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,176,80,0.2);
}

.accordion-btn::before {
  background: var(--green-dark);
  mask: url('/icons/leaf.svg') no-repeat center;
  -webkit-mask: url('/icons/leaf.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border-radius: 0;
}

.accordion-item:hover::before {
  opacity: 1;
}

.accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #222;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: left;
  position: relative;
}

.accordion-btn .arrow::before,
.accordion-btn .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.accordion-btn:hover {
  color: var(--green-dark);
}

.accordion-btn:hover .arrow::before,
.accordion-btn:hover .arrow::after {
  background: var(--green);
}

.accordion-btn .arrow {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-left: 12px;
}

.accordion-btn .arrow::before {
  transform: translateY(-50%);
}

.accordion-btn .arrow::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 1;
}

.accordion-item.active .arrow::after {
  opacity: 0;
}

.accordion-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 2.5rem;
  max-height: 0;
  opacity: 0;
  overflow: visible;
  transition: max-height 0.6s ease, opacity 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  opacity: 1;
  padding-bottom: 2.5rem;
}

.accordion-left {
  flex: 1 1 45%;
  text-align: left;
}

.accordion-left p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
}

.accordion-right {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
  min-height: 220px;
}

.accordion-right img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 6px rgba(0,176,80,0.4);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  z-index: 5;
}

.accordion-right img:hover {
  transform: scale(1.4);
  box-shadow: 0 0 25px 12px rgba(0,176,80,0.6);
}


.wave-divider {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.wave-divider.visible {
  opacity: 1;
  transform: translateY(0);
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}


.contact {
  position: relative;
  padding: 100px 10%;
  background: linear-gradient(180deg, #e8f2e9 0%, #dbe8dc 100%);
  text-align: center;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  z-index: 1;
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact::before {
  background: linear-gradient(to bottom right, rgba(0, 80, 40, 0.05), rgba(0, 100, 50, 0.03));
  z-index: 0;
}

.contact::after {
  background-image: radial-gradient(rgba(0, 128, 64, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  z-index: 0;
}

.contact h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #004d26;
  text-transform: uppercase;
  text-shadow: 0 3px 10px rgba(0, 128, 64, 0.2);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.contact p {
  font-size: 1.1rem;
  color: #1f3b2a;
  line-height: 1.8;
  max-width: 650px;
  margin: 0.5rem auto;
  z-index: 2;
  position: relative;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  z-index: 2;
  position: relative;
}

.contact-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 2rem;
  width: 260px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 128, 64, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 3;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 128, 64, 0.25);
}

.contact-icon {
  width: 65px;
  height: 65px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #00b061, #008040);
  box-shadow: 0 0 15px rgba(0, 128, 64, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-card .map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #00b061, #008040);
  box-shadow: 0 0 15px rgba(0, 128, 64, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.contact-card .map-link i {
  color: #fff;
  font-size: 1.4rem;
}

.contact-card .map-link:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0, 128, 64, 0.5);
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0, 128, 64, 0.5);
}

.contact-icon i {
  color: #fff;
  font-size: 1.4rem;
}

.contact-card a {
  color: #007f3f;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
  display: inline-block;
  word-break: break-word;
  text-align: center;
}

.contact-card a:hover {
  color: #004d26;
}

.social-links {
  margin-top: 40px;
  margin-bottom: 80px;
  text-align: center;
  z-index: 2;
  position: relative;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #00b061, #008040);
  box-shadow: 0 0 15px rgba(0, 128, 64, 0.4);
  color: #fff;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0, 128, 64, 0.6);
}


.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}


.header-text-content h1 {
  animation: fadeInUp 1s ease 0.2s both;
}

.header-text-content p {
  animation: fadeInUp 1s ease 0.5s both;
}

.contact-btn {
  animation: fadeInUp 1s ease 0.8s both;
  animation-delay: 1s;
}


@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.contact-btn:hover {
  animation: pulse 1s ease infinite;
}


.accordion-item {
  transition: all 0.4s ease;
}

.accordion-content {
  transition: max-height 0.6s ease, opacity 0.4s ease, padding 0.4s ease;
}


.contact i {
  transition: transform 0.3s ease, color 0.3s ease;
}
.contact a:hover i {
  transform: translateY(-3px) scale(1.2);
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  z-index: 1500;
}

.burger span {
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.4s ease;
}


.burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

section {
  padding: 100px 10%;
}

.card, .about-container, .accordion-item {
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover, .accordion-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}