/* ============================
       BASE
    ============================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #eef4e2;
  color: #444;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

/* ============================
       TOP ANNOUNCEMENT BAR
    ============================ */
.top-bar {
  background-color: #eef4e2;
  font-size: 0.78rem;
  color: #555;
  padding: 7px 24px;
}

/* ============================
       MAIN CARD / WRAPPER
    ============================ */
.site-wrapper {
  overflow: hidden;
  background-color: #FAFAEA;
}

/* ============================
       HEADER / NAV
    ============================ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 36px;
  border-bottom: 1px solid #f0f0f000;
  gap: 16px;
  position: relative;
  top: 0;
  z-index: 999;
  background-color: transparent;
  box-shadow: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  padding-top: 8px;
}

.site-header.is-fixed {
  position: fixed !important;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  object-fit: cover;
  flex-shrink: 0;
  width: 70px;
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  border: #fff 5px solid;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #2c5a12;
  line-height: 1.25;
}

/* ---- StellarNav overrides ---- */
.stellarnav {
  width: auto;
  z-index: 100;
}

/* Desktop-only horizontal menu. On mobile StellarNav switches to a
   dropdown panel — see the mobile rules below. */
@media (min-width: 992px) {
  .stellarnav>ul {
    display: flex !important;
    flex-direction: row;
    text-align: left;
    background: transparent;
    margin: 0;
    padding: 0;
  }
}

.stellarnav>ul>li {
  display: inline-block;
  position: relative;
}

.stellarnav>ul>li>a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.87rem;
  font-weight: 500;
  color: #000000 !important;
  padding: 8px 12px;
  transition: color 0.2s;
}

.stellarnav>ul>li>a:hover {
  color: #4a7c30 !important;
}

/* ---- Dropdown sub-menu ---- */
.stellarnav .dropdown-icon {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.7rem;
  color: inherit;
  transition: transform 0.2s ease;
}

.stellarnav li.has-sub:hover>a .dropdown-icon,
.stellarnav li.has-sub.open>a .dropdown-icon,
.stellarnav li.has-sub.dropdown-open>a .dropdown-icon {
  transform: rotate(180deg);
}

.stellarnav ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 200;
}

.stellarnav ul ul li {
  display: block;
}

.stellarnav ul ul li a {
  display: block;
  padding: 9px 18px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: #2d2d2d !important;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.stellarnav ul ul li a:hover {
  background: #eef4e2;
  color: #1E7354 !important;
}

.stellarnav li.has-sub:hover>ul,
.stellarnav li.has-sub.open>ul,
.stellarnav li.has-sub.dropdown-open>ul {
  display: block;
}

/* Hide the mobile toggle + close button on desktop */
@media (min-width: 992px) {

  .stellarnav .menu-toggle,
  .stellarnav .stellarnav-close {
    display: none !important;
  }
}

/* Nav CTA button */
.btn-contact-nav {
  background-color: #A9C72B;
  color: #000;
  border: none;
  border-radius: 30px;
  padding: 9px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.87rem;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  transition: background 0.2s;
  flex-shrink: 0;
}

.btn-contact-nav:hover {
  background-color: #b2d84e;
  color: #1e3d0e;
}

/* ============================
       HERO SECTION
    ============================ */
.hero-section {
  padding: var(--section-pad-y) 36px;
  background-color: #eef4e200;
}

.hero-heading {
  font-size: 2.45rem;
  font-weight: 800;
  color: #1E7354;
  line-height: 1.18;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 16px;
  color: #000000;
  line-height: 22px;
  max-width: 514px;
  margin-bottom: 30px;
  width: 100%;
}

.btn-book {
  background-color: #A8C726;
  color: #000000;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-book:hover {
  background-color: #3a6224;
  color: #fff;
}

/* ---- Hero image cluster ---- */
.hero-images-wrap {
  position: relative;
  height: 310px;
}

/* Yellow organic blob behind images */
.hero-blob {
  position: absolute;
    right: 464px;
    bottom: -32px;

  width: 110px;
  transform: rotate(325deg);
  height: 159px;
  background: #FCC727;
  border-radius: 40px 30px 67px 58px;
  z-index: 0;
}

.hero-images-wrap {
  position: relative;
}

.hero-images-wrap::after {
    position: absolute;
    width: 198px;
    border-radius: 40px;
    height: 200px;
    background-color: transparent;
    border: 3px solid #FDC727;
    content: "";
    transform: rotate(45deg);
    top: -3px;
    left: 269px;
    bottom: 0;
    right: 0;
}
.hero-img-back {
  position: absolute;
  left: 11px;
  top: 40px;
  width: 200px;
  height: 250px;
  object-fit: cover;
  object-position: 18% top;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
  z-index: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.hero-img-front {
  position: absolute;
right: 132px;

  top: 0;
  width: 194px;
  height: 241px;
  object-fit: cover;
  object-position: 82% top;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
  z-index: 2;
}

/* Elderly Day Care info card */
.elderly-card {
  position: absolute;
  right: 0;
  bottom: 21px;
  width: 228px;
  background: #f9d030;
  border-radius: 17px;
  padding: 18px 20px;
  z-index: 5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.11);
}

.elderly-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
}

.elderly-card p {
  font-size: 0.74rem;
  color: #000000;
  margin: 0;
  line-height: 1.55;
}

/* ============================
       SERVICES SECTION
    ============================ */
.services-section {
  background: #ffffff00;
  padding: var(--section-pad-y) 36px;
  border-top: 1px solid #f3f3f300;
}
.services-section .container{
  overflow-x: hidden;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.service-img {
  width: 128px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.service-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
  margin-bottom: 15px;
}

.service-content p {
  font-size: 0.79rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* .services-col-divider {
      border-right: 1px solid #ececec;
    } */

/* ============================
       FOOTER / INFO SECTION
    ============================ */
.info-section {
  background: #fafafa00;
  border-top: 1px solid #eeeeee00;
  padding: 32px 36px 28px;
}

.info-org-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.0rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.info-contact p {
  font-size: 0.82rem;
  color: #000000;
  margin: 0;
  font-weight: 600;
}

.info-contact a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}

.info-contact a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.social-icons a {
  color: #333;
  font-size: 1.05rem;
  transition: color 0.2s;
}

.social-icons a:hover {
  color: #4a7c30;
}

/* Promo column */
.promo-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #9BA83B;
  margin-bottom: 4px;
}

.promo-sub {
  font-size: 0.83rem;
  color: #000000;
  margin-bottom: 11px;
}

.gallery-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #9BA83B;
  text-decoration: none;
  font-size: 0.95rem;
}

.gallery-link:hover {
  text-decoration: underline;
}

/* Discount column */
.discount-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.0rem;
  font-weight: 700;
  color: #9BA83B;
  margin-bottom: 4px;
}

.discount-sub {
  font-size: 0.83rem;
  color: #000000;
  margin-bottom: 16px;
}

