/* =========================================
   KREEM SHAKTI – Ayurvedic Wellness Website
   External Stylesheet
   ========================================= */

/* ---------- CSS Variables ---------- */
:root {
  /* Kreem Shakti Pantone Palette */
  --green: #1D6960;        /* PANTONE 4165 C - Forest Teal */
  --green-dark: #0D5549;   /* Deep Teal - updated from brand palette */
  --green-mid: #1DB296;    /* PANTONE 2222 C - Cyan Teal */
  --green-light: #e0f2ef;
  --green-bg: #f0faf8;
  --orange: #D69A2D;       /* PANTONE 7563 C - Golden Amber */
  --orange-light: #fdf6e3;
  --primary: #C4444B;      /* PANTONE 6059 C - Hot Magenta (was --green) */
  --primary-dark: #8A1538; /* PANTONE 1955 C - Burgundy */
  --accent-teal: #63B1BC;  /* PANTONE 7709 C - Sky Teal */
  --accent-gold: #E7D083;  /* PANTONE 6001 C - Warm Yellow */
  --accent-rose: #A64570;  /* PANTONE 2047 C - Deep Rose */
  --accent-coral: #FF9DA2; /* PANTONE 3572 C - Soft Coral */
  --accent-sage: #9CAF88;  /* PANTONE 7494 C - Sage Green */
  --accent-blush: #ED7B86; /* PANTONE 6045 C - Blush Pink */
  --accent-purple: #613E5F;/* PANTONE 6074 C - Deep Purple */
  --white: #ffffff;
  --black: #111111;
  --gray: #303233;
  --gray-light: #f8f9fa;
  --shadow-sm: 0 4px 20px rgba(29,105,96,0.10);
  --shadow-md: 0 10px 40px rgba(29,105,96,0.14);
  --shadow-lg: 0 20px 60px rgba(29,105,96,0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --font-display: "Bai Jamjuree", sans-serif !important;
  --font-body: 'DM Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
 font-family: "Playfair Display", serif !important;
  color: var(--black);
  background: var(--white);

  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; }
address { font-style: normal; }
h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", serif !important;
    font-weight: 700;
    color: var(--text-primary);
}
/* ---------- Typography ---------- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid rgba(29,105,96,0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-tag-light {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title em {
    font-style: normal;
    color: var(--green); !important;
}
section.newsletter-section em{
    color: var(--orange) !important;
}
.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-desc { color: var(--gray); font-size: 1.02rem; margin-bottom: 14px; }
.section-wave-bottom {
  margin-top: 60px;
  line-height: 0;
}
.section-wave-bottom svg { width: 100%; display: block; }

/* ---------- TOP BAR ---------- */
.top-bar {
  background: var(--green-dark);
  padding: 7px 0;
  font-size: 0.82rem;
  z-index: 1000;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.top-contacts { display: flex; gap: 20px; flex-wrap: wrap; }
.top-contacts a, .top-social a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  transition: var(--transition);
}
.top-contacts a:hover { color: var(--orange); }
.top-contacts a i { margin-right: 5px; color: var(--orange); }
.top-social { display: flex; gap: 10px; }
.top-social a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  transition: var(--transition);
}
.top-social a:hover { background: var(--orange); color: white; }

/* ---------- NAVBAR ---------- */
.main-nav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0px 0;
  border-bottom: 1px solid rgba(29,105,96,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s ease;
}
.main-nav.scrolled { box-shadow: 0 4px 30px rgba(29,105,96,0.1); }

.logo-brand { display: flex; align-items: center; gap: 12px; }
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-nav { gap: 4px; }
.nav-link {
  
    font-size: 18px;
    font-weight: 500;
    color: var(--black) !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 60%; }
.nav-link:hover { color: var(--green) !important; }
.nav-link.active { color: var(--green) !important; }

.btn-nav-cta {
  background: var(--green);
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-nav-cta:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,122,0,0.3);
  color: white !important;
}

/* Hamburger */
.navbar-toggler { border: none; padding: 6px; background: transparent; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon {
  display: block;
  width: 24px; height: 2px;
  background: var(--green);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--green-bg);
    height: 565px;
}

.min-vh-hero {
    min-height: 100%;
    padding: 26px 0;
    padding-bottom: 80px;
}
.hero-slides-wrapper { position: relative; }

.hero-slide {
  display: none;
  position: relative;
}
.hero-slide.active { display: block; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-1 {
  background: radial-gradient(ellipse 80% 80% at 80% 50%, rgba(99,177,188,0.2) 0%, transparent 70%),
              linear-gradient(135deg, #f0faf8 0%, #e0f2ef 50%, #fdf6e3 100%);
}
.hero-bg-2 {
  background: radial-gradient(ellipse 80% 80% at 80% 50%, rgba(214,154,45,0.15) 0%, transparent 70%),
              linear-gradient(135deg, #fdf6e3 0%, #fef9ed 50%, #f0faf8 100%);
}
.hero-bg-3 {
  background: radial-gradient(ellipse 80% 80% at 80% 50%, rgba(29,178,150,0.15) 0%, transparent 70%),
              linear-gradient(135deg, #e0f2ef 0%, #f0faf8 50%, #fdf6e3 100%);
}

.hero-content-container { position: relative; z-index: 2; }

.hero-glass-card {
 
  padding: 44px 44px 40px;
 
  max-width:766px;
  animation: heroCardIn 0.7s ease both;
}

@keyframes heroCardIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(29,105,96,0.2);
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 2.5rem);
    font-weight: 600;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 18px;
}.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 480px;
}
.hero-illustration img {
    border-radius: 20px;
    position: relative;
    width: 100%;
	object-fit:cover;    height: 320px;
}
.hero-title em {
    font-style: normal;
    color: var(--green);
}

.hero-desc { color: var(--gray); font-size: 1.05rem; margin-bottom: 28px; line-height: 1.7;   font-weight: 600; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.btn-hero-primary {
  background: var(--green);
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
  border: 2px solid var(--green);justify-content: center;
}
.btn-hero-primary:hover {
  background: var(--green-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(29,105,96,0.3);
}

.btn-hero-outline {
  background: transparent;
  color: var(--green);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--green);
  transition: var(--transition);
}
.btn-hero-outline:hover {
  background: var(--green);
  color: white;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--gray); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: rgba(29,105,96,0.2); }

.hero-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
}
.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 585px;
}
.hero-svg-illus {
  width: 100%;
  animation: floatAnim 6s ease-in-out infinite;
}
@keyframes floatAnim {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Floating SVG elements */
.hero-floats { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.float-leaf, .float-circle, .float-dots {
  position: absolute;
  pointer-events: none;
}
.float-1 { width: 100px; top: 10%; left: -30px; animation: driftFloat 8s ease-in-out infinite; }
.float-2 { width: 70px; bottom: 15%; right: -10px; animation: driftFloat 10s ease-in-out infinite reverse; }
.float-3 { width: 200px; top: -60px; right: 15%; animation: spinSlow 30s linear infinite; }
.float-4 { width: 80px; bottom: 20%; left: 8%; animation: driftFloat 12s ease-in-out infinite; }

@keyframes driftFloat {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(8px,-12px) rotate(5deg); }
  66% { transform: translate(-6px,8px) rotate(-3deg); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Hero controls */
.hero-controls {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-prev, .hero-next {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(29,105,96,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}
.hero-prev:hover, .hero-next:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.hero-dots { display: flex; gap: 8px; align-items: center; }
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(29,105,96,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--green); width: 22px; border-radius: 4px; }

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ---------- ABOUT SECTION ---------- */
.about-section {
    padding: 60px 0 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-illustration-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}.about-illustration-wrap img {
    border-radius: 20px;
}
.about-bg-blob {
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.about-main-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 20px 40px rgba(29,105,96,0.1));
}
.about-badge {
  position: absolute;
  background: white;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  box-shadow: 0 8px 24px rgba(29,105,96,0.12);
  border: 1px solid var(--green-light);
  z-index: 2;
  white-space: nowrap;
}
.about-badge i { margin-right: 6px; color: var(--orange); }
.about-badge-1 { top: 20px; right: -10px; }
.about-badge-2 { bottom: 40px; left: -10px; }

.about-content { padding-left: 20px; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.pillar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--green-bg);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--black);
  border: 1px solid rgba(29,105,96,0.1);
  transition: var(--transition);
}
.pillar-item:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}
.pillar-icon { flex-shrink: 0; }
.pillar-item strong { font-weight: 600; color: var(--green); }

.btn-primary-green {
  background: var(--green);
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
  border: none;justify-content: center;
}
.btn-primary-green:hover {
  background: var(--green-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(29,105,96,0.3);
}

/* ---------- SERVICES ---------- */
.services-section {
    padding: 60px 0 0;
    background: var(--green-bg);
}
.service-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 36px 30px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(29,105,96,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-featured {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-color: transparent;
}
.service-card-featured .service-title { color: white; }
.service-card-featured .service-desc { color: rgba(255,255,255,0.8); }
.service-card-featured .service-features li { color: rgba(255,255,255,0.9); }
.service-card-featured .service-features i { color: #81c784; }

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.service-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--orange-light);
  color: var(--orange);
}
.service-badge-green {
  background: rgba(255,255,255,0.2);
  color: white;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}
.service-desc { color: var(--gray); font-size: 0.95rem; line-height: 1.7; flex-grow: 1; margin-bottom: 20px; }

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray);
}
.service-features i { color: var(--green); font-size: 0.75rem; }

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--green);
  color: var(--green);
  transition: var(--transition);
  width: fit-content;
  margin-top: auto;
}
.btn-service:hover {
  background: var(--green);
  color: white;
  transform: translateX(4px);
}
.btn-service-featured {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}
.btn-service-featured:hover {
  background: #e56700;
  color: white;
  border-color: #e56700;
  transform: translateX(4px);
}

