/* ================= CONTACT SECTION ================= */
.contact-section {
  background: linear-gradient(180deg, #cfe8db, #f7f9f6);
  padding: 100px 6%;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 24px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.08);
}

  

/* ================= ADDRESS ================= */
.contact-info {
  max-width: 420px;
}

.address-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1f5f3d;
  font-size: 20px;
  margin-bottom: 12px;
}

.address-text {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.map-box {
  margin-top: 22px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.map-box iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.map-link {
  display: inline-block;
  margin-top: 14px;
  color: #1f5f3d;
  font-weight: 500;
  text-decoration: none;
}

.map-link:hover {
  text-decoration: underline;
}

/* ================= FORM ================= */
.contact-form h2 {
  font-size: 34px;
  color: #0f3d26;
}

.form-subtitle {
  margin: 12px 0 32px;
  color: #666;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 16px 18px;
  background: #f6f1ea;
  border: 1px solid transparent;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 14.5px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1f5f3d;
  background: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

textarea {
  min-height: 130px;
}

/* =========================
   CHECKBOX FIX (PREMIUM)
========================= */
.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 28px;
}

/* RESET checkbox ONLY (prevents large size issue) */
.checkbox input[type="checkbox"] {
  all: unset;                 /* 🔥 prevents inheriting input styles */
  width: 18px;
  height: 18px;
  border: 2px solid #1f5f3d;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

/* Check mark */
.checkbox input[type="checkbox"]::after {
  content: "";
  width: 9px;
  height: 9px;
  background: #1f5f3d;
  border-radius: 2px;
  transform: scale(0);
  transition: transform 0.2s ease;
}

/* Checked state */
.checkbox input[type="checkbox"]:checked::after {
  transform: scale(1);
}

/* Hover */
.checkbox input[type="checkbox"]:hover {
  box-shadow: 0 0 0 4px rgba(31, 95, 61, 0.12);
}

/* Label */
.checkbox label {
  cursor: pointer;
  color: #555;
}

/* Link */
.checkbox a {
  color: #1f5f3d;
  font-weight: 500;
  text-decoration: underline;
}

.checkbox a:hover {
  color: #0f3d26;
}


/* Button */
.contact-form button {
  padding: 15px 42px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #1f5f3d, #0f3d26);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(15,61,38,0.35);
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(15,61,38,0.45);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 45px;
  }

  .contact-info {
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    width: 100%;
  }
}



:root {
  --green: #5f7f6b;
  --light-green: #e7f0ea;
  --dark: #24352c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f7f9f6;
  color: var(--dark);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 8%;
  background: #a9c2b3;
  align-items: center;
}

.hero-left h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 520px;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* IMAGE STACK */
.image-stack {
  position: relative;
  display: flex;
  gap: 10px;
}

.image-stack img {
  width: 220px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* SERVICES */
.services {
  padding: 70px 8%;
  background: #fff;
}

.services-grid {
  display: grid;
  gap: 25px;
}

/* Desktop: 3 columns */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet: 2 columns */
@media (min-width: 600px) and (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 599px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--light-green);
  border-radius: 16px;
  padding: 20px;
  transition: 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.service-card span {
  color: var(--green);
  font-size: 14px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card.intro {
  background: #f0f4f1;
}

.service-card.intro h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* ANIMATIONS */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.active {
  opacity: 1;
  transform: translate(0);
}

/* MOBILE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .image-stack {
    justify-content: center;
  }

  .image-stack img {
    width: 160px;
    height: 240px;
  }
}


/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1350px;
  margin: auto;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 52px;
}

/* DESKTOP NAV */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 48px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  font-size: 17px;
  color: #1f5f3d;
  font-weight: 500;
  position: relative;
}

/* UNDERLINE HOVER */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #1f5f3d;
  transition: 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 130%;
  left: 0;
  width: 260px;
  background: #fff;
  padding: 18px 0;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}

.dropdown-panel a {
  display: block;
  padding: 12px 24px;
  font-size: 14px;
  color: #1f5f3d;
}

.dropdown-panel a:hover {
  background: #edf5ef;
  padding-left: 30px;
}

.dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* MOBILE MENU ICON */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE FULLSCREEN MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  padding: 80px 30px;
}

.mobile-menu.active {
  transform: translateX(0);
}

.close-menu {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  font-size: 30px;
  color: #1f5f3d;
  cursor: pointer;
}

.mobile-nav {
  list-style: none;
  padding: 0;
}

.mobile-nav > li {
  border-bottom: 1px solid #cfead8;
}

.mobile-nav a,
.accordion-toggle {
  width: 100%;
  padding: 22px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #1f5f3d;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* ACCORDION */
.accordion-toggle {
  width: 100%;
  position: relative;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: #1f5f3d;
}
.accordion-toggle .menu-text {
  width: 100%;
  text-align: center;
  display: block;
}
.accordion-toggle .arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.arrow {
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #f6fbf8;
  transition: max-height 0.35s ease;
}

.accordion-content li a {
  padding: 14px 0;
  font-size: 18px;
  display: block;
}

.accordion.active .accordion-content {
  max-height: 400px;
}

.accordion.active .arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}


/* footer */
.site-footer {
  background: #0f3d26;
  color: #f4f7f2;
  padding-top: 60px;
  font-size: 14px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 0 8% 40px;
}

/* BRAND */
.footer-col.brand h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.footer-col.brand span {
  color: #d7e7c9;
}

.footer-col.brand p {
  line-height: 1.7;
  color: #e6ecdf;
}

/* HEADINGS */
.footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
  color: #ffffff;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #e6ecdf;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #4a5c37;
  font-size: 13px;
  color: #dfe6d7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

}
/* LOGO */
.footer-logo {
  width: 160px;
  margin-bottom: 18px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #6f8454;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* ICON ANIMATION */
.social-icons a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scale(0);
  border-radius: 50%;
  transition: 0.35s;
}