.btn-yellow-link {
  background: #FCC727;
  border: none;
  border-radius: 10px;
  padding: 14px 16px;
  display: block;
  width: 100%;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-yellow-link:hover {
  background: #f0c820;
}
textarea {
  resize: none;
}
.btn-yellow-link strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

.btn-yellow-link span {
  font-size: 0.74rem;
  color: #000000;
  word-break: break-all;
}

/* ============================
       LIGHTBOX / MODAL ADJUSTMENTS
    ============================ */
html.glightbox-open,
body.glightbox-open {
  overflow: hidden !important;
  height: 100% !important;
  width: 100% !important;
}

.glightbox-container,
.glightbox-overlay,
.glightbox-content,
.glightbox-slide {
  overflow: hidden !important;
}

.glightbox-slide img,
.glightbox-content img,
.glightbox-container img {
  max-width: 100vw !important;
  max-height: 100vh !important;
  width: auto !important;
  height: auto !important;
}

/* ============================
       TARGET AUDIENCE CAPTION
    ============================ */
.target-audience {
  max-width: 1200px;
  margin: 0 auto 28px;
  padding: 0 24px;
  text-align: right;
  font-size: 0.78rem;
  color: #555;
  line-height: 1.5;
}

/* ============================
       RESPONSIVE
    ============================ */
/* ---- Tablet & mobile header (StellarNav switches to hamburger) ---- */
@media (max-width: 991.98px) {
  .site-header {
    padding: 14px 20px;
    gap: 12px;
    flex-wrap: nowrap;
  }

  /* Place: [logo] [hamburger] [contact button] in one row */
  .stellarnav {
    order: 2;
    margin-left: auto;
    width: auto;
    flex: 0 0 auto;
  }
.footer-copyright {
    display: none;
}
  .btn-contact-nav {
    order: 3;
  }

  /* Hamburger toggle — StellarNav renders this as:
     <a class="menu-toggle"><span class="bars"><span/><span/><span/></span>Menu</a> */
  .stellarnav .menu-toggle {
    display: inline-block;
    cursor: pointer;
    background: transparent;
    border: 1px solid #d6e2c5;
    border-radius: 8px;
    padding: 8px 10px;
    color: transparent;
    font-size: 0;
    line-height: 0;
    text-decoration: none;
  }

  .stellarnav .menu-toggle:hover,
  .stellarnav .menu-toggle:focus {
    background: #eef4e2;
    outline: none;
  }

  .stellarnav .menu-toggle .bars {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    vertical-align: middle;
  }

  .stellarnav .menu-toggle .bars span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1E7354;
    border-radius: 2px;
  }

  /* Mobile off-canvas panel — slides in from the left when toggled.
     !important overrides StellarNav's jQuery slideDown/slideUp, which
     otherwise animates inline `display`, `height`, `padding` and `margin`.
     Those inline animations fight the horizontal transform and make the
     panel content jerk/shift into place on open — so we lock every
     property StellarNav tries to animate. */
  .stellarnav.mobile>ul,
  .stellarnav.active>ul {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 82%;
    max-width: 80%;
    height: 100vh !important;
    background: #ffffff;
    box-shadow: 6px 0 24px rgba(0, 0, 0, 0.18);
    padding: 72px 0 24px !important;
    margin: 0 !important;
    z-index: 1000;
    display: flex !important;
    flex-direction: column;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-100%);
    transition: transform 0.32s ease, visibility 0s linear 0.32s;
    visibility: hidden;
    pointer-events: none;
  }

  .stellarnav.mobile.active>ul,
  .stellarnav.active>ul {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.32s ease, visibility 0s linear 0s;
    pointer-events: auto;
  }

  /* Close (X) button inside the open panel */
  .stellarnav .stellarnav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #d6e2c5;
    border-radius: 50%;
    background: #ffffff;
    color: #1E7354;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
  }

  .stellarnav .stellarnav-close:hover,
  .stellarnav .stellarnav-close:focus {
    background: #eef4e2;
    outline: none;
  }

  /* Dim backdrop behind the open panel */
  .stellarnav.mobile.active::before,
  .stellarnav.active::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 999;
  }

  /* Keep the hamburger toggle clickable above the open panel */
  .stellarnav .menu-toggle {
    position: relative;
    z-index: 1;
  }

  .stellarnav.mobile>ul>li,
  .stellarnav.active>ul>li {
    display: block;
    width: 100%;
  }

  .stellarnav.mobile>ul>li>a,
  .stellarnav.active>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
  }

  .stellarnav.mobile>ul>li:last-child>a,
  .stellarnav.active>ul>li:last-child>a {
    border-bottom: none;
  }

  /* Nested submenu on mobile: stacked inline, indented */
  .stellarnav.mobile ul ul,
  .stellarnav.active ul ul {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: #fafaea;
  }

  .stellarnav.mobile ul ul li a,
  .stellarnav.active ul ul li a {
    padding: 10px 36px;
    font-size: 0.88rem;
    white-space: normal;
  }

  /* Visible expand indicator next to items with a submenu (e.g. Services) */
  .stellarnav.mobile li.has-sub>a .dropdown-icon,
  .stellarnav.active li.has-sub>a .dropdown-icon {
    float: none;
    margin-left: auto;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #eef4e2;
    color: #1E7354;
    font-size: 0.75rem;
    transition: transform 0.25s ease, background 0.2s;
  }

  .stellarnav.mobile li.has-sub.open>a .dropdown-icon,
  .stellarnav.mobile li.has-sub.dropdown-open>a .dropdown-icon,
  .stellarnav.active li.has-sub.open>a .dropdown-icon,
  .stellarnav.active li.has-sub.dropdown-open>a .dropdown-icon {
    background: #A9C72B;
    color: #1e3d0e;
    transform: rotate(180deg);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-heading {
    font-size: 1.75rem;
  }

  .hero-sub {
    max-width: 100%;
  }

  .services-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-item {
    flex-direction: column;
  }

  .service-img {
    width: 100%;
    height: 160px;
  }

  .services-col-divider {
    border-right: none;
    border-bottom: 1px solid #ececec;
    padding-bottom: 20px;
  }

  .info-section {
    padding: 24px 16px;
  }

  .target-audience {
    text-align: left;
    padding: 0 16px;
  }
}

stellarnav>ul>li>a {
  text-decoration: none;
}

.service-content p {
  font-size: 0.79rem;
  color: #000000;
  line-height: 17px;
  margin: 0;
}

.btn-contact-nav:hover {
  background-color: #3a6224;
  color: #fff;
}

.hero-images-wrap {
  position: relative;
}

.hero-images-wrap .position-image {
    position: absolute;
    bottom: -50px;
    left: 51px;
    z-index: 1;
}

/* ============================
   ABOUT PAGE STYLES
   Builds on the base styles above
   using the same palette: #1E7354
   (green), #A8C726 (lime), #FCC727
   (yellow), #FAFAEA (card), #eef4e2
   (page bg).
============================ */

:root {
  --mg-green: #1E7354;
  --mg-green-dark: #155640;
  --mg-lime: #A8C726;
  --mg-yellow: #FCC727;
  --mg-cream: #FAFAEA;
  --mg-bg: #eef4e2;
  --mg-text: #2d2d2d;
  --mg-muted: #6b7066;
  --section-pad-y: 50px;
}

@media (max-width: 991px) {
  :root {
    --section-pad-y: 36px;
  }
}

@media (max-width: 575.98px) {
  :root {
    --section-pad-y: 24px;
  }
}

/* Active nav state — keep the current page's menu item highlighted.
   wp_nav_menu adds current-menu-item / current_page_item to the <li> of
   the page being viewed, and current-menu-ancestor / current_page_ancestor
   to a parent item when a child page is open (e.g. a Services sub-item).
   The trailing a.active covers the fallback menu and any JS-set state. */
.stellarnav>ul>li.current-menu-item>a,
.stellarnav>ul>li.current_page_item>a,
.stellarnav>ul>li.current-menu-ancestor>a,
.stellarnav>ul>li.current_page_ancestor>a,
.stellarnav>ul>li.current-menu-parent>a,
.stellarnav>ul>li>a.active {
  color: var(--mg-green) !important;
  font-weight: 600;
}

/* Generic section helpers */
.section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mg-lime);
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--mg-green);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--mg-text);
  margin-bottom: 16px;
}

.text-accent {
  color: var(--mg-yellow);
}

/* ============================
   PAGE BANNER
============================ */
.about-banner {
  position: relative;
  margin: 0 16px;
    padding: 53px 36px 53px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1E7354 0%, #2c8a66 100%);
  overflow: hidden;
  color: #fff;
  margin-top: 10px;
}

.about-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mg-yellow);
  margin-bottom: 12px;
}

.about-banner-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 16px;
}

