:root{
  --teal: #4a6b4d;         /* olive green - primary */
  --teal-dark: #33472f;    /* deep forest green */
  --pink: #33472f;         /* re-used as accent (buttons) to keep old class names working */
  --pink-light: #eef1e7;   /* soft sage tint */
  --bg-light: #faf6ef;     /* warm cream background */
  --cream: #faf6ef;
  --tan: #cdb89a;
}
body{
  font-family: 'Poppins', sans-serif;
  color: #3a3a35;
  background: var(--cream);
}
a{ text-decoration: none; }
h1, h2, h3, .section-title, .brand-name{
  font-family: 'Playfair Display', serif;
}

/* Top bar */
.top-bar{
  background: var(--teal-dark);
  color: #fff;
  font-size: .8rem;
  padding: 6px 0;
}
.top-bar i{ margin-right: 5px; color: var(--tan); }

/* Navbar */
.main-navbar{ background: var(--cream) !important; box-shadow: none !important; border-bottom: 1px solid #e7e0d2; }
.main-navbar .navbar-brand{ color: var(--teal-dark); font-size: 1.4rem; font-family:'Playfair Display', serif; }
.brand-icon{ color: var(--teal); }
.main-navbar .nav-link{ color: #4a463f; font-weight: 500; margin: 0 8px; }
.main-navbar .nav-link:hover{ color: var(--teal); }
.btn-book{
  background: var(--teal-dark);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 500;
  border: none;
}
.btn-book:hover{ background: var(--teal); color:#fff; }
.btn-outline-secondary{
  border-color: var(--teal-dark) !important;
  color: var(--teal-dark) !important;
  border-radius: 8px !important;
}
.btn-outline-secondary:hover{
  background: var(--teal-dark) !important;
  color: #fff !important;
}

/* Hero */
.hero-section{
  background: var(--cream);
  padding: 70px 0;
}
.hero-eyebrow{
  display:inline-block;
  background: var(--pink-light);
  color: var(--teal-dark);
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero-section h1{
  color: #2c2c28;
  font-weight: 600;
  line-height: 1.25;
}
.hero-section .highlight{ color: var(--teal); font-style: italic; }
.hero-photo-wrap{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.hero-photo-wrap img{ width:100%; border-radius: 20px; }
.hero-badge-card{
  position:absolute;
  bottom: 20px;
  left: 20px;
  background:#fff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.hero-badge-card strong{ font-family:'Playfair Display', serif; display:block; color:var(--teal-dark); }
.trust-point{ display:flex; align-items:flex-start; gap:10px; }
.trust-point i{ color: var(--teal); font-size:1.1rem; margin-top:2px; }
.trust-point span{ font-size:.85rem; color:#555; }

/* Service cards */
.service-card{
  background:#fff;
  border-radius: 16px;
  padding: 25px 15px;
  text-align:center;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  height: 100%;
  transition: transform .2s ease;
}
.service-card:hover{ transform: translateY(-6px); }
.service-card .icon-circle{
  width: 70px; height:70px;
  border-radius:50%;
  background: var(--pink-light);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 15px auto;
  font-size: 1.6rem;
  color: var(--pink);
}
.service-card h6{ font-weight:600; color: var(--teal-dark); }

/* Section titles */
.section-title{
  text-align:center;
  font-weight:700;
  color: var(--teal-dark);
  margin-bottom: 40px;
  position:relative;
}
.section-title::after{
  content:'';
  display:block;
  width:60px;height:4px;
  background:var(--pink);
  margin:12px auto 0 auto;
  border-radius:2px;
}

/* Stats */
.stats-strip{
  background: var(--teal);
  color:#fff;
  padding: 35px 0;
}
.stats-strip h3{ font-weight:700; margin-bottom:0; }
.stats-strip small{ opacity:.85; }

/* Therapist cards */
.therapist-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.07);
  height:100%;
  transition: transform .2s ease;
}
.therapist-card:hover{ transform: translateY(-5px); }
.therapist-card .photo-wrap{
  height:220px;
  background:var(--pink-light);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.therapist-card .photo-wrap img{ width:100%; height:100%; object-fit:cover; }
.therapist-card .body{ padding: 18px; }
.therapist-card h6{ color: var(--teal-dark); font-weight:700; margin-bottom:2px; }
.therapist-card .designation{ font-size:.85rem; color:#777; }
.badge-tag{
  background: var(--pink-light);
  color: var(--pink);
  font-size:.72rem;
  padding: 4px 10px;
  border-radius: 20px;
  margin: 2px 3px 0 0;
  display:inline-block;
}
.rating-stars{ color:#ffb800; font-size:.85rem; }

/* Filter dropdown bar on therapists page */
.filter-bar{
  background:#fff;
  border-radius:12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  padding: 18px;
  margin-bottom: 30px;
}

/* Therapist detail page */
.profile-header{
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color:#fff;
  padding: 50px 0;
}
.profile-photo{
  width:160px;height:160px;
  border-radius:50%;
  border:5px solid #fff;
  object-fit:cover;
  background:#fff;
}

/* Footer */
.site-footer{
  background: var(--teal-dark);
  color: #d7ddce;
}
.site-footer h5, .site-footer h6{ color:#fff; font-family:'Playfair Display', serif; }
.site-footer a{ color:#c3ccb9; }
.site-footer a:hover{ color:#fff; }
.footer-brand i{ color: var(--tan); }

/* Testimonials */
.testimonial-card{
  background:#fff;
  border-radius:14px;
  padding:26px;
  height:100%;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
}
.testimonial-card .stars{ color:#e0a458; margin-bottom:10px; }
.testimonial-card p{ font-size:.92rem; color:#4a463f; }
.avatar-circle{
  width:38px;height:38px;
  border-radius:50%;
  background: var(--pink-light);
  color: var(--teal-dark);
  display:flex; align-items:center; justify-content:center;
  font-weight:600; font-size:.8rem;
}

/* Vision / about strip */
.vision-strip{
  background: var(--pink-light);
  border-radius: 20px;
  overflow: hidden;
}
.vision-strip img{ width:100%; height:100%; object-fit:cover; min-height:260px; }
.vision-point i{ color: var(--teal); margin-right:8px; }

/* Booking + contact split section */
.booking-bar{
  background: var(--teal-dark);
  color:#fff;
  border-radius: 18px;
  padding: 30px;
}
.booking-bar h5{ font-family:'Playfair Display', serif; }
.booking-bar .form-control, .booking-bar .form-select{
  border-radius:8px; border:none;
}
.booking-feature{ font-size:.78rem; opacity:.9; }
.contact-box{
  background:#fff;
  border-radius:18px;
  padding: 30px;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  height:100%;
}
.contact-box h5{ font-family:'Playfair Display', serif; color: var(--teal-dark); }

/* Find us on / social platforms */
.platform-card{
  background:#fff;
  border-radius:14px;
  padding:20px;
  text-align:center;
  box-shadow: 0 3px 14px rgba(0,0,0,.05);
  height:100%;
}
.platform-card i, .platform-card img{ font-size:1.6rem; margin-bottom:8px; }
.platform-card h6{ font-weight:600; margin-bottom:2px; font-size:.9rem; }
.platform-card small{ color:#888; }
.platform-card a{ font-size:.8rem; color: var(--teal); font-weight:600; }

/* Admin panel */
.admin-sidebar{
  background: var(--teal-dark);
  min-height: 100vh;
  color:#fff;
}
.admin-sidebar a{
  color:#d9edef;
  display:block;
  padding: 12px 20px;
}
.admin-sidebar a:hover, .admin-sidebar a.active{
  background: rgba(255,255,255,.1);
  color:#fff;
}
.admin-topbar{
  background:#fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  padding: 12px 20px;
}
