/* ============================================================
   PANACEA PHYSIOTHERAPY & YOGATHERAPY CLINIC
   Global Stylesheet
   Palette: Deep Purple + Gold + Cream
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --purple-deep:   #1A0533;
  --purple-dark:   #2D0A5C;
  --purple-mid:    #3F1278;
  --gold:          #C9A84C;
  --gold-light:    #E8C96D;
  --gold-dark:     #A07C30;
  --cream:         #FAF7F2;
  --white:         #FFFFFF;
  --text-dark:     #1A1A2E;
  --text-gray:     #6B6B8A;
  --text-light:    rgba(255,255,255,0.88);
  --shadow-sm:     0 2px 12px rgba(26,5,51,0.10);
  --shadow-md:     0 8px 32px rgba(26,5,51,0.15);
  --shadow-lg:     0 20px 60px rgba(26,5,51,0.22);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--purple-deep);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-gray); line-height: 1.8; }

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-gray);
  line-height: 1.9;
}

/* ── Utility Classes ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 90px 0; }
.section-padding-sm { padding: 60px 0; }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold); }

.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px auto 28px;
}
.gold-line.left { margin-left: 0; }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-deep);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.50);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--purple-deep);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--purple-deep);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.50);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(26, 5, 51, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.navbar-logo img {
  height: 66px;
  width: 66px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.navbar-logo-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
}
.navbar-logo-text .tagline {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  position: relative;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width var(--transition);
}
.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold);
}
.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--purple-deep);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 80px 24px 40px;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../714748916_17963608827094265_5900907096165713408_n.webp');
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,5,51,0.92) 0%,
    rgba(45,10,92,0.80) 50%,
    rgba(26,5,51,0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 100px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  font-style: italic;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 16px;
  font-weight: 300;
  line-height: 1.9;
}
.hero-tagline {
  font-size: 0.95rem;
  color: var(--gold-light);
  font-style: italic;
  max-width: 560px;
  margin-bottom: 42px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.60);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ── SECTION: WHY PANACEA ── */
.why-panacea { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.12);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
}
.why-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.why-card p  { font-size: 0.93rem; }

/* ── SECTION: SERVICES OVERVIEW ── */
.services-overview { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(201,168,76,0.10);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.service-card-img {
  height: 210px;
  overflow: hidden;
  background: var(--purple-dark);
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-icon {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.service-card-body {
  padding: 28px 24px 24px;
}
.service-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card-body p  { font-size: 0.88rem; line-height: 1.75; }

.services-cta { text-align: center; margin-top: 48px; }

/* ── SECTION: ABOUT SNIPPET ── */
.about-snippet { background: var(--purple-deep); }

.about-snippet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-snippet-img {
  position: relative;
}
.about-snippet-img img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(201,168,76,0.25);
}
.about-snippet-badge {
  position: absolute;
  bottom: -20px; right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-deep);
  border-radius: var(--radius);
  padding: 18px 24px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.3;
}
.about-snippet-badge strong { display: block; font-size: 1.5rem; font-family: 'Playfair Display', serif; }

.about-snippet-content .section-label { color: var(--gold-light); }
.about-snippet-content h2 { color: var(--white); }
.about-snippet-content p  { color: rgba(255,255,255,0.72); }
.about-snippet-content .gold-line { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.certs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}
.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.30);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}
.cert-pill::before {
  content: '✦';
  font-size: 0.6rem;
  color: var(--gold);
}

/* ── SECTION: TESTIMONIALS ── */
.testimonials-section { background: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.10);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: block;
}
.testimonial-card p {
  font-size: 0.93rem;
  font-style: italic;
  line-height: 1.85;
  margin-bottom: 24px;
  color: var(--text-dark);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-author {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--purple-deep);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-gray);
  margin-top: 2px;
}

/* ── SECTION: CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(201,168,76,0.04);
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p  { color: rgba(255,255,255,0.72); margin-top: 8px; }
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--purple-deep);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 74px;
  width: 74px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.85; max-width: 260px; }
.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.footer-contact-item .icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-hours table { border-collapse: collapse; width: 100%; }
.footer-hours td {
  font-size: 0.85rem;
  padding: 5px 0;
  vertical-align: top;
}
.footer-hours td:first-child {
  color: rgba(255,255,255,0.50);
  width: 70px;
  padding-right: 12px;
}
.footer-hours td:last-child { color: rgba(255,255,255,0.82); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.38); }
.footer-bottom a { color: var(--gold); }
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.30);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.60); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

@keyframes pulse-green {
  0%  { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.70), 0 0 0 12px rgba(37,211,102,0.10); }
  100%{ box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-dark) 60%, var(--purple-mid) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(201,168,76,0.05);
}
.page-hero h1 { color: var(--white); }
.page-hero .section-label { color: var(--gold-light); }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb span { color: var(--gold); }

/* ── ABOUT PAGE ── */
.about-bio {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}