.about-breadcrumb {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-breadcrumb a {
  color: var(--mg-yellow);
  text-decoration: none;
  font-weight: 600;
}

.about-breadcrumb a:hover {
  text-decoration: underline;
}
footer.info-section .row{
  gap: 0px;
}
.about-breadcrumb span[aria-hidden="true"] {
  margin: 0 8px;
  opacity: 0.7;
}

.about-banner-blob {
  position: absolute;
  width: 280px;
  height: 280px;
  background: var(--mg-yellow);
  opacity: 0.18;
  border-radius: 50% 40% 55% 45% / 50% 45% 55% 50%;
  top: -90px;
  right: -90px;
  z-index: 1;
  animation: floatBlob 10s ease-in-out infinite;
}

@keyframes floatBlob {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(20px) rotate(8deg);
  }
}

/* ============================
   OUR STORY
============================ */
.about-story {
  padding: var(--section-pad-y) 36px;
}

.story-image-wrap {
  position: relative;
  padding: 18px;
  max-width: 480px;
  margin: 0 auto;
}

.story-image-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(30, 115, 84, 0.18);
  position: relative;
  z-index: 2;
}

.story-image-accent {
  position: absolute;
  width: 70%;
  height: 70%;
  border: 4px solid var(--mg-yellow);
  border-radius: 22px;
  top: -14px;
  left: -14px;
  z-index: 1;
}

.story-experience-card {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--mg-yellow);
  padding: 22px 24px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  z-index: 3;
  text-align: center;
  min-width: 150px;
}

.exp-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--mg-green);
  line-height: 1;
}

.exp-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 6px;
  line-height: 1.3;
}

.story-points {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
}

.story-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--mg-text);
  margin-bottom: 12px;
  font-weight: 500;
}

.story-points li i {
  color: var(--mg-lime);
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* ============================
   PILLARS (Mission / Vision / Values)
============================ */
.about-pillars {
  padding: 30px 36px 70px;
}

.pillar-card {
  background: #fff;
  border-radius: 22px;
  padding: 38px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(30, 115, 84, 0.06);
  border: 1px solid #eef0e6;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 115, 84, 0.14);
}

.pillar-card-featured {
  background: var(--mg-green);
  color: #fff;
  border-color: transparent;
}

.pillar-card-featured h3,
.pillar-card-featured p {
  color: #fff;
}

.pillar-card-featured .pillar-icon {
  background: var(--mg-yellow);
  color: var(--mg-green);
}

.pillar-icon {
  width: 70px;
  height: 70px;
  border-radius: 30%;
  background: var(--mg-bg);
  color: var(--mg-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: transform 0.35s ease;
}

.pillar-card:hover .pillar-icon {
  transform: rotateY(180deg);
}

.pillar-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--mg-green);
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--mg-muted);
  margin: 0;
}

/* ============================
   STATS / COUNTER
============================ */
.about-stats {
  margin: 0 16px;
  padding: 50px 36px;
  background: var(--mg-green);
  border-radius: 22px;
  color: #fff;
}

.stat-block {
  padding: 10px;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--mg-yellow);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--mg-yellow);
}

.stat-label {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 10px 0 0;
  font-weight: 500;
}

/* ============================
   WHY CHOOSE US
============================ */
.about-why {
  padding: 70px 36px;
}

.why-item {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid #eef0e6;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(30, 115, 84, 0.10);
  border-color: var(--mg-lime);
}

.why-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--mg-lime);
  opacity: 0.55;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.why-item h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mg-green);
  margin-bottom: 10px;
}

.why-item p {
  font-size: 0.87rem;
  color: var(--mg-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================
   TEAM
============================ */
.about-team {
  padding: 20px 36px 70px;
}

.team-card {
  background: #fff;
  border-radius: 22px;
  padding: 22px 20px 26px;
  text-align: center;
  border: 1px solid #eef0e6;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 115, 84, 0.14);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--mg-bg);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.07);
}

.team-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mg-green);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.83rem;
  color: var(--mg-muted);
  margin-bottom: 14px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mg-bg);
  color: var(--mg-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.team-social a:hover {
  background: var(--mg-lime);
  color: #fff;
  transform: translateY(-3px);
}

/* ============================
   TESTIMONIALS
============================ */
.about-testimonials {
  padding: 30px 36px 90px;
  position: relative;
}

#testimonialCarousel {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 56px 60px 44px;
  text-align: left;
  box-shadow: 0 18px 50px rgba(30, 115, 84, 0.10);
  border: 1px solid #eef0e6;
  margin: 0;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--mg-yellow) 0%, var(--mg-lime) 100%);
}

.quote-watermark {
  position: absolute;
  top: 28px;
  right: 38px;
  font-size: 5rem;
  color: var(--mg-yellow);
  opacity: 0.16;
  pointer-events: none;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--mg-yellow);
  font-size: 0.95rem;
}

.testimonial-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--mg-text);
  font-style: normal;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-text::before {
  content: "\201C";
}

.testimonial-text::after {
  content: "\201D";
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid #eef0e6;
  font-family: 'Poppins', sans-serif;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--mg-bg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-meta strong {
  display: block;
  font-weight: 700;
  color: var(--mg-green);
  font-size: 1rem;
  line-height: 1.2;
}

.testimonial-meta span {
  display: block;
  font-size: 0.82rem;
  color: var(--mg-muted);
  margin-top: 4px;
}

/* Bottom controls row: prev | dots | next */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 32px;
}

.custom-carousel-control {
  position: static;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid #eef0e6;
  border-radius: 50%;
  opacity: 1;
  transform: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.custom-carousel-control:hover {
  background: var(--mg-green);
  border-color: var(--mg-green);
  transform: translateY(-2px);
}

.custom-carousel-control i {
  color: var(--mg-green);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.custom-carousel-control:hover i {
  color: #fff;
}

.custom-carousel-indicators {
  position: static;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-carousel-indicators button {
  width: 20px;
  height: 5px;
  border-radius: 3px;
  background: #fcc72761;
  opacity: 1;
  border: none;
  margin: 0 5px;
  transition: background 0.25s ease, width 0.25s ease;
}

.custom-carousel-indicators button.active {
  background: var(--mg-yellow);
  width: 28px;
}

/* ============================
   CTA STRIP
============================ */
.about-cta {
  margin: 0 16px 40px;
}

.cta-inner {
  background: var(--mg-yellow);
  border-radius: 22px;
  padding: 42px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 12px 30px rgba(252, 199, 39, 0.25);
}

.cta-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--mg-green-dark);
  margin-bottom: 8px;
}

.cta-inner p {
  font-size: 0.95rem;
  color: #1a1a1a;
  margin: 0;
}

.btn-cta {
  background: var(--mg-green) !important;
  color: #fff !important;
}

.btn-cta:hover {
  background: var(--mg-green-dark) !important;
}

/* ============================
   SCROLL REVEAL ANIMATION
============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE — ABOUT PAGE
============================ */
@media (max-width: 991px) {
  .about-banner-title {
    font-size: 2.2rem;
  }

  .section-heading {
    font-size: 1.7rem;
  }

  .story-image-wrap {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .about-banner {
    padding: 44px 22px 50px;
    margin: 0 8px;
  }

  .about-banner-title {
    font-size: 1.7rem;
  }

  .about-story,
  .about-pillars,
  .about-why,
  .about-team,
  .about-testimonials {
    padding-left: 18px;
    padding-right: 18px;
  }
.about-why {
    padding-top: 50px;
    padding-bottom: 5px;
}


  .section-heading {
    font-size: 1.55rem;
  }

  .story-image-main {
    height: 340px;
  }

  .story-experience-card {
    right: 6px;
    bottom: -6px;
    padding: 16px 18px;
    min-width: 120px;
  }

  .exp-number {
    font-size: 1.9rem;
  }

  .about-stats {
    margin: 0 8px;
    padding: 40px 20px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-suffix {
    font-size: 1.4rem;
  }

  .testimonial-card {
    padding: 40px 26px 32px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .quote-watermark {
    font-size: 3.6rem;
    top: 18px;
    right: 22px;
  }

  .testimonial-controls {
    gap: 14px;
    margin-top: 24px;
  }

  .cta-inner {
    padding: 30px 24px;
    text-align: center;
    justify-content: center;
  }

  .cta-inner h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .pillar-card {
    padding: 30px 22px;
  }

  .story-experience-card {
    display: none;
  }
}

.pillar-card.pillar-card-featured.reveal.is-visible h3 {
  color: #fff;
}

.pillar-card.pillar-card-featured.reveal.is-visible p {
  color: #fff;
}

.custom-carousel-indicators button.active {
  height: 5px;
}

.carousel-indicators [data-bs-target] {
  height: 24px;
  background-color: #fcc72782;
}

/* ============================
   SERVICES PAGE
============================ */

/* Intro strip */
.services-intro {
  padding: var(--section-pad-y) 36px;
}

.intro-visual {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  padding: 22px 22px 30px;
}

.intro-visual-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 44px rgba(30, 115, 84, 0.18);
}

.intro-visual-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 78%;
  border: 4px solid var(--mg-yellow);
  border-radius: 24px;
  z-index: 1;
}

.intro-visual-accent::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 60px;
  height: 60px;
  background: var(--mg-lime);
  border-radius: 50% 40% 55% 45%;
  opacity: 0.35;
  animation: floatBlob 9s ease-in-out infinite;
}

.intro-feature-card {
  position: absolute;
  left: -20px;
  bottom: 0;
  z-index: 4;
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 18px 36px rgba(30, 115, 84, 0.18);
  border: 1px solid #eef0e6;
  max-width: 240px;
}

.intro-feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--mg-green);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #d8dccd;
}

