/* ================================================
   That's Paradise Lawn Care — Landing Page Styles
   Bold green palette, mobile-first, professional
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

:root {
  --green-dark:    #0f4c1c;
  --green-mid:     #1a7a30;
  --green-bright:  #25a846;
  --green-light:   #e8f8eb;
  --yellow-accent: #f5c518;
  --white:         #ffffff;
  --gray-100:      #f5f7f5;
  --gray-200:      #e2e8e0;
  --gray-600:      #4a5568;
}

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
a { text-decoration: none; color: inherit; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-size: 1rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-green { background: var(--green-bright); color: var(--white); }
.btn-green:hover { background: var(--green-mid); }
.btn-yellow { background: var(--yellow-accent); color: var(--green-dark); }
.btn-yellow:hover { background: #e6b306; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ---- Navbar ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,76,28,0.97);
  backdrop-filter: blur(8px);
  padding: 0 20px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-size: 1.05rem; font-weight: 700;
}
.navbar-logo-icon {
  width: 36px; height: 36px;
  background: var(--green-bright);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.navbar-logo-text {
  display: flex; flex-direction: column; line-height: 1.15;
}
.navbar-logo-presents {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--yellow-accent); opacity: 0.85;
}
.navbar-logo-brand {
  font-size: 0.95rem; font-weight: 700;
}
.navbar-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-weight: 600; font-size: 0.9rem;
  background: rgba(255,255,255,0.12);
  padding: 8px 16px; border-radius: 40px;
  transition: background 0.2s;
}
.navbar-phone:hover { background: rgba(255,255,255,0.22); }
.navbar-phone span { display: none; }
@media (min-width: 640px) { .navbar-phone span { display: inline; } }

/* ---- Hero ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 80px 20px 60px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(160deg, #0a3d14 0%, #0f5c1e 30%, #1a7a30 60%, #25a846 100%);
}
.hero-sparkle-1, .hero-sparkle-2, .hero-sparkle-3 {
  position: absolute; border-radius: 50%; opacity: 0.15;
}
.hero-sparkle-1 { width: 400px; height: 400px; background: #25a846; top: -100px; right: -100px; }
.hero-sparkle-2 { width: 300px; height: 300px; background: #f5c518; bottom: -80px; left: -80px; }
.hero-sparkle-3 { width: 200px; height: 200px; background: #25a846; top: 40%; left: 60%; }
.hero-lawn-art {
  position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none;
}
.hero-lawn-art::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(37,168,70,0.2), transparent);
}
.hero-lawn-lines {
  position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
  background: repeating-linear-gradient(
    90deg,
    rgba(37,168,70,0.08) 0px,
    rgba(37,168,70,0.08) 40px,
    transparent 40px,
    transparent 60px
  );
}
.hero-content {
  position: relative; z-index: 2; max-width: 720px;
}
.hero-presenter {
  display: inline-block;
  background: rgba(245,197,24,0.15);
  color: var(--yellow-accent);
  border: 1.5px solid rgba(245,197,24,0.4);
  padding: 5px 20px;
  border-radius: 40px;
  font-size: clamp(0.7rem, 1.8vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem); color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem); color: rgba(255,255,255,0.88);
  margin-bottom: 28px; font-weight: 500; line-height: 1.5;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.hero-micro { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-style: italic; }

/* ---- Same-Day Banner ---- */
.sameday-banner {
  background: var(--yellow-accent); padding: 12px 20px;
  text-align: center; font-weight: 700; color: var(--green-dark);
  font-size: 0.95rem;
}
.sameday-banner .sameday-icon { font-size: 1.2rem; }

/* ---- Service Area ---- */
.service-area {
  padding: 80px 20px;
  background: var(--white);
  text-align: center;
}
.service-area-sub {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-top: 8px;
  margin-bottom: 32px;
}
.map-wrapper {
  max-width: 760px;
  margin: 0 auto 36px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.city-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.city-badge {
  background: var(--green-light);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--gray-200);
}
.service-area-cta {
  font-size: 0.95rem;
  color: var(--gray-600);
}
.service-area-cta a {
  color: var(--green-bright);
  font-weight: 600;
}
.service-area-cta a:hover {
  text-decoration: underline;
}
.services { padding: 80px 20px; background: var(--gray-100); }
.section-label {
  text-transform: uppercase; letter-spacing: 2px;
  font-size: 0.78rem; font-weight: 700; color: var(--green-bright);
  margin-bottom: 8px; text-align: center;
}
.services h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--green-dark);
  text-align: center; margin-bottom: 40px;
}
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  max-width: 960px; margin: 0 auto;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--white); border-radius: 12px; padding: 24px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); border: 1px solid var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.service-icon {
  width: 44px; height: 44px; background: var(--green-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.service-info h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 4px; }
.service-info p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.4; }

