/* ============================================
   Aatreya Ayurveda - Main Stylesheet
   Design: Refined Natural / Luxury Wellness
   ============================================ */

:root {
  --green-deep: #1b4332;
  --green-mid: #2d6a4f;
  --green-light: #40916c;
  --green-pale: #d8f3dc;
  --green-mist: #f0faf2;
  --gold: #c9a84c;
  --gold-light: #f0d98c;
  --gold-pale: #fef9ec;
  --text-dark: #1a2019;
  --text-body: #3d4a3d;
  --text-muted: #6b7c6b;
  --white: #ffffff;
  --off-white: #fafdf8;
  --border: #d4e6d4;
  --shadow: rgba(27, 67, 50, 0.12);
  --shadow-lg: rgba(27, 67, 50, 0.2);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --container: 1200px;
}

/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text-body); background: var(--white); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-light); text-decoration: none; }
a:hover { color: var(--green-deep); }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* === Buttons === */
.btn, .btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary, .btn {
  background: linear-gradient(135deg, var(--green-deep), var(--green-light));
  color: var(--white);
}
.btn-primary:hover, .btn:hover {
  background: linear-gradient(135deg, var(--green-light), var(--green-deep));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  border-color: var(--green-light);
  color: var(--green-light);
}
.btn-outline:hover { background: var(--green-light); color: white; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a07830);
  color: white;
  border: none;
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }

/* === Top Bar === */
.topbar {
  background: var(--green-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.topbar a:hover { color: var(--gold-light); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.wa-top { background: #25d366; color: white !important; padding: 3px 10px; border-radius: 20px; font-weight: 600; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px var(--shadow);
  transition: all var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.logo a { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { font-size: 2rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--green-deep); line-height: 1.1; }
.logo-tag { font-size: 0.68rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }

/* Nav */
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav .nav-list > li { position: relative; }
.main-nav .nav-list > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 8px;
  transition: all var(--transition);
}
.main-nav .nav-list > li > a:hover { background: var(--green-mist); color: var(--green-deep); }

/* Dropdown */
.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  z-index: 100;
  padding: 8px;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--text-body);
  border-radius: 6px;
  transition: all var(--transition);
}
.dropdown li a:hover { background: var(--green-mist); color: var(--green-deep); padding-left: 18px; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.btn-consult {
  background: linear-gradient(135deg, var(--green-deep), var(--green-light));
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-consult:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 18px var(--shadow-lg); color: white; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-deep); transition: all var(--transition); border-radius: 2px; }

/* === Hero Section === */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 50%, #52b788 100%);
  overflow: hidden;
  padding: 100px 0 80px;
  color: white;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 { color: white; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 2rem; font-family: var(--font-serif); color: var(--gold-light); }
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 320px;
  height: 380px;
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: white;
}
.hero-card.card-main { width: 280px; top: 40px; left: 20px; }
.hero-card.card-mini { width: 180px; top: 0; right: 0; padding: 16px; }
.hero-card.card-badge { width: 160px; bottom: 20px; right: 10px; padding: 14px; text-align: center; }
.hero-card h3 { font-size: 1rem; margin-bottom: 8px; }
.herb-icon { font-size: 2.5rem; margin-bottom: 10px; }
.card-stat { font-size: 2rem; font-weight: 700; color: var(--gold-light); font-family: var(--font-serif); }
.card-stat-label { font-size: 0.75rem; opacity: 0.8; }

/* === Breadcrumb === */
.breadcrumb-wrap {
  background: var(--green-mist);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.85rem;
}
.breadcrumb-list li a { color: var(--text-muted); }
.breadcrumb-list li a:hover { color: var(--green-light); }
.breadcrumb-list li.current { color: var(--text-dark); font-weight: 500; }
.bc-sep { color: var(--text-muted); margin: 0 2px; }