.intro-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.intro-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--mg-text);
  font-weight: 500;
  padding: 5px 0;
}

.intro-feature-list li i {
  color: var(--mg-lime);
  font-size: 0.7rem;
  width: 16px;
  height: 16px;
  background: rgba(168, 199, 38, 0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.intro-floating-badge {
  position: absolute;
  top: 40px;
  right: -10px;
  z-index: 4;
  background: var(--mg-yellow);
  border-radius: 18px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 14px 28px rgba(252, 199, 39, 0.4);
  min-width: 120px;
}

.intro-floating-badge .badge-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--mg-green);
  line-height: 1;
}

.intro-floating-badge .badge-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mg-green-dark);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* Service list cards */
.services-list {
  padding: var(--section-pad-y) 36px;
}

.service-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #eef0e6;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(30, 115, 84, 0.14);
  border-color: var(--mg-lime);
}

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--mg-bg);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.07);
}

.service-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--mg-yellow);
  color: var(--mg-green-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 30px;
  box-shadow: 0 6px 14px rgba(252, 199, 39, 0.35);
}

.service-card-body {
  padding: 26px 26px 28px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  position: absolute;
  top: -28px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--mg-green);
  color: var(--mg-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 22px rgba(30, 115, 84, 0.25);
  transition: transform 0.35s ease, background 0.35s ease;
}

.service-card:hover .service-card-icon {
  transform: rotate(-8deg) translateY(-3px);
  background: var(--mg-lime);
  color: #fff;
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--mg-green);
  margin: 4px 0 12px;
}

.service-card-body>p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--mg-muted);
  margin-bottom: 16px;
}

.service-card-points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.service-card-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--mg-text);
  font-weight: 500;
  padding: 5px 0;
}

.service-card-points li i {
  color: var(--mg-lime);
  font-size: 0.75rem;
  width: 18px;
  height: 18px;
  background: rgba(168, 199, 38, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card-link {
  margin-top: auto;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--mg-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s ease, gap 0.25s ease;
}

.service-card-link:hover {
  color: var(--mg-lime);
  gap: 12px;
}

.service-card-link i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

/* Service slider layout + scoped arrow styles */
.service-slider {
  margin: 0 -18px;
  position: relative;
  padding: 0 8px;
}

.service-slide {
  padding: 12px 18px 0;
  box-sizing: border-box;
  height: auto;
  display: flex;
}

/* Equal-height cards: make the slick track a flex row so every slide
   stretches to the tallest, then keep the height chain unbroken down
   to .service-card (which is already height:100%). */
.service-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.service-slider .slick-slide {
  height: auto;
  display: flex;
}

.service-slider .slick-slide > div {
  display: flex;
  width: 100%;
}

/* Allow lifted cards and shadows to show outside the slider viewport */
.service-slider .slick-list {
  overflow: visible;
}

.service-slider .slick-dots {
  margin: 22px 0 0;
}

.service-slider .slick-prev,
.service-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--mg-green);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(19, 80, 60, 0.14);
  z-index: 5;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.service-slider .slick-prev {
  left: 12px;
}

.service-slider .slick-next {
  right: 12px;
}

.service-slider .slick-prev i,
.service-slider .slick-next i {
  font-size: 0.95rem;
}

.service-slider .slick-prev:hover,
.service-slider .slick-next:hover {
  transform: translateY(-50%) scale(1.04);
  background: var(--mg-lime);
  color: #fff;
}

.service-slider .slick-dots li button:before {
  font-size: 10px;
  color: rgba(73, 86, 79, 0.4);
}

.service-slider .slick-dots li.slick-active button:before {
  color: var(--mg-green);
}

@media (max-width: 767px) {

  .service-slider .slick-prev,
  .service-slider .slick-next {
    display: none;
  }

  .service-slider {
    margin: 0 -12px;
  }

  .service-slide {
    padding: 0 12px;
  }
}

/* Gallery styles */
.gallery-section {
  padding: 36px 0;
}

.gallery-slider {
  margin: 0 -12px;
  position: relative;
}

.gallery-slider .slick-prev,
.gallery-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--mg-green);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(19, 80, 60, 0.14);
  z-index: 5;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.gallery-slider .slick-prev {
  left: 0px;
}

.gallery-slider .slick-next {
  right: 0px;
}

.gallery-slider .slick-prev i,
.gallery-slider .slick-next i {
  font-size: 0.95rem;
}

.gallery-slider .slick-prev:hover,
.gallery-slider .slick-next:hover {
  transform: translateY(-50%) scale(1.04);
  background: var(--mg-lime);
  color: #fff;
}

.gallery-slider .slick-prev:before,
.gallery-slider .slick-next:before {
  content: none;
}

.gallery-slide {
  padding: 0 12px;
  box-sizing: border-box;
}

.gallery-slide img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 1px solid #eef0e6;
}

.gallery-slide a {
  display: block;
}

@media (min-width: 1200px) {
  .gallery-slide img {
    height: 160px;
  }
}

@media (max-width: 576px) {
  .gallery-slide img {
    height: 220px;
  }
}

/* Process steps */
.services-process {
  padding: var(--section-pad-y) 36px;
}

.process-step {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #eef0e6;
  padding: 36px 26px 30px;
  position: relative;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(30, 115, 84, 0.10);
}

.process-step-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--mg-bg);
  line-height: 1;
}

.process-step-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--mg-green) 0%, #2c8a66 100%);
  color: var(--mg-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
  box-shadow: 0 12px 24px rgba(30, 115, 84, 0.22);
}

.process-step h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mg-green);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--mg-muted);
  margin: 0;
}

/* Pricing */
.services-pricing {
  padding: 0 36px 70px;
}

.pricing-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #eef0e6;
  padding: 38px 30px 34px;
  text-align: center;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(30, 115, 84, 0.14);
  border-color: var(--mg-lime);
}

.pricing-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--mg-green);
  margin-bottom: 6px;
}

.pricing-tag {
  font-size: 0.82rem;
  color: var(--mg-muted);
  margin-bottom: 22px;
}

.pricing-amount {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px dashed #d8dccd;
}

.pricing-currency {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--mg-green);
  line-height: 1.2;
}

.pricing-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--mg-green);
  line-height: 1;
}

.pricing-unit {
  font-size: 0.9rem;
  color: var(--mg-muted);
  font-weight: 500;
  margin-bottom: 6px;
  margin-left: 4px;
}

.pricing-points {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  text-align: left;
}

