/* ============================================
   WELLNESS WEBSITE - MAIN STYLESHEET
   style.css
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary-green: #58745A;
  --dark-green: #314A36;
  --light-sage: #DDE7DD;
  --cream: #FAF7F0;
  --beige: #E9DFD0;
  --dark-text: #252B27;
  --mid-text: #4A5540;
  --light-text: #6B7B6D;
  --white: #FFFFFF;
  --border: #D4DDCF;
  --shadow-sm: 0 2px 8px rgba(49,74,54,0.07);
  --shadow-md: 0 4px 20px rgba(49,74,54,0.10);
  --shadow-lg: 0 8px 40px rgba(49,74,54,0.13);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.25s ease;
  --max-width: 1200px;
  --header-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

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

/* --- Skip Link --- */
.skip-link {
  position: absolute; top: -40px; left: 0; background: var(--dark-green);
  color: var(--white); padding: 8px 16px; z-index: 9999; border-radius: 0 0 8px 0;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-green);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; color: var(--mid-text); }
p:last-child { margin-bottom: 0; }

.section-label {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary-green); font-weight: 600; margin-bottom: 0.5rem; display: block;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--light-text); font-size: 1.05rem; max-width: 640px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-sage { background: var(--light-sage); }
.section-beige { background: var(--beige); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: all var(--transition); cursor: pointer; text-align: center;
  white-space: nowrap; border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary-green); color: var(--white);
  border-color: var(--primary-green);
}
.btn-primary:hover { background: var(--dark-green); border-color: var(--dark-green); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--primary-green);
  border-color: var(--primary-green);
}
.btn-outline:hover { background: var(--primary-green); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white); color: var(--dark-green); border-color: var(--white);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-whatsapp {
  background: #25D366; color: var(--white); border-color: #25D366;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* --- Header --- */
.site-header {
  position: sticky; top: 0; z-index: 1000; background: var(--white);
  box-shadow: var(--shadow-sm); height: var(--header-height);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 44px; width: auto; }
.logo-text { font-family: var(--font-heading); font-size: 1rem; white-space: nowrap; color: var(--dark-green); line-height: 1.2; }
.logo-text span { display: block; font-size: 0.7rem; font-family: var(--font-body); font-weight: 400; color: var(--light-text); letter-spacing: 0.05em; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 8px 14px; border-radius: 6px; font-size: 0.9rem; font-weight: 500;
  color: var(--mid-text); transition: all var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary-green); background: var(--light-sage); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 8px; opacity: 0; visibility: hidden;
  transition: all var(--transition); z-index: 100;
  border: 1px solid var(--border);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 9px 14px; border-radius: 6px; font-size: 0.875rem;
  color: var(--mid-text); transition: all var(--transition);
}
.nav-dropdown-menu a:hover { background: var(--light-sage); color: var(--primary-green); }

.header-cta { margin-left: 12px; }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 4px; border-radius: 8px; background: none; }
.hamburger span { display: block; height: 2px; width: 24px; background: var(--dark-green); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: var(--header-height); left: 0; right: 0;
  background: var(--white); box-shadow: var(--shadow-lg); padding: 16px 0 24px;
  z-index: 999; max-height: calc(100vh - var(--header-height)); overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 12px 24px; font-size: 1rem; font-weight: 500;
  color: var(--mid-text); border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.mobile-nav a:hover { background: var(--light-sage); color: var(--primary-green); }
.mobile-nav-cta { padding: 16px 24px 0; }
.mobile-nav .mobile-section-label {
  padding: 10px 24px 4px; font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--light-text); font-weight: 600;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  color: var(--white); padding: 90px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="%23ffffff08"/><circle cx="10" cy="80" r="30" fill="%23ffffff05"/></svg>');
  background-size: cover; pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 50px;
  padding: 6px 14px; font-size: 0.8rem; font-weight: 500; margin-bottom: 1.25rem; color: #d4e8d4;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 2rem; max-width: 500px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust {
  display: flex; align-items: center; gap: 8px; font-size: 0.85rem;
  color: rgba(255,255,255,0.75); flex-wrap: wrap;
}
.hero-trust span { display: flex; align-items: center; gap: 4px; }
.hero-trust span::before { content: '•'; margin-right: 4px; color: rgba(255,255,255,0.4); }
.hero-trust span:first-child::before { display: none; }
.hero-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--light-sage); position: relative; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center;
  justify-content: center; background: var(--beige); color: var(--light-text);
  font-size: 0.85rem; gap: 8px; min-height: 280px; text-align: center; padding: 20px;
}
.img-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.4; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  padding: 60px 0 50px; color: var(--white); text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 1.25rem; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; justify-content: center; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.5); }
.breadcrumb .current { color: rgba(255,255,255,0.9); }

