/* Peak Lawns LLC — shared stylesheet for all pages */

/* ----- RESET & BASE ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1a4a1a;
  --green-mid:    #2e7d32;
  --green-bright: #4caf50;
  --green-light:  #a5d6a7;
  --cream:        #f5f2eb;
  --white:        #ffffff;
  --text-dark:    #1a2a1a;
  --text-muted:   #4a6a4a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ----- UTILITY ----- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-primary   { background: var(--green-bright); color: var(--white); border: none; }
.btn-outline   { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ----- NAV ----- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: rgba(26, 74, 26, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding 0.3s;
}
nav.scrolled { padding: 0px 40px; }

.nav-logo img { height: 175px; width: auto; display: block; }


.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* Dropdown menus */
.nav-links li { position: relative; }
.nav-links .caret {
  display: inline-block; width: 0; height: 0;
  margin-left: 4px; vertical-align: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}
.dropdown {
  position: absolute; top: 100%; left: -16px;
  min-width: 250px;
  background: var(--green-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0 0 6px 6px;
  list-style: none;
  padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li { display: block; }
.dropdown a {
  display: block; padding: 10px 18px;
  font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: none;
}
.dropdown a:hover { background: rgba(255,255,255,0.06); }
/* Hover bridge so the menu doesn't close crossing the gap */
.has-dropdown::after {
  content: ''; position: absolute; left: 0; right: 0;
  top: 100%; height: 14px;
}

.nav-cta {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 9px 26px;
  background: var(--green-bright);
  color: var(--white);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #43a047; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ----- BREADCRUMB (city pages) ----- */
.breadcrumb {
  background: var(--green-dark); padding: 10px 0;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--green-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 8px; }

/* ----- HERO ----- */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(20,60,20,0.7) 100%),
    url('https://images.unsplash.com/photo-1558337587-80f6bbf67e01?q=80&w=1470&auto=format&fit=crop') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  width: 100%;
  max-width: 1160px;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  align-items: center;
}

/* Diagonal green stripe accent */
#hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 100px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  border-top: 4px solid var(--green-bright);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-form-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem; letter-spacing: 0.04em;
  color: var(--green-dark);
}
.hero-form-subtitle {
  font-size: 0.88rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.6;
  margin-top: -6px;
}
.hero-form-card .contact-form { gap: 10px; }
.hero-form-card .contact-form textarea { min-height: 80px; }

.hero-tag {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid var(--green-light);
  border-radius: 2px;
  padding: 5px 14px;
  margin-bottom: 22px;
  animation: fadeUp 0.6s ease both;
}

.hero-inner h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-inner h1 span { color: var(--green-bright); }

/* City pages have longer headlines — scale down slightly */
body.city-page .hero-inner h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }

.hero-inner p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----- TRUST BAR ----- */
.trust-bar {
  background: var(--green-dark);
  color: var(--white);
  padding: 22px 0;
}
.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green-light);
}
.trust-item svg { width: 22px; height: 22px; fill: var(--green-bright); flex-shrink: 0; }

/* ----- SERVICES ----- */
#services { padding: 100px 0; background: var(--cream); }

.section-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--green-dark);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem; font-weight: 300; color: var(--text-muted);
  line-height: 1.75; max-width: 560px; margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 30px;
  border-top: 4px solid var(--green-bright);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(180deg, transparent, rgba(76,175,80,0.05));
  transition: height 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(46,125,50,0.15); }
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; fill: var(--white); }

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 0.05em;
  color: var(--green-dark); margin-bottom: 10px;
}
.service-card p { font-size: 0.92rem; font-weight: 300; color: var(--text-muted); line-height: 1.7; }
.service-card .card-link {
  display: inline-block; margin-top: 14px;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green-mid); text-decoration: none;
  transition: color 0.2s;
}
.service-card .card-link:hover { color: var(--green-dark); }