.pricing-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--mg-text);
  padding: 7px 0;
  font-weight: 500;
}

.pricing-points li i {
  color: var(--mg-lime);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-btn {
  margin-top: auto;
  align-self: center;
  width: 100%;
  text-align: center;
}

/* Featured pricing card */
.pricing-card-featured {
  background: linear-gradient(160deg, var(--mg-green) 0%, #155640 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-10px);
}

.pricing-card-featured:hover {
  transform: translateY(-18px);
}

.pricing-card-featured h3,
.pricing-card-featured .pricing-currency,
.pricing-card-featured .pricing-value {
  color: var(--mg-yellow);
}

.pricing-card-featured .pricing-tag,
.pricing-card-featured .pricing-unit {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-card-featured .pricing-amount {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.pricing-card-featured .pricing-points li {
  color: rgba(255, 255, 255, 0.92);
}

.pricing-card-featured .pricing-points li i {
  color: var(--mg-yellow);
}

.pricing-card-featured .pricing-btn {
  background: var(--mg-yellow);
  color: var(--mg-green-dark);
}

.pricing-card-featured .pricing-btn:hover {
  background: #ffd451;
  color: var(--mg-green-dark);
}

.pricing-ribbon {
  position: absolute;
  top: 18px;
  right: -6px;
  background: var(--mg-yellow);
  color: var(--mg-green-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px 0 0 6px;
  box-shadow: 0 6px 14px rgba(252, 199, 39, 0.35);
}

.pricing-ribbon::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid #c89a16;
  border-right: 6px solid transparent;
}

.pricing-footnote {
  text-align: center;
  margin: 32px auto 0;
  max-width: 640px;
  font-size: 0.92rem;
  color: var(--mg-muted);
}

.pricing-footnote strong {
  color: var(--mg-green);
}

/* FAQ */
.services-faq {
  padding: var(--section-pad-y) 36px;
  position: relative;
  overflow: hidden;
}

.faq-bg-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  background: var(--mg-yellow);
  opacity: 0.10;
  border-radius: 50% 40% 55% 45% / 50% 45% 55% 50%;
  top: 60px;
  right: -130px;
  z-index: 0;
  animation: floatBlob 12s ease-in-out infinite;
  pointer-events: none;
}

.faq-bg-dot {
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--mg-lime) 1.5px, transparent 2px) 0 0 / 18px 18px;
  opacity: 0.18;
  border-radius: 50%;
  bottom: 60px;
  left: -60px;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle, #000 55%, transparent 75%);
  mask-image: radial-gradient(circle, #000 55%, transparent 75%);
}

.services-faq>.row {
  position: relative;
  z-index: 1;
}

/* Left intro column */
.faq-intro {
  position: relative;
  margin-bottom: 8px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.faq-eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--mg-lime);
  border-radius: 2px;
}

.faq-heading-accent {
  display: block;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--mg-yellow) 0%, var(--mg-lime) 100%);
  border-radius: 4px;
  margin: -6px 0 18px;
}

/* Advisor card (replaces old dark contact card) */
.faq-advisor-card {
  position: relative;
  background: #2b8764;
  border: 1px solid #e6ece0;
  border-radius: 22px;
  padding: 28px 26px 26px;
  margin-top: 28px;
  box-shadow: 0 18px 42px rgba(30, 115, 84, 0.08);
  overflow: hidden;
}

.faq-advisor-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--mg-yellow) 0%, var(--mg-lime) 50%, var(--mg-green) 100%);
  border-radius: 4px 0 0 4px;
}

.faq-advisor-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: var(--mg-bg);
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.faq-advisor-header {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.faq-advisor-avatar {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mg-green) 0%, var(--mg-green-dark) 100%);
  color: var(--mg-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 10px 22px rgba(30, 115, 84, 0.22);
}

.faq-advisor-presence {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mg-lime);
  border: 2.5px solid #ffffff;
  box-shadow: 0 0 0 0 rgba(168, 199, 38, 0.6);
  animation: faqAdvisorPulse 2s ease-out infinite;
}

@keyframes faqAdvisorPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(168, 199, 38, 0.6);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(168, 199, 38, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(168, 199, 38, 0);
  }
}

.faq-advisor-head-text {
  min-width: 0;
}

.faq-advisor-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mg-lime);
  margin: 0 0 4px;
}

.faq-advisor-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mg-lime);
}

.faq-advisor-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.faq-advisor-text {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
}

.faq-advisor-channels {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.faq-advisor-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--mg-cream);
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--mg-text);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.faq-advisor-channel:hover {
  background: #ffffff;
  border-color: var(--mg-lime);
  transform: translateX(2px);
}

.faq-advisor-ico {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mg-bg);
  color: var(--mg-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.faq-advisor-channel:hover .faq-advisor-ico {
  background: var(--mg-green);
  color: var(--mg-yellow);
}

.faq-advisor-channel-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex-grow: 1;
}

.faq-advisor-channel-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mg-muted);
  margin-bottom: 2px;
}

.faq-advisor-channel-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--mg-green);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.faq-advisor-arrow {
  font-size: 0.75rem;
  color: var(--mg-muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.faq-advisor-channel:hover .faq-advisor-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--mg-green);
}

.faq-advisor-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-align: center;
}

.faq-advisor-cta i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.faq-advisor-cta:hover i {
  transform: translateX(4px);
}

/* Accordion */
.faq-accordion .accordion-item {
  position: relative;
  background: #fff;
  border: 1px solid #eef0e6;
  border-radius: 18px !important;
  margin-bottom: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-accordion .accordion-item::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--mg-yellow), var(--mg-lime));
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.faq-accordion .accordion-item:hover {
  border-color: var(--mg-lime);
  box-shadow: 0 14px 32px rgba(30, 115, 84, 0.09);
  transform: translateY(-2px);
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--mg-lime);
  box-shadow: 0 18px 36px rgba(30, 115, 84, 0.12);
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed))::before {
  transform: scaleY(1);
}

.faq-accordion .accordion-button {
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--mg-green);
  padding: 22px 24px 22px 24px;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 18px;
}

.faq-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--mg-bg);
  color: var(--mg-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: background 0.25s ease, color 0.25s ease;
}

.faq-q-text {
  flex-grow: 1;
  line-height: 1.4;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--mg-green);
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-num {
  background: var(--mg-green);
  color: var(--mg-yellow);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--mg-green);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--mg-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\f068";
  background-color: var(--mg-yellow);
  color: var(--mg-green-dark);
  transform: rotate(180deg);
}

.faq-accordion .accordion-body {
  padding: 0 24px 24px 82px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--mg-muted);
}