/* --- Cards --- */
.card {
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); overflow: hidden;
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--beige); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 1.5rem; }
.card-tag {
  display: inline-block; background: var(--light-sage); color: var(--primary-green);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 50px; margin-bottom: 0.75rem;
}
.card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.card p { font-size: 0.92rem; }
.card-footer { padding: 0 1.5rem 1.5rem; }

/* --- Service Cards --- */
.service-card {
  background: var(--white); border-radius: var(--radius-md); padding: 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: all var(--transition); display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--primary-green); }
.service-icon {
  width: 58px; height: 58px; background: var(--light-sage); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  font-size: 1.7rem;
}
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { flex: 1; font-size: 0.93rem; }
.service-card .btn { margin-top: 1.25rem; align-self: flex-start; }

/* --- Why Choose Cards --- */
.why-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--white); padding: 1.75rem; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.why-icon {
  width: 50px; height: 50px; min-width: 50px; background: var(--light-sage);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.why-content h4 { margin-bottom: 0.35rem; color: var(--dark-green); }
.why-content p { font-size: 0.9rem; margin: 0; }

/* --- Program Cards --- */
.program-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: all var(--transition);
}
.program-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.program-card-header { background: var(--dark-green); padding: 1.5rem; color: var(--white); }
.program-card-header h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.3rem; }
.program-card-header .duration { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.program-card-body { padding: 1.5rem; }
.program-card-body p { font-size: 0.9rem; margin-bottom: 1rem; }
.program-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.program-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--light-text); }
.program-price { font-size: 1.3rem; font-weight: 700; color: var(--primary-green); margin-bottom: 1rem; }

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 0.75rem; overflow: hidden; transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; padding: 1.1rem 1.5rem; text-align: left; display: flex;
  align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; font-size: 0.97rem; color: var(--dark-text);
  transition: all var(--transition); background: transparent;
}
.faq-question:hover { background: var(--light-sage); color: var(--primary-green); }
.faq-item.open .faq-question { background: var(--light-sage); color: var(--primary-green); }
.faq-chevron {
  width: 22px; height: 22px; min-width: 22px; border-radius: 50%; background: var(--beige);
  display: flex; align-items: center; justify-content: center; transition: transform var(--transition);
  font-size: 0.75rem;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--primary-green); color: var(--white); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.93rem; color: var(--mid-text); border-top: 1px solid var(--border); }
.faq-item.open .faq-answer { display: block; padding-top: 1rem; }

/* --- Testimonials Slider --- */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 1.5rem; transition: transform 0.4s ease; }
.testimonial-card {
  min-width: 340px; background: var(--white); border-radius: var(--radius-md);
  padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); flex-shrink: 0;
}
.testimonial-stars { color: #E8B84B; margin-bottom: 0.75rem; font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.96rem; color: var(--mid-text); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--light-sage);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--primary-green);
}
.testimonial-name { font-weight: 600; font-size: 0.88rem; color: var(--dark-text); }
.testimonial-role { font-size: 0.78rem; color: var(--light-text); }
.testimonial-disclaimer { text-align: center; font-size: 0.8rem; color: var(--light-text); margin-top: 1.25rem; font-style: italic; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--primary-green);
  background: var(--white); color: var(--primary-green); font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.slider-btn:hover { background: var(--primary-green); color: var(--white); }
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--border);
  transition: all var(--transition); cursor: pointer;
}
.slider-dot.active { background: var(--primary-green); width: 22px; border-radius: 4px; }

/* --- Forms --- */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; margin-bottom: 0.4rem; font-weight: 500;
  font-size: 0.88rem; color: var(--dark-text);
}
.form-label .required { color: #c0392b; margin-left: 3px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem;
  color: var(--dark-text); background: var(--white); transition: all var(--transition);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(88,116,90,0.12);
}
.form-input.error, .form-select.error, .form-textarea.error { border-color: #c0392b; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7B6D' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-error { display: none; font-size: 0.8rem; color: #c0392b; margin-top: 4px; }
.form-error.visible { display: block; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; }
.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; margin-top: 2px; accent-color: var(--primary-green); cursor: pointer; }
.form-checkbox label { font-size: 0.87rem; color: var(--mid-text); cursor: pointer; }
.form-success {
  display: none; background: #d4edda; border: 1px solid #b8dacc;
  color: #155724; padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  margin-top: 1rem; font-size: 0.9rem;
}
.form-success.visible { display: block; }
.form-error-msg {
  display: none; background: #f8d7da; border: 1px solid #f5c6cb;
  color: #721c24; padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  margin-top: 1rem; font-size: 0.9rem;
}
.form-error-msg.visible { display: block; }
.form-loading { display: none; text-align: center; padding: 1rem; color: var(--light-text); }
.form-loading.visible { display: block; }