/* ----- HOW IT WORKS ----- */
#how { padding: 100px 0; background: var(--white); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.step { text-align: left; }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h4 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
  letter-spacing: 0.05em; color: var(--green-dark); margin-bottom: 8px;
}
.step p { font-size: 0.92rem; font-weight: 300; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 720px) { .steps-grid { grid-template-columns: 1fr; } }

/* ----- LOCAL CONTENT (city + service pages) ----- */
#local, #included { padding: 100px 0; background: var(--white); }
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.local-body h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark); letter-spacing: 0.02em; margin-bottom: 20px; line-height: 1.05;
}
.local-body p {
  font-size: 0.95rem; font-weight: 300; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 18px;
}
.local-aside {
  background: var(--cream); border-radius: 12px; padding: 36px 32px;
  border-left: 4px solid var(--green-bright);
}
.local-aside h4 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
  letter-spacing: 0.05em; color: var(--green-dark); margin-bottom: 16px;
}
.local-aside ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.local-aside li {
  font-size: 0.9rem; font-weight: 400; color: var(--text-muted);
  padding-left: 18px; position: relative; line-height: 1.6;
}
.local-aside li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-bright);
}

/* ----- WHY US ----- */
#why {
  background: var(--green-dark);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
#why::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,80,0.15), transparent 70%);
}
#why .section-label { color: var(--green-light); }
#why .section-title { color: var(--white); }
#why .section-sub   { color: rgba(255,255,255,0.6); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.why-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: border-color 0.25s, background 0.25s;
}
.why-item:hover { border-color: var(--green-bright); background: rgba(76,175,80,0.07); }

.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem; line-height: 1;
  color: var(--green-bright); flex-shrink: 0; min-width: 36px;
}
.why-text h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem; letter-spacing: 0.06em;
  color: var(--white); margin-bottom: 6px;
}
.why-text p { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ----- CTA STRIP ----- */
#cta {
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--green-mid) 100%);
  padding: 80px 24px; text-align: center;
}
#cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white); letter-spacing: 0.03em;
  margin-bottom: 14px;
}
#cta p {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,0.85); margin-bottom: 36px;
}

/* ----- CONTACT ----- */
#contact { padding: 80px 0; background: var(--cream); }

.contact-info-centered { max-width: 680px; }
.contact-info-centered h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 0.05em;
  color: var(--green-dark); margin-bottom: 18px;
}
.contact-info-centered p { font-size: 0.95rem; font-weight: 300; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }

.contact-details-row {
  display: flex; flex-wrap: wrap; gap: 28px;
}

.contact-detail {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.contact-detail svg { width: 20px; height: 20px; fill: var(--green-bright); flex-shrink: 0; }
.contact-detail span { font-size: 0.95rem; color: var(--text-dark); font-weight: 400; }
.contact-detail a { color: var(--text-dark); text-decoration: none; }
.contact-detail a:hover { color: var(--green-mid); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 13px 16px;
  border: 1.5px solid #d4e8d4;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--green-bright); }

.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; text-align: center; font-size: 1.1rem; padding: 16px; }

/* ----- FOOTER ----- */
footer {
  background: var(--text-dark);
  padding: 32px 0;
  text-align: center;
}
footer img { height: 44px; margin-bottom: 14px; opacity: 0.85; }
footer p {
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}
footer a { color: var(--green-light); text-decoration: none; }

/* ----- RESPONSIVE NAV ----- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { padding: 14px 24px; }
  .nav-cta { display: none; }
  .nav-logo img { height: 60px; }
  #hero { padding-top: 110px; }
  .hero-container { grid-template-columns: 1fr; }
  .hero-form-card { padding: 28px 24px; }

  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed; top: 88px; left: 0; right: 0;
    background: var(--green-dark);
    z-index: 99; padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: var(--green-light); text-decoration: none;
    font-weight: 700; font-size: 0.9rem; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 14px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
  }
  .mobile-menu a:hover { background: rgba(255,255,255,0.05); }
  .mobile-menu .menu-label {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    padding: 16px 28px 6px;
  }

  .local-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