/* ============================
   RESPONSIVE — SERVICES PAGE
============================ */
@media (max-width: 991px) {
  .intro-visual {
    margin-top: 40px;
  }

  .pricing-card-featured {
    transform: translateY(0);
  }

  .pricing-card-featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {

  .services-intro,
  .services-list,
  .services-process,
  .services-pricing,
  .services-faq {
    padding-left: 18px;
    padding-right: 18px;
  }

  .intro-visual-img {
    height: 360px;
  }

  .intro-feature-card {
    left: 0;
    bottom: 16px;
    padding: 18px 20px;
    max-width: 220px;
  }

  .intro-floating-badge {
    top: 30px;
    right: 0;
    padding: 12px 16px;
    min-width: 100px;
  }

  .intro-floating-badge .badge-num {
    font-size: 1.4rem;
  }

  .service-card-img {
    height: 180px;
  }

  .pricing-value {
    font-size: 2.3rem;
  }

  .process-step {
    padding: 30px 22px 24px;
  }
}

@media (max-width: 480px) {
  .intro-visual-img {
    height: 300px;
  }

  .intro-feature-card {
    position: static;
    margin-top: 18px;
    max-width: 100%;
  }

  .intro-floating-badge {
    display: none;
  }

  .pricing-card {
    padding: 30px 22px;
  }

  .faq-bg-blob,
  .faq-bg-dot {
    display: none;
  }

  .faq-advisor-card {
    padding: 24px 20px 22px;
  }

  .faq-advisor-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .faq-advisor-title {
    font-size: 1.08rem;
  }

  .faq-advisor-channel {
    padding: 10px 12px;
    gap: 12px;
  }

  .faq-advisor-channel-value {
    font-size: 0.85rem;
  }

  .faq-heading-accent {
    width: 52px;
    height: 3px;
  }

  .faq-accordion .accordion-button {
    font-size: 0.9rem;
    padding: 18px 18px;
    gap: 12px;
  }

  .faq-num {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }

  .faq-accordion .accordion-button::after {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .faq-accordion .accordion-body {
    padding: 0 18px 20px 64px;
  }
}

/* ============================
   SERVICE DETAILS PAGE
============================ */

/* Overview */
.sd-overview {
  padding: var(--section-pad-y) 36px;
}

.sd-info-chips {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sd-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e3e8d5;
  color: var(--mg-green-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(30, 115, 84, 0.06);
}

.sd-chip i {
  color: var(--mg-lime);
  font-size: 0.85rem;
}

.sd-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.sd-link {
  color: var(--mg-green);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease, color 0.25s ease;
}

.sd-link:hover {
  color: var(--mg-green-dark);
  gap: 12px;
}

.sd-link i {
  font-size: 0.78rem;
}

/* At-a-glance stats */
.sd-stats {
  padding: var(--section-pad-y) 36px;
}

.sd-stat-tile {
  background: linear-gradient(180deg, #ffffff 0%, #f6faec 100%);
  border: 1px solid #e3e8d5;
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sd-stat-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(30, 115, 84, 0.1);
  border-color: var(--mg-lime);
}

.sd-stat-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--mg-green);
  line-height: 1;
  margin-bottom: 8px;
}

.sd-stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mg-muted);
}

/* What's included grid */
.sd-features {
  padding: var(--section-pad-y) 36px;
}

.sd-feature-tile {
  background: #fff;
  border: 1px solid #eef0e6;
  border-radius: 20px;
  padding: 30px 26px;
  height: 100%;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.sd-feature-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(30, 115, 84, 0.12);
  border-color: var(--mg-lime);
}

.sd-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(168, 199, 38, 0.18);
  color: var(--mg-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: background 0.3s ease, color 0.3s ease;
}

.sd-feature-tile:hover .sd-feature-icon {
  background: var(--mg-green);
  color: #fff;
}

.sd-feature-tile h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--mg-green-dark);
  margin: 0 0 10px;
}

.sd-feature-tile p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--mg-text);
  margin: 0;
}

/* A day at Magnolia (timeline) */
.sd-day {
  padding: var(--section-pad-y) 36px;
}

.sd-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.sd-timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 123px;
  width: 2px;
  background: linear-gradient(180deg, var(--mg-lime) 0%, rgba(168, 199, 38, 0.2) 100%);
}

.sd-timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: flex-start;
  gap: 50px;
  padding: 14px 0 30px;
}

.sd-timeline-step:last-child {
  padding-bottom: 0;
}

.sd-timeline-time {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--mg-green);
  text-align: right;
  padding-top: 14px;
  letter-spacing: 0.5px;
}

.sd-timeline-icon {
  position: absolute;
  left: 102px;
  top: 8px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mg-yellow);
  color: var(--mg-green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(252, 199, 39, 0.4);
  z-index: 2;
}

.sd-timeline-body {
  background: #fff;
  border: 1px solid #eef0e6;
  border-radius: 16px;
  padding: 18px 22px;
  margin-left: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sd-timeline-step:hover .sd-timeline-body {
  transform: translateX(4px);
  box-shadow: 0 14px 28px rgba(30, 115, 84, 0.1);
  border-color: var(--mg-lime);
}

.sd-timeline-body h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mg-green-dark);
  margin: 0 0 6px;
}

.sd-timeline-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--mg-text);
  margin: 0;
}

/* Pricing wrapper override */
.sd-pricing {
  padding: 60px 36px 30px;
}

/* Testimonial */
.sd-testimonial {
  padding: var(--section-pad-y) 36px;
}

.sd-testimonial-card {
  position: relative;
  background: linear-gradient(135deg, #1E7354 0%, #2c8a66 100%);
  color: #fff;
  border-radius: 24px;
  padding: 56px 50px 40px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 24px 48px rgba(30, 115, 84, 0.22);
  overflow: hidden;
}

.sd-testimonial-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: var(--mg-yellow);
  opacity: 0.15;
  border-radius: 50% 40% 55% 45%;
  bottom: -90px;
  right: -90px;
  animation: floatBlob 11s ease-in-out infinite;
}

.sd-testimonial-quote {
  position: absolute;
  top: 11px;
  left: 32px;
  font-size: 2.4rem;
  color: var(--mg-yellow);
  opacity: 0.85;
}

.sd-testimonial-card blockquote {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
}

.sd-testimonial-card blockquote p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 500;
  margin: 0 0 28px;
}

.sd-testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sd-testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--mg-yellow);
}

.sd-testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin: 0;
  font-size: 1rem;
}

.sd-testimonial-role {
  margin: 2px 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Related services */
.sd-related {
  padding: var(--section-pad-y) 36px;
}

.sd-related-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid #eef0e6;
  border-radius: 20px;
  padding: 30px 26px;
  height: 100%;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.sd-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(30, 115, 84, 0.12);
  border-color: var(--mg-lime);
  color: inherit;
}

.sd-related-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(168, 199, 38, 0.18);
  color: var(--mg-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: background 0.3s ease, color 0.3s ease;
}

.sd-related-card:hover .sd-related-icon {
  background: var(--mg-green);
  color: #fff;
}

.sd-related-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mg-green-dark);
  margin: 0 0 8px;
}

.sd-related-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--mg-text);
  margin: 0 0 16px;
}

.sd-related-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--mg-green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease;
}

.sd-related-card:hover .sd-related-link {
  gap: 12px;
}

.sd-related-link i {
  font-size: 0.75rem;
}

/* ============================
   SERVICE DETAILS — RESPONSIVE
============================ */
@media (max-width: 991.98px) {

  .sd-overview,
  .sd-features,
  .sd-day,
  .sd-pricing,
  .sd-related,
  .sd-testimonial {
    padding-left: 22px;
    padding-right: 22px;
  }

  .sd-testimonial-card {
    padding: 50px 32px 36px;
  }
}

@media (max-width: 575.98px) {
  .sd-stat-num {
    font-size: 1.7rem;
  }

  .sd-timeline::before {
    left: 22px;
  }

  .sd-timeline-step {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 56px;
  }

  .sd-timeline-time {
    text-align: left;
    padding-top: 0;
  }

  .sd-timeline-icon {
    left: 0;
    top: 4px;
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .sd-timeline-body {
    margin-left: 0;
  }

  .sd-testimonial-card {
    padding: 48px 24px 30px;
  }

  .sd-testimonial-card blockquote p {
    font-size: 1rem;
  }

  .sd-testimonial-quote {
    font-size: 1.8rem;
    top: 18px;
    left: 22px;
  }
}

/* ============================
   BOOK AN APPOINTMENT PAGE
============================ */
.ba-section {
  padding: var(--section-pad-y) 36px;
}

/* Left info card */
.ba-info-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px 28px;
  margin-top: 22px;
  box-shadow: 0 14px 36px rgba(30, 115, 84, 0.10);
  border: 1px solid rgba(30, 115, 84, 0.08);
}

.ba-info-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mg-green);
  margin: 0 0 16px;
}

.ba-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.ba-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--mg-text);
  padding: 7px 0;
  line-height: 1.5;
}

