/* ================================
   ROOT & GLOBAL STYLES
================================ */
:root {
  --primary: #0f3d26;
  --secondary: #1f5f3d;
  --light-bg: #f8fbf9;
  --accent: #c8e6d4;
  --text-dark: #1e2d25;
  --text-muted: #6b7c72;
  --border-light: #e3ebe6;
  --shadow-soft: 0 20px 50px rgba(15, 61, 38, 0.08);
  --radius: 14px;
}

* {
  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;
  }
}

/* ================================
   BLOG / TREATMENT PAGE LAYOUT
================================ */
.blog-post-page,
.treatment-page {
  padding: 90px 8%;
  background: #fff;
}

.blog-post-container,
.treatment-container {
  display: grid;
  grid-template-columns: 2.4fr 1fr;
  gap: 70px;
  max-width: 1300px;
  margin: auto;
}

/* ================================
   MAIN CONTENT AREA
================================ */
.blog-post-content,
.treatment-content {
  font-size: 17px;
}

.blog-post-content h1,
.treatment-content h1 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary);
  margin-bottom: 25px;
}

.post-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.blog-post-content img,
.treatment-content img {
  width: 100%;
  border-radius: var(--radius);
  margin: 35px 0;
  box-shadow: var(--shadow-soft);
}

/* ================================
   HEADINGS & TEXT
================================ */
.blog-post-content h2,
.treatment-content h2 {
  font-size: 30px;
  margin-top: 60px;
  margin-bottom: 18px;
  color: var(--primary);
}

.blog-post-content h3,
.treatment-content h3 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.blog-post-content p,
.treatment-content p {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.blog-post-content ul,
.treatment-content ul {
  margin: 25px 0 35px 22px;
}

.blog-post-content ul li,
.treatment-content ul li {
  margin-bottom: 12px;
  padding-left: 6px;
}

/* Checkmark list style */
.check-list li::marker {
  color: var(--secondary);
  font-size: 16px;
}

/* ================================
   TABLE (COMPARISON)
================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  font-size: 16px;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid var(--border-light);
  padding: 16px;
  text-align: left;
}

.comparison-table th {
  background: var(--light-bg);
  color: var(--primary);
  font-weight: 600;
}

/* ================================
   BLOCKQUOTE (HIGHLIGHT)
================================ */
blockquote {
  margin: 45px 0;
  padding: 30px 35px;
  background: var(--light-bg);
  border-left: 5px solid var(--secondary);
  font-size: 18px;
  color: var(--primary);
  border-radius: var(--radius);
}

/* ================================
   CTA BUTTONS
================================ */
.cta-box {
  display: flex;
  gap: 18px;
  margin: 50px 0;
}

.btn-primary {
  background: var(--secondary);
  color: #fff;
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--secondary);
  color: #fff;
}

/* ================================
   SIDEBAR
================================ */
.blog-post-sidebar,
.treatment-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-box {
  background: #fff;
  padding: 28px;
  margin-bottom: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.sidebar-box h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--primary);
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
}

.sidebar-box ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-muted);
}

/* ================================
   SEARCH INPUT
================================ */
.sidebar-box input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  font-size: 14px;
}

/* ================================
   LEAD FORM (PREMIUM)
================================ */
.lead-box {
  background: linear-gradient(180deg, #f5fbf7, #ffffff);
  border: 1px solid var(--border-light);
}

.lead-badge {
  display: inline-block;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 30px;
  background: var(--accent);
  color: var(--primary);
  margin-bottom: 15px;
}

.lead-box input {
  margin-bottom: 14px;
}

.lead-box button {
  width: 100%;
  padding: 14px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.lead-box button:hover {
  background: var(--primary);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .blog-post-container,
  .treatment-container {
    grid-template-columns: 1fr;
  }

  .blog-post-page,
  .treatment-page {
    padding: 60px 6%;
  }

  .blog-post-content h1 {
    font-size: 34px;
  }

  .blog-post-sidebar,
  .treatment-sidebar {
    position: static;
  }
}

@media (max-width: 576px) {
  .cta-box {
    flex-direction: column;
  }
}
/* Premium CTA Link */
.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: linear-gradient(135deg, #1f5f3d, #0f3d26);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 35px rgba(15, 61, 38, 0.28);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover animation */
.cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(15, 61, 38, 0.38);
  background: linear-gradient(135deg, #0f3d26, #1f5f3d);
}

/* Click effect */
.cta-link:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(15, 61, 38, 0.25);
}

/* Subtle shine effect */
.cta-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: all 0.6s ease;
}

.cta-link:hover::after {
  left: 120%;
}

/* 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;
  }
}
