/* ============================================
   The Heart Shaman - Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Earthy palette */
  --color-bg: #faf8f5;
  --color-bg-alt: #f3efe9;
  --color-bg-dark: #2c2520;
  --color-text: #3d342e;
  --color-text-light: #7a6e64;
  --color-text-muted: #a99e94;
  --color-heading: #2c2520;

  --color-primary: #6b7c4e;
  --color-primary-dark: #556340;
  --color-primary-light: #e8eddf;
  --color-accent: #c9a96e;
  --color-accent-light: #f5eddb;
  --color-warm: #b87333;
  --color-warm-light: #fdf0e3;

  --color-white: #ffffff;
  --color-border: #e5ddd4;
  --color-shadow: rgba(44, 37, 32, 0.08);

  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #1da851;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: 6rem;
  --container-max: 1200px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 124, 78, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  border-color: var(--color-whatsapp);
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-dark);
  border-color: var(--color-whatsapp-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-nav {
  padding: 0.55rem 1.4rem;
  font-size: 0.85rem;
  background: var(--color-primary);
  color: var(--color-white) !important;
  border-color: var(--color-primary);
}

.btn-nav:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition);
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px var(--color-shadow);
  padding: 0.6rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  transition: height var(--transition);
}

.logo-light {
  display: block;
}

.logo-dark {
  display: none;
}

.navbar.scrolled .logo-light {
  display: none;
}

.navbar.scrolled .logo-dark {
  display: block;
}

.navbar.scrolled .logo-img {
  height: 38px;
}

.nav-right-icons {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.navbar.scrolled .nav-links a {
  color: var(--color-text);
}

.nav-links a:hover {
  color: var(--color-accent);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}

.nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  padding: 0.5rem;
  min-width: 36px;
  z-index: 1001;
  transition: color var(--transition);
}

.navbar.scrolled .nav-phone {
  color: var(--color-text);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--color-text);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 8rem 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #2c2520 0%, #3d4a2f 40%, #4a5a38 70%, #2c2520 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/forest-bg.jpg') center/cover no-repeat;
  opacity: 0.25;
  mix-blend-mode: luminosity;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(107, 124, 78, 0.2), transparent 70%),
    radial-gradient(ellipse at 70% 80%, rgba(201, 169, 110, 0.15), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: stretch;
  text-align: left;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  min-height: 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 0;
  max-width: 100%;
}

.hero-image {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: visible;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: bottom;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Hero Image Section (if used elsewhere) */
.hero-image-section {
  padding: 0;
  background: var(--color-bg);
}

.hero-image-section img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}