/* === Page Hero (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  color: white;
  padding: 60px 0 50px;
  text-align: center;
}
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero .subtitle { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 650px; margin: 0 auto; }
.page-hero-label { display: inline-block; background: rgba(201,168,76,0.2); color: var(--gold-light); padding: 4px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; border: 1px solid rgba(201,168,76,0.3); }

/* === Treatment Cards === */
.treatments-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.treatment-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.treatment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.treatment-card:hover { border-color: var(--green-light); transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow-lg); }
.treatment-card:hover::before { transform: scaleX(1); }
.tc-icon { font-size: 2.2rem; margin-bottom: 16px; }
.tc-name { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.tc-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.tc-link { font-size: 0.88rem; font-weight: 600; color: var(--green-light); display: inline-flex; align-items: center; gap: 5px; }
.tc-link:hover { color: var(--green-deep); gap: 8px; }

/* === Why Choose Us === */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
.why-card {
  background: var(--green-mist);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); }

/* === Testimonials === */
.testimonials-section { background: var(--green-deep); color: white; }
.testimonials-section .section-label { color: var(--gold-light); }
.testimonials-section .section-title { color: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.stars { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.9); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #52b788);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 1rem;
}
.author-name { font-weight: 600; color: white; font-size: 0.92rem; }
.author-detail { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

/* === FAQ === */
.faq-list { max-width: 780px; margin: 48px auto 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: white;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--green-mist); }
.faq-question.open { background: var(--green-mist); color: var(--green-deep); }
.faq-arrow { font-size: 1.1rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; }

/* === CTA Banner === */
.cta-section {
  background: linear-gradient(135deg, var(--gold-pale), #fffdf4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { font-size: 1.8rem; color: var(--green-deep); }
.cta-text p { color: var(--text-muted); }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* === Location Grid === */
.location-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-top: 40px; }
.location-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  transition: all var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.location-card:hover { border-color: var(--green-light); background: var(--green-mist); color: var(--green-deep); transform: translateY(-2px); }
.location-card .loc-icon { font-size: 1.5rem; margin-bottom: 8px; }

/* === Content Page Layout === */
.content-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; padding: 60px 0; }
.content-main h2 { margin-top: 40px; margin-bottom: 16px; }
.content-main h2:first-child { margin-top: 0; }
.content-main ul { margin: 16px 0 20px 24px; list-style: disc; }
.content-main ul li { margin-bottom: 8px; font-size: 0.95rem; color: var(--text-muted); }
.content-main p { color: var(--text-muted); }
.benefits-list { list-style: none !important; margin-left: 0 !important; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.benefits-list li { background: var(--green-mist); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; font-size: 0.88rem; color: var(--text-dark); display: flex; align-items: flex-start; gap: 8px; }
.benefits-list li::before { content: '✓'; color: var(--green-light); font-weight: 700; flex-shrink: 0; }

/* === Sidebar === */
.sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.sidebar-card-header {
  background: linear-gradient(135deg, var(--green-deep), var(--green-light));
  color: white;
  padding: 18px 22px;
}
.sidebar-card-header h3 { font-size: 1rem; color: white; }
.sidebar-card-header p { font-size: 0.82rem; opacity: 0.8; margin-top: 4px; }
.sidebar-card-body { padding: 22px; }
.sidebar-contact-form .form-field { margin-bottom: 14px; }
.sidebar-contact-form input,
.sidebar-contact-form select,
.sidebar-contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  transition: border-color var(--transition);
  outline: none;
  background: var(--off-white);
}
.sidebar-contact-form input:focus,
.sidebar-contact-form select:focus,
.sidebar-contact-form textarea:focus { border-color: var(--green-light); background: white; }
.sidebar-contact-form .btn { width: 100%; justify-content: center; }

.quick-links li { border-bottom: 1px solid var(--border); }
.quick-links li:last-child { border-bottom: none; }
.quick-links li a {
  display: block;
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--text-body);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.quick-links li a::before { content: '→'; color: var(--green-light); }
.quick-links li a:hover { color: var(--green-deep); padding-left: 5px; }

.contact-details li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.contact-details li:last-child { border-bottom: none; }
.contact-details .ci-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-details a { color: var(--green-light); }

/* === Process Steps === */
.process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; position: relative; }
.process-step {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}
.step-number {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-light));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-serif);
  margin: 0 auto 16px;
}
.process-step h3 { margin-bottom: 10px; font-size: 1rem; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); }

