:root {
  --primary-bg: #f0faf4;
  --secondary-bg: #d1e8d1;
  --elevated-surface: rgba(255, 255, 255, 0.08);
  --primary-accent: #3fa34d;
  --secondary-accent: #6fcf97;
  --highlight-accent: #f3e79b;
  --primary-text: #1a2e1b;
  --secondary-text: #4c6f50;
  --muted-text: #7aa07a;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 2px 8px rgba(26, 46, 27, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 46, 27, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 46, 27, 0.1);
  --shadow-glow: 0 4px 20px rgba(63, 163, 77, 0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --max-width: 1320px;
  --header-height: 80px;
  --font-headline: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--primary-text);
  background-color: var(--primary-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(240, 250, 244, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(240, 250, 244, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary-accent);
  z-index: 1001;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-main a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--secondary-text);
  position: relative;
  padding: 4px 0;
}

.nav-main a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-accent);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-main a:hover {
  color: var(--primary-accent);
}

.nav-main a:hover::after,
.nav-main a.active::after {
  width: 100%;
}

.nav-main a.active {
  color: var(--primary-accent);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-accent), #4ab85a);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-secondary:hover {
  background: rgba(63, 163, 77, 0.08);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 20px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
  border-radius: 12px;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--primary-bg) 0%, #e4f5e8 40%, var(--secondary-bg) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(111, 207, 151, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(243, 231, 155, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(63, 163, 77, 0.1);
  border: 1px solid rgba(63, 163, 77, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-accent);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.15;
  color: var(--primary-text);
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--primary-accent);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--highlight-accent);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.7;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-text);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-accent);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--muted-text);
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
}

.hero-floating-card.card-top {
  top: -20px;
  right: -30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-floating-card.card-bottom {
  bottom: 30px;
  left: -40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-icon.green {
  background: rgba(63, 163, 77, 0.15);
}

.floating-icon.yellow {
  background: rgba(243, 231, 155, 0.5);
}

.floating-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-text);
}

.floating-text span {
  font-size: 0.8rem;
  color: var(--muted-text);
}

/* SECTIONS */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, var(--primary-bg) 0%, #e8f5eb 50%, var(--primary-bg) 100%);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(63, 163, 77, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--primary-text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--secondary-text);
  line-height: 1.7;
}

/* SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(63, 163, 77, 0.12), rgba(111, 207, 151, 0.12));
}

.service-card h3 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary-text);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--secondary-text);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-accent);
}

.service-link:hover {
  gap: 10px;
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/6;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
}

.about-image-badge strong {
  display: block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-accent);
}

.about-image-badge span {
  font-size: 0.85rem;
  color: var(--secondary-text);
}

.about-content h2 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  color: var(--secondary-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary-text);
}

.about-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(63, 163, 77, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* PROCESS STEPS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-accent), var(--primary-accent), var(--secondary-accent));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  color: var(--white);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
}

.process-step h3 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-text);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--secondary-text);
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #f0c040;
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--secondary-text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-bg), var(--secondary-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-accent);
}

.testimonial-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-text);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--muted-text);
}

/* CTA SECTION */
.cta-section {
  padding: 100px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-accent), #4ab85a, var(--secondary-accent));
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-box p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-box .btn {
  background: var(--white);
  color: var(--primary-accent);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cta-box .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--secondary-text);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(63, 163, 77, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-text);
  margin-bottom: 2px;
}

.contact-detail span {
  font-size: 0.9rem;
  color: var(--secondary-text);
}

.contact-form-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--primary-text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--secondary-bg);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--primary-text);
  background: var(--white);
  transition: var(--transition-smooth);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(63, 163, 77, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* FOOTER */
.site-footer {
  background: var(--primary-text);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--secondary-accent);
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--primary-accent);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col ul li a:hover {
  color: var(--secondary-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
  color: var(--secondary-accent);
}

/* PAGE HERO (Inner pages) */
.page-hero {
  padding: calc(var(--header-height) + 60px) 0 60px;
  background: linear-gradient(165deg, var(--primary-bg) 0%, #e4f5e8 40%, var(--secondary-bg) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(111, 207, 151, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--primary-text);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--secondary-text);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted-text);
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb a {
  color: var(--primary-accent);
}

/* LEGAL PAGES */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.legal-content h2 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--primary-text);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary-text);
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--secondary-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul li {
  list-style: disc;
  font-size: 0.95rem;
  color: var(--secondary-text);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-content .last-updated {
  font-size: 0.85rem;
  color: var(--muted-text);
  font-style: italic;
  margin-bottom: 32px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-text);
  position: relative;
  transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--primary-text);
  transition: var(--transition-smooth);
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  bottom: -7px;
}