/* --- Contact Info --- */
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.5rem; }
.contact-icon {
  width: 46px; height: 46px; min-width: 46px; border-radius: var(--radius-sm);
  background: var(--light-sage); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--primary-green);
}
.contact-text h4 { font-size: 0.9rem; margin-bottom: 0.2rem; color: var(--dark-text); font-family: var(--font-body); font-weight: 600; }
.contact-text p, .contact-text a { font-size: 0.93rem; color: var(--mid-text); }
.contact-text a:hover { color: var(--primary-green); }

/* --- Footer --- */
.site-footer {
  background: var(--dark-green); color: rgba(255,255,255,0.8); padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.6); }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-top: 0.75rem; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1rem; font-weight: 600;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 8px; font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 0.6rem; align-items: flex-start; }
.footer-contact-item .icon { font-size: 1rem; min-width: 18px; margin-top: 2px; }
.footer-social { display: flex; gap: 10px; margin-top: 1rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
  color: rgba(255,255,255,0.7); transition: all var(--transition);
}
.social-link:hover { background: var(--primary-green); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0; }
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.85); }
.footer-disclaimer {
  background: rgba(0,0,0,0.15); padding: 14px 20px; font-size: 0.8rem;
  color: rgba(255,255,255,0.55); text-align: center; border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 1.5rem; line-height: 1.6;
}

/* --- Floating Buttons --- */
.float-whatsapp {
  position: fixed; bottom: 90px; right: 22px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4); color: var(--white);
  font-size: 1.6rem; transition: all var(--transition);
  text-decoration: none;
}
.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.float-whatsapp .tooltip {
  position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%);
  background: var(--dark-text); color: var(--white); padding: 5px 10px;
  border-radius: 6px; font-size: 0.78rem; white-space: nowrap; opacity: 0;
  pointer-events: none; transition: opacity var(--transition);
}
.float-whatsapp:hover .tooltip { opacity: 1; }

.back-to-top {
  position: fixed; bottom: 90px; left: 22px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%; background: var(--white);
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-green); font-size: 1.1rem; transition: all var(--transition);
  opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--primary-green); color: var(--white); }

/* Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 10px 16px; gap: 8px; padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.mobile-bottom-bar .btn { flex: 1; padding: 10px 8px; font-size: 0.82rem; min-width: 0; }
.mobile-bottom-bar .btn-call { background: var(--dark-green); color: var(--white); border-color: var(--dark-green); }

/* --- Section Header --- */
.section-header { margin-bottom: 3rem; }
.section-header.text-center { display: flex; flex-direction: column; align-items: center; }