/* ---------- BENEFITS ---------- */
.benefits-section {
    padding: 60px 0;
    background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
    padding: 15px 15px;
    background: var(--green-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(46, 125, 50, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(29,105,96,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: white;
}
.benefit-icon {
    width: 100%;
    height: 566px;
    background: var(--green-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--green);
    margin-bottom: 17px;
    transition: var(--transition);
    object-fit: cover;
    padding: 5px;
}.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.benefit-icon-orange { background: var(--orange-light); color: var(--orange); }

.benefit-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: #693919;
    margin-bottom: 10px;
}
.benefit-card p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.6;
}

/* ---------- CONDITIONS ---------- */
.conditions-section {
    padding: 60px 0 0;
   background: linear-gradient(135deg, #f0faf8 0%, #fdf6e3 60%, #f0faf8 100%);
    position: relative;
    overflow: hidden;
}
.conditions-bg-shape {
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(29,105,96,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.condition-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(29,105,96,0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.condition-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29,105,96,0.2);
}
.condition-icon {
  width: 46px; height: 46px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--green);
  flex-shrink: 0;
}
.condition-icon-orange { background: var(--orange-light); color: var(--orange); }
.condition-content h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.condition-content p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* ---------- CERTIFICATIONS ---------- */
.certs-section {
    padding: 60px 0;
    background: white;
    overflow: hidden;
}

.certs-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.certs-track {
  display: flex;
  gap: 24px;
  animation: certScroll 28s linear infinite;
  width: max-content;
}
.certs-track:hover { animation-play-state: paused; }
.cert-logo svg {
    width: 100%;
    height: auto;
}
.cert-logo {
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    cursor: pointer;
    width: 300px;
    height: auto;
    border: 4px solid #4e8982;
    text-align: center;
    line-height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 105px;
    border-radius: 20px;
    padding: 20px;
}
.cert-logo:hover { opacity: 1; }

@keyframes certScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  padding: 100px 0;
  background: var(--green-bg);
}

.testimonial-slider { overflow: hidden; position: relative; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 36px 32px;
  min-width: calc(33.333% - 16px);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(29,105,96,0.06);
  transition: var(--transition);
  flex-shrink: 0;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-stars { color: var(--orange); font-size: 0.9rem; margin-bottom: 16px; gap: 2px; display: flex; }
.testi-text {
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.testi-text::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(29,105,96,0.1);
  position: absolute;
  top: -20px; left: -10px;
  line-height: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(29,105,96,0.08);
  padding-top: 20px;
}
.testi-avatar { border-radius: 50%; overflow: hidden; }
.testi-author strong {
  display: block;
  font-weight: 600;
  color: var(--black);
  font-size: 0.95rem;
}
.testi-author span { font-size: 0.82rem; color: var(--gray); }

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.testi-btn {
  width: 42px; height: 42px;
  background: white;
  border: 1px solid rgba(29,105,96,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}
.testi-btn:hover { background: var(--green); color: white; border-color: var(--green); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(29,105,96,0.2);
  cursor: pointer;
  transition: var(--transition);
}
.testi-dot.active { background: var(--green); width: 22px; border-radius: 4px; }

/* ---------- NEWSLETTER ---------- */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 40%, var(--green-mid) 100%);
    position: relative;
    overflow: hidden;
}
.newsletter-floats { position: absolute; inset: 0; pointer-events: none; }
.nl-float-1 { position: absolute; width: 300px; top: -80px; right: -60px; }
.nl-float-2 { position: absolute; width: 180px; bottom: -40px; left: -30px; }

.newsletter-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-svg {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.newsletter-content {
    padding: 20px 0;
    position: relative;
    z-index: 2;
}
.newsletter-desc { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 24px; }
.newsletter-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.newsletter-perks i { color: #81c784; font-size: 0.9rem; }

.newsletter-form { position: relative; z-index: 1; }
.newsletter-input-wrap {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.newsletter-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 22px;
  color: white;
  font-size: 0.95rem;
  outline: none;
  font-family: var(--font-body);
}
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input-wrap button {
  background: var(--orange);
  color: white;
  border: none;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  border-radius: 0 50px 50px 0;
}
.newsletter-input-wrap button:hover { background: #e56700; }
.newsletter-privacy { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 12px; display: flex; align-items: center; gap: 6px; }
.newsletter-privacy i { font-size: 0.75rem; }
.text-orange { color: var(--orange) !important; }

/* ---------- FAQ ---------- */
.faq-section {
    padding: 60px 0;
    background: white;
    position: relative;
    overflow: hidden;
}
.faq-decoration { position: absolute; top: 0; right: 0; pointer-events: none; }
.faq-blob { width: 300px; }

.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid rgba(29,105,96,0.12) !important;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(29,105,96,0.25) !important; box-shadow: var(--shadow-sm); }
.faq-button {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black) !important;
  background: white !important;
  padding: 20px 24px !important;
  border: none !important;
  box-shadow: none !important;
}
.faq-button:not(.collapsed) {
  color: var(--green) !important;
  background: var(--green-bg) !important;
}
.faq-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232e7d32'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.faq-body {
  padding: 20px 24px !important;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
  background: white;
  border-top: 1px solid rgba(29,105,96,0.08) !important;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--green-bg) 0%, white 50%, var(--green-bg) 100%);
    position: relative;
    overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape-1 { position: absolute; width: 400px; top: -100px; left: -80px; }
.cta-shape-2 { position: absolute; width: 250px; bottom: -60px; right: -40px; }

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.cta-lotus { margin-bottom: 20px; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-title em { font-style: italic; color: var(--green); }
.cta-desc { color: var(--gray); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-cta-primary {
  background: var(--green);
  color: white;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--transition);
  border: 2px solid var(--green);
}
.btn-cta-primary:hover {
  background: var(--green-dark);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(29,105,96,0.3);
}
.btn-cta-outline {
  background: transparent;
  color: var(--green);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--transition);
  border: 2px solid var(--green);
}
.btn-cta-outline:hover {
  background: var(--green);
  color: white;
  transform: translateY(-4px);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--green-dark);
  padding: 0 0 0;
  position: relative;
}
.footer-wave { line-height: 0; overflow: hidden; }
.footer-wave svg { width: 100%; display: block; }

.footer-top {
    padding: 0px 0 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-about {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--orange); color: white; transform: translateY(-3px); }

.footer-heading {
  color: white;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before {
    content: '→';
    opacity: 1;
    transition: var(--transition);
    font-size: 0.75rem;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}
.footer-contact i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-contact a:hover { color: var(--orange); }

.footer-nl-desc { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 16px; }
.footer-nl-form {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  overflow: hidden;
}
.footer-nl-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 11px 18px;
  color: white;
  font-size: 0.88rem;
  outline: none;
  font-family: var(--font-body);
}
.footer-nl-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-nl-form button {
  background: var(--orange);
  border: none;
  padding: 11px 16px;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0 50px 50px 0;
}
.footer-nl-form button:hover { background: #e56700; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-inner p {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  margin: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: calc(50% - 12px); }
     .hero-visual-col {
        padding-left: 0;
        margin-top: 30px;
        orphans: 1;
    }
  .about-content { padding-left: 0; }
  .hero-controls { bottom: 100px; }
     .min-vh-hero {
        min-height: auto;
        padding: 10px 0 100px;
    }.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--green-bg);
    height: auto;
}.hero-illustration {
    position: relative;
    width: 100%;
    max-width: max-content;
    text-align: center;
}.hero-slides-wrapper .col-lg-6 {
    order: 2;
}
}

@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: calc(100% - 0px); }
  .hero-glass-card { padding: 28px 24px; }
  .hero-title { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .about-badge { display: none; }
  .newsletter-image-wrap { display: none; }
  .footer-top { padding: 50px 0 30px; }
  .top-contacts { gap: 12px; font-size: 0.78rem; }
}

@media (max-width: 576px) {
  .hero-btns { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-controls { gap: 10px; }
  .section-title { font-size: 1.8rem; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   VIDEO TESTIMONIALS – Slick Slider Section
   ========================================= */

.testimonials-section {
  padding: 60px 0;
  background: var(--green-bg);
  overflow: hidden;
}
.testimonials-section .testi-header {
    text-align: left;
    margin-left: 74px;
}
.testi-header { text-align: left; }
.testi-header .section-title { text-align: left; }

/* ---- Wrapper with arrows outside ---- */
.video-testi-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ---- Slider fills between arrows ---- */
.video-testi-slider {
  flex: 1;
  min-width: 0;
}

/* ---- Each slide ---- */
.vt-slide { padding: 0 10px; }

/* ---- Card ---- */
.vt-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(29,105,96,0.10);
  border: 1px solid rgba(29,105,96,0.07);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
  cursor: pointer;
}
.vt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(29,105,96,0.18);
}

/* ---- Thumbnail area – portrait aspect ratio ---- */
.vt-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9/13;
  overflow: hidden;
  background: #c8a080;
}
.vt-portrait {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ---- Dark gradient overlay at bottom ---- */
.vt-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 50%);
  pointer-events: none;
}

/* ---- Play button ---- */
.vt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  z-index: 3;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}
.vt-play-btn svg { width: 100%; height: 100%; }
.vt-card:hover .vt-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  opacity: 1;
}

/* ---- Client info below card ---- */
.vt-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: white;
}
.vt-info strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
}
.vt-info span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ---- Custom Arrows ---- */
.vt-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.vt-arrow svg { width: 44px; height: 44px; }
.vt-arrow:hover { transform: scale(1.1); filter: drop-shadow(0 4px 12px rgba(29,105,96,0.25)); }
.vt-arrow:active { transform: scale(0.96); }

/* Disabled state */
.vt-arrow:disabled { opacity: 0.35; cursor: default; pointer-events: none; }

