/* ============================================================
   ROOT VARIABLES
============================================================ */
:root {
  --green:       #4a7c6f;
  --green-light: #6aaa99;
  --green-dark:  #2e5c51;
  --gold:        #c8a97e;
  --gold-light:  #e8d5b7;
  --bg:          #f7f4ef;
  --bg2:         #eef5f3;
  --text:        #1e2b28;
  --muted:       #637068;
  --white:       #ffffff;
  --border:      #d5e8e2;
  --ff-h:        'Montserrat', sans-serif;
  --ff-b:        'Poppins', sans-serif;
}

/* ============================================================
   BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--ff-b); background: var(--bg); color: var(--text); overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--ff-h); }
p     { font-size: 16px; line-height: 1.85; color: var(--muted); }
span  { font-size: 16px; }
img   { max-width: 100%; }
a     { text-decoration: none; }

::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green-light); }

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all .4s;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  height: 110px;
}

/* top-bar */
.nav-topbar {
  background: var(--green-dark);
  padding: 7px 40px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 28px;
}
.nav-topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-family: var(--ff-b);
  font-weight: 400;
}
.nav-topbar-item i { color: var(--gold); font-size: 13px; }
.nav-topbar-item a { color: rgba(255,255,255,.7); font-size: 13px; transition: color .3s; }
.nav-topbar-item a:hover { color: var(--gold); }

/* main nav */
.nav-main {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--border);
  transition: all .4s;
}
#navbar.scrolled .nav-main {
  box-shadow: 0 8px 40px rgba(46,92,81,.13);
}

.nav-logo img { height: 80px; transition: transform .3s; }
.nav-logo:hover img { transform: scale(1.04); }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu li a {
  font-family: var(--ff-b);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 16px;
  display: block;
  position: relative;
  letter-spacing: .3px;
  transition: color .3s;
}
#hero {
   
    max-width: 1550px;
    margin:auto;
}
#philosophy
{
 max-width: 1550px;
    margin:auto; 
}
.nav-topbar
{
  max-width: 1550px;
    margin:auto;
}
.nav-menu li a::before {
  content: '';
  position: absolute;
  bottom: 5px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px; height: 2px;
  background: var(--green);
  transition: transform .3s;
}
.nav-menu li a:hover,
.nav-menu li a.active { color: var(--green); }
.nav-menu li a:hover::before,
.nav-menu li a.active::before { transform: translateX(-50%) scaleX(1); }

.nav-btn {
  font-family: var(--ff-b);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 11px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.nav-btn::before {
  content: '';
  position: absolute;
  left: -100%; top: 0; bottom: 0;
  width: 100%;
  background: var(--green-dark);
  transition: left .35s;
}
.nav-btn:hover { color: var(--white); }
.nav-btn:hover::before { left: 0; }
.nav-btn span, .nav-btn i { position: relative; z-index: 1; font-size: 13px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: 2px solid var(--green);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--green);
  font-size: 0;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  background: var(--white);
  border-top: 1px solid var(--border);
  display: none;
  padding: 20px 30px 28px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color .3s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--green); }

/* ============================================================
   HERO BANNER  — Creative Split Layout
============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding-top: 115px;
}

/* left panel — text */
.hero-left {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: -60px; bottom: 0;
  width: 120px;
  background: var(--bg);
  /*clip-path: polygon(0 0, 0 100%, 100% 100%);*/
  z-index: 3;
}

/* decorative big letter */
.hero-deco-char {
  font-family: var(--ff-h);
  font-size: 260px;
  font-weight: 900;
  color: rgba(74,124,111,.05);
  line-height: 1;
  position: absolute;
  top: 40px; left: 30px;
  pointer-events: none;
  user-select: none;
  letter-spacing: -10px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideRight .8s ease .3s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 36px; height: 2px;
  background: var(--green);
  flex-shrink: 0;
}

.hero-h1 {
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 900;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s ease .5s forwards;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 900;
  color: var(--green);
  display: block;
}
#philosophy{
    position:relative;
    overflow:hidden;
}

#philosophy:before{
    content:"";
    position:absolute;
    inset:0;

    background-image:url("../img/download.svg");
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;

    opacity:.08;

    z-index:0;
}

#philosophy > *{
    position:relative;
    z-index:1;
}
.hero-rumi {
  font-size: 16px;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s ease .7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s ease .9s forwards;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-b);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 16px 36px;
  position: relative;
  overflow: hidden;
  transition: all .35s;
}
.btn-primary-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s;
}
.btn-primary-hero:hover { color: var(--white); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(46,92,81,.3); }
.btn-primary-hero:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-primary-hero span, .btn-primary-hero i { position: relative; z-index: 1; font-size: 14px; }

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-b);
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  padding: 15px 0;
  border-bottom: 2px solid var(--green);
  transition: all .3s;
  letter-spacing: .5px;
}
.btn-outline-hero:hover { color: var(--green-dark); border-color: var(--green-dark); gap: 16px; }
.btn-outline-hero i { font-size: 14px; transition: transform .3s; }
.btn-outline-hero:hover i { transform: translateX(4px); }