/* --- Practitioner Section --- */
.practitioner-card {
  display: grid; grid-template-columns: 300px 1fr; gap: 3rem;
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.practitioner-image { background: var(--beige); min-height: 380px; position: relative; }
.practitioner-image img { width: 100%; height: 100%; object-fit: cover; }
.practitioner-info { padding: 2.5rem 2.5rem 2.5rem 0; }
.practitioner-name { font-size: 1.8rem; margin-bottom: 0.25rem; }
.practitioner-title { color: var(--primary-green); font-weight: 500; margin-bottom: 1.25rem; }
.practitioner-meta { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.practitioner-meta-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.9rem; }
.practitioner-meta-item .label { color: var(--light-text); min-width: 130px; font-size: 0.85rem; }
.practitioner-meta-item .value { color: var(--dark-text); font-weight: 500; }

/* --- Stats Bar --- */
.stats-bar { background: var(--dark-green); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { color: var(--white); }
.stat-number { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--white); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
  padding: 80px 0; text-align: center; color: var(--white);
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Disclaimer Box --- */
.disclaimer-box {
  background: #fff8e1; border: 1px solid #ffe082; border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem; font-size: 0.875rem; color: #5a4a00; margin: 1.5rem 0;
}
.disclaimer-box strong { color: #3d3000; }
.notice-box {
  background: var(--light-sage); border: 1px solid var(--primary-green);
  border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; font-size: 0.9rem;
  color: var(--dark-green); margin: 1.5rem 0;
}

/* --- Blog Cards --- */
.blog-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.filter-btn {
  padding: 7px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 500;
  background: var(--white); border: 1.5px solid var(--border); color: var(--mid-text);
  transition: all var(--transition); cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { background: var(--primary-green); color: var(--white); border-color: var(--primary-green); }

/* --- Webinar Cards --- */
.webinar-card {
  background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.webinar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.webinar-header { background: var(--primary-green); padding: 1.25rem 1.5rem; color: var(--white); }
.webinar-header h3 { color: var(--white); font-size: 1.05rem; }
.webinar-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 0.5rem; }
.webinar-meta-item { display: flex; align-items: center; gap: 4px; font-size: 0.78rem; color: rgba(255,255,255,0.8); }
.webinar-body { padding: 1.25rem 1.5rem; }

/* --- Kit Cards --- */
.kit-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.kit-image { aspect-ratio: 4/3; background: var(--beige); overflow: hidden; }
.kit-image img { width: 100%; height: 100%; object-fit: cover; }
.kit-body { padding: 2rem; }
.kit-includes { margin: 1rem 0; }
.kit-includes h4 { font-size: 0.9rem; margin-bottom: 0.5rem; font-family: var(--font-body); }
.kit-includes ul { list-style: none; }
.kit-includes ul li { display: flex; align-items: center; gap: 8px; font-size: 0.87rem; color: var(--mid-text); padding: 4px 0; }
.kit-includes ul li::before { content: '✓'; color: var(--primary-green); font-weight: 700; }
.kit-price { font-size: 1.5rem; font-weight: 700; color: var(--primary-green); margin: 1rem 0; }

/* --- Legal Pages --- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal-content h3 { font-size: 1.1rem; margin-top: 1.75rem; margin-bottom: 0.5rem; }
.legal-content ul, .legal-content ol { margin: 0.75rem 0 0.75rem 1.5rem; }
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li { margin-bottom: 0.5rem; color: var(--mid-text); font-size: 0.95rem; }
.legal-content p { font-size: 0.95rem; }
.legal-date { font-size: 0.85rem; color: var(--light-text); margin-bottom: 2rem; }

/* --- Map Placeholder --- */
.map-placeholder {
  background: var(--beige); border-radius: var(--radius-md); height: 300px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px dashed var(--border); color: var(--light-text); gap: 8px; font-size: 0.9rem;
}
.map-placeholder .map-icon { font-size: 2.5rem; opacity: 0.5; }

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: var(--dark-text); color: var(--white); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; transform: translateY(100%); transition: transform var(--transition);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.85); margin: 0; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn { padding: 8px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all var(--transition); }
.cookie-accept { background: var(--primary-green); color: var(--white); border: none; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }

/* --- Utilities --- */
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.tag { display: inline-block; background: var(--light-sage); color: var(--primary-green); font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* --- SEO-ready media and article components --- */
.content-image { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.kit-image .content-image, .practitioner-image .content-image, .card-img .content-image { min-height: 100%; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.article-container { max-width: 840px; }
.article-meta { display:flex; flex-wrap:wrap; gap:.75rem 1.25rem; color:var(--light-text); font-size:.88rem; margin-bottom:1.5rem; }
.article-meta span:first-child { background:var(--light-sage); color:var(--dark-green); padding:.25rem .7rem; border-radius:999px; font-weight:600; }
.article-hero-image { width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:var(--radius-lg); box-shadow:var(--shadow-md); margin-bottom:2rem; }
.article-lead { font-size:1.15rem; line-height:1.8; color:var(--dark-text); border-left:4px solid var(--primary-green); padding-left:1.25rem; margin-bottom:2rem; }
.article-section { margin:2rem 0; }
.article-section h2 { font-size:clamp(1.35rem,3vw,1.85rem); margin-bottom:.65rem; }
.article-cta { margin-top:2.5rem; padding:2rem; border-radius:var(--radius-lg); background:var(--light-sage); }
.article-cta .btn { margin:.75rem .5rem 0 0; }
:focus-visible { outline:3px solid #c49d5c; outline-offset:3px; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline:3px solid rgba(88,116,90,.25); border-color:var(--primary-green); }
@media (max-width:1100px) {
  .main-nav, .header-cta { display:none; }
  .hamburger { display:flex; }
}
@media (max-width:640px) {
  .logo-text { font-size:.86rem; }
  .logo-text span { font-size:.58rem; }
  .article-cta .btn { width:100%; margin-right:0; }
}

/* Accessible heading hierarchy without changing the visual scale. */
.sr-only { position:absolute !important; width:1px !important; height:1px !important; padding:0 !important; margin:-1px !important; overflow:hidden !important; clip:rect(0,0,0,0) !important; white-space:nowrap !important; border:0 !important; }
.minor-heading { font-size:1.15rem; }
.card-heading { font-size:clamp(1.2rem, 2.5vw, 1.6rem); }
.footer-col .footer-heading { font-family:var(--font-body); font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:1rem; font-weight:600; }
.contact-text .minor-heading { font-size:.9rem; margin-bottom:.2rem; color:var(--dark-text); font-family:var(--font-body); font-weight:600; }
