/* ============================================
   North Shore Scoop — Main Stylesheet
   Color palette: grass green, sky blue, warm white, chocolate brown accents
   Style: friendly, clean, cartoon-ready
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2d2d2d;
  background: #fff;
}

a { color: #2a8c4a; text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #1a5c30;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 4rem 0; }

/* --- Navigation --- */
header {
  background: #1a5c30;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.75rem;
  color: #a8e6be;
  font-weight: 400;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: #d4f5e2;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; text-decoration: none; }

.nav-cta {
  background: #f5c842;
  color: #1a5c30 !important;
  padding: 0.5rem 1.1rem;
  border-radius: 25px;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  transition: background 0.2s, transform 0.1s !important;
}

.nav-cta:hover {
  background: #e6b800 !important;
  transform: scale(1.03);
  text-decoration: none !important;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  border: none;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); text-decoration: none; }

.btn-primary {
  background: #2a8c4a;
  color: #fff;
}

.btn-primary:hover { background: #1a6b38; color: #fff; }

.btn-yellow {
  background: #f5c842;
  color: #1a5c30;
}

.btn-yellow:hover { background: #e6b800; color: #1a5c30; }

.btn-white {
  background: #fff;
  color: #1a5c30;
}

.btn-white:hover { background: #f0faf4; color: #1a5c30; }

.btn-outline {
  background: transparent;
  color: #2a8c4a;
  border: 2px solid #2a8c4a;
}

.btn-outline:hover { background: #2a8c4a; color: #fff; }

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, #1a5c30 0%, #2a8c4a 60%, #4db870 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: #fff;
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0 100%);
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
  font-size: 1.25rem;
  color: #d4f5e2;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Cartoon image placeholders --- */
.cartoon-img {
  width: 100%;
  max-width: 320px;
  height: 220px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin: 0 auto;
  border: 3px solid #a5d6a7;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.service-card {
  background: #fff;
  border: 2px solid #e8f5e9;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  animation: fadeInUp 0.5s ease-out both;
}

.service-card:hover {
  box-shadow: 0 6px 20px rgba(42,140,74,0.12);
  transform: translateY(-4px);
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 { color: #1a5c30; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.93rem; color: #555; margin-bottom: 1rem; }

/* --- Stats Bar --- */
.stats-bar {
  background: #1a5c30;
  color: #fff;
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f5c842;
  display: block;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: #a8e6be;
}

/* --- Pricing Section --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pricing-card {
  border: 2px solid #e8f5e9;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  background: #fff;
  position: relative;
  animation: fadeInUp 0.5s ease-out both;
}

.pricing-card.featured {
  border-color: #2a8c4a;
  box-shadow: 0 6px 24px rgba(42,140,74,0.15);
}

.pricing-card:nth-child(2) { animation-delay: 0.1s; }
.pricing-card:nth-child(3) { animation-delay: 0.2s; }
.pricing-card:nth-child(4) { animation-delay: 0.3s; }

.pricing-card .popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f5c842;
  color: #1a5c30;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card .price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a5c30;
  margin: 0.75rem 0 0.25rem;
}

.pricing-card .price-unit {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

.pricing-features {
  list-style: none;
  margin: 1rem 0 1.5rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: #444;
}

.pricing-features li::before {
  content: '✓ ';
  color: #2a8c4a;
  font-weight: 700;
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  background: #2a8c4a;
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* --- Testimonials --- */
.testimonials { background: #f0faf4; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  animation: fadeInUp 0.5s ease-out both;
}

.testimonial-card:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card:nth-child(3) { animation-delay: 0.2s; }

.stars { color: #f5c842; font-size: 1.1rem; margin-bottom: 0.75rem; }
.testimonial-card p { font-style: italic; color: #444; font-size: 0.95rem; }
.reviewer { margin-top: 1rem; font-weight: 700; font-size: 0.88rem; color: #1a5c30; }

/* --- Community / Park Cleanup Banner --- */
.community-banner {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border: 2px solid #a5d6a7;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  margin: 3rem 0;
}

.community-banner h2 { color: #1a5c30; }
.community-banner p { color: #2d6a41; max-width: 580px; margin: 0 auto 1.5rem; }

/* --- Service Area Map Strip --- */
.area-strip {
  background: #f9f9f9;
  padding: 3rem 0;
  text-align: center;
}

.suburbs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.suburb-tag {
  background: #e8f5e9;
  color: #1a5c30;
  border: 1px solid #a5d6a7;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.suburb-tag:hover {
  background: #2a8c4a;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* --- Forms --- */
.form-section { background: #f0faf4; }

.contact-form {
  max-width: 600px;
  margin: 2.5rem auto 0;
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.form-group { margin-bottom: 1.25rem; }

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: #1a5c30;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #c8e6c9;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fff;
  color: #2d2d2d;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #2a8c4a;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid #2a8c4a;
  outline-offset: 2px;
}

textarea { resize: vertical; min-height: 100px; }

.form-submit { width: 100%; font-size: 1.05rem; padding: 1rem; }

.info-box {
  background: #f0faf4;
  border: 2px solid #c8e6c9;
  border-radius: 16px;
  padding: 2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.feature-list li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: #333;
}

.feature-list li::before {
  content: '✓ ';
  color: #2a8c4a;
  font-weight: 700;
}

.faq-item {
  border-bottom: 1px solid #e8f5e9;
  padding: 1.25rem 0;
}

.faq-item h3 {
  color: #1a5c30;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: #555;
  font-size: 0.95rem;
}

/* --- Page Hero (interior pages) --- */
.page-hero {
  background: linear-gradient(135deg, #1a5c30, #2a8c4a);
  color: #fff;
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.page-hero h1 { color: #fff; font-size: 2.4rem; margin-bottom: 0.75rem; }
.page-hero p { color: #d4f5e2; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* --- Content Sections --- */
.content-section { padding: 4rem 0; }
.content-section.bg-light { background: #f9fdf9; }
.content-section.bg-green { background: #f0faf4; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* --- Pricing Table (full page) --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.pricing-table th {
  background: #1a5c30;
  color: #fff;
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-weight: 600;
}

.pricing-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid #e8f5e9;
  color: #333;
}

.pricing-table tr:nth-child(even) td { background: #f9fdf9; }
.pricing-table tr:hover td { background: #e8f5e9; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #1a5c30, #2a8c4a);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 { color: #fff; font-size: 2rem; margin-bottom: 0.75rem; }
.cta-banner p { color: #d4f5e2; margin-bottom: 2rem; font-size: 1.05rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* --- Footer --- */
footer {
  background: #0f3d20;
  color: #a8e6be;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #7bc898;
  margin-top: 0.75rem;
  max-width: 260px;
}

footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 0.4rem; }
footer ul a { color: #7bc898; font-size: 0.88rem; text-decoration: none; }
footer ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #1a5c30;
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.83rem;
  color: #4a8a5e;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-green { color: #2a8c4a; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2a8c4a;
  margin-bottom: 0.5rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero h1 { font-size: 2.2rem; }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a5c30;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 100;
    padding: 2rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
    color: #fff;
  }

  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }

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

  .hero-cta-group { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