.mobile-menu-toggle.active .hamburger {
  background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 46, 27, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--primary-bg);
  z-index: 1000;
  padding: 100px 32px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--primary-text);
  border-bottom: 1px solid var(--secondary-bg);
}

.mobile-nav a:hover {
  color: var(--primary-accent);
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

/* LEAF PARTICLES */
.leaf-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.leaf {
  position: absolute;
  opacity: 0.15;
  font-size: 1.2rem;
  animation: leafFloat linear infinite;
}

@keyframes leafFloat {
  0% {
    transform: translateY(-10vh) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.15;
  }
  90% {
    opacity: 0.15;
  }
  100% {
    transform: translateY(110vh) rotate(360deg) translateX(100px);
    opacity: 0;
  }
}

/* SERVICES PAGE */
.services-detail-grid {
  display: grid;
  gap: 80px;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content h3 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--primary-text);
  margin-bottom: 16px;
}

.service-detail-content p {
  font-size: 0.95rem;
  color: var(--secondary-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-detail-content ul {
  margin-bottom: 24px;
}

.service-detail-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--secondary-text);
}

.service-detail-content ul li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(63, 163, 77, 0.12);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* PRICING CARDS */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary-accent);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  color: var(--white);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary-text);
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary-accent);
  margin-bottom: 4px;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted-text);
}

.pricing-card .price-desc {
  font-size: 0.85rem;
  color: var(--muted-text);
  margin-bottom: 24px;
}

.pricing-card ul {
  margin-bottom: 28px;
  text-align: left;
}

.pricing-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--secondary-text);
}

.pricing-card ul li .check-icon {
  color: var(--primary-accent);
  font-weight: 700;
}
/* ENDFILE */

<!-- FILE: responsive.css -->
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-inner {
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .nav-main,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrapper {
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-floating-card.card-top {
    right: -10px;
    top: -10px;
  }

  .hero-floating-card.card-bottom {
    left: -10px;
    bottom: 20px;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 60px 30px;
  }

  .cta-box h2 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat-number {
    font-size: 1.4rem;
  }

  .cta-box h2 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }
}
/* ENDFILE */

