/* ============================================
   KAAYA WELLNESS — Main Stylesheet
   Warm, professional, feminine-friendly
   ============================================ */

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

/* CSS Variables */
:root {
  --bg-primary: #FAFAF8;
  --bg-secondary: #F0EDE8;
  --bg-tertiary: #E8E3DC;
  --accent: #7A9E87;
  --accent-dark: #4A7C59;
  --accent-light: #B8D4C2;
  --text-primary: #2C2C2C;
  --text-secondary: #6B6B6B;
  --text-light: #9A9A9A;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --white: #FFFFFF;
  --border: #E0DAD3;
  --shadow: rgba(74, 124, 89, 0.08);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 24px;
  --transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.3; color: var(--text-primary); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
p { color: var(--text-secondary); margin-bottom: 1rem; font-size: 1.05rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); font-style: italic; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transition: var(--transition);
}
.nav-links a:hover { color: var(--accent-dark); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--whatsapp);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 500;
  display: flex; align-items: center; gap: 0.4rem;
  transition: var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--whatsapp-dark) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text-primary); transition: var(--transition); display: block; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 60%, #DDD8D0 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(122,158,135,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(122,158,135,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(122,158,135,0.12);
  border: 1px solid rgba(122,158,135,0.3);
  color: var(--accent-dark);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '✦'; }
.hero-title { margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--accent-dark); }
.hero-subtitle {
  font-size: 1.15rem; color: var(--text-secondary);
  margin-bottom: 2rem; max-width: 480px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero-trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; color: var(--text-secondary); font-weight: 500;
}
.hero-trust-item::before { content: '✓'; color: var(--accent); font-weight: 700; }
.hero-image-wrap {
  position: relative;
  background: linear-gradient(145deg, var(--bg-secondary), var(--bg-tertiary));
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(74,124,89,0.15);
}
.hero-image-placeholder {
  font-family: var(--font-heading);
  font-size: 1.1rem; color: var(--text-secondary);
  text-align: center; padding: 2rem;
  font-style: italic;
}
.hero-float-card {
  position: absolute; bottom: 2rem; left: -2rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.85rem;
}
.hero-float-card strong { display: block; color: var(--text-primary); font-weight: 600; }
.hero-float-card span { color: var(--text-secondary); }
.hero-float-icon { font-size: 1.8rem; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--accent-dark);
  padding: 1.5rem 2rem;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 2rem 4rem;
}
.trust-bar-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 500;
}
.trust-bar-item .icon { font-size: 1.2rem; }

/* ============================================
   SECTION BASE
   ============================================ */
.section { padding: 6rem 2rem; }
.section-alt { background: var(--bg-secondary); }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.8rem; font-weight: 600;
  color: var(--accent); margin-bottom: 0.8rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 580px; margin-bottom: 3rem; }