/* floating trust badges */
.hero-badges {
  display: flex;
  gap: 16px;
  margin-top: 56px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s ease 1.1s forwards;
  flex-wrap: wrap;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 10px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border-left: 3px solid var(--green);
}
.hero-badge-item i { color: var(--green); font-size: 18px; }
.hero-badge-item strong {
  font-family: var(--ff-h);
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  display: block;
}
.hero-badge-item small {
  font-size: 12px;
  color: var(--muted);
  display: block;
}

/* right panel — video/image */
.hero-right {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-right video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 30%),
              linear-gradient(to top, rgba(46,92,81,.6) 0%, transparent 60%);
  z-index: 2;
}
.hero-floating-card {
  position: absolute;
  bottom: 50px;
  right: 40px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  padding: 20px 24px;
  z-index: 3;
  min-width: 200px;
  border-top: 3px solid var(--gold);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s ease 1.3s forwards;
}
.hero-floating-card .fc-num {
  font-family: var(--ff-h);
  font-size: 38px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.hero-floating-card .fc-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

/* scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 20px;
  display: flex;
  align-items: center;
      gap: 5px;
  z-index: 5;
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: var(--green-light);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0; right: 0;
  height: 100%;
  background: var(--green);
  animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 200%; }
}
.hero-scroll p { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--green); writing-mode: vertical-lr; }

/* ============================================================
   STATS BAND
============================================================ */
#stats {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 3px solid var(--green);
}
.stat-box {
  padding: 52px 36px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.stat-box:last-child { border-right: none; }
.stat-box::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--green);
  transition: height .4s;
  z-index: 0;
}
.stat-box:hover::before { height: 100%; }
.stat-box:hover .stat-num,
.stat-box:hover .stat-lbl { color: var(--white); }
.stat-num {
  font-family: var(--ff-h);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: color .3s;
}
.stat-lbl {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
  position: relative;
  z-index: 1;
  transition: color .3s;
}

/* ============================================================
   SECTION SHARED
============================================================ */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.sec-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.sec-title {
  font-family: var(--ff-h);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.sec-title span { color: var(--green); }

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-b);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 15px 36px;
  position: relative;
  overflow: hidden;
  transition: all .35s;
}
.btn-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-dark);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s;
}
.btn-main:hover { color: var(--white); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(46,92,81,.28); }
.btn-main:hover::after { transform: scaleY(1); }
.btn-main span, .btn-main i { position: relative; z-index: 1; font-size: 13px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-b);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  padding: 14px 36px;
  border: 2px solid var(--green);
  transition: all .35s;
}

.btn-ghost:hover { background: var(--green); color: var(--white); transform: translateY(-3px); }
.btn-ghost i { font-size: 13px; }

/* reveal */
.rv { opacity: 0; transform: translateY(44px); transition: opacity .75s ease, transform .75s ease; }
.rv.in { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: .12s; }
.rv-d2 { transition-delay: .24s; }
.rv-d3 { transition-delay: .36s; }
.rv-d4 { transition-delay: .48s; }
.rv-left { opacity: 0; transform: translateX(-44px); transition: opacity .75s ease, transform .75s ease; }
.rv-left.in { opacity: 1; transform: translateX(0); }
.rv-right { opacity: 0; transform: translateX(44px); transition: opacity .75s ease, transform .75s ease; }
.rv-right.in { opacity: 1; transform: translateX(0); }

/* ============================================================
   ABOUT
============================================================ */
#about {
  padding: 130px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: 'HEAL';
  font-family: var(--ff-h);
  font-size: 240px;
  font-weight: 900;
  color: rgba(74,124,111,.04);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  letter-spacing: -8px;
  line-height: 1;
}

