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

:root {
  --color-soft-green: #E5F3D1;
  --color-deep-sage: #4A6C4A;
  --color-off-white: #F8F8F8;
  --color-subtle-gold: #D4A950;
  --color-muted-grey: #6B705C;
  
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Lato', sans-serif;
  
  --shadow-soft: 0 4px 20px rgba(74, 108, 74, 0.1);
  --shadow-card: 0 2px 15px rgba(74, 108, 74, 0.08);
  --shadow-hover: 0 8px 30px rgba(74, 108, 74, 0.15);
  
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-deep-sage);
  background-color: var(--color-off-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--color-deep-sage);
  text-decoration: none;
  transition: color 0.3s var(--transition-smooth);
}

a:hover { color: var(--color-subtle-gold); }

img { max-width: 100%; height: auto; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-deep-sage);
  color: var(--color-off-white);
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  z-index: 100;
  transition: all 0.3s var(--transition-smooth);
}

.header.transparent {
  background: transparent;
}

.header.solid {
  background: var(--color-off-white);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-deep-sage);
  letter-spacing: 0.5px;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--color-muted-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-desktop {
  display: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-deep-sage);
  transition: width 0.3s var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 20px;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-deep-sage);
}

.btn-call svg { width: 18px; height: 18px; }

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-deep-sage);
  transition: all 0.3s var(--transition-smooth);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--color-off-white);
  z-index: 99;
  transition: right 0.4s var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-deep-sage);
}

.mobile-menu-close::before { transform: rotate(45deg); }
.mobile-menu-close::after { transform: rotate(-45deg); }

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links a {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-soft-green);
}

.mobile-menu-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 30px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-deep-sage);
  color: var(--color-off-white);
  box-shadow: var(--shadow-card);
}

.btn-primary:hover {
  background: #3d5a3d;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  color: var(--color-off-white);
}

.btn-secondary {
  background: var(--color-soft-green);
  color: var(--color-deep-sage);
}

.btn-secondary:hover {
  background: #dbefbc;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-deep-sage);
  color: var(--color-deep-sage);
}

.btn-outline:hover {
  background: var(--color-deep-sage);
  color: var(--color-off-white);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-soft-green) 0%, var(--color-off-white) 100%);
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
}

.hero h1.revealed {
  animation: textReveal 1s var(--transition-smooth) forwards;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted-grey);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-subtitle.revealed {
  animation: fadeInUp 0.8s var(--transition-smooth) 0.3s forwards;
}

.hero .btn {
  opacity: 0;
  transform: translateY(20px);
}

.hero .btn.revealed {
  animation: fadeInUp 0.8s var(--transition-smooth) 0.5s forwards;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  margin-bottom: 16px;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-muted-grey);
}

/* Problem/Solution Section */
.problem-solution {
  background: var(--color-soft-green);
  padding: 100px 0;
}

.problem-solution-grid {
  display: grid;
  gap: 40px;
}

.problem-list {
  list-style: none;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--color-off-white);
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--color-deep-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-off-white);
}

.problem-content h4 {
  margin-bottom: 8px;
}

.solution-text {
  background: var(--color-off-white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.solution-text h3 {
  margin-bottom: 20px;
}

/* Core Approach Section */
.core-approach {
  background: var(--color-off-white);
  padding: 100px 0;
}

.core-approach-grid {
  display: grid;
  gap: 50px;
  align-items: center;
}

.core-approach-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.core-approach-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.core-approach-content h3 {
  margin-bottom: 20px;
}

/* Services Grid */
.services-overview {
  background: var(--color-off-white);
  padding: 100px 0;
}

.services-grid {
  display: grid;
  gap: 24px;
}

.service-card {
  background: var(--color-off-white);
  border: 1px solid var(--color-soft-green);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 0 3px var(--color-soft-green), var(--shadow-hover);
}

.service-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--color-soft-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-card h4 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-muted-grey);
  margin-bottom: 20px;
}

.service-card .learn-more {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card .learn-more::after {
  content: '→';
  transition: transform 0.3s;
}

.service-card:hover .learn-more::after {
  transform: translateX(4px);
}

/* Trust/Credentials Section */
.trust-credentials {
  background: var(--color-soft-green);
  padding: 80px 0;
}

.trust-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-deep-sage);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-muted-grey);
  margin-top: 8px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.trust-logos img {
  height: 60px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.trust-logos img:hover {
  opacity: 1;
}

/* Testimonials */
.testimonials {
  background: var(--color-off-white);
  padding: 100px 0;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/testimonial-bg-pattern.png');
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s var(--transition-smooth);
}

.testimonial-slide {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-deep-sage);
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-muted-grey);
}