/* ---- Slick dot overrides ---- */
.video-testi-slider .slick-dots {
  bottom: -36px;
}
.video-testi-slider .slick-dots li button:before {
  font-size: 10px;
  color: rgba(29,105,96,0.3);
  opacity: 1;
}
.video-testi-slider .slick-dots li.slick-active button:before {
  color: var(--green);
  opacity: 1;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .vt-arrow { width: 38px; height: 38px; }
  .vt-arrow svg { width: 38px; height: 38px; }
}
@media (max-width: 576px) {
  .testi-header .section-title { text-align: center; }
  .testi-header { text-align: center; }
  .vt-arrow { width: 34px; height: 34px; }
  .vt-arrow svg { width: 34px; height: 34px; }
  .video-testi-wrap { gap: 8px; }
}.logo-icon img {
    height: 102px;
}  /* ============================================================
       SECTION WRAPPER
    ============================================================ */
 .ps-root .ps-section {
    padding: 60px 0 70px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

    /* Decorative blobs */
    .ps-root .ps-section::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(29,105,96,0.07) 0%, transparent 70%);
      top: -200px; right: -200px;
      pointer-events: none;
    }
    .ps-root .ps-section::after {
      content: '';
      position: absolute;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,122,0,0.05) 0%, transparent 70%);
      bottom: -100px; left: -100px;
      pointer-events: none;
    }

    /* ============================================================
       SECTION HEADER
    ============================================================ */
    .ps-root .ps-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 52px;
      flex-wrap: wrap;
    }

    .ps-root .ps-header__left {}

    .ps-root .ps-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      background: var(--orange-light);
      border-radius: 100px;
      padding: 6px 14px;
      margin-bottom: 14px;
    }
    .ps-root .ps-eyebrow i { font-size: 10px; }

    .ps-root .ps-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      color: var(--black);
      line-height: 1.15;
      margin: 0;
    }
    .ps-root .ps-title span {
      color: var(--green);
      position: relative;
    }
    .ps-root .ps-title span::after {
      content: '';
      position: absolute;
      left: 0; bottom: 2px;
      width: 100%; height: 6px;
      background: var(--green-light);
      border-radius: 4px;
      z-index: -1;
    }

    .ps-root .ps-subtitle {
      font-size: 15px;
      color: var(--gray);
      margin-top: 10px;
      max-width: 420px;
      line-height: 1.65;
    }

    .ps-root .ps-header__right {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .ps-root .ps-count-badge {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      color: var(--gray);
      background: var(--white);
      border: 1.5px solid var(--green-light);
      border-radius: 100px;
      padding: 7px 18px;
    }
    .ps-root .ps-count-badge strong {
      color: var(--green);
      font-weight: 700;
    }

    .ps-root .ps-view-all {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      color: var(--white);
      background: var(--green);
      border: none;
      border-radius: 100px;
      padding: 10px 24px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }
    .ps-root .ps-view-all:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      color: var(--white);
    }

    /* ============================================================
       SLIDER WRAPPER
    ============================================================ */
    .ps-root .ps-slider-wrap {
      position: relative;
      padding: 0 0 20px;
    }

    /* ============================================================
       PRODUCT CARD
    ============================================================ */
    .ps-root .ps-card-outer {
      padding: 12px;
    }

    .ps-root .ps-card {
      background: var(--white);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .ps-root .ps-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }

    /* Badge */
    .ps-root .ps-card__badge {
      position: absolute;
      top: 16px; left: 16px;
      z-index: 3;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 100px;
    }
    .ps-root .ps-card__badge--new   { background: var(--green); color: var(--white); }
    .ps-root .ps-card__badge--hot   { background: var(--orange); color: var(--white); }
    .ps-root .ps-card__badge--sale  { background: #c62828; color: var(--white); }

    /* Wishlist */
    .ps-root .ps-card__wish {
      position: absolute;
      top: 16px; right: 16px;
      z-index: 3;
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--white);
      border: none;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 12px rgba(0,0,0,0.1);
      transition: var(--transition);
      color: var(--gray);
      font-size: 14px;
    }
    .ps-root .ps-card__wish:hover { color: #e53935; transform: scale(1.1); }
    .ps-root .ps-card__wish.active { color: #e53935; }

    /* Image area */
    .ps-root .ps-card__img-wrap {
      position: relative;
      background: linear-gradient(160deg, var(--green-light) 0%, #d0ecd2 100%);
      height: 240px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .ps-root .ps-card__img-bg-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.3;
      background-image: radial-gradient(circle, var(--green-mid) 1px, transparent 1px);
      background-size: 20px 20px;
    }

    .ps-root .ps-card__img {
      width: 140px;
      height: 170px;
      object-fit: contain;
      position: relative;
      z-index: 1;
      transition: var(--transition);
      filter: drop-shadow(0 12px 24px rgba(29,105,96,0.25));
    }
    .ps-root .ps-card:hover .ps-card__img {
      transform: scale(1.08) translateY(-6px);
      filter: drop-shadow(0 20px 32px rgba(29,105,96,0.35));
    }

    /* Quick actions overlay */
    .ps-root .ps-card__actions-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(27,94,32,0.9), transparent);
      padding: 24px 16px 12px;
      display: flex;
      gap: 8px;
      justify-content: center;
      transform: translateY(100%);
      transition: var(--transition);
      z-index: 2;
    }
    .ps-root .ps-card:hover .ps-card__actions-overlay {
      transform: translateY(0);
    }

    .ps-root .ps-card__action-btn {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,0.3);
      color: var(--white);
      font-size: 13px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: var(--transition);
    }
    .ps-root .ps-card__action-btn:hover {
      background: var(--white);
      color: var(--green);
    }

    /* Body */
    .ps-root .ps-card__body {
      padding: 20px 20px 22px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }

    /* Tags */
    .ps-root .ps-card__tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }
    .ps-root .ps-card__tag {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--green-mid);
      background: var(--green-light);
      border-radius: 6px;
      padding: 3px 9px;
    }

    /* Name */
    .ps-root .ps-card__name {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      color: var(--black);
      margin: 0;
      line-height: 1.2;
    }

    /* Description */
    .ps-root .ps-card__desc {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.55;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* Rating */
    .ps-root .ps-card__rating {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .ps-root .ps-card__stars {
      display: flex;
      gap: 2px;
      color: #f59e0b;
      font-size: 12px;
    }
    .ps-root .ps-card__rating-count {
      font-size: 12px;
      color: var(--gray);
    }

    /* Divider */
    .ps-root .ps-card__divider {
      height: 1px;
      background: var(--green-light);
    }

    /* Price + CTA row */
    .ps-root .ps-card__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .ps-root .ps-card__price {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .ps-root .ps-card__price-range {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      color: var(--green);
    }
    .ps-root .ps-card__afterpay {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 10.5px;
      color: var(--gray);
    }
    .ps-root .ps-card__afterpay-logo {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: #b2dfdb;
      border-radius: 6px;
      padding: 2px 7px;
      font-weight: 700;
      font-size: 10px;
      color: #00695c;
    }
    .ps-root .ps-card__afterpay-logo i { font-size: 9px; }

    .ps-root .ps-card__cta {
      flex-shrink: 0;
      background: var(--green);
      color: var(--white);
      border: none;
      border-radius: var(--radius-sm);
      padding: 10px 18px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: var(--transition);
    }
    .ps-root .ps-card__cta:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(29,105,96,0.35);
    }
    .ps-root .ps-card__cta i { font-size: 12px; }

    /* ============================================================
       SLICK ARROW OVERRIDES — CUSTOM ICONS
    ============================================================ */
    .ps-root .ps-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 50px; height: 50px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--green-light);
      box-shadow: var(--shadow-sm);
      display: flex !important;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      color: var(--green);
      font-size: 18px;
    }
    .ps-root .ps-arrow:hover {
      background: var(--green);
      border-color: var(--green);
      color: var(--white);
      box-shadow: var(--shadow-md);
    }
    .ps-root .ps-arrow--prev { left: -25px; }
    .ps-root .ps-arrow--next { right: -25px; }

    @media (max-width: 768px) {
      .ps-root .ps-arrow--prev { left: -10px; }
      .ps-root .ps-arrow--next { right: -10px; }
    }

    /* Slick dots */
    .ps-root .slick-dots {
      bottom: -36px;
    }
    .ps-root .slick-dots li button:before {
      font-size: 8px;
      color: var(--green-mid);
      opacity: 0.35;
    }
    .ps-root .slick-dots li.slick-active button:before {
      opacity: 1;
      color: var(--green);
    }

    /* ============================================================
       SORT BAR
    ============================================================ */
    .ps-root .ps-sort-bar {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }
    .ps-root .ps-filter-pill {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      color: var(--gray);
      background: var(--white);
      border: 1.5px solid #e0e0e0;
      border-radius: 100px;
      padding: 7px 18px;
      cursor: pointer;
      transition: var(--transition);
    }
    .ps-root .ps-filter-pill:hover,
    .ps-root .ps-filter-pill.active {
      background: var(--green-light);
      border-color: var(--green);
      color: var(--green-dark);
    }

    .ps-root .ps-select-wrap {
      margin-left: auto;
      position: relative;
    }
    .ps-root .ps-select-wrap i {
      position: absolute;
      right: 14px; top: 50%;
      transform: translateY(-50%);
      color: var(--gray);
      font-size: 12px;
      pointer-events: none;
    }
    .ps-root .ps-sort-select {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--black);
      background: var(--white);
      border: 1.5px solid #e0e0e0;
      border-radius: 100px;
      padding: 8px 40px 8px 18px;
      appearance: none;
      cursor: pointer;
      outline: none;
      transition: var(--transition);
    }
    .ps-root .ps-sort-select:focus {
      border-color: var(--green);
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 991px) {
      .ps-root .ps-section { padding: 60px 0 80px; }
      .ps-root .ps-header { margin-bottom: 36px; }
    }
    @media (max-width: 767px) {
      .ps-root .ps-section { padding: 48px 0 70px; }
      .ps-root .ps-header__right { width: 100%; }
      .ps-root .ps-view-all { width: 100%; justify-content: center; }
    }
/* =========================================
   REVIEWS SECTION — SLICK SLIDER
   ========================================= */
.reviews-section {
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;background: var(--green-bg);
}
.reviews-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,21,56,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.reviews-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,157,162,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Slider wrapper — gives space for custom arrows */
.reviews-slider-wrap {
  position: relative;
  padding: 0 70px;
}

/* Custom arrow buttons — Reviews */
.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  transition: transform 0.25s ease, filter 0.25s ease;
  line-height: 0;
}
.reviews-arrow:hover { transform: translateY(-50%) scale(1.1); filter: drop-shadow(0 4px 12px rgba(138,21,56,0.35)); }
.reviews-arrow svg { width: 52px; height: 52px; display: block; }
.reviews-arrow-prev { left: 0; }
.reviews-arrow-next { right: 0; }

/* Slide padding */
.rev-slide { padding: 8px 12px; }

/* Review card */
.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px 28px;
    box-shadow: 0 6px 30px rgba(29, 105, 96, 0.08);
    border: 1px solid rgba(138, 21, 56, 0.10);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 332px;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(138,21,56,0.14);
}
.review-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: #8A1538;
  opacity: 0.12;
  position: absolute;
  top: 12px; left: 22px;
}