.about-img-stack {
  position: relative;
  padding: 20px 0 20px 20px;
}
.about-img-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}
.about-img-frame {
  position: absolute;
  top: 0; left: 0;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 3px solid var(--green-light);
  z-index: 1;
  opacity: .35;
}
.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  background: var(--green);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.about-img-accent strong {
  font-family: var(--ff-h);
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.about-img-accent span { font-size: 13px; color: rgba(255,255,255,.8); text-align: center; line-height: 1.3; }

.about-text { padding-left: 20px; }
.about-text p { margin-bottom: 20px; }

.therapist-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 24px 28px;
  margin-top: 36px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 6px 30px rgba(0,0,0,.06);
}
.therapist-strip img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border: 3px solid var(--green-light);
  flex-shrink: 0;
}
.therapist-strip h5 {
  font-family: var(--ff-h);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.therapist-strip p { font-size: 14px; margin-bottom: 12px; }

/* ============================================================
   BLOG STRIP  (3 cards offset)
============================================================ */
#blog-strip {
  padding: 0 0 120px;
  background: var(--bg);
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
}
.blog-card {
  position: relative;
  overflow: hidden;
}
.blog-card:nth-child(1) { height: 520px; }
.blog-card:nth-child(2) { height: 520px; }
.blog-card:nth-child(3) { height: 520px; }

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.blog-card:hover img { transform: scale(1.07); }
.blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,43,40,.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity .4s;
}
.blog-card:hover .blog-card-overlay { opacity: 1; }
.blog-card-overlay a {
  font-family: var(--ff-b);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  padding: 11px 26px;
  border: 2px solid rgba(255,255,255,.7);
  transition: all .3s;
}
.blog-card-overlay a:hover { background: var(--white); color: var(--green-dark); }

/* ============================================================
   PHILOSOPHY  (quote + image diagonal)
============================================================ */
#philosophy {
  padding: 0 0 130px;
  background: var(--bg);
  position: relative;
}
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative;
}
.philosophy-left {
  background: var(--green-dark);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /*clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);*/
  z-index: 1;
}
.philosophy-left::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 300px;
  color: rgba(255,255,255,.05);
  position: absolute;
  top: -20px; left: 20px;
  line-height: 1;
  pointer-events: none;
}
.philosophy-left .sec-eyebrow { color: var(--gold-light); }
.philosophy-left .sec-eyebrow::before { background: var(--gold); }
.philosophy-left .sec-title { color: var(--white); font-size: clamp(22px,2.8vw,38px); }
.philosophy-left blockquote {
  font-family: var(--ff-b);
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,.8);
  line-height: 1.9;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}
.philosophy-left cite {
  font-family: var(--ff-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}
.philosophy-right {
  position: relative;
  overflow: hidden;
}
.philosophy-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.philosophy-inner:hover .philosophy-right img { transform: scale(1.04); }

/* ============================================================
   SERVICES
============================================================ */
#services {
  padding: 130px 0;
  background: var(--white);
  position: relative;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 70px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.service-tile {
  background: var(--bg2);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all .4s;
  cursor: default;
}
.service-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s;
  z-index: 0;
}
.service-tile:hover::after { transform: scaleY(1); }
.service-tile:hover .st-num,
.service-tile:hover .st-title,
.service-tile:hover .st-body { color: var(--white); }
.service-tile:hover .st-icon { background: rgba(255,255,255,.15); color: var(--white); }

.st-num {
  font-family: var(--ff-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--green-light);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: color .3s;
}
.st-icon {
  width: 56px; height: 56px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 22px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: all .3s;
}
.st-title {
  font-family: var(--ff-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  transition: color .3s;
}
.st-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  position: relative;
  z-index: 1;
  transition: color .3s;
}
/* wide card for ACT */
.service-tile.wide { grid-column: span 2; }
.service-tile.dark {
  background: var(--green-dark);
}
.service-tile.dark::after { display: none; }
.service-tile.dark .st-num { color: var(--gold-light); }
.service-tile.dark .st-icon { background: rgba(255,255,255,.1); color: var(--gold); }
.service-tile.dark .st-title { color: var(--white); }
.service-tile.dark .st-body { color: rgba(255,255,255,.7); }
.service-tile.img-tile { padding: 0; }
.service-tile.img-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   GALLERY
============================================================ */
#gallery {
  padding: 130px 0;
  background: var(--text);
}
#gallery .sec-eyebrow { color: var(--gold); }
#gallery .sec-eyebrow::before { background: var(--gold); }
#gallery .sec-title { color: var(--white); }

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 4px;
  margin-top: 60px;
}
.gm-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gm-item:nth-child(1) { grid-column: 1/3; grid-row: 1/3; }
.gm-item:nth-child(5) { grid-column: 3/5; grid-row: 2/4; }
.gm-item:nth-child(8) { grid-column: 1/3; grid-row: 3/4; }

.gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.gm-item:hover img { transform: scale(1.08); }
.gm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,92,81,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s;
}
.gm-item:hover .gm-overlay { opacity: 1; }
.gm-overlay i { color: var(--white); font-size: 28px; }

/* ============================================================
   APPOINTMENT
============================================================ */
#appointment {
  padding: 130px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#appointment::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,124,111,.07) 0%, transparent 70%);
  pointer-events: none;
}