/* ---- Pricing ---- */
.pricing { padding: 80px 20px; background: var(--white); }
.pricing h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--green-dark);
  text-align: center; margin-bottom: 8px;
}
.pricing-sub { text-align: center; color: var(--gray-600); margin-bottom: 40px; font-size: 0.95rem; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 720px; margin: 0 auto; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
.pricing-card {
  background: var(--gray-100); border: 2px solid var(--gray-200);
  border-radius: 16px; padding: 32px 24px; text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card.featured {
  background: var(--green-dark); border-color: var(--green-bright); color: var(--white);
  position: relative;
}
.pricing-card.featured .card-label { background: var(--yellow-accent); color: var(--green-dark); }
.pricing-card.featured .card-price { color: var(--yellow-accent); }
.pricing-card.featured .card-features li { color: rgba(255,255,255,0.88); }
.pricing-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.card-label {
  display: inline-block; background: var(--green-bright); color: var(--white);
  padding: 4px 14px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 16px;
}
.card-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.card-price {
  font-size: 2.8rem; font-weight: 800; color: var(--green-dark); line-height: 1; margin-bottom: 4px;
}
.card-price span { font-size: 1rem; font-weight: 400; }
.card-price-sub { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 20px; }
.pricing-card.featured .card-price-sub { color: rgba(255,255,255,0.65); }
.card-features { list-style: none; text-align: left; margin-bottom: 24px; }
.card-features li {
  padding: 6px 0; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; color: var(--gray-600);
}
.card-features li::before { content: '✓'; color: var(--green-bright); font-weight: 700; flex-shrink: 0; }
.pricing-card.featured .card-features li::before { color: var(--yellow-accent); }

.birthday-promo {
  max-width: 700px; margin: 40px auto 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 16px; padding: 28px 24px;
  text-align: center; color: var(--white);
}
.birthday-promo-icon { font-size: 2.5rem; margin-bottom: 8px; display: block; }
.birthday-promo h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--yellow-accent); }
.birthday-promo p { font-size: 0.95rem; opacity: 0.9; }

/* ---- Book CTA ---- */
.book-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  text-align: center; color: var(--white);
}
.book-cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.book-cta-sub { font-size: 1.05rem; opacity: 0.88; margin-bottom: 32px; }
.book-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 24px; }
.book-cta-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--white);
  padding: 14px 28px; border-radius: 8px;
  font-weight: 700; font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.book-cta-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.book-micro { font-size: 0.82rem; opacity: 0.55; }

/* ---- Footer ---- */
.footer {
  background: #0a3510; color: rgba(255,255,255,0.7);
  padding: 40px 20px 24px; text-align: center;
}
.footer-logo { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-tagline { font-size: 0.85rem; color: var(--yellow-accent); margin-bottom: 20px; }
.footer-phone { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.footer-phone a { color: var(--green-bright); }
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.75rem; opacity: 0.4; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }

/* ---- Misc ---- */
.section-divider { width: 60px; height: 4px; background: var(--green-bright); border-radius: 2px; margin: 16px auto 0; }

.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 48px; height: 48px; background: var(--green-bright); color: var(--white);
  border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; z-index: 90;
}
.scroll-top.visible { opacity: 1; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ---- Mobile tweaks ---- */
@media (max-width: 480px) {
  .hero-actions, .book-cta-actions { flex-direction: column; }
  .hero-actions .btn, .book-cta-actions .btn { width: 100%; justify-content: center; }
}

/* ---- Utility ---- */
.container { max-width: 1100px; margin: 0 auto; }

/* ---- Social Proof Section ---- */
.social-proof {
  padding: 80px 20px;
  background: var(--gray-100);
  text-align: center;
}
.social-proof h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--green-dark);
  margin-bottom: 8px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.trust-badge {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--green-bright);
  border-radius: 40px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(37,168,70,0.12);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 64px;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--white);
  border: 2px solid var(--green-bright);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(37,168,70,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(37,168,70,0.15);
}
.testimonial-stars {
  color: var(--yellow-accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 0.93rem;
  color: #2d3748;
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-name {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.92rem;
}
.testimonial-location {
  font-size: 0.8rem;
  color: var(--gray-600);
}
.testimonial-service {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-bright);
  background: var(--green-light);
  border-radius: 20px;
  padding: 4px 12px;
  display: inline-block;
  align-self: flex-start;
}

/* Before/After Gallery */
.gallery-header {
  margin-bottom: 36px;
}
.gallery-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--green-dark);
  margin-bottom: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 48px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-200);
}
.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gallery-img {
  position: relative;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder gradient blocks — owner swaps with real <img> tags */
.placeholder-before {
  background: linear-gradient(135deg, #6b7280 0%, #374151 100%);
}
.placeholder-after {
  background: linear-gradient(135deg, #166534 0%, #25a846 100%);
}
.placeholder-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.gallery-caption {
  padding: 12px 14px;
  font-size: 0.82rem;
  color: var(--gray-600);
  text-align: center;
  font-weight: 500;
  border-top: 1px solid var(--gray-200);
}

/* Social Proof CTA */
.social-proof-cta {
  margin-top: 16px;
}

/* ---- Contact Form ---- */
.contact-form input,
.contact-form select {
  width: 100%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: 'Inter', sans-serif;
}
.contact-form input::placeholder { color: rgba(255,255,255,0.6); }
.contact-form select option { color: var(--gray-600); background: var(--white); }
.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--yellow-accent);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.25);
}