.about-img-wrap {
  position: sticky;
  top: 100px;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(201,168,76,0.20);
}
.about-img-main img { width: 100%; height: 480px; object-fit: cover; object-position: top; }

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.about-img-grid img {
  border-radius: var(--radius);
  height: 160px;
  object-fit: cover;
  width: 100%;
  border: 2px solid rgba(201,168,76,0.15);
}

.credentials-list { margin: 28px 0; }
.credential-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.credential-item:last-child { border-bottom: none; }
.credential-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.credential-body .cred-title { font-weight: 600; font-size: 0.97rem; color: var(--text-dark); margin-bottom: 3px; }
.credential-body .cred-sub { font-size: 0.83rem; color: var(--text-gray); }

.philosophy-block {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-dark));
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}
.philosophy-block::before {
  content: '"';
  position: absolute;
  top: -20px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 14rem;
  color: rgba(201,168,76,0.06);
  line-height: 1;
}
.philosophy-block .section-label { color: var(--gold-light); }
.philosophy-block h3 { color: var(--white); margin-bottom: 16px; }
.philosophy-block p  { color: rgba(255,255,255,0.72); }

.speaking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.speaking-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow-sm);
}
.speaking-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.speaking-img:hover img { transform: scale(1.05); }

/* ── SERVICES PAGE ── */
.services-list { }

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid rgba(201,168,76,0.10);
}
.service-item:last-child { border-bottom: none; }
.service-item.reverse { direction: rtl; }
.service-item.reverse > * { direction: ltr; }

.service-item-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 340px;
}
.service-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-item:hover .service-item-img img { transform: scale(1.03); }

.service-item-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.30);
}
.service-item h3 { font-size: 1.5rem; margin-bottom: 14px; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.service-tag {
  background: rgba(63,18,120,0.07);
  border: 1px solid rgba(63,18,120,0.15);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--purple-mid);
  letter-spacing: 0.02em;
}

.conditions-section { background: var(--cream); }
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.condition-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
}
.condition-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.condition-card h4 { margin-bottom: 8px; font-size: 1rem; }
.condition-card p  { font-size: 0.85rem; }

.community-teaser {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 40px 44px;
  border-left: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-dark));
  border: 1px solid rgba(201,168,76,0.20);
}
.community-teaser-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.30);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
@media (max-width: 600px) {
  .community-teaser {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
  }
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info-block {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-dark));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.contact-info-block .section-label { color: var(--gold-light); }
.contact-info-block h2 { color: var(--white); margin-bottom: 8px; }
.contact-info-block > p { color: rgba(255,255,255,0.65); margin-bottom: 36px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 46px; height: 46px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.30);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-body .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-detail-body .value {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.contact-detail-body .value a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.contact-detail-body .value a:hover { color: var(--gold); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.hours-table td {
  padding: 10px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.70);
}
.hours-table td:first-child { color: rgba(255,255,255,0.45); width: 100px; }
.hours-table td.closed { color: rgba(255,100,100,0.70); }

.divider-gold {
  border: none;
  height: 1px;
  background: rgba(201,168,76,0.20);
  margin: 28px 0;
}

/* Contact form */
.contact-form-wrap h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  color: var(--text-gray);
  margin-bottom: 36px;
}

.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(201,168,76,0.20);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { height: 130px; resize: vertical; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-top: 12px;
  text-align: center;
}

.map-wrap {
  margin-top: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
  border: 2px solid rgba(201,168,76,0.15);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── BLOG PAGE ── */
.blog-intro {
  background: var(--cream);
}

.blog-posts-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.blog-post {
  padding: 72px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.blog-post:last-child { border-bottom: none; }

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.blog-category {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--purple-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}
.blog-date {
  font-size: 0.82rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-date i { color: var(--gold); font-size: 0.75rem; }

.blog-post h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-post .blog-subtitle {
  font-size: 1.05rem;
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.7;
}

.blog-article p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: #4A4A6A;
  margin-bottom: 18px;
}
.blog-article h3 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--purple-deep);
}
.blog-article ul {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
}
.blog-article ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.95rem;
  color: #4A4A6A;
  line-height: 1.7;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.blog-article ul li:last-child { border-bottom: none; }