.apt-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  background: var(--white);
  box-shadow: 0 20px 80px rgba(0,0,0,.08);
  overflow: hidden;
}
.apt-info {
  background: var(--green-dark);
  padding: 72px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.apt-info::before {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 260px; height: 260px;
  border: 40px solid rgba(255,255,255,.04);
  pointer-events: none;
}
.apt-info .sec-eyebrow { color: var(--gold-light); }
.apt-info .sec-eyebrow::before { background: var(--gold); }
.apt-info .sec-title { color: var(--white); font-size: clamp(22px,2.5vw,36px); }
.apt-info p { color: rgba(255,255,255,.7); font-size: 16px; margin-bottom: 40px; }

.apt-contact-list { list-style: none; padding: 0; margin: 0; }
.apt-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.apt-contact-list li:last-child { border-bottom: none; }
.apt-contact-list li .ico {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 17px;
  transition: background .3s;
}
.apt-contact-list li:hover .ico { background: var(--gold); color: var(--text); }
.apt-contact-list li strong {
  display: block;
  font-family: var(--ff-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.apt-contact-list li a,
.apt-contact-list li span {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .3s;
}
.apt-contact-list li a:hover { color: var(--gold); }

.apt-form {
  padding: 72px 56px;
  background: var(--white);
}
.apt-form .sec-title { font-size: clamp(22px,2.5vw,36px); margin-bottom: 6px; }
.apt-form .sub-desc { font-size: 16px; margin-bottom: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-label {
  font-family: var(--ff-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}
.form-ctrl {
  width: 100%;
  font-family: var(--ff-b);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 14px 18px;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  appearance: none;
}
.form-ctrl:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(74,124,111,.1); }
.form-ctrl::placeholder { color: #aab5b0; }
textarea.form-ctrl { min-height: 120px; resize: vertical; }

.btn-submit p .btn-submit-btn {
  width: 100%;
  font-family: var(--ff-b);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  border: none;
  padding: 18px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .35s;
}
.btn-submit p .btn-submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.btn-submit p .btn-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(46,92,81,.3); }
.btn-submit p .btn-submit-btn:hover::after { transform: scaleX(1); }
.btn-submit p .btn-submit-btn .btn-submit-text { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 12px; }
.btn-submit p .btn-submit-btn .btn-submit-text i { font-size: 16px; }
.form-group p  br
{
	display:none;
}
.nl-form span.wpcf7-form-control-wrap>input {  
    width: 100%;
	min-width:450px;
}
.newsletter-btn{
	 width: 100%;
  font-family: var(--ff-b);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  border: none;
  padding: 18px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .35s;
}
.nl-form form.wpcf7-form p {
    display: flex;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
}
/* ============================================================
   PRICING
============================================================ */
#pricing {
  padding: 130px 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
#pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 24px,
    rgba(255,255,255,.025) 24px,
    rgba(255,255,255,.025) 25px
  );
}
#pricing .sec-eyebrow { color: var(--gold-light); }
#pricing .sec-eyebrow::before { background: var(--gold); }
#pricing .sec-title { color: var(--white); }

.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 60px; }
.pricing-panel {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  transition: all .4s;
}
.pricing-panel:hover { background: rgba(255,255,255,.1); transform: translateY(-6px); border-color: var(--gold); }
.pricing-panel-tag {
  font-family: var(--ff-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pricing-panel-title {
  font-family: var(--ff-h);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 36px;
}
.pricing-panel-title span { font-size: 26px; }
.pricing-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 0px; }
.pricing-list { list-style: none; padding: 0; margin: 0; }
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgb(255 255 255 / 44%);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li i { color: var(--gold); margin-top: 3px; font-size: 14px; flex-shrink: 0; }
.pricing-list li a {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  transition: color .3s;
}
.pricing-list li a:hover { color: var(--gold); }

/* ============================================================
   TESTIMONIAL
============================================================ */
#testimonial {
  padding:0px 0px 130px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#testimonial::before {
  content: '';
  position: absolute;
  left: -80px; top: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,124,111,.07) 0%, transparent 70%);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  overflow: hidden;
}
.testimonial-img { position: relative; min-height: 460px; overflow: hidden; }
.testimonial-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,92,81,.6) 0%, transparent 60%);
}