.testimonial-stars {
  color: var(--color-subtle-gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-soft-green);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dot.active {
  background: var(--color-deep-sage);
  transform: scale(1.2);
}

/* Patient Education CTA */
.patient-education-cta {
  background: var(--color-deep-sage);
  padding: 80px 0;
  text-align: center;
}

.patient-education-cta h2 {
  color: var(--color-off-white);
  margin-bottom: 16px;
}

.patient-education-cta p {
  color: var(--color-soft-green);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Quick Links */
.contact-quick-links {
  background: var(--color-off-white);
  padding: 100px 0;
}

.contact-quick-links h2 {
  text-align: center;
  margin-bottom: 50px;
}

.contact-grid {
  display: grid;
  gap: 24px;
}

.contact-card {
  background: var(--color-off-white);
  border: 2px solid var(--color-soft-green);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s var(--transition-smooth);
}

.contact-card:hover {
  background: var(--color-soft-green);
  transform: translateY(-4px);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--color-deep-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-off-white);
}

.contact-card h4 {
  margin-bottom: 8px;
}

.contact-card a,
.contact-card p {
  color: var(--color-muted-grey);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: var(--color-deep-sage);
  color: var(--color-off-white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--color-off-white);
}

.footer-col p,
.footer-col a {
  color: var(--color-soft-green);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 12px;
}

.footer-col a:hover {
  color: var(--color-subtle-gold);
}

.footer-links {
  list-style: none;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-subtle-gold);
  transition: width 0.3s;
}

.footer-links a:hover::after {
  width: 100%;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(248, 248, 248, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--color-subtle-gold);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: var(--color-off-white);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 248, 248, 0.1);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--color-soft-green);
  margin: 0;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--color-muted-grey);
}

/* Page Banner Styles */
.page-banner {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-soft-green) 0%, var(--color-off-white) 100%);
  padding-top: 68px;
}

.page-banner-content {
  text-align: center;
  padding: 40px 20px;
}

.page-banner h1 {
  margin-bottom: 16px;
}

.page-banner p {
  font-size: 1.1rem;
  color: var(--color-muted-grey);
  max-width: 600px;
  margin: 0 auto;
}

/* About Page Specifics */
.practitioner-section {
  padding: 100px 0;
  background: var(--color-off-white);
}

.practitioner-grid {
  display: grid;
  gap: 50px;
  align-items: center;
}

.practitioner-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.practitioner-bio h3 {
  margin-bottom: 20px;
}

.practitioner-bio p {
  color: var(--color-muted-grey);
  margin-bottom: 16px;
}

/* Philosophy Section */
.philosophy-section {
  background: var(--color-soft-green);
  padding: 100px 0;
}

.philosophy-grid {
  display: grid;
  gap: 24px;
}

.philosophy-card {
  background: var(--color-off-white);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s var(--transition-smooth);
}

.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 3px var(--color-soft-green);
}

.philosophy-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--color-soft-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy-card-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-deep-sage);
}

.philosophy-card h4 {
  margin-bottom: 12px;
}

/* Clinic Environment */
.clinic-environment {
  background: var(--color-off-white);
  padding: 100px 0;
}

.clinic-gallery {
  display: grid;
  gap: 20px;
}

.clinic-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.clinic-description h2 {
  margin-bottom: 16px;
}

/* Why Choose Us */
.why-choose-us {
  background: var(--color-deep-sage);
  padding: 100px 0;
}

.why-choose-us h2 {
  color: var(--color-off-white);
  text-align: center;
  margin-bottom: 50px;
}

.why-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(248, 248, 248, 0.1);
  color: var(--color-off-white);
}

.why-list li:first-child {
  border-top: 1px solid rgba(248, 248, 248, 0.1);
}

.why-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--color-subtle-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--color-off-white);
}

/* CTA Block */
.cta-block {
  background: var(--color-soft-green);
  padding: 80px 0;
  text-align: center;
}

.cta-block h2 {
  margin-bottom: 16px;
}

.cta-block p {
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Page */
.services-hero {
  background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-soft-green) 100%);
}

.services-intro {
  background: var(--color-soft-green);
  padding: 60px 0;
  text-align: center;
}

.services-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.services-nav a {
  padding: 10px 20px;
  background: var(--color-off-white);
  border-radius: 30px;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.services-nav a:hover {
  background: var(--color-deep-sage);
  color: var(--color-off-white);
}

.detailed-service {
  padding: 100px 0;
  background: var(--color-off-white);
}

.detailed-service:nth-child(even) {
  background: var(--color-soft-green);
}

.service-detail-grid {
  display: grid;
  gap: 50px;
  align-items: center;
}

.service-detail-content h3 {
  margin-bottom: 20px;
}

.service-detail-content p {
  color: var(--color-muted-grey);
  margin-bottom: 20px;
}

.service-steps {
  list-style: none;
  counter-reset: step;
}

.service-steps li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
}

