/* ═══════════════════════════════════════════════════════════════════════════
   FRESH THEME — Light, rounded, friendly. For dental, medspa, landscaping.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── LIGHT MODE OVERRIDES ───────────────────────────────────────────── */
.theme-fresh {
  --color-bg: #FAFBFF;
  --color-surface: #F0F2F8;
  --color-surface-2: #E8EAF2;
  --color-border: rgba(0,0,0,0.06);
  --color-text: #2D3748;
  --color-text-heading: #1A202C;
  --color-text-muted: #718096;
  --color-overlay: rgba(255,255,255,0.9);
}
.theme-fresh .nav { background: rgba(250,251,255,0.85); backdrop-filter: blur(12px); }
.theme-fresh .nav.scrolled { background: rgba(250,251,255,0.95); box-shadow: 0 1px 12px rgba(0,0,0,0.04); }
.theme-fresh .nav__logo { color: var(--color-text-heading); }
.theme-fresh .footer { background: var(--color-text-heading); color: rgba(255,255,255,0.7); }
.theme-fresh .footer__logo { color: #fff; }
.theme-fresh .footer__heading { color: rgba(255,255,255,0.9); }
.theme-fresh .footer__tagline,
.theme-fresh .footer__contact,
.theme-fresh .footer__list a,
.theme-fresh .footer__list li,
.theme-fresh .footer__contact a { color: rgba(255,255,255,0.5); }
.theme-fresh .footer__list a:hover { color: var(--color-primary); }
.theme-fresh .footer__bottom { border-color: rgba(255,255,255,0.08); }
.theme-fresh .footer__bottom-inner { color: rgba(255,255,255,0.35); }

/* ─── HERO: light with floating blobs ────────────────────────────────── */
.hero-fresh {
  position: relative;
  padding: calc(var(--nav-height) + 4rem) 0 6rem;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-fresh__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}
.hero-fresh__blob--1 {
  width: 500px;
  height: 500px;
  background: var(--color-primary);
  top: -10%;
  right: -10%;
}
.hero-fresh__blob--2 {
  width: 400px;
  height: 400px;
  background: var(--color-primary);
  bottom: 10%;
  left: -10%;
  opacity: 0.12;
}
.hero-fresh__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-fresh__inner { grid-template-columns: 1fr 1fr; }
}
.hero-fresh__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero-fresh__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--color-text-heading);
}
.hero-fresh__subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-fresh__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-fresh__trust {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.hero-fresh__card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
  aspect-ratio: 4/3;
}
.hero-fresh__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-fresh__media { display: none; }
@media (min-width: 900px) { .hero-fresh__media { display: block; } }

/* ─── WAVE DIVIDERS ──────────────────────────────────────────────────── */
.wave-divider {
  line-height: 0;
  margin: -1px 0;
}
.wave-divider svg { width: 100%; height: 60px; display: block; }
.wave-divider--flip { transform: scaleY(-1); }

/* ─── STATS ──────────────────────────────────────────────────────────── */
.stats-fresh {
  padding: 3rem 0;
  background: var(--color-surface);
}
.stats-fresh__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-fresh__inner { grid-template-columns: repeat(4, 1fr); }
}
.theme-fresh .stat {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.theme-fresh .stat__value {
  font-size: 2rem;
  color: var(--color-primary);
}

/* ─── SERVICES: rounded elevated cards ───────────────────────────────── */
.services-fresh { padding: calc(var(--space-unit) * 5) 0; }
.services-fresh__grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .services-fresh__grid { grid-template-columns: repeat(2, 1fr); }
}
.theme-fresh .service-card {
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s var(--ease);
}
.theme-fresh .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.theme-fresh .service-card::before { display: none; }
.theme-fresh .service-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(var(--color-primary-rgb), 0.1);
  color: var(--color-primary);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

/* ─── ABOUT ──────────────────────────────────────────────────────────── */
.about-fresh { padding: calc(var(--space-unit) * 5) 0; }
.about-fresh__inner { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .about-fresh__inner { grid-template-columns: 1fr 1fr; } }
.about-fresh__text {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.theme-fresh .value-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ─── TESTIMONIALS: speech bubble cards ──────────────────────────────── */
.testimonials-fresh {
  padding: calc(var(--space-unit) * 5) 0;
  background: var(--color-surface);
}
.testimonials-fresh__grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .testimonials-fresh__grid { grid-template-columns: repeat(3, 1fr); }
}
.theme-fresh .testimonial-card {
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: relative;
}
.theme-fresh .testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 2rem;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 4px 4px 8px rgba(0,0,0,0.02);
}
.theme-fresh .testimonial-card__stars { color: #F59E0B; }
.theme-fresh .testimonial-card__author { margin-top: 1rem; }

/* ─── PROCESS: colorful step cards ───────────────────────────────────── */
.process-fresh { padding: calc(var(--space-unit) * 5) 0; }
.process-fresh__grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .process-fresh__grid { grid-template-columns: repeat(4, 1fr); }
}
.theme-fresh .process-step {
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.theme-fresh .process-step__num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), rgba(var(--color-primary-rgb),0.7));
  color: #fff;
  border-radius: 14px;
  margin: 0 auto 1.25rem;
  font-size: 1rem;
}

/* ─── CTA: gradient card ─────────────────────────────────────────────── */
.cta-fresh { padding: calc(var(--space-unit) * 3) 0 calc(var(--space-unit) * 5); }
.cta-fresh__card {
  background: linear-gradient(135deg, var(--color-primary), rgba(var(--color-primary-rgb),0.8));
  border-radius: 28px;
  padding: calc(var(--space-unit) * 4) calc(var(--space-unit) * 3);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-fresh__card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-fresh__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.cta-fresh__subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  position: relative;
}
.cta-fresh__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}
.btn--white {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid #fff;
}
.btn--white:hover {
  background: rgba(255,255,255,0.9);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn--ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--ghost-white:hover {
  border-color: #fff;
  color: #fff;
}

/* ─── FRESH AREAS ────────────────────────────────────────────────────── */
.theme-fresh .area-tag {
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