.testimonial-content {
  background: var(--white);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.testimonial-content::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 200px;
  color: var(--green);
  opacity: .07;
  position: absolute;
  top: -20px; right: 30px;
  line-height: 1;
  pointer-events: none;
}
.testimonial-quote {
  font-family: var(--ff-b);
  font-size: 17px;
  font-style: italic;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.t-avatar {
  width: 56px; height: 56px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-h);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.t-name {
  font-family: var(--ff-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}
.t-stars { color: var(--gold); font-size: 14px; display: flex; gap: 3px; }

/* ============================================================
   FAQ
============================================================ */
#faq {
  padding: 130px 0;
  background: var(--white);
}
.faq-layout { display: grid; grid-template-columns: 4fr 7fr; gap: 80px; align-items: start; }
.faq-side img { width: 100%; display: block; margin-top: 40px; }
.faq-side p { font-size: 16px; margin-top: 20px; }

.accordion-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 30px 24px 0px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.accordion-btn h5 {
  font-family: var(--ff-h);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  transition: color .3s;
}
.accordion-btn:hover h5 { color: var(--green); }
.accordion-icon {
  width: 36px; height: 36px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 14px;
  transition: all .3s;
}
.accordion-item.open .accordion-icon {
  background: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}
.accordion-item.open .accordion-btn h5 { color: var(--green); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.accordion-body-inner { padding: 0 0 24px; }
.accordion-body-inner p { font-size: 16px; line-height: 1.85; }

/* ============================================================
   CLINICAL SUPERVISION BANNER
============================================================ */
#supervision-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 880px;
  position: relative;
  overflow: hidden;
}

.supbanner-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.supbanner-content {
  background: var(--green-dark);
  padding: 0px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.supbanner-content::before {
  content: 'SUP';
  font-family: var(--ff-h);
  font-size: 220px;
  font-weight: 900;
  color: rgba(255,255,255,.03);
  position: absolute;
  bottom: -30px;
  left: -20px;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -10px;
}

.supbanner-eyebrow {
  color: var(--gold-light);
}

.supbanner-eyebrow::before {
  background: var(--gold);
}

.supbanner-title {
  font-family: var(--ff-h);
  font-size: clamp(30px, 3.8vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.supbanner-title span {
  color: var(--gold);
  font-size: inherit;
}

.supbanner-desc {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,.72);
  margin-bottom: 40px;
  max-width: 460px;
}

.supbanner-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}

.supbanner-meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  font-family: var(--ff-b);
  font-weight: 500;
}

.supbanner-meta-item i {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
  transition: background .3s;
}

.supbanner-meta-item:hover i {
  background: var(--gold);
  color: var(--green-dark);
}

.supbanner-btn {
  align-self: flex-start;
}

.supbanner-image-col {
  position: relative;
  overflow: hidden;
}

.supbanner-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}

#supervision-banner:hover .supbanner-image-col img {
  transform: scale(1.04);
}

.supbanner-quote-card {
  position: absolute;
  bottom: 40px;
  left: 30px;
  background: var(--white);
  padding: 28px 32px;
  max-width: 320px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
  z-index: 2;
}

.sqc-icon {
  color: var(--green);
  font-size: 22px;
  margin-bottom: 12px;
}

.sqc-text {
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 12px;
}

.sqc-name {
  font-family: var(--ff-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .5px;
  display: block;
}

/* ============================================================
   WHY WORK WITH ME
============================================================ */
#supervision-why {
  padding: 0px 0px 130px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
ul.supfee-list li
{
    font-size: 15px;
    color: var(--muted);
    line-height: 1.85;
}
#supervision-why::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74,124,111,.06) 0%, transparent 70%);
  pointer-events: none;
}

.supwhy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.supwhy-left p {
  font-size: 16px;
  margin-bottom: 20px;
}

.supwhy-areas {
  background: var(--white);
  padding: 32px 36px;
  margin-top: 32px;
  border-left: 4px solid var(--green);
  box-shadow: 0 6px 30px rgba(0,0,0,.06);
}

.supwhy-area-title {
  font-family: var(--ff-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .5px;
  margin-bottom: 20px;
}

.supwhy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.supwhy-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.supwhy-list li:last-child,
.supwhy-list li:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

.supwhy-list li i {
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
}

.supwhy-list li span {
  font-size: 15px;
  color: var(--muted);
}

.supfocus-card {
  background: var(--green-dark);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

.supfocus-card::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border: 40px solid rgba(255,255,255,.04);
  pointer-events: none;
}

.supfocus-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.supfocus-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 20px;
  flex-shrink: 0;
}

.supfocus-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.supfocus-title {
  font-family: var(--ff-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.supfocus-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.supfocus-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: padding-left .3s;
}

.supfocus-item:last-child {
  border-bottom: none;
}

.supfocus-item:hover {
  padding-left: 6px;
}

.supfocus-item i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.supfocus-item span {
  font-size: 15px;
  color: rgba(255,255,255,.8);
}

/* ============================================================
   SPECIALIZED EXPERTISE
============================================================ */
#supervision-expertise {
  padding: 130px 0;
  background: var(--white);
  position: relative;
}

.supexp-header {
  margin-bottom: 70px;
}

.supexp-eyebrow {
  justify-content: center;
}

.supexp-eyebrow::before {
  display: none;
}

.supexp-eyebrow::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.supexp-sub {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.supexp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
}