.service-steps li::before {
  content: counter(step);
  width: 28px;
  height: 28px;
  background: var(--color-deep-sage);
  color: var(--color-off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.service-detail-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

/* Conditions Treated */
.conditions-treated {
  background: var(--color-off-white);
  padding: 100px 0;
}

.conditions-treated h2 {
  text-align: center;
  margin-bottom: 16px;
}

.conditions-treated > .container > p {
  text-align: center;
  color: var(--color-muted-grey);
  margin-bottom: 40px;
}

.conditions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.condition-tag {
  padding: 10px 20px;
  background: var(--color-soft-green);
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--color-deep-sage);
  transition: all 0.3s;
}

.condition-tag:hover {
  background: var(--color-deep-sage);
  color: var(--color-off-white);
  transform: scale(1.05);
}

/* Patient Info Page */
.what-to-expect {
  background: var(--color-off-white);
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  gap: 24px;
}

.step-card {
  background: var(--color-soft-green);
  padding: 30px;
  border-radius: 16px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -12px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: var(--color-deep-sage);
  color: var(--color-off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-card h4 {
  margin-bottom: 12px;
  margin-top: 8px;
}

/* Patient Forms */
.patient-forms {
  background: var(--color-soft-green);
  padding: 80px 0;
}

.forms-list {
  display: grid;
  gap: 16px;
  max-width: 500px;
  margin: 30px auto 0;
}

.form-download {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--color-off-white);
  border-radius: 12px;
  transition: all 0.3s;
}

.form-download:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-card);
}

.form-download-icon {
  width: 48px;
  height: 48px;
  background: var(--color-deep-sage);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-download-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-off-white);
}

.form-download span {
  font-weight: 700;
  color: var(--color-deep-sage);
}

/* FAQ Accordion */
.faq-section {
  background: var(--color-off-white);
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-soft-green);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question h4 {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-deep-sage);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-deep-sage);
  transition: transform 0.3s;
}

.faq-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-smooth);
}

.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--color-muted-grey);
}

/* Contact Page */
.contact-form-section {
  background: var(--color-off-white);
  padding: 100px 0;
}

.contact-form-wrapper {
  display: grid;
  gap: 50px;
}

.contact-form {
  background: var(--color-soft-green);
  padding: 40px;
  border-radius: 16px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-deep-sage);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  background: var(--color-off-white);
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-deep-sage);
  box-shadow: 0 0 0 3px rgba(74, 108, 74, 0.1);
}

.contact-info {
  padding: 20px 0;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-methods {
  list-style: none;
}

.contact-methods li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-soft-green);
}

.contact-methods-icon {
  width: 48px;
  height: 48px;
  background: var(--color-soft-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-methods-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-deep-sage);
}

/* Location Section */
.location-section {
  background: var(--color-soft-green);
  padding: 100px 0;
}

.location-grid {
  display: grid;
  gap: 40px;
}

.location-info {
  background: var(--color-off-white);
  padding: 40px;
  border-radius: 16px;
}

.location-info h3 {
  margin-bottom: 24px;
}

.location-details p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--color-muted-grey);
}

.location-details svg {
  width: 20px;
  height: 20px;
  fill: var(--color-deep-sage);
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
  background: var(--color-off-white);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--color-soft-green) 0%, var(--color-off-white) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted-grey);
}

/* Social Connect */
.social-connect {
  background: var(--color-off-white);
  padding: 80px 0;
  text-align: center;
}

.social-connect h3 {
  margin-bottom: 24px;
}

/* Animations */
@keyframes textReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--transition-smooth);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Tablet Styles */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  
  .container { padding: 0 40px; }
  
  .nav-desktop { display: flex; }
  .header-actions { display: flex; }
  .mobile-menu-btn { display: none; }
  
  .hero h1 { font-size: 3.5rem; }
  .hero-subtitle { font-size: 1.25rem; }
  
  .problem-solution-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  .core-approach-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .practitioner-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-detail-grid.reverse .service-detail-content {
    order: 2;
  }
  
  .service-detail-grid.reverse .service-detail-image {
    order: 1;
  }
  
  .contact-form-wrapper {
    grid-template-columns: 1.5fr 1fr;
  }
  
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  h1 { font-size: 4rem; }
  h2 { font-size: 2.75rem; }
  
  .container { padding: 0 60px; }
  
  .header { height: 80px; }
  .header-inner { padding: 0 60px; }
  
  .logo-text { font-size: 1.75rem; }
  .logo-tagline { font-size: 0.75rem; }
  
  .nav-links { gap: 40px; }
  
  .hero { min-height: 90vh; }
  .hero h1 { font-size: 4.5rem; }
  
  section { padding: 120px 0; }
  
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .philosophy-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Orchid Petal Divider */
.orchid-divider {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.orchid-divider svg {
  width: 60px;
  height: 30px;
  fill: var(--color-soft-green);
}

/* Success Message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.visible {
  display: block;
}

.form-success h3 {
  color: var(--color-deep-sage);
  margin-bottom: 16px;
}

.form-success p {
  color: var(--color-muted-grey);
}

/* Sprout Animation for Form Success */
.sprout-animation {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.sprout-animation svg {
  width: 100%;
  height: 100%;
  fill: var(--color-deep-sage);
}