.hero-badge {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 3.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 0 1.5rem 0;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

/* Ticker inside hero: under buttons */
.hero .trust-ticker {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0 0 0.5rem 0;
  flex-wrap: wrap;
}

.stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  white-space: nowrap;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-trust {
  display: none;
}

/* Trust Ticker */
.trust-ticker {
  overflow: hidden;
  white-space: nowrap;
  padding: 0.4rem 0;
  margin-top: 1rem;
  background: transparent;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 25s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.ticker-track span::before {
  content: '•';
  opacity: 0.5;
}

.ticker-track span:first-child::before {
  display: none;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
  padding: 5rem 0;
  background: var(--color-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--color-shadow);
  border-color: transparent;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* ============================================
   PERSONAS - "Is This For You?"
   ============================================ */
.personas {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}

.personas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.persona-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 320px;
  align-items: start;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.persona-card:hover {
  box-shadow: 0 16px 48px var(--color-shadow);
}

.persona-card-reverse {
  direction: rtl;
}

.persona-card-reverse > * {
  direction: ltr;
}

.persona-image {
  height: 100%;
  min-height: 350px;
  background-size: cover;
  background-position: center;
}

.persona-img-1 {
  background-image: url('assets/images/shaman-forrest-1.png');
}

.persona-img-2 {
  background-image: url('assets/images/shaman-garden-1.png');
}

.persona-img-3 {
  background-image: url('assets/images/shaman-hut-1.png');
}

.persona-content {
  padding: 2.5rem;
}

.persona-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.persona-content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.persona-content .btn {
  margin-top: 0.5rem;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--color-shadow);
  border-color: transparent;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-meta {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.service-card > p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-pricing {
  list-style: none;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.service-pricing li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--color-text-light);
}

.service-pricing li span:last-child {
  font-weight: 600;
  color: var(--color-heading);
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.services-cta {
  text-align: center;
  margin-top: 3.5rem;
  padding: 3rem;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
}

.services-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.services-cta p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  text-align: center;
  padding: 2rem 2rem;
  flex: 1;
  max-width: 320px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: var(--color-border);
  margin-top: 3.75rem;
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px var(--color-shadow);
}

.testimonial-featured {
  background: #2c2520;
  border-color: transparent;
  color: #fff;
}

.testimonial-featured blockquote {
  color: #fff;
}

.testimonial-featured .testimonial-author strong {
  color: #fff;
}

.testimonial-featured .testimonial-author span {
  color: rgba(255,255,255,0.7);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.testimonial-featured .testimonial-card blockquote,
.testimonial-featured blockquote {
  color: #fff !important;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-heading);
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.testimonial-badge {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--color-accent);
  background: rgba(201, 169, 110, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}

.reviews-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-shadow);
}

.review-stars {
  color: var(--color-accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.review-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.review-source {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-style: normal;
}

/* ============================================
   ABOUT RYAN
   ============================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-content .section-tag {
  margin-bottom: 1.25rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.about-stat {
  text-align: center;
}

.about-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--color-primary);
}

.faq-item[open] {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px var(--color-shadow);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  transition: all var(--transition);
}

.gallery-img:hover {
  transform: scale(1.02);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-map {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
}

.contact-main h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.contact-main > p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.booking-embed {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.booking-embed iframe {
  width: 100%;
  height: 650px;
  border: none;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.contact-card:hover {
  box-shadow: 0 4px 16px var(--color-shadow);
}

.contact-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-card p {
  color: var(--color-text-light);
  font-size: 0.88rem;
}

.contact-detail {
  font-size: 0.82rem !important;
  color: var(--color-text-muted) !important;
  margin-top: 0.25rem;
}

.contact-card .btn {
  margin-top: 0.75rem;
  width: 100%;
  text-align: center;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: var(--section-pad) 0;
  background: var(--color-bg-dark);
  text-align: center;
  color: rgba(255,255,255,0.85);
}

.final-cta h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.final-cta > .container > p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.final-cta-note {
  max-width: 500px;
  margin: 0 auto;
  padding: 1.5rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
}

.final-cta-note p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.final-cta-note p:last-child {
  margin-bottom: 0;
}

.final-cta-note strong {
  color: var(--color-white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 0;
  background: #1f1a17;
  color: rgba(255,255,255,0.5);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.footer-bottom {
  flex-basis: 100%;
  text-align: center;
}

.footer-logo {
  height: 40px;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.footer-brand {
  text-align: left;
}

.footer-brand p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-bottom p {
  font-size: 0.8rem;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  justify-content: flex-start;
}

.footer-social a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-social a:hover {
  color: var(--color-accent);
}

.footer-social svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }
}

.footer-brand p a {
  color: rgba(255,255,255,0.6);
}

.footer-brand p a:hover {
  color: var(--color-accent);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--color-white);
  margin: 5% auto;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-text-light);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-text);
}

.modal-content h2 {
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.modal-content h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.1rem;
}

.modal-content p {
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Exit Intent Modal */
.exit-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.exit-modal-overlay.show {
  display: flex;
}

.exit-modal {
  background: var(--color-white);
  border-radius: 20px;
  padding: 3rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  animation: modalIn 0.4s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.exit-modal h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.exit-modal p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.exit-modal .close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.exit-modal .close-modal:hover {
  background: var(--color-bg-alt);
}

/* Footer Mobile */
@media (max-width: 768px) {
  .footer-content {
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    flex-basis: 100%;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 0.75rem;
  }

  .footer-links {
    flex-basis: 100%;
    justify-content: center;
  }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: all var(--transition);
}

/* AI Chat Widget sits bottom-right; move WhatsApp above it */
.whatsapp-float {
  bottom: 5.5rem !important;   /* 88px — clears the 56px chat bubble + gap */
  right: 1.5rem !important;
  z-index: 99998 !important;   /* just below the chat bubble's 99999 */
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: var(--color-white);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Animation variants */
[data-aos="fade-up"].aos-animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

[data-aos="fade-down"].aos-animate {
  animation: fadeInDown 0.6s ease-out forwards;
}

[data-aos="fade-left"].aos-animate {
  animation: fadeInLeft 0.6s ease-out forwards;
}

[data-aos="fade-right"].aos-animate {
  animation: fadeInRight 0.6s ease-out forwards;
}

[data-aos="zoom-in"].aos-animate {
  animation: zoomIn 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Stagger animations for cards */
.benefits-grid .benefit-card:nth-child(1),
.services-grid .service-card:nth-child(1),
.gallery-grid .gallery-item:nth-child(1) { animation-delay: 0.1s; }
.benefits-grid .benefit-card:nth-child(2),
.services-grid .service-card:nth-child(2),
.gallery-grid .gallery-item:nth-child(2) { animation-delay: 0.2s; }
.benefits-grid .benefit-card:nth-child(3),
.services-grid .service-card:nth-child(3),
.gallery-grid .gallery-item:nth-child(3) { animation-delay: 0.3s; }
.benefits-grid .benefit-card:nth-child(4),
.services-grid .service-card:nth-child(4),
.gallery-grid .gallery-item:nth-child(4) { animation-delay: 0.4s; }

/* Button hover effects */
.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-secondary:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
}

/* Card hover lift */
.benefit-card,
.persona-card,
.service-card,
.testimonial-card,
.contact-card {
  transition: all 0.3s ease;
}

.benefit-card:hover,
.persona-card:hover,
.service-card:hover,
.testimonial-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  /* Desktop/tablet grids */
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .reviews-scroll {
    grid-template-columns: repeat(3, 1fr);
  }

  .personas-grid {
    grid-template-columns: 1fr;
  }

  .persona-card {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    display: grid;
  }

  .review-card:nth-child(n+7) {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 4rem;
  }

  /* Mobile nav: logo left, phone+hamburger right */
  .nav-container {
    justify-content: space-between !important;
  }

  .nav-right-icons {
    display: flex;
    align-items: center;
    gap: 0.15rem;
  }

  .nav-toggle {
    display: flex;
    padding: 0.1rem;
    margin: 0 !important;
    min-width: 38px;
  }

  .nav-phone {
    display: flex;
    padding: 0.1rem;
    margin: 0 !important;
    min-width: 30px;
  }

  /* Consistent hamburger: dark icon when menu is open so it's visible on light panel */
  .nav-toggle.active span {
    background: var(--color-text) !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transition: right var(--transition);
    box-shadow: -4px 0 24px var(--color-shadow);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--color-text) !important;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-links a:hover {
    background: var(--color-primary-light);
  }

  /* Book Now button in mobile nav: full width, consistent with other links */
  .nav-links .btn-nav {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--color-white) !important;
  }

  .nav-links .btn-nav:hover {
    color: var(--color-white) !important;
  }

  /* Hero mobile */
  .hero {
    min-height: 100vh;
    padding: 5.5rem 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: stretch;
    text-align: center;
    gap: 1.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-left {
    order: 1;
    text-align: center;
    align-items: center;
    max-width: min(100%, 26rem);
    margin-left: auto;
    margin-right: auto;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .hero-image {
    order: 2;
    align-self: center;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-top: auto;
  }

  .hero-image img {
    max-height: 500px;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    object-position: center bottom;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
    margin-bottom: 0.875rem;
    letter-spacing: 0.08em;
  }

  .hero h1 {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .hero-image {
    order: 2;
    align-self: center;
    justify-content: flex-end;
    margin-bottom: -32px;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-top: auto;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 1.25rem;
    padding: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .hero-ctas {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0;
    margin-bottom: 1rem;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .hero .trust-ticker {
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-stats {
    justify-content: center;
    display: flex;
    gap: 0.75rem;
    margin: 0 0 2rem 0;
    padding: 0;
    width: 100%;
    flex-wrap: wrap;
  }

  .stat {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    padding: 0;
    background: none;
  }

  .stat-number {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
  }

  /* Trust Ticker mobile */
  .trust-ticker {
    padding: 0.4rem 0;
    margin-top: 0.75rem;
    border-radius: var(--radius-sm);
  }

  .ticker-track {
    animation: ticker 20s linear infinite;
  }

  .ticker-track span {
    font-size: 0.7rem;
    padding: 0 1rem;
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .trust-badge {
    font-size: 0.75rem;
  }

  /* Trust Ticker mobile */
  .trust-ticker {
    padding: 0.5rem 0;
    margin-top: 1rem;
  }

  .ticker-track span {
    font-size: 0.7rem;
    padding: 0 1rem;
  }

  /* Benefits mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Personas mobile */
  .personas-grid {
    grid-template-columns: 1fr;
  }

  .persona-card {
    grid-template-columns: 1fr;
  }

  .persona-card-reverse {
    direction: ltr;
  }

  .persona-image {
    min-height: 200px;
  }

  /* Services mobile */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Steps mobile */
  .steps-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .step-connector {
    display: none;
  }

  /* Testimonials mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Reviews mobile */
  .reviews-scroll {
    grid-template-columns: 1fr;
  }

  /* About mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo {
    max-width: 300px;
    margin: 0 auto;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: auto;
    grid-row: auto;
  }

  /* Contact mobile */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .booking-embed iframe {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-image img {
    max-height: 420px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .final-cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Scroll CTA Banner */
.scroll-cta {
  display: none;
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  z-index: 997;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: slideUp 0.3s ease;
}

.scroll-cta.show {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.scroll-cta p {
  margin: 0;
  font-size: 0.95rem;
}

.scroll-cta a {
  color: var(--color-white);
  font-weight: 600;
  text-decoration: underline;
}

.scroll-cta button {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

@keyframes slideUp {
  from { transform: translateX(-50%) translateY(20px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .scroll-cta {
    bottom: 6rem;
    width: 90%;
    justify-content: center;
  }
}