.social-icons a:hover::after {
  transform: scale(1);
}

.social-icons a:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* BRAND COLORS */
.social-icons a.instagram:hover {
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
}

.social-icons a.facebook:hover {
  background: #1877f2;
}

.social-icons a.linkedin:hover {
  background: #0a66c2;
}

.social-icons a.youtube:hover {
  background: #ff0000;
}

/* MOBILE CENTERING */
@media (max-width: 600px) {
  .social-icons {
    justify-content: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}


/* PHONE CTA */
.header-phone a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 40px;
  background: linear-gradient(135deg, #1f5f3d, #0f3d26);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none !important;
  box-shadow: 0 12px 30px rgba(15, 61, 38, 0.35);
  transition: all 0.35s ease;
  white-space: nowrap;
}

/* Remove browser default blue color */
.header-phone a:visited,
.header-phone a:active {
  color: #ffffff !important;
}

/* Icon styling */
.phone-icon {
  font-size: 16px;
  line-height: 1;
}

/* Hover effect */
.header-phone a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(15, 61, 38, 0.45);
}

/* Small pulse animation (premium feel) */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31,95,61,0.45); }
  70% { box-shadow: 0 0 0 10px rgba(31,95,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,95,61,0); }
}

.header-phone a {
  animation: pulse 2.5s infinite;
}

/* Hide phone CTA on tablet & mobile */
@media (max-width: 1024px) {
  .header-phone {
    display: none !important;
  }
}

/* ===============================
   MOBILE ACTION BAR
================================ */
.mobile-action-bar {
  display: none; /* hidden by default */
}

/* MOBILE ONLY */
@media (max-width: 768px) {
  .mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: #0f3d26;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -8px 25px rgba(0,0,0,0.25);
  }

  .mobile-action-bar .action-item {
    flex: 1;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .mobile-action-bar .action-item i {
    font-size: 18px;
  }

  /* WhatsApp highlight */
  .mobile-action-bar .action-item:nth-child(3) {
    color: #25d366;
  }

  /* Prevent content hiding behind bar */
  body {
    padding-bottom: 70px;
  }
}