<!-- FILE: animations.css -->
/* FADE IN ON SCROLL */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* STAGGERED ANIMATION */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* HERO ENTRANCE */
.hero-content {
  animation: heroSlideIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-visual {
  animation: heroSlideIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FLOATING CARDS */
.hero-floating-card.card-top {
  animation: floatUp 4s ease-in-out infinite;
}

.hero-floating-card.card-bottom {
  animation: floatUp 4s ease-in-out 1s infinite;
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* PULSE */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* PARALLAX LAYER */
.parallax-layer {
  will-change: transform;
}

/* SMOOTH ENTRANCE FOR MOBILE NAV */
.mobile-nav a {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.mobile-nav.active a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav.active a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.active a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.active a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.active a:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.active a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.active a:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav.active a:nth-child(7) { transition-delay: 0.35s; }

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
  }
}
/* ENDFILE */

<!-- FILE: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta name="description" content="Mobile Plant Hospital — Expert plant care, delivered to your door. Diagnose, treat, and revive your beloved plants with our professional in-home services.">
  <title>Mobile Plant Hospital — Bring Your Plants Back to Life</title>
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap" rel="stylesheet">
  <link rel="stylesheet" href="style.css">
  <link rel="stylesheet" href="responsive.css">
  <link rel="stylesheet" href="animations.css">
</head>
<body>

  <!-- LEAF PARTICLES -->
  <div class="leaf-particles" aria-hidden="true" id="leafParticles"></div>

  <!-- HEADER -->
  <header class="site-header" id="siteHeader">
    <div class="header-inner">
      <a href="index.html" class="logo" aria-label="Mobile Plant Hospital home page">
        <span class="logo-icon" aria-hidden="true">🌿</span>
        Mobile Plant Hospital
      </a>
      <nav class="nav-main" aria-label="Main navigation">
        <a href="index.html" class="active">Home</a>
        <a href="about.html">About</a>
        <a href="services.html">Services</a>
        <a href="contact.html">Contact</a>
        <a href="terms.html">Legal</a>
      </nav>
      <a href="contact.html" class="btn btn-primary header-cta">Book Visit</a>
      <button class="mobile-menu-toggle" id="mobileMenuToggle" aria-label="Toggle navigation menu" aria-expanded="false">
        <span class="hamburger"></span>
      </button>
    </div>
  </header>

  <!-- MOBILE NAV -->
  <div class="mobile-nav-overlay" id="mobileNavOverlay"></div>
  <nav class="mobile-nav" id="mobileNav" aria-label="Mobile navigation">
    <a href="index.html">Home</a>
    <a href="about.html">About</a>
    <a href="services.html">Services</a>
    <a href="contact.html">Contact</a>
    <a href="terms.html">Terms of Service</a>
    <a href="privacy.html">Privacy Policy</a>
    <a href="contact.html" class="btn btn-primary">Book Visit</a>
  </nav>

  <!-- HERO -->
  <section class="hero" id="hero">
    <div class="hero-inner">
      <div class="hero-content">
        <div class="hero-badge">🌱 Trusted by 2,000+ Plant Parents</div>
        <h1 class="hero-title">Bring Your Plants <span class="highlight">Back to Life</span></h1>
        <p class="hero-subtitle">Expert plant care, delivered to your door. Our certified plant doctors diagnose, treat, and nurture your green companions with love and expertise.</p>
        <div class="hero-cta">
          <a href="contact.html" class="btn btn-primary btn-lg">Book Now</a>
          <a href="services.html" class="btn btn-secondary btn-lg">Learn More</a>
        </div>
        <div class="hero-stats">
          <div class="hero-stat">
            <div class="hero-stat-number">2,500+</div>
            <div class="hero-stat-label">Plants Treated</div>
          </div>
          <div class="hero-stat">
            <div class="hero-stat-number">98%</div>
            <div class="hero-stat-label">Recovery Rate</div>
          </div>
          <div class="hero-stat">
            <div class="hero-stat-number">5★</div>
            <div class="hero-stat-label">Avg. Rating</div>
          </div>
        </div>
      </div>
      <div class="hero-visual">
        <div class="hero-image-wrapper">
          <img src="https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?w=800&q=80" alt="Plant doctor carefully tending to healthy green plants in a bright sunlit indoor garden room" loading="eager" width="800" height="1000">
        </div>
        <div class="hero-floating-card card-top">
          <div class="floating-icon green" aria-hidden="true">🩺</div>
          <div class="floating-text">
            <strong>Diagnosis Complete</strong>
            <span>Your Monstera is thriving!</span>
          </div>
        </div>
        <div class="hero-floating-card card-bottom">
          <div class="floating-icon yellow" aria-hidden="true">☀️</div>
          <div class="floating-text">
            <strong>Care Tip</strong>
            <span>Move to indirect sunlight</span>
          </div>
        </div>
      </div>
    </div>
  </section>

  <!-- SERVICES -->
  <section class="section" id="services">
    <div class="container">
      <div class="section-header fade-in">
        <span class="section-label">🌿 Our Services</span>
        <h2 class="section-title">Everything Your Plants Need</h2>
        <p class="section-subtitle">From diagnostics to ongoing care, we offer comprehensive plant health services that come right to your home.</p>
      </div>
      <div class="services-grid">
        <div class="service-card fade-in stagger-1">
          <div class="service-icon" aria-hidden="true">🔬</div>
          <h3>Plant Diagnostics</h3>
          <p>Our experts identify diseases, pests, nutrient deficiencies, and environmental stressors affecting your plants with precision tools.</p>
          <a href="services.html" class="service-link">Learn more →</a>
        </div>
        <div class="service-card fade-in stagger-2">
          <div class="service-icon" aria-hidden="true">💚</div>
          <h3>In-Home Treatments</h3>
          <p>We bring treatments to your doorstep — from organic pest solutions to soil amendments and repotting services.</p>
          <a href="services.html" class="service-link">Learn more →</a>
        </div>
        <div class="service-card fade-in stagger-3">
          <div class="service-icon" aria-hidden="true">🌤️</div>
          <h3>Seasonal Care Plans</h3>
          <p>Customized seasonal care schedules ensure your plants thrive year-round with the right light, water, and nutrients.</p>
          <a href="services.html" class="service-link">Learn more →</a>
        </div>
        <div class="service-card fade-in stagger-4">
          <div class="service-icon" aria-hidden="true">🪴</div>
          <h3>Repotting & Soil</h3>
          <p>Professional repotting with premium soil blends customized for each plant species and its unique growth needs.</p>
          <a href="services.html" class="service-link">Learn more →</a>
        </div>
        <div class="service-card fade-in stagger-5">
          <div class="service-icon" aria-hidden="true">📋</div>
          <h3>Plant Health Reports</h3>
          <p>Detailed health reports with photos, diagnosis, treatment plan, and follow-up care instructions delivered digitally.</p>
          <a href="services.html" class="service-link">Learn more →</a>
        </div>
        <div class="service-card fade-in stagger-6">
          <div class="service-icon" aria-hidden="true">📞</div>
          <h3>Ongoing Support</h3>
          <p>Get unlimited text and email support from our plant doctors between visits to keep your plants happy and healthy.</p>
          <a href="services.html" class="service-link">Learn more →</a>
        </div>
      </div>
    </div>
  </section>

  <!-- ABOUT PREVIEW -->
  <section class="section section-alt" id="about-preview">
    <div class="container">
      <div class="about-grid">
        <div class="about-image fade-in-left">
          <img src="https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?w=800&q=80" alt="Founder of Mobile Plant Hospital smiling while examining a potted fern in a greenhouse setting" loading="lazy" width="800" height="960">
          <div class="about-image-badge">
            <strong>8+ Years</strong>
            <span>of Plant Care Experience</span>
          </div>
        </div>
        <div class="about-content fade-in-right">
          <span class="section-label">🌱 About Us</span>
          <h2>We Believe Every Plant Deserves Expert Care</h2>
          <p>Mobile Plant Hospital was founded by Dr. Elena Greenway, a botanical scientist turned plant wellness advocate. After years of watching friends and neighbors struggle with ailing houseplants, she built a mobile service that brings professional plant care directly to your living room.</p>
          <p>Our team of certified plant doctors uses science-backed methods and organic treatments to diagnose, treat, and revive plants of all species.</p>
          <div class="about-features">
            <div class="about-feature">
              <span class="about-feature-icon" aria-hidden="true">✓</span>
              Certified Botanists
            </div>
            <div class="about-feature">
              <span class="about-feature-icon" aria-hidden="true">✓</span>
              Organic Treatments
            </div>
            <div class="about-feature">
              <span class="about-feature-icon" aria-hidden="true">✓</span>
              Same-Day Visits
            </div>
            <div class="about-feature">
              <span class="about-feature-icon" aria-hidden="true">✓</span>
              Satisfaction Guaranteed
            </div>
          </div>
          <a href="about.html" class="btn btn-primary">Our Full Story</a>
        </div>
      </div>
    </div>
  </section>

  <!-- PROCESS -->
  <section class="section" id="process">
    <div class="container">
      <div class="section-header fade-in">
        <span class="section-label">🔄 How It Works</span>
        <h2 class="section-title">Plant Care in 4 Simple Steps</h2>
        <p class="section-subtitle">From booking to follow-up, we make the entire process seamless and stress-free.</p>
      </div>
      <div class="process-steps">
        <div class="process-step fade-in stagger-1">
          <div class="step-number">1</div>
          <h3>Book a Visit</h3>
          <p>Schedule a convenient time through our website or phone. Same-day appointments often available.</p>
        </div>
        <div class="process-step fade-in stagger-2">
          <div class="step-number">2</div>
          <h3>We Come to You</h3>
          <p>Our plant doctor arrives at your home with all the tools and treatments needed for a thorough checkup.</p>
        </div>
        <div class="process-step fade-in stagger-3">
          <div class="step-number">3</div>
          <h3>Diagnose & Treat</h3>
          <p>We examine every plant, identify issues, apply treatments on the spot, and repot if necessary.</p>
        </div>
        <div class="process-step fade-in stagger-4">
          <div class="step-number">4</div>
          <h3>Follow-Up Care</h3>
          <p>Receive a detailed digital report with care instructions, and enjoy ongoing support between visits.</p>
        </div>
      </div>
    </div>
  </section>

  <!-- TESTIMONIALS -->
  <section class="section section-alt" id="testimonials">
    <div class="container">
      <div class="section-header fade-in">
        <span class="section-label">💬 Testimonials</span>
        <h2 class="section-title">What Plant Parents Say</h2>
        <p class="section-subtitle">Our clients love the results. Here's what they have to say about our services.</p>
      </div>
      <div class="testimonials-grid">
        <div class="testimonial-card fade-in stagger-1">
          <div class="testimonial-stars" aria-label="5 out of 5 stars">★★★★★</div>
          <p class="testimonial-text">"My fiddle leaf fig was on its last leg. The plant doctor came in, diagnosed a fungal issue, treated it on the spot, and now it's pushing out new leaves every week. Absolutely incredible service!"</p>
          <div class="testimonial-author">
            <div class="testimonial-avatar" aria-hidden="true">SR</div>
            <div class="testimonial-info">
              <strong>Sarah Reynolds</strong>
              <span>Portland, OR</span>
            </div>
          </div>
        </div>
        <div class="testimonial-card fade-in stagger-2">
          <div class="testimonial-stars" aria-label="5 out of 5 stars">★★★★★</div>
          <p class="testimonial-text">"I have over 40 houseplants and was feeling overwhelmed. The seasonal care plan from Mobile Plant Hospital has been a game-changer. My plants have never looked better, and I actually understand what each one needs."</p>
          <div class="testimonial-author">
            <div class="testimonial-avatar" aria-hidden="true">MK</div>
            <div class="testimonial-info">
              <strong>Marcus Kim</strong>
              <span>Seattle, WA</span>
            </div>
          </div>
        </div>
        <div class="testimonial-card fade-in stagger-3">
          <div class="testimonial-stars" aria-label="5 out of 5 stars">★★★★★</div>
          <p class="testimonial-text">"The convenience is unreal. They came to my apartment, repotted three plants, treated a mealybug infestation, and left me with a detailed care report. Professional, friendly, and genuinely passionate about plants."</p>
          <div class="testimonial-author">
            <div class="testimonial-avatar" aria-hidden="true">JT</div>
            <div class="testimonial-info">
              <strong>Jamie Torres</strong>
              <span>Austin, TX</span>
            </div>
          </div>
        </div>
      </div>
    </div>
  </section>

  <!-- CTA -->
  <section class="cta-section">
    <div class="container">
      <div class="cta-box fade-in">
        <h2>Ready to Give Your Plants the Care They Deserve?</h2>
        <p>Book a visit today and watch your green companions thrive with expert, in-home plant care.</p>
        <a href="contact.html" class="btn btn-lg">Schedule an Appointment</a>
      </div>
    </div>
  </section>

  <!-- FOOTER -->
  <footer class="site-footer">
    <div class="container">
      <div class="footer-grid">
        <div class="footer-brand">
          <a href="index.html" class="logo" aria-label="Mobile Plant Hospital home page">
            <span class="logo-icon" aria-hidden="true">🌿</span>
            Mobile Plant Hospital
          </a>
          <p>Expert plant care, delivered to your door. Nurturing green companions back to health since 2018.</p>
          <div class="footer-social">
            <a href="#" aria-label="Follow us on Instagram">📷</a>
            <a href="#" aria-label="Follow us on Facebook">📘</a>
            <a href="#" aria-label="Follow us on Twitter">🐦</a>
            <a href="#" aria-label="Follow us on Pinterest">📌</a>
          </div>
        </div>
        <div class="footer-col">
          <h4>Quick Links</h4>
          <ul>
            <li><a href="index.html">Home</a></li>
            <li><a href="about.html">About Us</a></li>
            <li><a href="services.html">Services</a></li>
            <li><a href="contact.html">Contact</a></li>
          </ul>
        </div>
        <div class="footer-col">
          <h4>Services</h4>
          <ul>
            <li><a href="services.html">Plant Diagnostics</a></li>
            <li><a href="services.html">In-Home Treatments</a></li>
            <li><a href="services.html">Seasonal Care Plans</a></li>
            <li><a href="services.html">Repotting & Soil</a></li>
          </ul>
        </div>
        <div class="footer-col">
          <h4>Legal</h4>
          <ul>
            <li><a href="terms.html">Terms of Service</a></li>
            <li><a href="privacy.html">Privacy Policy</a></li>
            <li><a href="contact.html">Support</a></li>
          </ul>
        </div>
      </div>
      <div class="footer-bottom">
        <span>&copy; 2026 bouncerelayblast.autos. All rights reserved.</span>
        <div class="footer-bottom-links">
          <a href="terms.html">Terms</a>
          <a href="privacy.html">Privacy</a>
        </div>
      </div>
    </div>
  </footer>

  <script src="main.js" defer></script>
</body>
</html>