.blog-article ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 11px;
}

.blog-article .highlight-box {
  background: linear-gradient(135deg, rgba(26,5,51,0.04), rgba(63,18,120,0.06));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-style: italic;
  font-size: 1rem;
  color: var(--purple-dark);
  line-height: 1.8;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 36px;
}
.blog-tag {
  background: rgba(63,18,120,0.06);
  border: 1px solid rgba(63,18,120,0.12);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.78rem;
  color: var(--purple-mid);
  font-weight: 500;
}

.instagram-embed-wrap {
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.embed-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.embed-label i { color: #E1306C; }

.instagram-media {
  border-radius: var(--radius);
}

/* Blog sidebar / listing grid (future use) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .blog-post { padding: 48px 0; }
  .blog-grid  { grid-template-columns: 1fr; }
}

/* ── WELLNESS PROGRAMS PAGE ── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.12);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.30);
}
.program-card-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(26,5,51,0.06), rgba(63,18,120,0.10));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.program-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.program-card p { font-size: 0.92rem; color: var(--text-gray); line-height: 1.8; }
.program-card ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.program-card ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 0.87rem;
  color: var(--text-gray);
  line-height: 1.6;
}
.program-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 10px;
}

/* Upcoming Programs */
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.upcoming-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.12);
  transition: all var(--transition);
}
.upcoming-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.upcoming-card-header {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-dark));
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.upcoming-date-badge {
  text-align: center;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.30);
  border-radius: 12px;
  padding: 8px 14px;
  min-width: 60px;
  flex-shrink: 0;
}
.upcoming-date-badge .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.upcoming-date-badge .month {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
}
.upcoming-card-title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  font-family: 'Playfair Display', serif;
}
.upcoming-card-body { padding: 24px 28px; }
.upcoming-card-body p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.upcoming-tag {
  display: inline-block;
  background: rgba(63,18,120,0.07);
  border: 1px solid rgba(63,18,120,0.14);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--purple-mid);
  letter-spacing: 0.04em;
}

/* Register Interest Form */
.wellness-register-section { background: var(--cream); }
.wellness-register-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 52px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,168,76,0.12);
}
.wellness-register-wrap h3 { font-size: 1.6rem; margin-bottom: 8px; }
.wellness-register-wrap > p { color: var(--text-gray); margin-bottom: 36px; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 1;
  transform: translateY(0);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 1024px) {
  .why-grid        { grid-template-columns: 1fr 1fr; }
  .services-grid   { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-bio       { grid-template-columns: 1fr; }
  .about-img-wrap  { position: static; }
  .about-img-main img { height: 360px; }
  .service-item    { grid-template-columns: 1fr; gap: 36px; }
  .service-item.reverse { direction: ltr; }
  .service-item-img { height: 260px; }
  .contact-grid    { grid-template-columns: 1fr; }
  .contact-info-block { position: static; }
  .about-snippet-grid { grid-template-columns: 1fr; gap: 48px; }
  .conditions-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .speaking-grid   { grid-template-columns: 1fr 1fr; }
  .upcoming-grid   { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  .section-padding { padding: 64px 0; }
  .why-grid        { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
  .speaking-grid   { grid-template-columns: 1fr; }
  .programs-grid   { grid-template-columns: 1fr; }
  .upcoming-grid   { grid-template-columns: 1fr; }
  .wellness-register-wrap { padding: 36px 28px; }
  .form-row        { grid-template-columns: 1fr; }
  .about-img-grid  { grid-template-columns: 1fr 1fr; }
  .hero-stats      { gap: 28px; flex-wrap: wrap; }
  .navbar-links    { display: none; }
  .navbar-cta      { display: none; }
  .hamburger       { display: flex; }
  .hero-actions    { flex-direction: column; align-items: flex-start; }
  .navbar          { padding: 14px 0; }
  .navbar.scrolled { padding: 10px 0; }
  .page-hero       { padding: 130px 0 60px; }
  .philosophy-block { padding: 32px 24px; }
  .contact-info-block { padding: 32px 24px; }
  .footer-bottom   { flex-direction: column; text-align: center; gap: 8px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-content    { padding: 130px 0 80px; }
  .hero-stats      { flex-direction: column; gap: 20px; }
  .about-img-grid  { grid-template-columns: 1fr; }
  .about-img-grid img { height: 220px; }
  .why-card        { padding: 28px 20px; }
  .certs-row       { gap: 8px; }
}