.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem; border-radius: 50px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  cursor: pointer; border: none; transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent-dark); color: white;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,124,89,0.3); }
.btn-whatsapp {
  background: var(--whatsapp); color: white;
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.btn-outline {
  background: transparent; color: var(--accent-dark);
  border: 2px solid var(--accent-dark);
}
.btn-outline:hover { background: var(--accent-dark); color: white; transform: translateY(-2px); }

/* ============================================
   DIFFERENTIATOR SECTION
   ============================================ */
.diff-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.diff-content { max-width: 520px; }
.diff-points { display: flex; flex-direction: column; gap: 1.5rem; }
.diff-point {
  display: flex; gap: 1rem;
  padding: 1.2rem; border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.diff-point:hover { border-color: var(--accent-light); box-shadow: 0 4px 16px var(--shadow); transform: translateX(4px); }
.diff-point-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(122,158,135,0.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.diff-point-text h4 { font-size: 1rem; margin-bottom: 0.2rem; font-family: var(--font-body); font-weight: 600; }
.diff-point-text p { margin: 0; font-size: 0.9rem; }

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0); transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: var(--accent-light); box-shadow: 0 16px 48px var(--shadow); transform: translateY(-4px); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 1rem; }
.service-duration { font-size: 0.8rem; color: var(--accent-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 2.5rem; left: calc(16.67% + 1rem); right: calc(16.67% + 1rem);
  height: 2px; background: linear-gradient(90deg, var(--accent-light), var(--accent), var(--accent-light));
}
.step-card { text-align: center; padding: 2rem 1.5rem; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent-dark); color: white;
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(74,124,89,0.3);
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.8rem;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: 0 8px 32px var(--shadow); }
.testimonial-stars { color: #F4A940; font-size: 1rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; font-style: italic; margin-bottom: 1rem; color: var(--text-primary); }
.testimonial-author { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }
.testimonial-placeholder {
  background: var(--bg-secondary);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  text-align: center;
}
.testimonial-placeholder p { font-size: 0.9rem; color: var(--text-light); margin: 0; font-style: italic; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #3a6147 100%);
  padding: 6rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.btn-white { background: white; color: var(--accent-dark); }
.btn-white:hover { background: var(--bg-secondary); transform: translateY(-2px); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1E1E1E; color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .nav-logo { color: white; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { color: white; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.9rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--accent-light); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; margin: 0; }
.footer-bottom a { color: var(--accent-light); }

/* ============================================
   STICKY WHATSAPP (Mobile)
   ============================================ */
.sticky-wa {
  display: none;
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  background: var(--whatsapp); color: white;
  width: 60px; height: 60px; border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}
.sticky-wa:hover { background: var(--whatsapp-dark); transform: scale(1.1); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  text-align: center;
}
.page-hero p { max-width: 600px; margin: 1rem auto 0; font-size: 1.15rem; }

/* ============================================
   BLOG
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px var(--shadow); }
.blog-card-img {
  height: 180px; background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); font-weight: 600; margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.blog-card h3 a:hover { color: var(--accent-dark); }
.blog-card p { font-size: 0.88rem; margin-bottom: 1rem; }
.blog-meta { font-size: 0.8rem; color: var(--text-light); }

/* Article page */
.article-wrap { max-width: 740px; margin: 0 auto; padding: 4rem 2rem; }
.article-wrap h1 { margin-bottom: 1.5rem; }
.article-wrap h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; }
.article-wrap p { margin-bottom: 1.2rem; line-height: 1.8; }
.article-cta {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center; margin-top: 3rem;
}

/* ============================================
   TRUST PAGE
   ============================================ */
.trust-sections { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 3rem; }
.trust-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.trust-block h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.trust-checklist { display: flex; flex-direction: column; gap: 0.8rem; }
.trust-checklist li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.95rem; color: var(--text-secondary);
}
.trust-checklist li::before { content: '✓'; color: var(--accent-dark); font-weight: 700; margin-top: 2px; flex-shrink: 0; }
.faq-list { display: flex; flex-direction: column; gap: 1.2rem; }
.faq-item { border-bottom: 1px solid var(--border); padding-bottom: 1.2rem; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-item h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-primary); }
.faq-item p { font-size: 0.9rem; margin: 0; }

/* Services page */
.services-table-wrap { overflow-x: auto; }
.services-table { width: 100%; border-collapse: collapse; }
.services-table th {
  background: var(--accent-dark); color: white;
  padding: 1rem 1.2rem; text-align: left; font-weight: 500; font-size: 0.9rem;
}
.services-table td { padding: 1rem 1.2rem; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.services-table tr:last-child td { border-bottom: none; }
.services-table tr:hover td { background: var(--bg-secondary); }
.price-tag { color: var(--accent-dark); font-weight: 700; }
.services-note {
  background: rgba(122,158,135,0.08); border: 1px solid rgba(122,158,135,0.2);
  border-radius: var(--radius); padding: 1.2rem 1.5rem; margin-top: 1.5rem;
  font-size: 0.9rem; color: var(--text-secondary);
}

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-primary { background: var(--accent-dark); border-radius: var(--radius-lg); padding: 2.5rem; color: white; text-align: center; }
.contact-primary h3 { color: white; margin-bottom: 0.5rem; }
.contact-primary p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.contact-secondary { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon { font-size: 1.3rem; margin-top: 2px; }
.contact-info-item h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.contact-info-item p { font-size: 0.9rem; margin: 0; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--text-primary); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--white);
  transition: var(--transition); color: var(--text-primary);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(122,158,135,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fade-up { animation: fadeUp 0.6s ease forwards; }
.animate-fade-in { animation: fadeIn 0.8s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image-wrap { display: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 1.2rem; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--bg-primary); padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .sticky-wa { display: flex; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