.ba-info-list li i {
  color: var(--mg-lime);
  margin-top: 3px;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.ba-contact-list {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px dashed rgba(30, 115, 84, 0.18);
}

.ba-contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.ba-contact-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eef4e2;
  color: var(--mg-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.ba-contact-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--mg-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.ba-contact-list a {
  color: var(--mg-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.ba-contact-list a:hover {
  color: var(--mg-green-dark);
  text-decoration: underline;
}

.ba-contact-meta {
  font-size: 0.92rem;
  color: var(--mg-text);
  font-weight: 500;
}

/* Form card */
.ba-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 38px 36px;
  box-shadow: 0 18px 42px rgba(30, 115, 84, 0.12);
  border: 1px solid rgba(30, 115, 84, 0.08);
  position: relative;
  overflow: hidden;
}

.ba-form-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  background: var(--mg-yellow);
  opacity: 0.12;
  border-radius: 50% 40% 55% 45% / 50% 45% 55% 50%;
  pointer-events: none;
}

.ba-form-head {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(30, 115, 84, 0.16);
}

.ba-form-head h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--mg-green);
  margin: 0 0 6px;
}

.ba-form-head p {
  font-size: 0.9rem;
  color: var(--mg-muted);
  margin: 0;
}

.ba-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--mg-text);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.ba-req {
  color: var(--mg-yellow);
  margin-left: 2px;
}

.ba-input {
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--mg-text);
  background: #fafafa;
  border: 1.5px solid rgba(30, 115, 84, 0.14);
  border-radius: 12px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ba-input::placeholder {
  color: #a5a8a0;
}

.ba-input:hover {
  border-color: rgba(30, 115, 84, 0.28);
}

.ba-input:focus {
  border-color: var(--mg-green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 115, 84, 0.12);
}

.ba-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E7354' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}

.ba-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}

.ba-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--mg-text);
  cursor: pointer;
  margin-top: 4px;
  line-height: 1.5;
}

.ba-check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--mg-green);
  flex-shrink: 0;
}

.ba-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

.ba-submit {
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 14px 32px;
}

.ba-form-note {
  font-size: 0.82rem;
  color: var(--mg-muted);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ba-form-note i {
  color: var(--mg-green);
}

/* Validation feedback for the booking form (driven by home.js) */
.ba-input.is-invalid {
  border-color: #d64545;
  background: #fff7f7;
}

.ba-input.is-invalid:focus {
  border-color: #d64545;
  box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.12);
}

.ba-error {
  margin: 6px 2px 0;
  font-size: 0.8rem;
  color: #d64545;
}

.ba-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--mg-green);
  background: rgba(30, 115, 84, 0.08);
  border: 1.5px solid rgba(30, 115, 84, 0.22);
  border-radius: 12px;
}

.ba-success i {
  font-size: 1.05rem;
}

/* Steps section */
.ba-steps {
  padding: var(--section-pad-y) 36px;
}

.ba-step-tile {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 32px 26px 28px;
  height: 100%;
  border: 1px solid rgba(30, 115, 84, 0.08);
  box-shadow: 0 10px 26px rgba(30, 115, 84, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ba-step-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(30, 115, 84, 0.14);
  border-color: rgba(30, 115, 84, 0.18);
}

.ba-step-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: rgba(168, 199, 38, 0.22);
  line-height: 1;
}

.ba-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mg-green) 0%, #2c8a66 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(30, 115, 84, 0.25);
}

.ba-step-tile h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mg-green);
  margin: 0 0 8px;
}

.ba-step-tile p {
  font-size: 0.9rem;
  color: var(--mg-muted);
  line-height: 1.6;
  margin: 0;
}

/* Reassurance tiles */
.ba-reassure {
  background: linear-gradient(135deg, #1E7354 0%, #2c8a66 100%);
  border-radius: 22px;
  margin: 0 16px 60px;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}

.ba-reassure::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: var(--mg-yellow);
  opacity: 0.14;
  border-radius: 50% 40% 55% 45% / 50% 45% 55% 50%;
  top: -90px;
  left: -90px;
  pointer-events: none;
}

.ba-reassure-tile {
  position: relative;
  text-align: center;
  color: #fff;
}

.ba-reassure-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--mg-yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.ba-reassure-num span {
  font-size: 1.3rem;
  margin-left: 2px;
}

.ba-reassure-label {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ============================
   RESPONSIVE — APPOINTMENT
============================ */
@media (max-width: 991px) {
  .ba-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .ba-form-card {
    padding: 30px 26px;
  }

  .ba-steps {
    padding-left: 22px;
    padding-right: 22px;
  }

  .ba-reassure {
    padding: 38px 24px;
    margin: 0 8px 50px;
  }

  .ba-reassure-num {
    font-size: 2.1rem;
  }
}

@media (max-width: 575.98px) {
  .ba-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ba-form-card {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .ba-form-head h3 {
    font-size: 1.2rem;
  }

  .ba-info-card {
    padding: 24px 22px;
  }

  .ba-form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .ba-submit {
    width: 100%;
    text-align: center;
  }

  .ba-step-tile {
    padding: 26px 22px 22px;
  }

  .ba-step-num {
    font-size: 1.6rem;
  }

  .ba-reassure-num {
    font-size: 1.75rem;
  }

  .ba-reassure-num span {
    font-size: 1rem;
  }
}

/* ==============================
   GALLERY PAGE
============================== */

/* Intro stats list (right column of the intro strip) */
.gallery-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gallery-stats li {
  background: var(--mg-cream);
  border: 1px solid #e6ece0;
  border-radius: 18px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gallery-stats li::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--mg-yellow), var(--mg-lime));
}

.gallery-stats li:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(30, 115, 84, 0.10);
  border-color: var(--mg-lime);
}

.gallery-stat-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--mg-green);
  line-height: 1.1;
  margin-bottom: 4px;
}

.gallery-stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--mg-muted);
}

/* Section wrapper */
.gallery-section {
  padding: var(--section-pad-y) 0;
}

.gallery-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.gallery-head .section-heading {
  margin-bottom: 0;
}

/* Filter pills */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-filter {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid #e6ece0;
  background: #ffffff;
  color: var(--mg-green);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.gallery-filter:hover {
  background: var(--mg-bg);
  border-color: var(--mg-lime);
}

.gallery-filter.is-active {
  background: var(--mg-green);
  color: var(--mg-yellow);
  border-color: var(--mg-green);
}

/* Masonry-ish responsive grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}

.gallery-tile {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  grid-column: span 4;
  grid-row: span 1;
  box-shadow: 0 14px 32px rgba(30, 115, 84, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
  cursor: zoom-in;
}

.gallery-tile.is-hidden {
  display: none;
}

.gallery-tile-wide {
  grid-column: span 8;
}

.gallery-tile-tall {
  grid-row: span 2;
}

.gallery-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(30, 115, 84, 0.16);
}

/* Media slot — works as image container OR gradient placeholder */
.gallery-tile-media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.55);
  transition: transform 0.6s ease;
}

.gallery-tile:hover .gallery-tile-media {
  transform: scale(1.06);
}

/* If a real <img> is dropped in instead of the placeholder div */
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-tile:hover img {
  transform: scale(1.06);
}