/* Platform badge variants — using unused palette colors */
.review-platform-badge {
  position: absolute;
  top: 20px; right: 20px;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.badge-google  { background: rgba(138,21,56,0.08);  color: #8A1538; border: 1px solid rgba(138,21,56,0.18); }
.badge-yelp    { background: rgba(166,69,112,0.08); color: #A64570; border: 1px solid rgba(166,69,112,0.18); }
.badge-health  { background: rgba(29,178,150,0.08); color: #1DB296; border: 1px solid rgba(29,178,150,0.18); }

.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars i { color: #D69A2D; font-size: 0.9rem; }

.review-text {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: #444;
  line-height: 1.72;
  margin-bottom: 22px;
  font-style: italic;
}

.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2.5px solid #FF9DA2; /* Coral border — was unused */
}
.review-avatar svg { width: 100%; height: 100%; display: block; }
.review-author-info strong { display: block; font-size: 0.95rem; color: var(--black); font-family: var(--font-display); }
.review-author-info span  { font-size: 0.8rem; color: var(--gray); }

/* CTA bottom */
.reviews-cta { text-align: center; margin-top: 44px; }
.reviews-summary { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 24px; flex-wrap: wrap; }
.reviews-rating-big { font-family: var(--font-display); font-size: 3.2rem; font-weight: 700; color: #8A1538; line-height: 1; }
.reviews-rating-label { text-align: left; }
.reviews-rating-label .stars-row { display: flex; gap: 4px; }
.reviews-rating-label .stars-row i { color: #D69A2D; font-size: 1.1rem; }
.reviews-rating-label p { font-size: 0.82rem; color: var(--gray); margin: 4px 0 0; }

/* Reviews CTA button — Burgundy #8A1538 */
.btn-reviews-cta {
  background: #8A1538;
  color: #fff;
  border: 2px solid #8A1538;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-reviews-cta:hover { background: #6e1030; border-color: #6e1030; color: #fff; transform: translateY(-2px); }

/* Slick dots for reviews */
.reviews-slider .slick-dots { bottom: -38px; }
.reviews-slider .slick-dots li button:before { color: #8A1538; font-size: 9px; }
.reviews-slider .slick-dots li.slick-active button:before { color: #8A1538; opacity: 1; }


/* =========================================
   BLOG SECTION — SLICK SLIDER
   ========================================= */
.blog-section {
  padding: 60px 0 70px;
  background: #fff;background: linear-gradient(135deg, #f0faf8 0%, #fdf6e3 60%, #f0faf8 100%);
  position: relative;
}
.blog-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #8A1538, #A64570, #ED7B86, #FF9DA2, #1DB296, #63B1BC);
}

/* Blog slider wrapper */
.blog-slider-wrap {
  position: relative;
  padding: 0 70px;
}

/* Custom arrow buttons — Blog */
.blog-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  transition: transform 0.25s ease, filter 0.25s ease;
  line-height: 0;
}
.blog-arrow:hover { transform: translateY(-50%) scale(1.1); filter: drop-shadow(0 4px 12px rgba(237,123,134,0.4)); }
.blog-arrow svg { width: 52px; height: 52px; display: block; }
.blog-arrow-prev { left: 0; }
.blog-arrow-next { right: 0; }

/* Blog slide padding */
.blog-slide { padding: 8px 12px; }

/* Blog card */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(29,105,96,0.08);
  border: 1px solid rgba(237,123,134,0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(237,123,134,0.18);
}

.blog-card-img { width: 100%; height: 200px; overflow: hidden; position: relative; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-body { padding: 26px 24px 24px; }

.blog-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
/* Category badge colors — ALL using the unused palette colors */
.blog-category.cat-burgundy { background: rgba(138,21,56,0.10);  color: #8A1538;  border: 1px solid rgba(138,21,56,0.18); }
.blog-category.cat-rose     { background: rgba(166,69,112,0.10); color: #A64570;  border: 1px solid rgba(166,69,112,0.18); }
.blog-category.cat-blush    { background: rgba(237,123,134,0.10);color: #c0404f;  border: 1px solid rgba(237,123,134,0.2); }
.blog-category.cat-coral    { background: rgba(255,157,162,0.15);color: #b84048;  border: 1px solid rgba(255,157,162,0.3); }
.blog-category.cat-cyan     { background: rgba(29,178,150,0.10); color: #1DB296;  border: 1px solid rgba(29,178,150,0.18); }
.blog-category.cat-teal     { background: rgba(99,177,188,0.12); color: #1D6960;  border: 1px solid rgba(99,177,188,0.2); }
.blog-category.cat-amber    { background: rgba(214,154,45,0.10); color: #9a6c00;  border: 1px solid rgba(214,154,45,0.2); }
.blog-category.cat-green    { background: var(--green-light);    color: var(--green); }

.blog-date { font-size: 0.78rem; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.blog-date i { color: #D69A2D; font-size: 0.72rem; }

.blog-card-title { 
	font-family: var(--font-display); 
	font-size: 1.08rem; 
	font-weight: 600; 
	color: var(--black); 
	margin-bottom: 10px; 
	line-height: 1.4; 
    display: -webkit-box;
    -webkit-line-clamp: 1; /* yahan number change kar sakte ho */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: #8A1538; }

.blog-card-excerpt { 
	font-size: 0.9rem; 
	color: var(--gray); 
	line-height: 1.65; 
	margin-bottom: 18px;
	 display: -webkit-box;
    -webkit-line-clamp: 2; /* yahan number change kar sakte ho */
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.blog-card-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(237,123,134,0.15); padding-top: 16px; }
.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: #A64570;   /* Deep Rose */
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.blog-read-more:hover { color: #8A1538; gap: 10px; }
.blog-read-time { font-size: 0.78rem; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.blog-read-time i { color: #FF9DA2; }  /* Coral */

.blog-cta-wrap { text-align: center; margin-top: 50px; }

/* Blog CTA button — uses Coral #FF9DA2 border, Deep Rose fill */
.btn-blog-cta {
  background: #A64570;
  color: #fff;
  border: 2px solid #A64570;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-blog-cta:hover { background: #8A1538; border-color: #8A1538; color: #fff; transform: translateY(-2px); }

/* Image placeholder */
.blog-img-placeholder {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

/* Slick dots for blog */
.blog-slider .slick-dots { bottom: -38px; }
.blog-slider .slick-dots li button:before { color: #A64570; font-size: 9px; }
.blog-slider .slick-dots li.slick-active button:before { color: #A64570; opacity: 1; }

/* Responsive: reduce arrow padding on mobile */
@media (max-width: 767px) {
  .reviews-slider-wrap, .blog-slider-wrap { padding: 0 46px; }
  .reviews-arrow, .blog-arrow { width: 40px; height: 40px; }
  .reviews-arrow svg, .blog-arrow svg { width: 40px; height: 40px; }
}
@media (max-width: 480px) {
  .reviews-slider-wrap, .blog-slider-wrap { padding: 0 36px; }
}

/* =============================================
   GOOGLE-STYLE REVIEW CARDS
   ============================================= */

/* Section header layout */
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.reviews-header-left { flex: 1; min-width: 240px; }
.reviews-header-left .section-title,
.reviews-header-left .section-subtitle { margin-bottom: 6px; }

/* Google rating badge (top right) */
.google-rating-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  min-width: 200px;
}
.google-rating-info { display: flex; flex-direction: column; gap: 3px; }
.google-rating-num {
  font-size: 2rem;
  font-weight: 700;
  color: #202124;
  font-family: 'Bai Jamjuree', sans-serif;
  line-height: 1;
}
.google-rating-stars { color: #FBBC04; font-size: 0.85rem; }
.google-rating-count { font-size: 0.75rem; color: #5f6368; }

/* Google review card */
.grev-card {
  background: #fff;
  border: 1px solid #e8eaed !important;
  border-radius: 12px !important;
  padding: 20px 22px !important;
  box-shadow: 0 1px 6px rgba(32,33,36,0.08) !important;
  transition: box-shadow 0.2s !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: auto !important;
}
.grev-card:hover { box-shadow: 0 4px 20px rgba(32,33,36,0.14) !important; }

.grev-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.grev-avatar {
  width: 40px; height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Bai Jamjuree', sans-serif;
}
.grev-meta {
  display: flex; flex-direction: column; gap: 1px; flex: 1;
}
.grev-name { font-size: 0.9rem; font-weight: 600; color: #202124; }
.grev-location { font-size: 0.75rem; color: #5f6368; }
.grev-google-icon { margin-left: auto; flex-shrink: 0; }

/* Google yellow stars */
.grev-stars {
  color: #FBBC04;
  font-size: 0.85rem;
  display: flex;
  gap: 2px;
}
/* Override the old gold star color for grev-stars */
.grev-stars i { color: #FBBC04 !important; }

.grev-text {
  font-size: 0.88rem;
  color: #3c4043;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.grev-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #f1f3f4;
  margin-top: auto;
}
.grev-source {
  font-size: 0.72rem;
  font-weight: 600;
  color: #4285F4;
  display: flex; align-items: center; gap: 5px;
}
.grev-date { font-size: 0.72rem; color: #9aa0a6; }

/* Bottom CTA row */
.reviews-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #202124;
  border: 1px solid #dadce0;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.btn-google-reviews:hover {
  background: #f8f9fa;
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
  color: #202124;
}

@media (max-width: 767px) {
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .google-rating-badge { width: 100%; }
  .reviews-cta-btns { flex-direction: column; width: 100%; }
  .btn-google-reviews, .btn-reviews-cta { width: 100%; justify-content: center; }
}

/* =============================================
   JOURNEY BACK TO SELF SECTION
   ============================================= */
.journey-section {
  padding: 60px 0;
  background: var(--gray-light );
  position: relative;
  overflow: hidden;
}
.journey-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, #e0f2ef 0%, transparent 70%);
  pointer-events: none;
}
.journey-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0 8px;
}
.journey-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.journey-pillar-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
}
.journey-pillar:hover .journey-pillar-icon {
  background: var(--green);
  color: #fff;
}
.journey-pillar > div:last-child {
  display: flex; flex-direction: column; gap: 2px; padding-top: 4px;
}
.journey-pillar strong { font-size: 0.95rem; color: var(--black); font-weight: 600; }
.journey-pillar span { font-size: 0.85rem; color: var(--gray); }
.journey-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.btn-quiz-trigger {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-quiz-trigger:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

/* Journey Visual */
.journey-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.journey-mandala {
  position: absolute;
  width: 100%; max-width: 420px;
  opacity: 0.8;
  animation: rotateMandala 60s linear infinite;
}
@keyframes rotateMandala { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.journey-card-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
}
.journey-quote-card {
  background: #fff;
  border: 1px solid #e0f2ef;
  border-left: 4px solid var(--green);
  border-radius: 16px;
  padding: 30px 28px 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}
.journey-quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--green);
  opacity: 0.25;
  font-family: Georgia, serif;
  margin-bottom: -16px;
}
.journey-quote {
  font-size: 1rem;
  font-style: italic;
  color: #3a3a3a;
  line-height: 1.7;
  margin-bottom: 16px;
  border: none;
  padding: 0;
}
.journey-cite-row {
  display: flex; align-items: center; gap: 10px;
}
.journey-cite-dot {
  width: 28px; height: 2px;
  background: var(--orange);
  display: inline-block;
}
.journey-cite {
  font-size: 0.82rem;
  color: var(--gray);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.journey-stats-row {
  background: var(--green);
  border-radius: 14px;
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.journey-stat {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  flex: 1;
}
.journey-stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Bai Jamjuree', sans-serif;
}
.journey-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.journey-stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.2);
}
@media (max-width: 991px) {
     .journey-visual {
        margin-top: 0;
    }
  .journey-mandala { max-width: 300px; }
}

/* =============================================
   DOSHA QUIZ MODAL
   ============================================= */
.quiz-modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.quiz-modal-overlay.active { display: flex; }

.quiz-panel {
  background: #fff;
  border-radius: 20px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  padding: 40px 40px 32px;
  animation: quizSlideIn 0.3s ease;
}
@keyframes quizSlideIn { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }

.quiz-close-btn {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  font-size: 1.8rem; line-height: 1;
  color: var(--gray); cursor: pointer;
  transition: color 0.2s;
}
.quiz-close-btn:hover { color: var(--black); }

.quiz-progress-bar {
  height: 4px; background: #e9ecef;
  border-radius: 4px; margin-bottom: 32px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  border-radius: 4px;
  transition: width 0.4s ease;
  width: 0%;
}

.quiz-header { text-align: center; margin-bottom: 32px; }
.quiz-lotus-icon { margin-bottom: 12px; }
.quiz-title { font-size: 1.5rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.quiz-subtitle { font-size: 0.9rem; color: var(--gray); }
.quiz-step-counter {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.8rem;
  background: var(--green-light);
  color: var(--green);
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
}

.quiz-question { display: none; }
.quiz-question.active { display: block; }
.quiz-q-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.5;
}
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  text-align: left;
  display: flex; align-items: center; gap: 14px;
  font-size: 0.92rem;
  color: var(--black);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.quiz-option:hover { border-color: var(--green); background: var(--green-light); transform: translateX(4px); }
.quiz-option.selected { border-color: var(--green); background: var(--green-light); font-weight: 600; }
.quiz-option-icon { font-size: 1.3rem; min-width: 28px; text-align: center; }

.quiz-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
.btn-quiz-back {
  background: none; border: none;
  color: var(--gray); cursor: pointer;
  font-size: 0.9rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0; transition: color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-quiz-back:hover { color: var(--green); }
.btn-quiz-next {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.btn-quiz-next:hover:not(:disabled) { background: var(--green-dark); transform: translateY(-1px); }
.btn-quiz-next:disabled { opacity: 0.45; cursor: not-allowed; }

/* Quiz Result */
.quiz-result { display: none; }
.quiz-result.active { display: block; animation: quizSlideIn 0.35s ease; }
.quiz-result-badge {
  display: flex; align-items: center; gap: 16px;
  border: 1px solid;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 20px;
}
.quiz-result-emoji { font-size: 2.2rem; }
.quiz-result-type-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); }
.quiz-result-type { font-size: 1.6rem; font-weight: 700; font-family: 'Bai Jamjuree', sans-serif; line-height: 1.2; }
.quiz-result-tagline { font-size: 0.82rem; color: var(--gray); margin-top: 3px; }
.quiz-result-desc { font-size: 0.93rem; color: #444; line-height: 1.7; margin-bottom: 20px; }
.quiz-result-tips strong { font-size: 0.9rem; display: block; margin-bottom: 10px; color: var(--black); }
.quiz-result-tips ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
.quiz-result-tips li { font-size: 0.88rem; color: #555; display: flex; align-items: flex-start; gap: 8px; }
.quiz-result-tips li i { margin-top: 3px; }
.quiz-result-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-quiz-retake {
  background: none;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-quiz-retake:hover { background: var(--green); color: #fff; }

@media (max-width: 600px) {
  .quiz-panel { padding: 28px 22px 24px; }
  .quiz-title { font-size: 1.25rem; }
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 3px solid var(--green);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
  z-index: 8000;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 20px 0;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-banner-text {
  display: flex; align-items: flex-start; gap: 14px;
  flex: 1; min-width: 260px;
}
.cookie-icon { font-size: 1.4rem; color: var(--orange); margin-top: 2px; }
.cookie-banner-text p {
  font-size: 0.88rem; color: #444; line-height: 1.6; margin: 0;
}
.cookie-banner-text a { color: var(--green); font-weight: 600; text-decoration: none; }
.cookie-banner-text a:hover { text-decoration: underline; }
.cookie-banner-btns {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.btn-cookie-accept {
  background: var(--green); color: #fff;
  border: none; padding: 10px 22px;
  border-radius: 50px; font-weight: 600; font-size: 0.86rem;
  cursor: pointer; transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-cookie-accept:hover { background: var(--green-dark); }
.btn-cookie-manage {
  background: none; color: var(--green);
  border: 2px solid var(--green); padding: 8px 20px;
  border-radius: 50px; font-weight: 600; font-size: 0.86rem;
  cursor: pointer; transition: background 0.2s, color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-cookie-manage:hover { background: var(--green); color: #fff; }
.btn-cookie-reject {
  background: none; color: var(--gray);
  border: none; padding: 8px 14px;
  border-radius: 50px; font-weight: 500; font-size: 0.84rem;
  cursor: pointer; transition: color 0.2s;
  text-decoration: underline;
  font-family: 'DM Sans', sans-serif;
}
.btn-cookie-reject:hover { color: var(--black); }

/* Cookie Settings Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9100;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.cookie-modal-overlay.active { display: flex; }
.cookie-modal-panel {
  background: #fff;
  border-radius: 18px;
  max-width: 480px;
  width: 100%;
  padding: 36px 36px 28px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  animation: quizSlideIn 0.3s ease;
}
.cookie-modal-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none;
  font-size: 1.7rem; line-height: 1;
  color: var(--gray); cursor: pointer;
}
.cookie-modal-close:hover { color: var(--black); }
.cookie-modal-title {
  font-size: 1.2rem; font-weight: 700; color: var(--black);
  margin-bottom: 8px; display: flex; align-items: center; gap: 10px;
}
.cookie-modal-title i { color: var(--orange); }
.cookie-modal-desc { font-size: 0.87rem; color: var(--gray); line-height: 1.6; margin-bottom: 28px; }
.cookie-pref-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cookie-pref-item:last-of-type { border-bottom: none; }
.cookie-pref-info { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.cookie-pref-info strong { font-size: 0.9rem; color: var(--black); }
.cookie-pref-info span { font-size: 0.8rem; color: var(--gray); }
.cookie-always-on {
  font-size: 0.78rem; font-weight: 600;
  color: var(--green); background: var(--green-light);
  padding: 4px 12px; border-radius: 20px;
  white-space: nowrap;
}

/* Toggle switch */
.cookie-toggle-switch {
  position: relative; display: inline-block;
  width: 46px; height: 26px; cursor: pointer;
}
.cookie-toggle-switch input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute; inset: 0;
  background: #ccc; border-radius: 26px;
  transition: background 0.25s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider { background: var(--green); }
.cookie-toggle-switch input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }

.cookie-modal-footer {
  margin-top: 24px; text-align: right;
}
.btn-cookie-save {
  background: var(--green); color: #fff;
  border: none; padding: 12px 28px;
  border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-cookie-save:hover { background: var(--green-dark); }
.reviews-header p.section-subtitle {
    justify-content: start !important;
    margin-left: 0;
}

.reviews-header .reviews-header-left {
    padding-left: 85px;
}

/* =============================================
   DOSHA QUIZ POPUP (Auto-trigger)
   ============================================= */

/* Overlay */
.quiz-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 85, 73, 0.35);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1);
}
.quiz-popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Card */
.quiz-popup-card {
  position: relative;
  background: #fffdf7;
  border-radius: 24px;
  padding: 48px 40px 44px;
  width: 100%;
  max-width: 420px;
  margin: 20px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(29,105,96,0.22), 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.quiz-popup-overlay.active .quiz-popup-card {
  transform: translateY(0) scale(1);
}

/* Radial ray background */
.quiz-popup-rays {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 110%, #f5e6b8 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 50% 100%, #e8f5f3 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

/* Wave bottom decoration */
.quiz-popup-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 420 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 C105,80 315,0 420,40 L420,80 L0,80 Z' fill='%23e8d8a0' opacity='0.35'/%3E%3Cpath d='M0,55 C105,20 315,70 420,55 L420,80 L0,80 Z' fill='%231D6960' opacity='0.08'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}

/* Close button */
.quiz-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #888;
  cursor: pointer;
  z-index: 10;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.quiz-popup-close:hover {
  background: #f0f0f0;
  color: #333;
}

/* Lotus icon */
.quiz-popup-lotus {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 12px rgba(214,154,45,0.25));
}

/* Eyebrow */
.quiz-popup-eyebrow {
  position: relative;
  z-index: 2;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.quiz-popup-eyebrow::before,
.quiz-popup-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #ccc;
}

/* Title */
.quiz-popup-title {
  position: relative;
  z-index: 2;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #1D6960;
  line-height: 1;
  margin-bottom: 10px;
}

/* Subtitle */
.quiz-popup-sub {
  position: relative;
  z-index: 2;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 28px;
}

/* CTA Button */
.quiz-popup-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: transparent;
  border: 2px solid #333;
  color: #111;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 40px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.quiz-popup-btn:hover {
  background: #1D6960;
  border-color: #1D6960;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .quiz-popup-card {
    padding: 40px 24px 36px;
  }
  .quiz-popup-title {
    font-size: 2.6rem;
  }
}


/* ===========================================
   INNER PAGES - Common and Page-Specific Styles
   =========================================== */

.inner-hero {
  background: linear-gradient(135deg, #f0faf8 0%, #e8f5f0 60%, #fdf6e3 100%);
  padding: 72px 0 56px !important; position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(29,105,96,0.1);
}
.inner-hero::before {
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,105,96,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 0.83rem; }
.breadcrumb-nav a { color: #1D6960; font-weight: 500; }
.breadcrumb-nav a:hover { text-decoration: underline; }
.breadcrumb-nav .bc-sep { color: rgba(29,105,96,0.4); }
.breadcrumb-nav .bc-current { color: #303233; }
.inner-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #111111;
    margin-bottom: 18px;
    line-height: 1.2;
	margin-top: 0 !important;
}
.inner-hero-title em { font-style: normal; color: #1D6960; }
.inner-hero-desc { color: #303233; font-size: 1.05rem; max-width: 620px !important; line-height: 1.75; }
section.inner-hero .row {
    align-items: center;
}

section.inner-hero .row img {
    width: 80%;
}
.mobile-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(29,105,96,0.1);
  display: none; justify-content: space-around; align-items: center;
  padding: 6px 0 10px; z-index: 1060;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.09);
}
@media (max-width: 767px) {
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 72px; }
  .top-bar { display: none; }
}
.mbn-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: #9e9e9e; font-size: 0.6rem; font-weight: 600; padding: 5px 10px;
  border-radius: 12px; transition: all 0.2s; text-decoration: none; min-width: 54px;
}
.mbn-item i { font-size: 1.2rem; line-height: 1.2; display: block; }
.mbn-item.mbn-active { color: #1D6960; }
.mbn-item:hover { color: #1D6960; }
.mbn-center-wrap { display: flex; flex-direction: column; align-items: center; margin-top: -18px; }
.mbn-center {
  width: 52px; height: 52px; background: #1D6960; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(29,105,96,0.4); transition: all 0.2s; text-decoration: none;
}
.mbn-center:hover { background: #0D5549; transform: translateY(-2px); }
.mbn-center i { font-size: 1.25rem; color: white; }
.mbn-center-label { font-size: 0.6rem; color: #1D6960; font-weight: 600; margin-top: 3px; }

.about-pg-section { padding: 80px 0; }
.about-pg-section.bg-light-green { background: #f0faf8; }
.about-practitioner-img { width: 100%; border-radius: 20px; box-shadow: 0 10px 40px rgba(29,105,96,0.14); object-fit: cover; }
.cert-badges-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.cert-badge { display: inline-flex; align-items: center; gap: 7px; background: #e0f2ef; border: 1px solid rgba(29,105,96,0.2); border-radius: 50px; padding: 7px 16px; font-size: 0.8rem; font-weight: 600; color: #1D6960; }
.cert-badge i { color: #D69A2D; }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 40px; }
.value-card { background: white; border-radius: 20px; padding: 32px 28px; border: 1px solid rgba(29,105,96,0.08); box-shadow: 0 4px 20px rgba(29,105,96,0.10); transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 10px 40px rgba(29,105,96,0.14); border-color: rgba(29,105,96,0.2); }
.value-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 18px; }
.value-icon.vi-green { background: #e0f2ef; color: #1D6960; }
.value-icon.vi-orange { background: #fdf6e3; color: #D69A2D; }
.value-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: #303233; line-height: 1.65; margin: 0; }
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.timeline-item { display: flex; gap: 20px; padding-bottom: 28px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline-dot { width: 14px; height: 14px; background: #1D6960; border-radius: 50%; border: 2px solid white; box-shadow: 0 0 0 3px rgba(29,105,96,0.25); flex-shrink: 0; }
.timeline-line { width: 2px; flex: 1; background: rgba(29,105,96,0.15); margin-top: 4px; }
.timeline-item:last-child .timeline-line { display: none; }
.timeline-year { font-size: 0.75rem; font-weight: 700; color: #D69A2D; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.timeline-text { font-size: 0.93rem; color: #303233; line-height: 1.6; }
.timeline-text strong { color: #111111; }

.service-pg-section { padding: 80px 0; }
.service-pg-section.bg-light-green { background: #f0faf8; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 48px; }
.process-card { text-align: center; padding: 36px 24px; background: white; border-radius: 20px; border: 1px solid rgba(29,105,96,0.08); box-shadow: 0 4px 20px rgba(29,105,96,0.10); transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }
.process-card:hover { transform: translateY(-6px); box-shadow: 0 10px 40px rgba(29,105,96,0.14); }
.process-num { width: 48px; height: 48px; background: #1D6960; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; font-weight: 700; margin: 0 auto 18px; }
.process-card h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 10px; }
.process-card p { font-size: 0.88rem; color: #303233; line-height: 1.6; margin: 0; }
.who-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.who-item { display: flex; align-items: center; gap: 12px; padding: 13px 18px; background: white; border-radius: 12px; border: 1px solid rgba(29,105,96,0.1); font-size: 0.93rem; color: #111111; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }
.who-item:hover { border-color: #1D6960; transform: translateX(4px); }
.who-item i { color: #1D6960; font-size: 0.85rem; flex-shrink: 0; }

.contact-pg-section { padding: 80px 0; }
.contact-form-card { background: white; border-radius: 20px; padding: 40px; box-shadow: 0 10px 40px rgba(29,105,96,0.14); border: 1px solid rgba(29,105,96,0.08); }
.contact-info-col { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: white; border-radius: 20px; padding: 24px 28px; box-shadow: 0 4px 20px rgba(29,105,96,0.10); border: 1px solid rgba(29,105,96,0.08); display: flex; align-items: flex-start; gap: 16px; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }
.contact-info-card:hover { box-shadow: 0 10px 40px rgba(29,105,96,0.14); transform: translateY(-3px); }
.ci-icon { width: 48px; height: 48px; flex-shrink: 0; background: #e0f2ef; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #1D6960; font-size: 1.1rem; }
.ci-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: #303233; margin-bottom: 4px; }
.ci-value { font-size: 0.95rem; color: #111111; line-height: 1.5; }
.ci-value a { color: #111111; }
.ci-value a:hover { color: #1D6960; }
.hours-card { background: linear-gradient(135deg, #0D5549 0%, #1D6960 100%); border-radius: 20px; padding: 28px; color: white; }
.hours-card h5 { color: white; font-size: 1.05rem; font-weight: 700; margin-bottom: 18px; }
.hours-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.88rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(255,255,255,0.75); }
.hours-row .time { color: white; font-weight: 600; }
.map-embed { border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(29,105,96,0.10); border: 1px solid rgba(29,105,96,0.1); }

.blog-pg-section { padding: 80px 0; }
.blog-filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; justify-content: center; }
.filter-pill { padding: 8px 20px; border-radius: 50px; background: white; border: 1.5px solid rgba(29,105,96,0.15); color: #303233; font-size: 0.85rem; font-weight: 600 !important; cursor: pointer; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }
.filter-pill:hover, .filter-pill.active { background: #1D6960; color: white; border-color: #1D6960; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 991px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-pg-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(29,105,96,0.10); border: 1px solid rgba(29,105,96,0.07); transition: all 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; }
.blog-pg-card:hover { transform: translateY(-6px); box-shadow: 0 10px 40px rgba(29,105,96,0.14); }
.blog-pg-card-img-wrap { overflow: hidden; height: 300px; }
.blog-pg-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.blog-pg-card:hover .blog-pg-card-img { transform: scale(1.05); }
.blog-pg-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-pg-date { font-size: 0.75rem; color: #1D6960; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 9px; }
.blog-pg-title { font-size: 1.05rem; font-weight: 700; color: #111111; line-height: 1.4; margin-bottom: 14px; flex: 1; }
.blog-pg-title a { color: inherit; }
.blog-pg-title a:hover { color: #1D6960; }
.blog-pg-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.83rem; font-weight: 700; color: #1D6960; text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 2px solid transparent; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }

.blog-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 52px; }
.page-btn { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1.5px solid rgba(29,105,96,0.2); color: #303233; font-size: 0.88rem; font-weight: 600; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); background: white; text-decoration: none; }
.page-btn.active, .page-btn:hover { background: #1D6960; color: white; border-color: #1D6960; }

.blog-detail-hero { background: #f0faf8; padding: 72px 0 50px !important; border-bottom: 1px solid rgba(29,105,96,0.1); }
.blog-category-tag { display: inline-flex; align-items: center; gap: 6px; background: #e0f2ef; color: #1D6960; border: 1px solid rgba(29,105,96,0.2); border-radius: 50px; padding: 5px 14px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.blog-detail-title { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; line-height: 1.25; margin-bottom: 20px; color: #111111; margin-top: 0 !important; }
.blog-meta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.blog-meta-item { display: flex; align-items: center; gap: 7px; font-size: 0.85rem; color: #303233; }
.blog-meta-item i { color: #1D6960; }
.blog-feature-img { width: 100%;
   /* max-height: 460px;  */
   object-fit: cover; border-radius: 20px; box-shadow: 0 10px 40px rgba(29,105,96,0.14); margin: 0px 0 36px; }
.article-body { font-size: 1.06rem; line-height: 1.88; color: #3a3a3a; }
.article-body h2 { font-size: 1.65rem; font-weight: 700; color: #111111; margin: 44px 0 16px; }
.article-body h3 { font-size: 1.2rem; font-weight: 700; color: #1D6960; margin: 32px 0 12px; }
.article-body p { margin-bottom: 22px; }
.article-body ul { padding-left: 22px; margin-bottom: 22px; }
.article-body ul li { margin-bottom: 9px; }
.article-body blockquote { border-left: 4px solid #1D6960; padding: 18px 26px; background: #f0faf8; border-radius: 0 12px 12px 0; margin: 30px 0; font-style: italic; color: #0D5549; font-size: 1.08rem; line-height: 1.7; }
.article-body blockquote cite { display: block; margin-top: 10px; font-style: normal; font-weight: 600; font-size: 0.88rem; color: #1D6960; }
.author-box { background: #f0faf8; border-radius: 20px; padding: 28px; display: flex; align-items: center; gap: 20px; border: 1px solid rgba(29,105,96,0.15); margin: 44px 0; }
.author-avatar { width: 72px; height: 72px; flex-shrink: 0; border-radius: 50%; background: #1D6960; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; color: white; font-weight: 700; }
.author-name { font-size: 1.05rem; font-weight: 700; color: #111111; margin-bottom: 5px; }
.author-role { font-size: 0.82rem; font-weight: 600; color: #1D6960; margin-bottom: 8px; }
.author-bio { font-size: 0.88rem; color: #303233; line-height: 1.65; margin: 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
@media (max-width: 767px) { .related-grid { grid-template-columns: 1fr; } }
.blog-sidebar-card {
    box-shadow: 0 4px 20px rgba(29, 105, 96, 0.10);
    background: #f0faf8;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(29, 105, 96, 0.1);
    MARGIN: 20PX 0;
}

.sidebar-widget .sidebar-widget-title {
	border-bottom: 2px solid #1D6960 !important;
}
.blog-sidebar-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 18px; color: #111111; padding-bottom: 10px; border-bottom: 2px solid #1D6960; }
.recent-post-item { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(29,105,96,0.07); }
.recent-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post-img { width: 68px; height: 56px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.recent-post-title { font-size: 0.85rem; font-weight: 600; color: #111111; line-height: 1.4; margin-bottom: 4px; }
.recent-post-title a { color: inherit; }
.recent-post-title a:hover { color: #1D6960; }
.recent-post-date { font-size: 0.72rem; color: #303233; }

@media (max-width: 768px) {
  .inner-hero { padding: 52px 0 40px; }
  .about-pg-section, .service-pg-section, .contact-pg-section, .blog-pg-section { padding: 56px 0; }
  .contact-form-card { padding: 28px 20px; }
  .author-box { flex-direction: column; text-align: center; }
  .blog-meta-row { gap: 12px; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   SERVICES MEGA DROPDOWN – Desktop
   ═══════════════════════════════════════════════════ */
.nav-dropdown-wrap { position: relative; }

.nav-chevron {
  font-size: 0.6rem;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: inline-block;
  margin-left: 3px;
  vertical-align: middle;
}

.services-mega-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 500px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(29,105,96,0.18), 0 4px 16px rgba(29,105,96,0.08);
  border: 1px solid rgba(29,105,96,0.1);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.4,0,0.2,1), visibility 0.22s ease;
  z-index: 1100;
  pointer-events: none;
}

/* Invisible bridge so cursor can travel from nav link to dropdown */
.services-mega-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 14px;
}

.nav-dropdown-wrap:hover .services-mega-dropdown,
.nav-dropdown-wrap:focus-within .services-mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

/* 2×2 grid of service items */
.sdd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.sdd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.18s ease;
  border: 1.5px solid transparent;
}
.sdd-item:hover {
  background: var(--green-bg);
  border-color: rgba(29,105,96,0.1);
}
.sdd-item-active {
  background: var(--green-light);
  border-color: rgba(29,105,96,0.18) !important;
}

.sdd-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}
.sdd-item:hover .sdd-icon { transform: scale(1.08); }
.sdd-icon-green  { background: var(--green-light);            color: var(--green); }
.sdd-icon-teal   { background: rgba(99,177,188,0.14);         color: #3a8fa0; }
.sdd-icon-rose   { background: rgba(166,69,112,0.1);          color: #A64570; }
.sdd-icon-amber  { background: var(--orange-light);           color: var(--orange); }

.sdd-text { display: flex; flex-direction: column; }
.sdd-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 2px;
}
.sdd-desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.3;
}

.sdd-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 4px;
  margin-top: 6px;
  border-top: 1px solid rgba(29,105,96,0.08);
}
.sdd-all {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.18s ease, color 0.18s ease;
}
.sdd-all:hover { gap: 10px; color: var(--green-dark); }
.sdd-badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid rgba(29,105,96,0.18);
  border-radius: 50px;
  padding: 3px 10px;
}

/* ═══════════════════════════════════════════════════
   SERVICES MOBILE SUB-MENU (inside hamburger collapse)
   ═══════════════════════════════════════════════════ */
.mobile-svc-toggle {
  display: flex !important;
  align-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--black) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  border-radius: 8px;
}
.mobile-svc-toggle:focus { box-shadow: none !important; }

.mobile-svc-list {
  list-style: none;
  padding: 6px 6px 8px;
  margin: 4px 0 8px 14px;
  background: var(--green-bg);
  border-radius: 14px;
  border: 1px solid rgba(29,105,96,0.1);
}
.mobile-svc-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.mobile-svc-list li a:hover,
.mobile-svc-list li a.msvc-active {
  background: rgba(29,105,96,0.1);
  color: var(--green);
}
.msvc-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.msvc-icon-green  { background: var(--green-light);        color: var(--green); }
.msvc-icon-teal   { background: rgba(99,177,188,0.14);     color: #3a8fa0; }
.msvc-icon-rose   { background: rgba(166,69,112,0.1);      color: #A64570; }
.msvc-icon-amber  { background: var(--orange-light);       color: var(--orange); }

/* Hide desktop dropdown on mobile (already d-none d-lg-flex, extra guard) */
@media (max-width: 991px) {
  .services-mega-dropdown { display: none !important; }
}
/* Hide mobile toggle on desktop */
@media (min-width: 992px) {
  .mobile-svc-toggle { display: none !important; }
  .mobile-svc-list   { display: none !important; }
}
section.cta-section span.section-tag.section-tag-light {
    background: #1d6960;
}
/* ═══════════════════════════════════════════════════
   SERVICE DETAIL – svc-detail-visual panel
   ═══════════════════════════════════════════════════ */
.svc-detail-visual {
  border-radius: 24px; padding: 40px; position: relative; overflow: hidden; color: white;
}
.svc-detail-visual::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.06); pointer-events: none;
}
.svc-detail-visual::after {
  content: ''; position: absolute; bottom: -40px; left: -40px;
  width: 150px; height: 150px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none;
}
.bg-green-grad  { background: linear-gradient(135deg, #0D5549, #1D6960); }
.bg-amber-grad  { background: linear-gradient(135deg, #9b6c14, #D69A2D); }
.bg-teal-grad   { background: linear-gradient(135deg, #0e7070, #1D9690); }
.bg-rose-grad   { background: linear-gradient(135deg, #8A1538, #C04060); }

.panel-quote-icon { font-size: 2.5rem; color: rgba(255,255,255,0.2); margin-bottom: 20px; display: block; }
.panel-quote { font-size: 1.08rem; line-height: 1.8; font-style: italic; margin-bottom: 24px; color: rgba(255,255,255,0.95); }
.panel-divider { border-color: rgba(255,255,255,0.15); margin: 24px 0; }
.panel-author { display: flex; align-items: center; gap: 12px; }
.panel-avatar { width: 44px; height: 44px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; color: white; }
.panel-name { font-weight: 700; font-size: 0.95rem; }
.panel-role { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

.highlight-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.highlight-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.93rem; line-height: 1.55; color: rgba(255,255,255,0.92); }
.highlight-list li i { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.highlight-list li strong { color: white; display: block; margin-bottom: 2px; }

/* ── Treatment Cards (Bodywork) ── */
.treatment-card { background: white; border-radius: var(--radius-md,16px); overflow: hidden; border: 1px solid rgba(214,154,45,0.15); box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.35s ease; height: 100%; }
.treatment-card:hover { transform: translateY(-6px); box-shadow: 0 10px 40px rgba(214,154,45,0.15); border-color: rgba(214,154,45,0.35); }
.treatment-card-top { background: linear-gradient(135deg,#fdf6e3,#fef1cc); padding: 28px 28px 20px; border-bottom: 1px solid rgba(214,154,45,0.15); }
.treatment-icon { width: 56px; height: 56px; background: #D69A2D; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: white; margin-bottom: 14px; }
.treatment-card-top h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: #111; margin-bottom: 4px; }
.treatment-subtitle { font-size: 0.8rem; color: #D69A2D; font-style: italic; font-weight: 600; }
.treatment-card-body { padding: 22px 28px 28px; }
.treatment-card-body p { font-size: 0.9rem; color: #303233; line-height: 1.7; margin-bottom: 16px; }
.treatment-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.treatment-tag { background: rgba(214,154,45,0.1); border: 1px solid rgba(214,154,45,0.2); color: #7a5800; font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; }

/* ── Prepare / Tip List ── */
.prepare-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.prepare-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 18px; background: white; border-radius: 12px; border: 1px solid rgba(29,105,96,0.12); font-size: 0.9rem; color: #303233; line-height: 1.6; }
.prepare-item i { color: #1D6960; font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }

/* ── Service Packages Cards (Consulting) ── */
.service-card { background: white; border-radius: 20px; padding: 32px 28px; border: 1px solid rgba(29,105,96,0.12); box-shadow: 0 4px 20px rgba(29,105,96,0.08); transition: all 0.35s ease; height: 100%; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(29,105,96,0.14); }
.service-card-featured { border-color: #1D6960; box-shadow: 0 8px 32px rgba(29,105,96,0.18); }
.service-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent !important;
}
.service-icon img { width: 100%; height: 100%; object-fit: contain; }
.service-icon-green { background: rgba(29,105,96,0.1); }
.service-icon-orange { background: rgba(214,154,45,0.1); }
.service-badge { font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; background: rgba(214,154,45,0.12); color: #7a5800; border: 1px solid rgba(214,154,45,0.25); }
.service-badge-green { background: rgba(29,105,96,0.1); color: #1D6960; border-color: rgba(29,105,96,0.25); }
.service-title { font-weight: 700; font-size: 1.1rem; color: #111; margin-bottom: 10px; }
.service-desc { font-size: 0.9rem; color: #303233; line-height: 1.65; margin-bottom: 20px; flex: 1; }
.services-section .col-md-6.col-lg-4:nth-child(even) .reveal.visible p {
   
    color: #fff;
}

.services-section .col-md-6.col-lg-4:nth-child(even) .reveal.visible ul li {
    color: #fff;
}


.service-features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
.service-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: #303233; }
.service-features li i { color: #1D6960; font-size: 0.8rem; flex-shrink: 0; }
.btn-service { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 50px; font-size: 0.9rem; font-weight: 700; border: 2px solid #1D6960; color: #1D6960; background: transparent; text-decoration: none; transition: all 0.35s ease; }
.btn-service:hover { background: #1D6960; color: white; }
.btn-service-featured { background: #1D6960; color: white; }
.btn-service-featured:hover { background: #0D5549; border-color: #0D5549; }

@media (max-width: 768px) {
  .svc-detail-visual { padding: 28px 24px; }
}
.logo-icon img {
    height: 102px;
    width: auto;
}section.Art-Transforming-section img {
    height: 959px;
    object-fit: cover;
}






.quiz-wrap{max-width:720px;margin:0 auto;padding:1.5rem 1rem 3rem}
.quiz-hero{text-align:center;padding:2.5rem 1.5rem 2rem;background:linear-gradient(135deg,var(--ks-green-dark) 0%,var(--ks-green) 60%,var(--ks-green-mid) 100%);border-radius:20px;margin-bottom:2rem;position:relative;overflow:hidden}
.quiz-hero::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='28' stroke='%23ffffff' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3C/svg%3E") repeat;pointer-events:none}
.quiz-tag{display:inline-block;background:rgba(255,255,255,0.15);color:#fff;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding:5px 14px;border-radius:30px;margin-bottom:1rem;border:1px solid rgba(255,255,255,0.2)}
.quiz-hero h1{color:#fff;font-size:2rem;font-weight:500;line-height:1.3;margin-bottom:.75rem}
.quiz-hero h1 em{font-style:italic;color:#fde68a}
.quiz-hero p{color:rgba(255,255,255,0.8);font-size:.95rem;line-height:1.7;max-width:500px;margin:0 auto 1.25rem}
.progress-bar-wrap{background:rgba(255,255,255,0.2);border-radius:10px;height:6px;max-width:400px;margin:0 auto}
.progress-bar-fill{height:6px;border-radius:10px;background:#fde68a;transition:width .4s ease}
.progress-text{color:rgba(255,255,255,0.7);font-size:12px;margin-top:8px}
.section-divider{display:flex;align-items:center;gap:12px;margin:1.75rem 0 1.25rem}
.section-divider span{font-size:11px;letter-spacing:1px;text-transform:uppercase;color:var(--ks-green);font-weight:500;white-space:nowrap}
.section-divider::before,.section-divider::after{content:'';flex:1;height:1px;background:var(--ks-green-light)}
.q-card{background:var(--color-background-primary);border:0.5px solid var(--color-border-tertiary);border-radius:14px;padding:1.25rem 1.5rem;margin-bottom:1rem;transition:border-color .2s,box-shadow .2s}
.q-card:focus-within{border-color:var(--ks-green);box-shadow:0 0 0 3px rgba(29,105,96,0.08)}
.q-label{display:block;font-size:.875rem;font-weight:500;color:var(--color-text-primary);margin-bottom:.75rem;line-height:1.5}
.q-label .q-num{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;background:var(--ks-green-light);color:var(--ks-green);font-size:11px;font-weight:500;margin-right:8px;flex-shrink:0}
.q-required{color:var(--ks-primary);margin-left:2px}
.custom-select{width:100%;padding:10px 36px 10px 14px;font-size:.875rem;border:1px solid var(--color-border-secondary);border-radius:10px;background:var(--color-background-secondary);color:var(--color-text-primary);appearance:none;background-image:url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231D6960' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;cursor:pointer;transition:border-color .2s,box-shadow .2s}
.custom-select:focus{outline:none;border-color:var(--ks-green);box-shadow:0 0 0 3px rgba(29,105,96,0.1)}
.name-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.text-input{width:100%;padding:10px 14px;font-size:.875rem;border:1px solid var(--color-border-secondary);border-radius:10px;background:var(--color-background-secondary);color:var(--color-text-primary);transition:border-color .2s,box-shadow .2s}
.text-input:focus{outline:none;border-color:var(--ks-green);box-shadow:0 0 0 3px rgba(29,105,96,0.1)}
.text-input::placeholder{color:var(--color-text-tertiary)}
.consent-card{background:var(--ks-green-bg);border:1px solid var(--ks-green-light);border-radius:14px;padding:1.25rem 1.5rem;margin:1.25rem 0}
.consent-row{display:flex;align-items:flex-start;gap:12px}
.consent-cb{width:18px;height:18px;min-width:18px;accent-color:var(--ks-green);margin-top:2px;cursor:pointer}
.consent-text{font-size:.8rem;color:var(--color-text-secondary);line-height:1.6}
.submit-btn{display:block;width:100%;padding:14px 24px;background:linear-gradient(135deg,var(--ks-green) 0%,var(--ks-green-mid) 100%);color:#fff;font-size:1rem;font-weight:500;border:none;border-radius:12px;cursor:pointer;transition:opacity .2s,transform .1s;margin-top:1.5rem;letter-spacing:.3px}
.submit-btn:hover{opacity:.92}
.submit-btn:active{transform:scale(.99)}
.submit-btn:disabled{opacity:.5;cursor:not-allowed}
.field-note{font-size:.75rem;color:var(--color-text-tertiary);margin-top:5px}
.error-msg{font-size:.75rem;color:var(--ks-primary);margin-top:4px;display:none}
.q-card.has-error .custom-select,.q-card.has-error .text-input{border-color:var(--ks-primary)}
.q-card.has-error .error-msg{display:block}
.result-panel{display:none;background:var(--color-background-primary);border:0.5px solid var(--color-border-tertiary);border-radius:20px;padding:2rem;text-align:center;margin-top:2rem}
.result-dosha-badge{display:inline-block;padding:8px 22px;border-radius:30px;font-size:.8rem;font-weight:500;letter-spacing:.5px;text-transform:uppercase;margin-bottom:1rem}
.result-panel h2{font-size:1.5rem;font-weight:500;color:var(--color-text-primary);margin-bottom:.75rem}
.result-panel p{color:var(--color-text-secondary);font-size:.9rem;line-height:1.7;max-width:480px;margin:0 auto 1.5rem}
.dosha-bars{display:flex;flex-direction:column;gap:10px;max-width:400px;margin:1.5rem auto 0;text-align:left}
.dosha-bar-row{display:flex;align-items:center;gap:10px}
.dosha-bar-label{width:60px;font-size:.8rem;color:var(--color-text-secondary);font-weight:500}
.dosha-bar-track{flex:1;height:8px;background:var(--color-background-secondary);border-radius:8px;overflow:hidden}
.dosha-bar-fill{height:8px;border-radius:8px;transition:width 1s ease}
.dosha-bar-pct{width:36px;font-size:.75rem;color:var(--color-text-secondary);text-align:right}
.brand-footer{text-align:center;margin-top:2rem;padding-top:1.5rem;border-top:0.5px solid var(--color-border-tertiary)}
.brand-footer a{font-size:.8rem;color:var(--ks-green);text-decoration:none}
.brand-footer a:hover{text-decoration:underline}

/* ==========================================================
   SERVICE PAGE – UNIQUE SECTION STYLES
   ========================================================== */

/* --- Cleanse Program Cards --- */
.program-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(99,177,188,0.2);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(99,177,188,0.4); }
.program-card-featured {
  border: 2px solid #63B1BC;
  background: linear-gradient(160deg, #f0fcff 0%, #e6f7fb 100%);
}
.program-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #3a8fa0, #63B1BC);
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* --- Postpartum 42-Day Phase Timeline --- */
.phase-row { display: flex; flex-direction: column; gap: 16px; }
.phase-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(166,69,112,0.12);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.phase-item:hover { transform: translateX(6px); border-color: rgba(166,69,112,0.3); }
.phase-num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #6b2845, #A64570);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.phase-content h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 4px; }
.phase-content p { font-size: 0.88rem; color: #303233; line-height: 1.6; margin: 0; }

/* --- Fix gradient colours to match HTML originals --- */
.bg-teal-grad   { background: linear-gradient(135deg, #3a8fa0, #63B1BC) !important; color: white; }
.bg-rose-grad   { background: linear-gradient(135deg, #6b2845, #A64570) !important; color: white; }
.bg-amber-grad  { background: linear-gradient(135deg, #9b6c14, #D69A2D) !important; color: white; }

@media (max-width: 576px) {
  .program-card { padding: 24px 20px; }
  .phase-item   { padding: 16px 18px; gap: 14px; }
}
@media(max-width:520px){.name-row{grid-template-columns:1fr}.quiz-hero h1{font-size:1.5rem}}


/* Tanu */
.service-banner-img img{
	max-height: 100% !important;
}
.page-id-153 .services-section .row .col-md-4.col-lg-4:nth-child(2) .btn-service{
    background: var(--orange) !important;
    color: white !important;
    border-color: var(--orange) !important;    
  border: 2px solid var(--orange);
}
.page-id-153 .services-section .row .col-md-4.col-lg-4:nth-child(2) .btn-service:hover{
     background: var(--orange);
    color: white;
    border-color: var(--orange); 
}
.page-id-153 .services-section .row .col-md-4.col-lg-4:nth-child(2) .service-desc{
	color: #fff;
}
.page-id-153  .services-section .row .col-md-4.col-lg-4:nth-child(2) span.service-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.page-id-153  .services-section .row .col-md-4.col-lg-4:nth-child(2) .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.page-id-153  .services-section .row .col-md-4.col-lg-4:nth-child(2) i {
    color: #81c784;
}
.page-id-153  .services-section .row .col-md-4.col-lg-4:nth-child(2) .btn-service i{
	color: #fff;
}
.postid-788 .service-card-featured {
    box-shadow: 0 8px 32px rgba(29, 105, 96, 0.18);
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    border-color: transparent;
}

.postid-788 .service-badge-green {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}
.postid-788 .btn-service-featured:hover {
    background: #e56700;
    color: white;
    border-color: #e56700;
    transform: translateX(4px);
}
.postid-788 .btn-service-featured {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}
.postid-792 .faq-section {
    background: #f0faf8 !important;
}

 .faq-decoration{
	display: none;
}
.postid-788 .faq-section {
    background: #f0faf8 !important;
}

.page-id-177 .inner-hero .hero-btns.mt-4 {
    display: none;
}
.blog-pg-section .filter-pill:hover, .filter-pill.active {
    background: #1D6960 !important;
    border-color: #1D6960;
    color: #fff !important;
}
.blog-pg-date {
    font-size: 0.75rem !important;
    color: #1D6960 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 9px !important;
}

.page-id-165 span#newsletter {
    border: none !important;
    background: transparent !important;
}
/* Decorative section divider icons (swirl/scroll images between sections) */
.article-body img.ks-section-divider,
.entry-content img.ks-section-divider,
img.ks-section-divider {
    display: block !important;
    width: 80px !important;
    height: auto !important;
    max-width: 80px !important;
    margin: 32px auto !important;
    opacity: 0.75;
}

/* When multiple dividers appear side by side (icon rows) */
p > img.ks-section-divider,
p img.ks-section-divider {
    display: inline-block !important;
    width: 48px !important;
    max-width: 48px !important;
    margin: 24px 8px !important;
    vertical-align: middle;
}

/* 
===========BLog=========== */

/* ─── Variables ─── */
.article-body {
  --green: #1D6960;
  --green-dark: #0D5549;
  --green-mid: #1DB296;
  --green-light: #e0f2ef;
  --green-bg: #f0faf8;
  --orange: #D69A2D;
  --orange-light: #fdf6e3;
  --primary: #C4444B;
  --primary-dark: #8A1538;
  --accent-teal: #63B1BC;
  --accent-gold: #E7D083;
  --accent-rose: #A64570;
  --accent-sage: #9CAF88;
  --accent-purple: #613E5F;
  --white: #ffffff;
  --black: #111111;
  --gray: #303233;
  --gray-light: #f8f9fa;
  --shadow-sm: 0 4px 20px rgba(29,105,96,0.10);
  --shadow-md: 0 10px 40px rgba(29,105,96,0.14);
  --shadow-lg: 0 20px 60px rgba(29,105,96,0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --font-display: "Bai Jamjuree", sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Base ─── */
.article-body {
  font-family: var(--font-body);
  color: var(--gray);
  /* background: var(--green-bg); */
  max-width: 820px;
  margin: 0 auto;
  /* padding: 2.5rem 1.5rem; */
  line-height: 1.8;
}

/* ─── Hero Image ─── */
.article-body img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
  display: block;
  margin: 1.75rem 0;
  box-shadow: var(--shadow-sm);
}

/* ─── H1 – Page Title ─── */
.article-body h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

/* ─── H2 – Section Headings ─── */
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--black);
  margin: 2.5rem 0 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid var(--green-mid);
  line-height: 1.3;
}

/* ─── Paragraphs ─── */
.article-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray);
  margin: 0 0 1.1rem;
}

/* ─── Strong / Bold ─── */
.article-body strong,
.article-body b {
  color: var(--green);
  font-weight: 600;
}

/* ─── Unordered Lists ─── */
.article-body ul

 {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0 !important;
}
.article-body ul, .article-body ol {
    padding-left: 24px;
    margin-bottom: 5px;
}
.article-body a br {
    display: none;
}
.article-body p em {
    display: block;
    margin-top: 29px;
}
.article-body ul li {
  position: relative;
  padding: 0.6rem 1rem 0.6rem 2.25rem;
  font-size: 15px;
  color: var(--gray);
  background: var(--green-bg);
  border: 0.5px solid var(--green-light);
  border-radius: 8px;
  line-height: 1.6;
  transition: var(--transition);
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-mid);
}

.article-body ul li:hover {
  background: var(--green-light);
  border-color: var(--green-mid);
}

/* ─── Inline Links ─── */
.article-body a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--green-light);
  transition: var(--transition);
}

.article-body a:hover {
  color: var(--green-dark);
  border-color: var(--green-mid);
}

/* ─── CTA Link Blocks (standalone <a> on their own line) ─── */
.article-body p > a:only-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* background: var(--green); */
    color: #186359;
    /* padding: 0.7rem 1.5rem; */
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: none;
    /* box-shadow: var(--shadow-sm); */
    transition: var(--transition);
    letter-spacing: 0.02em;
}



/* ─── Blockquote / Pullquote ─── */
.article-body blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--green-bg);
  border-left: 4px solid var(--green-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--green-dark);
  font-size: 17px;
  line-height: 1.75;
}

/* ─── Section Divider ─── */
.article-body hr {
  border: none;
  border-top: 1px dashed var(--green-light);
  margin: 2.5rem 0;
}

/* ─── Author Bio Block ─── */
.article-body [data-start="3991"] ~ [data-start="3998"],
.article-body [data-start="3998"],
.article-body [data-start="4082"],
.article-body [data-start="4358"] {
  background: var(--white);
  border: 0.5px solid var(--green-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
  box-shadow: var(--shadow-sm);
  margin-top: 2.5rem;
  margin-bottom: 20px !important;
  /* display: block; */
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
  .article-body {
    padding: 1.5rem 1rem;
  }

  .article-body h1 {
    font-size: 24px;
  }

  .article-body h2 {
    font-size: 18px;
  }

  .article-body p > a:only-child {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.article-body ul li br {
  display: none;
}.privacy-menu ul {
    display: flex !important;
    flex-direction: row;
    justify-content: end;
}

.survivor-led {
    padding-top: 10px;
}

.survivor-led p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}
ul.benifits-ul {
    display: flex;
    flex-wrap: wrap;
    /* width: 80%; */
    list-style: none;
    gap: 20px;
    margin: auto;
}

ul.benifits-ul li {
    width: 47%;
    margin: 0px 0px 0px 0px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(29, 105, 96, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}