.supexp-col {
  background: var(--bg2);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}

.supexp-col:hover {
  transform: translateY(-6px);
  z-index: 1;
  box-shadow: 0 20px 60px rgba(74,124,111,.12);
}

.supexp-col-dark {
  background: var(--green-dark);
}

.supexp-col-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.supexp-col-dark .supexp-col-head {
  border-bottom-color: rgba(255,255,255,.1);
}

.supexp-col-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 20px;
  flex-shrink: 0;
  transition: all .3s;
}

.supexp-col:hover .supexp-col-icon {
  background: var(--green);
  color: var(--white);
}

.supexp-col-icon-gold {
  background: rgba(255,255,255,.1);
  color: var(--gold);
}

.supexp-col:hover .supexp-col-icon-gold {
  background: var(--gold);
  color: var(--green-dark);
}

.supexp-col-title {
  font-family: var(--ff-h);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.supexp-col-title-white {
  color: var(--white);
}

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

.supexp-list li {
  font-size: 15px;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .3s, padding-left .3s;
}

.supexp-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-light);
  flex-shrink: 0;
  transition: background .3s;
}

.supexp-list li:last-child {
  border-bottom: none;
}

.supexp-list li:hover {
  color: var(--green);
  padding-left: 6px;
}

.supexp-list li:hover::before {
  background: var(--green);
}

.supexp-pub-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,169,126,.2);
  padding: 10px 20px;
  margin-bottom: 12px;
}

.supexp-pub-badge i {
  color: var(--gold);
  font-size: 18px;
}

.supexp-pub-badge span {
  font-family: var(--ff-h);
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}

.supexp-pub-journal {
  font-family: var(--ff-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-style: italic;
}

.supexp-pub-desc {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  margin-bottom: 32px;
}

.supexp-what-diff {
  background: rgba(255,255,255,.06);
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
}

.supexp-diff-title {
  font-family: var(--ff-h);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.supexp-diff-body {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  margin-bottom: 16px;
}

.supexp-diff-quote {
  font-family: var(--ff-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  font-style: italic;
  letter-spacing: .5px;
}

/* ============================================================
   SUPERVISION FEES
============================================================ */
#supervision-fees {
  padding: 0px 0px 0px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

#supervision-fees::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(74,124,111,.07) 0%, transparent 70%);
  pointer-events: none;
}

.supfee-header {
  margin-bottom: 70px;
}

.supfee-eyebrow {
  justify-content: center;
}

.supfee-eyebrow::before {
  display: none;
}

.supfee-eyebrow::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.supfee-title {
  font-size: clamp(28px, 3.5vw, 48px);
}

.supfee-sub {
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.supfee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 70px;
}

.supfee-card {
  background: var(--white);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: all .4s;
  border-top: 3px solid transparent;
}

.supfee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(74,124,111,.14);
  border-top-color: var(--green);
}

.supfee-card-featured {
  background: var(--green-dark);
  border-top: 3px solid var(--gold);
}

.supfee-card-featured:hover {
  border-top-color: var(--gold);
  box-shadow: 0 24px 60px rgba(46,92,81,.35);
}

.supfee-featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--text);
  font-family: var(--ff-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
}

.supfee-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.supfee-card-featured .supfee-card-top {
  border-bottom-color: rgba(255,255,255,.1);
}

.supfee-icon {
  width: 60px;
  height: 60px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 24px;
  flex-shrink: 0;
  transition: all .3s;
}

.supfee-card:hover .supfee-icon {
  background: var(--green);
  color: var(--white);
}

.supfee-icon-white {
  background: rgba(255,255,255,.12);
  color: var(--gold);
}

.supfee-card-featured:hover .supfee-icon-white {
  background: var(--gold);
  color: var(--green-dark);
}

.supfee-price-wrap {
  text-align: right;
}

