/* ============================================================
   Greatlook Lanscaping — Stylesheet (w202603)
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --color-primary: #2e7d32;       /* Deep landscaping green */
  --color-primary-dark: #1b5e20;
  --color-accent: #f4a72a;        /* Warm gold accent */
  --color-dark: #1a2e1a;
  --color-text: #333333;
  --color-muted: #666666;
  --color-light: #f7f9f5;
  --color-white: #ffffff;
  --color-border: #e2e6e0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
  --radius: 8px;
  --max-width: 1200px;
  --transition: 0.25s ease;
}

/* ---------- Reset & Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary-dark); }
ul { list-style: none; }
h1,h2,h3,h4 { font-weight: 700; color: var(--color-dark); line-height: 1.25; }
h1 { font-size: 2.75rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.3rem; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color:#fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--color-primary); }
.btn-light { background: #fff; color: var(--color-primary); border-color: #fff; }
.btn-light:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.logo img { height: 56px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a {
  color: var(--color-dark);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-menu a:not(.btn):hover { color: var(--color-primary); }
.nav-menu a.active:not(.btn) { color: var(--color-primary); }
.nav-menu a.active:not(.btn)::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 100%; height: 2px; background: var(--color-primary);
}
.nav-cta { padding: 10px 22px !important; color: #fff !important; }
.nav-cta:hover { color: #fff !important; }

.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.hamburger span {
  width: 28px; height: 3px; background: var(--color-dark); border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex; align-items: center;
  background: url('https://images.unsplash.com/photo-1558435186-db336dcc1407?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(20,40,20,.78) 0%, rgba(20,40,20,.4) 100%);
}
.hero-content { position: relative; max-width: 720px; padding: 80px 24px; }
.hero h1 {
  color: #fff;
  font-size: 3.4rem;
  margin: 16px 0 20px;
}
.hero p { font-size: 1.15rem; opacity: 0.95; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 10px;
}

/* ---------- Section base ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--color-light); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--color-muted); font-size: 1.05rem; }
.section-head.light .eyebrow { color: var(--color-accent); }

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff;
  padding: 36px 26px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--color-muted); font-size: 0.95rem; }

/* ---------- Two column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse .col-image { order: 2; }
.col-image img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.col-text h2 { margin: 12px 0 18px; }
.col-text p { color: var(--color-muted); margin-bottom: 16px; }
.check-list { margin: 20px 0 28px; }
.check-list li {
  position: relative; padding-left: 28px; margin-bottom: 10px;
  color: var(--color-text);
}
.check-list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--color-primary); font-weight: 700; font-size: 1.1rem;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-body { padding: 24px; }
.service-body h3 { margin-bottom: 10px; }
.service-body p { color: var(--color-muted); font-size: 0.95rem; margin-bottom: 14px; }
.service-body a { font-weight: 600; }

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--color-dark) url('https://images.unsplash.com/photo-1453302423834-9c1bdb6388e2?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat fixed;
  background-blend-mode: multiply;
  background-color: rgba(20,40,20,.92);
  color: #fff;
}
.testimonials .section-head h2 { color: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
}
.testimonial p { font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.testimonial footer { font-weight: 600; color: var(--color-accent); }

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--color-primary);
  color: #fff;
  padding: 60px 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { opacity: 0.9; }

/* ---------- Page banner ---------- */
.page-banner {
  background: linear-gradient(135deg, rgba(20,40,20,.85), rgba(46,125,50,.85)),
              url('https://images.unsplash.com/photo-1592855380907-a93cf8a31aaa?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
}
.page-banner h1 { color: #fff; margin-bottom: 10px; }
.page-banner p { opacity: 0.95; font-size: 1.1rem; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  text-align: center;
}
.process-step {
  background: #fff;
  padding: 36px 24px;
  border-radius: var(--radius);
  border-top: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 56px; height: 56px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700;
  margin: 0 auto 18px;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { color: var(--color-muted); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { color: var(--color-muted); margin-bottom: 30px; }
.contact-item {
  display: flex; gap: 18px; margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  font-size: 1.6rem;
  width: 50px; height: 50px;
  background: var(--color-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item h4 { margin-bottom: 4px; }
.contact-item p { color: var(--color-muted); margin: 0; }
.contact-item a { color: var(--color-muted); }
.contact-item a:hover { color: var(--color-primary); }

.contact-form-wrap { background: var(--color-light); padding: 40px; border-radius: var(--radius); }
.contact-form-wrap h2 { margin-bottom: 24px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label {
  display: block; margin-bottom: 6px; font-weight: 500;
  font-size: 0.9rem; color: var(--color-dark);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46,125,50,.12);
}
.form-note {
  margin-top: 16px;
  padding: 12px;
  background: #e8f5e9;
  color: #1b5e20;
  border-radius: 6px;
  font-size: 0.95rem;
}

/* ---------- Map ---------- */
.map-section { line-height: 0; }
.map-section iframe { display: block; width: 100%; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: #1c2a1c;
  color: #c9d4c9;
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo img { height: 56px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-col h4 {
  color: #fff; margin-bottom: 18px;
  font-size: 1.05rem;
}
.footer-col p { font-size: 0.95rem; line-height: 1.7; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #c9d4c9; font-size: 0.95rem; }
.footer-col ul a:hover { color: var(--color-accent); }
.contact-line { font-size: 0.95rem; margin-bottom: 12px; line-height: 1.6; }
.contact-line a { color: #c9d4c9; }
.contact-line a:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #8da38d;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .hero h1 { font-size: 2.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse .col-image { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 84px; right: -100%;
    flex-direction: column;
    background: #fff;
    width: 80%; max-width: 320px;
    height: calc(100vh - 84px);
    padding: 30px 24px;
    gap: 18px;
    box-shadow: -2px 0 12px rgba(0,0,0,.08);
    transition: right 0.3s ease;
    align-items: flex-start;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { width: 100%; padding: 10px 0; }
  .hero { min-height: 520px; }
  .hero-content { padding: 60px 24px; }
  .section { padding: 60px 0; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .btn { padding: 11px 22px; font-size: 0.9rem; }
  .contact-form-wrap { padding: 26px 20px; }
}
