:root {
  /* Modern Color Palette - Trustworthy, Calm, Scientific but Warm */
  --wf-primary: #4F46E5; /* Indigo */
  --wf-primary-light: #818CF8;
  --wf-secondary: #EC4899; /* Pink/Rose for compassionate touch */
  --wf-secondary-light: #FBCFE8;
  --wf-bg: #F9FAFB;
  --wf-bg-white: #FFFFFF;
  --wf-bg-soft: #F3F4F6;
  --wf-text-main: #111827;
  --wf-text-muted: #6B7280;
  --wf-border: #E5E7EB;
  --wf-accent: #10B981; /* Green for wellness/success */
  
  /* Spacing & Sizing */
  --wf-container-width: 1200px;
  --wf-radius-sm: 8px;
  --wf-radius-md: 16px;
  --wf-radius-lg: 24px;
  --wf-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --wf-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --wf-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --wf-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--wf-bg);
  color: var(--wf-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
p { margin-bottom: 1.5rem; color: var(--wf-text-muted); font-size: 1.125rem; }

/* Utilities */
.container {
  width: 90%;
  max-width: var(--wf-container-width);
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-primary { color: var(--wf-primary); }
.text-secondary { color: var(--wf-secondary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--wf-radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 1rem;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--wf-primary) 0%, #4338ca 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.6);
}

.btn-secondary {
  background: white;
  color: var(--wf-primary);
  border: 2px solid var(--wf-primary);
}

.btn-secondary:hover {
  background: var(--wf-bg-soft);
  transform: translateY(-2px);
}

.btn-cta {
  background: linear-gradient(135deg, var(--wf-secondary) 0%, #be185d 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.4);
  font-size: 1.1rem;
  padding: 16px 32px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
}

/* Navbar */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--wf-border);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--wf-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--wf-text-main);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--wf-primary);
}

/* Hero Section */
.hero {
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #eff6ff 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-sub {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--wf-secondary);
  margin-bottom: 1rem;
  display: block;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-image-container {
  position: relative;
}

.hero-image-placeholder {
  width: 100%;
  padding-bottom: 100%; /* 1:1 Aspect Ratio */
  background-color: var(--wf-bg-soft);
  border-radius: var(--wf-radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--wf-shadow-xl);
}

.hero-image-placeholder::after {
  content: "🌸 Warm Family Imagery";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--wf-text-muted);
  font-weight: 500;
}

/* Trust Bar */
.trust-bar {
  padding: 3rem 0;
  background: white;
  border-bottom: 1px solid var(--wf-border);
}

.trust-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--wf-text-main);
}

.check-icon {
  background: #ecfdf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.css-check {
  width: 6px;
  height: 10px;
  border: solid #10B981;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: var(--wf-bg);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  border-radius: var(--wf-radius-md);
  padding: 2rem;
  box-shadow: var(--wf-shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--wf-bg-soft);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--wf-shadow-xl);
  border-color: var(--wf-primary-light);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: #e0e7ff;
  color: var(--wf-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.placeholder-icon {
  width: 24px;
  height: 24px;
  background: currentColor;
  border-radius: 4px;
  opacity: 0.5;
}

.card-icon.purple { background: #e0e7ff; color: #4f46e5; }
.card-icon.green { background: #dcfce7; color: #16a34a; }
.card-icon.blue { background: #dbeafe; color: #2563eb; }
.card-icon.pink { background: #fce7f3; color: #db2777; }
.card-icon.orange { background: #ffedd5; color: #ea580c; }

/* Why Choose Us */
.why-us {
  padding: 6rem 0;
  background: white;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--wf-radius-md);
  background: var(--wf-bg);
  transition: background 0.2s;
}

.feature-card:hover {
  background: #f0fdf4; /* Light green tint */
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.feature-icon-wrapper .placeholder-icon {
  width: 20px;
  height: 20px;
}

.logo-mark {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--wf-secondary) 0%, #be185d 100%);
  border-radius: 50%;
  margin-right: 8px;
}

/* CTA Mid Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--wf-primary) 0%, #312e81 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: #e0e7ff;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.25rem;
}

/* FAQ */
.faq {
  padding: 6rem 0;
  background: var(--wf-bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: var(--wf-radius-md);
  box-shadow: var(--wf-shadow-sm);
}

.faq-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--wf-primary);
}

.faq-item p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.footer h2 {
  color: white;
}

.footer p {
  color: #9ca3af;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }

  .trust-grid {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 2.5rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; } /* Simplified nav for mobile wireframe */
  .faq-grid { grid-template-columns: 1fr; }
}