.supfee-amount {
  font-family: var(--ff-h);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.supfee-amount-white {
  color: var(--gold);
}

.supfee-per {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.supfee-per-light {
  color: rgba(255,255,255,.5);
}

.supfee-card-title {
  font-family: var(--ff-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.supfee-title-white {
  color: var(--white);
}

.supfee-card-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  flex: 1;
  margin-bottom: 32px;
}

.supfee-desc-light {
  color: rgba(255,255,255,.65);
}

.supfee-btn {
  align-self: flex-start;
  font-size: 13px;
}

.supfee-btn-gold {
  background: var(--gold);
  color: var(--text);
}

.supfee-btn-gold::after {
  background: rgba(255,255,255,.2);
}

.supfee-btn-gold:hover {
  color: var(--text);
  box-shadow: 0 12px 30px rgba(200,169,126,.4);
}

/* Connect Strip */
.supfee-connect {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  box-shadow: 0 20px 80px rgba(0,0,0,.08);
  overflow: hidden;
}

.supfee-connect-left {
  padding: 60px 56px;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.supfee-connect-left::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border: 40px solid rgba(255,255,255,.04);
  pointer-events: none;
}

.supfee-connect-title {
  font-family: var(--ff-h);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.supfee-connect-desc {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  line-height: 1.9;
  margin-bottom: 36px;
}

.supfee-connect-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.supfee-connect-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.supfee-connect-item i {
  color: var(--gold);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.supfee-connect-item span,
.supfee-connect-item a {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  transition: color .3s;
}

.supfee-connect-item a:hover {
  color: var(--gold);
}

.supfee-connect-right {
  padding: 60px 56px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
}

.supfee-connect-profile {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.supfee-profile-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  flex-shrink: 0;
  border: 4px solid var(--green-light);
}

.supfee-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.supfee-profile-name {
  font-family: var(--ff-h);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.supfee-profile-cred {
  font-family: var(--ff-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.supfee-profile-role {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.supfee-profile-btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   SUPERVISION RESPONSIVE
============================================================ */
@media (max-width: 1199px) {
  .supbanner-content { padding: 70px 50px; }
  .supfee-connect-left { padding: 50px 40px; }
  .supfee-connect-right { padding: 50px 40px; }
}

@media (max-width: 991px) {
  #supervision-banner { grid-template-columns: 1fr; }
  .supbanner-content { padding: 80px 36px; }
  .supbanner-image-col { min-height: 380px; }
  .supbanner-quote-card { left: 20px; bottom: 20px; max-width: 280px; }
  .supwhy-grid { grid-template-columns: 1fr; gap: 48px; }
  .supwhy-list { grid-template-columns: 1fr; }
  .supexp-grid { grid-template-columns: 1fr; }
  .supfee-grid { grid-template-columns: 1fr; }
  .supfee-connect { grid-template-columns: 1fr; }
  .supfee-connect-right { padding: 50px 40px; }
}

@media (max-width: 767px) {
  .supbanner-content { padding: 60px 24px; }
  .supfocus-card { padding: 36px 28px; }
  .supexp-col { padding: 40px 28px; }
  .supfee-card { padding: 40px 28px; }
  .supfee-connect-left { padding: 40px 28px; }
  .supfee-connect-right { padding: 40px 28px; }
  .supfee-connect-profile { flex-direction: column; text-align: center; }
}

/* ============================================================
   NEWSLETTER
============================================================ */
#newsletter {
  padding: 100px 0;
  background: var(--bg2);
  position: relative;
/*   overflow: hidden; */
}
#newsletter::after {
  content: '';
  position: absolute;
  right: -80px; bottom: 0px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(74,124,111,.1) 0%, transparent 70%);
}
.newsletter-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner .sec-eyebrow { justify-content: center; }
.newsletter-inner .sec-eyebrow::before { display: none; }
.newsletter-inner .sec-eyebrow::after { content: ''; width: 28px; height: 2px; background: var(--gold); flex-shrink: 0; }
.newsletter-inner p { font-size: 16px; margin-bottom: 36px; }

/* .nl-form {
  display: flex;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
} */
.nl-form input {
  flex: 1;
  font-family: var(--ff-b);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: none;
  padding: 18px 24px;
  outline: none;
}
.newsletter-inner h2.sec-title
{
  line-height: 30px !important;
}
.nl-form input::placeholder { color: #aab5b0; }
.nl-form .newsletter-btn {
  font-family: var(--ff-b);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  border: none;
  padding: 18px 36px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .3s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nl-form .newsletter-btn i { font-size: 14px; }
.nl-form .newsletter-btn:hover { background: var(--green-dark); }

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: #0e1a17;
  padding: 90px 0 0;
}
.footer-logo img { height:120px; margin-bottom: 22px; display: block; }
.footer-desc { font-size: 15px; color: rgba(255,255,255,.45); line-height: 1.8; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: 15px;
  transition: all .3s;
}
.footer-socials a:hover { background: var(--green); color: var(--white); transform: translateY(-3px); }

.footer-col-title {
  font-family: var(--ff-h);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 14px;
  position: relative;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--green);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links li a {
  font-size: 15px;
  color: rgba(255,255,255,.45);
  display: flex;
      align-items: baseline;
  gap: 9px;
  transition: all .3s;
}
.footer-links li a::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--green);
  flex-shrink: 0;
  transition: transform .3s;
}
.footer-links li a:hover { color: var(--gold); padding-left: 5px; }
.footer-links li a:hover::before { transform: scale(1.6); }

.footer-contact-row { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 18px; }
.footer-contact-row i { color: var(--green-light); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-row a,
.footer-contact-row span { font-size: 15px; color: rgba(255,255,255,.5); transition: color .3s; }
.footer-contact-row a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,.3); margin: 0; }
.footer-bottom a { font-size: 14px; color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   BACK TO TOP
============================================================ */
#btt {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--green);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(46,92,81,.4);
  transition: all .3s;
}
#btt.show { display: flex; }
#btt:hover { background: var(--green-dark); transform: translateY(-4px); }

/* ============================================================
   KEYFRAMES
============================================================ */
@keyframes fadeUp    { to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn    { to { opacity:1; } }
@keyframes slideRight{ to { opacity:1; transform:translateX(0); } }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width:1199px) {
  .hero-left  { padding: 60px 40px 60px 60px; }
  .philosophy-left { padding: 60px 50px; }
}
@media (max-width:991px) {
  #hero       { grid-template-columns: 1fr; }
  .hero-left  { padding: 100px 36px 60px; min-height: 70vh; }
  .hero-left::after { display: none; }
  .hero-right { min-height: 380px; }
  .hero-scroll { left: 36px; }
  .hero-deco-char { font-size: 160px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .blog-grid  { grid-template-columns: 1fr; }
  .blog-card  { height: 280px !important; margin-top: 0 !important; }
  .philosophy-inner { grid-template-columns: 1fr; }
  .philosophy-left  { clip-path: none; }
  .philosophy-right { min-height: 320px; }
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .service-tile.wide { grid-column: span 2; }
  .gallery-mosaic   { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gm-item          { grid-column: auto !important; grid-row: auto !important; height: 220px; }
  .apt-layout       { grid-template-columns: 1fr; }
  .apt-info         { padding: 52px 40px; }
  .apt-form         { padding: 52px 40px; }
  .pricing-grid     { grid-template-columns: 1fr; }
  .testimonial-layout { grid-template-columns: 1fr; }
  .testimonial-img  { min-height: 280px; }
  .faq-layout       { grid-template-columns: 1fr; gap: 40px; }
  .services-header  { grid-template-columns: 1fr; }
  .nav-wrapper      { padding: 0 20px; }
  .nav-menu         { display: none; }
  .nav-btn          { display: none; }
  .hamburger        { display: flex; }
  .nav-topbar       { padding: 7px 20px; }
}
@media (max-width:767px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-box    { padding: 36px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-tile.wide { grid-column: span 1; }
  .nl-form     { flex-direction: column; }
  .nl-form button { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row    { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITY CLASSES (replacing inline styles)
============================================================ */
.text-gold          { color: var(--gold) !important; }
.mt-learn           { margin-top: 36px; }
.mt-request         { margin-top: 28px; }
.apt-head-wrap      { margin-bottom: 60px; }
.sec-center-wrap    { margin-bottom: 60px; text-align: center; }
.sec-eyebrow-center { justify-content: center; }
.footer-partner-img { height: 60px; display: block; }

/*lightbox*/
.custom-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;

    opacity:0;
    visibility:hidden;
    transition:.4s ease;
}

.custom-lightbox.active{
    opacity:1;
    visibility:visible;
}

.custom-lightbox img{
    max-width:90%;
    max-height:90vh;
    /*border-radius:15px;*/
    transform:scale(.8);
    transition:.4s ease;
}

.custom-lightbox.active img{
    transform:scale(1);
}

.lightbox-close{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
    line-height:1;
    z-index:2;
}
.gm-overlay{
    pointer-events:none;
}
.shop-action-wrap{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.shop-action-btn{
    display:flex;
    align-items:center;
    gap:10px;

    background:#4a7c6f;
    color:#fff;
    text-decoration:none;

   padding: 10px 20px;
    border:2px solid #4a7c6f;

    transition:.35s ease;
}

.shop-action-btn i{
    font-size:16px;
}

.shop-action-btn span{
    font-size:15px;
    font-weight:600;
}

.shop-action-btn:hover{
    background:transparent;
    color:#4a7c6f;
}
@media (max-width: 768px) {
    .nav-topbar {
        display: none;
    }
    #supervision-banner {
     height:auto; 
}
	.nl-form span.wpcf7-form-control-wrap>input {  
    width: 100%;
	min-width:auto !important;
}
}
#supervision-banner {
  
    padding-top: 110px;
}

section#appointment div#wpcf7-f871-o1 .screen-reader-response {
    display: none;
}
#newsletter .newsletter-inner .nl-form span.wpcf7-form-control-wrap>input {
   
    height: 100%;
}
#newsletter .newsletter-inner .nl-form form.wpcf7-form p {
   
    height: 60px;
}
#newsletter .wpcf7-spinner {
    display: none;
}

section#appointment .apt-layout form.wpcf7-form.invalid .wpcf7-response-output
{
	position: relative;
    top: -40px;
    text-align: center;
	color: red;
}