/* Gradient placeholders — distinct hue per tile until real photos land */
.gallery-media-1 {
  background: linear-gradient(135deg, #1E7354 0%, #2b8764 60%, #A8C726 100%);
}

.gallery-media-2 {
  background: linear-gradient(135deg, #FCC727 0%, #f59f3b 100%);
}

.gallery-media-3 {
  background: linear-gradient(135deg, #155640 0%, #1E7354 100%);
}

.gallery-media-4 {
  background: linear-gradient(160deg, #A8C726 0%, #4f8a3a 70%, #155640 100%);
}

.gallery-media-5 {
  background: linear-gradient(135deg, #6a3d8a 0%, #b85c8e 100%);
}

.gallery-media-6 {
  background: linear-gradient(135deg, #c98a2b 0%, #FCC727 100%);
}

.gallery-media-7 {
  background: linear-gradient(135deg, #2b8764 0%, #A8C726 100%);
}

.gallery-media-8 {
  background: linear-gradient(135deg, #7a4a25 0%, #c98a2b 100%);
}

.gallery-media-9 {
  background: linear-gradient(160deg, #f9e08a 0%, #FCC727 50%, #f59f3b 100%);
}

/* Overlay caption */
.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  background: linear-gradient(180deg, rgba(21, 86, 64, 0) 35%, rgba(21, 86, 64, 0.78) 100%);
  color: #ffffff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-tile:hover .gallery-tile-overlay,
.gallery-tile:focus-within .gallery-tile-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-tile-category {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--mg-yellow);
}

.gallery-tile-caption {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
}

.gallery-tile-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mg-yellow);
  color: var(--mg-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

/* External album CTA card */
.album-section {
  padding: var(--section-pad-y) 0;
}

.album-card {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--mg-cream) 0%, var(--mg-bg) 100%);
  border: 1px solid #e6ece0;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.album-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(168, 199, 38, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.album-card-icon {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--mg-green) 0%, var(--mg-green-dark) 100%);
  color: var(--mg-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 16px 30px rgba(30, 115, 84, 0.25);
  position: relative;
  z-index: 1;
}

.album-card-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.album-card-text .section-eyebrow {
  margin-bottom: 6px;
}

.album-card-text .section-heading {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.album-card-text .section-text {
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-auto-rows: 180px;
    gap: 14px;
  }

  .gallery-tile,
  .gallery-tile-wide {
    grid-column: span 6;
  }

  .gallery-tile-tall {
    grid-row: span 2;
  }

  .album-card {
    padding: 30px 28px;
    gap: 24px;
  }

  .album-card-text .section-heading {
    font-size: 1.4rem;
  }
}

@media (max-width: 640px) {
  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .gallery-filters {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-filter {
    flex-shrink: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: 14px;
  }

  .gallery-tile,
  .gallery-tile-wide,
  .gallery-tile-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-tile-overlay {
    opacity: 1;
    transform: none;
    background: linear-gradient(180deg, rgba(21, 86, 64, 0) 40%, rgba(21, 86, 64, 0.82) 100%);
  }

  .gallery-stats {
    grid-template-columns: 1fr 1fr;
  }

  .album-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 26px 22px;
  }

  .album-card-icon {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
    border-radius: 18px;
  }
}

#gallery-grid {
  padding-left: 20px;
  padding-right: 20px;
}

.album-section.reveal.is-visible {
  padding-left: 20px;
  padding-right: 20px;
}

/* ==============================
   CONTACT US PAGE
============================== */

/* Quick contact tiles */
.ct-quick {
  padding: var(--section-pad-y) 36px;
}

.ct-quick-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(30, 115, 84, 0.08);
  border-radius: 20px;
  padding: 26px 24px;
  text-decoration: none;
  color: var(--mg-text);
  box-shadow: 0 10px 26px rgba(30, 115, 84, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ct-quick-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--mg-yellow), var(--mg-lime));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ct-quick-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(30, 115, 84, 0.16);
  border-color: rgba(30, 115, 84, 0.18);
  color: var(--mg-text);
}

.ct-quick-tile:hover::before {
  opacity: 1;
}

.ct-quick-ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mg-green) 0%, #2c8a66 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
  box-shadow: 0 8px 18px rgba(30, 115, 84, 0.22);
}

.ct-quick-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--mg-muted);
  font-weight: 600;
}

.ct-quick-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--mg-green);
  line-height: 1.25;
  word-break: break-word;
}

.ct-quick-meta {
  font-size: 0.85rem;
  color: var(--mg-muted);
  margin-top: 2px;
}

/* Contact intro + form section */
.ct-section {
  padding: var(--section-pad-y) 36px;
}

/* Socials block inside the info card */
.ct-socials {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(30, 115, 84, 0.18);
}

.ct-socials-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--mg-muted);
  font-weight: 600;
  margin-bottom: 10px;
}

.ct-socials-row {
  display: flex;
  gap: 10px;
}

.ct-socials-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eef4e2;
  color: var(--mg-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ct-socials-row a:hover {
  background: var(--mg-green);
  color: var(--mg-yellow);
  transform: translateY(-2px);
}

/* Map section */
.ct-map-section {
  padding: var(--section-pad-y) 36px;
}

.ct-map-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.ct-map-lede {
  margin-top: 14px;
  margin-bottom: 0;
}

/* Hero map */
.ct-map-hero {
  position: relative;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--mg-bg);
  border: 1px solid rgba(30, 115, 84, 0.10);
  box-shadow: 0 24px 60px rgba(30, 115, 84, 0.16);
}

.ct-map-hero iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Floating glass card */
.ct-map-overlay {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 2;
  max-width: 320px;
  padding: 26px 26px 24px;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(30, 115, 84, 0.22);
}

.ct-map-overlay-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
  color: var(--mg-green);
  margin-bottom: 12px;
}

.ct-map-overlay-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mg-lime);
  box-shadow: 0 0 0 4px rgba(168, 199, 38, 0.25);
}

.ct-map-overlay-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--mg-green-dark);
  margin: 0 0 8px;
  line-height: 1.2;
}

.ct-map-overlay-address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mg-muted);
  font-size: 0.95rem;
  margin: 0 0 18px;
}

.ct-map-overlay-address i {
  color: var(--mg-yellow);
}

.ct-map-overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  padding: 11px 22px;
}

.stellarnav .menu-toggle span.bars {
  display: inline-block;
  margin-right: 0px;
  position: relative;
  top: 1px;
  margin: 0;
}

.ct-map-overlay-cta i {
  transition: transform 0.2s ease;
}

.ct-map-overlay-cta:hover i {
  transform: translateX(4px);
}

/* ============================
   RESPONSIVE — CONTACT PAGE
============================ */
@media (max-width: 991px) {

  .ct-quick,
  .ct-section,
  .ct-map-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .ct-map-head {
    margin-bottom: 28px;
  }

  .ct-map-hero {
    min-height: 460px;
    border-radius: 22px;
  }

  .ct-map-overlay {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
    padding: 22px;
    border-radius: 18px;
  }

  .ct-map-overlay-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 575.98px) {

  .ct-quick,
  .ct-section,
  .ct-map-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ct-quick-tile {
    padding: 22px 20px;
  }

  .ct-quick-ico {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .ct-map-hero {
    min-height: 380px;
    border-radius: 18px;
  }

  .ct-map-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
    border-radius: 16px;
  }

  .ct-map-overlay-title {
    font-size: 1.1rem;
  }

  .ct-map-overlay-cta {
    width: 100%;
    justify-content: center;
  }
}

.services-section {
  padding-top: 30px;
}

.gallery-slide img {
  object-fit: cover;
}
.icon-plus{
  opacity: 0;
}
.gallery-section{
  padding-left: 16px;
  padding-right: 16px;
}
.gallery-section .dutton-wrapper{
  text-align: center;
  margin-top: 30px;
}
/* ============================
   Magnolia — AJAX form states (appended by theme)
============================ */
.magnolia-form-message { margin-top: 16px; }
.magnolia-form-message .ba-success,
.magnolia-form-message .ba-error-banner {
  padding: 14px 18px;
  border-radius: 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.magnolia-form-message .ba-success {
  background: #e8f4ec;
  color: #1b5e2a;
  border: 1px solid #b4dec0;
}
.magnolia-form-message .ba-error-banner {
  background: #fdecec;
  color: #93222b;
  border: 1px solid #f3b9b9;
}
.ba-form-card .ba-input.is-invalid {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.ba-form-card .ba-error {
  color: #c0392b;
  font-size: 12.5px;
  margin: 4px 2px 0;
  font-family: "Open Sans", sans-serif;
}
.ba-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.footer-copyright { padding-top: 18px; text-align: center; color: rgba(255,255,255,0.7); font-size: 13px; }

#ct-message {
  resize: none !important;
}
#ba-message{
    resize: none !important;
}
.about-pillars .container-fluid .section-heading {
    padding-bottom: 14px;
}