/* === Related Sections === */
.location-treatment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 32px; }
.lt-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--text-body);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.lt-card:hover { border-color: var(--green-light); background: var(--green-mist); color: var(--green-deep); }
.lt-card::before { content: '📍'; }

/* === Contact Form (full page) === */
.contact-form-wrap { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.contact-form .form-field { margin-bottom: 20px; }
.contact-form label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  transition: border-color var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--green-light); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.form-success { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; padding: 16px; border-radius: 8px; font-weight: 500; margin-bottom: 20px; display: none; }
.form-success.show { display: block; }

/* === Success Stories === */
.story-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: flex-start;
}
.story-number {
  width: 60px; height: 60px;
  background: var(--green-mist);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-deep);
  flex-shrink: 0;
}

/* === About Info === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-mist), var(--green-pale));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--border);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 8px 24px var(--shadow);
  text-align: center;
}
.about-badge strong { display: block; font-family: var(--font-serif); font-size: 1.8rem; color: var(--green-deep); }
.about-badge span { font-size: 0.78rem; color: var(--text-muted); }

/* === Footer === */
.site-footer { background: #0d2318; color: rgba(255,255,255,0.75); }
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: 14px; }
.footer-col p { font-size: 0.88rem; line-height: 1.75; }
.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 600; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-sans); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-stats { display: flex; gap: 24px; margin: 20px 0; }
.footer-stats .stat { text-align: center; }
.footer-stats .stat strong { display: block; font-size: 1.4rem; font-family: var(--font-serif); color: var(--gold-light); }
.footer-stats .stat span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--green-light); color: white; }
.contact-info .ci-item { font-size: 0.86rem; margin-bottom: 10px; color: rgba(255,255,255,0.65); }
.contact-info .ci-item a { color: rgba(255,255,255,0.65); }
.contact-info .ci-item a:hover { color: var(--green-light); }
.btn-wa-footer {
  display: block;
  background: #25d366;
  color: white;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 14px;
  transition: opacity var(--transition);
}
.btn-wa-footer:hover { opacity: 0.85; color: white; }
.btn-consult-footer {
  display: block;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  color: white;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: opacity var(--transition);
}
.btn-consult-footer:hover { opacity: 0.85; color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  font-size: 0.82rem;
}
.footer-bottom-inner { text-align: center; }
.footer-links { margin: 8px 0; }
.footer-links a { color: rgba(255,255,255,0.5); margin: 0 6px; }
.footer-links a:hover { color: var(--green-light); }
.copy { color: rgba(255,255,255,0.35); margin-top: 6px; }

/* === WhatsApp Float === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  color: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* === Utilities === */
.bg-mist { background: var(--green-mist); }
.bg-dark { background: var(--green-deep); }
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.tag { display: inline-block; background: var(--green-pale); color: var(--green-deep); padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.gold-accent { color: var(--gold); }

/* === Sitemap Page === */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 32px; margin-top: 40px; }
.sitemap-section h3 { font-size: 1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--border); text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--font-sans); }
.sitemap-section ul li { margin-bottom: 6px; }
.sitemap-section ul li a { font-size: 0.87rem; color: var(--text-muted); transition: color var(--transition); }
.sitemap-section ul li a:hover { color: var(--green-light); }

/* === Responsive === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .main-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; z-index: 999; flex-direction: column; padding: 80px 24px 40px; overflow-y: auto; }
  .main-nav.open { display: flex; }
  .main-nav .nav-list { flex-direction: column; gap: 4px; width: 100%; }
  .main-nav .nav-list > li > a { font-size: 1.05rem; padding: 14px 16px; }
  .has-dropdown .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--green-mist); padding: 8px; margin-top: 4px; border-radius: 8px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; }
  .topbar-left, .topbar-right { gap: 10px; }
  .hero-stats { gap: 20px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .benefits-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-top { padding: 50px 0 40px; }
  .story-card { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .topbar { display: none; }
}

/* === Print === */
@media print {
  .topbar, .site-header, .site-footer, .whatsapp-float, .sidebar-card, .cta-section { display: none; }
  body { font-size: 12pt; }
}
