: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(0.4, 0, 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(0.4, 0, 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;
  }
}

/* faqs */
.faq-section {
  background: #f6fbf8;
  padding: 70px 8%;
}

.faq-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #1f3d2b;
}

.faq-container {
  max-width: 820px;
  margin: auto;
}

.faq-item {
  border: 1px solid #6ea48a;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1f3d2b;
}

/* ICON */
.faq-question .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f6fbf8;
}

.faq-answer p {
  padding: 15px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
}
/* 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;
  }
}

.treatments-section {
  background: whitesmoke;
  padding: 90px 8%;
}

.treatments-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.treatments-header h2 {
  font-size: 44px;
  color: #0f3d26;
  margin-bottom: 15px;
}

.treatments-header p {
  font-size: 15px;
  line-height: 1.7;
  color: #1f5f3d;
}

/* GRID */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

/* CARD */
.treatment-card {
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.treatment-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.6s ease;
}

.treatment-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  color: #0f3d26;
}

.treatment-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #1f5f3d;
  margin-bottom: 18px;
}



.treatment-card a {
  display: inline-block;
  padding: 10px 26px;
  border: 1px solid #0f3d26;
  color: #0f3d26;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* HOVER (PREMIUM) */
.treatment-card:hover img {
  transform: scale(1.05);
}

.treatment-card:hover a {
  background: #0f3d26;
  color: #ffffff;
  transform: translateY(-2px);
}

/* REVEAL ACTIVE */
.treatment-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .treatments-grid {
    grid-template-columns: 1fr;
  }

  .treatments-header h2 {
    font-size: 32px;
  }
}

/* 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;
  }
}








/* Contact from  */
/* ================= CONTACT SECTION ================= */

.contact-section {
  padding: 50px 8%;
  background: linear-gradient(135deg, #f3f8f4, #ffffff);
}

.contact-container {
  max-width: 12        00px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT IMAGE */

.contact-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.15);
  transition: 0.6s ease;
}

.contact-image img:hover {
  transform: scale(1.03);
}

/* RIGHT FORM CARD */

.contact-form-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  padding: 55px 45px;
  border-radius: 30px;
  box-shadow: 0 50px 120px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #0f3d26;
}

.form-subtitle {
  font-size: 14.5px;
  color: #6b7f74;
  margin-bottom: 35px;
}

/* INPUTS */

.input-group {
  position: relative;
  margin-bottom: 26px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #d9e4dc;
  font-size: 14.5px;
  outline: none;
  background: #ffffff;
  transition: 0.3s ease;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 6px;
  font-size: 13px;
  color: #7a8f84;
  transition: 0.3s ease;
  pointer-events: none;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #1f5f3d;
  box-shadow: 0 0 0 3px rgba(31,95,61,0.1);
}

.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 12px;
  color: #1f5f3d;
}

/* ROW */

.form-row {
  display: flex;
  gap: 18px;
}

.checkbox-group {
  margin-bottom: 25px;
  font-size: 14px;
}

/* BUTTON */

.submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #1f5f3d, #0f3d26);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.4s ease;
}

.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15,61,38,0.3);
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-image img {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 80px 6%;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-image img {
    height: 320px;
  }

  .contact-form-card {
    padding: 40px 25px;
  }
}




/* SECTION HEADING */

.contact-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.contact-section-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0f3d26;
  margin-bottom: 14px;
}

.contact-section-header p {
  font-size: 16px;
  color: #6b7f74;
  line-height: 1.6;
}

/* MOBILE */

@media (max-width: 600px) {
  .contact-section-header {
    margin-bottom: 40px;
  }

  .contact-section-header h2 {
    font-size: 28px;
  }

  .contact-section-header p {
    font-size: 14.5px;
  }
}

