/* ==========================================
   Phoenix Landscape Solutions — Full Stylesheet
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* ---------- Custom Properties ---------- */
:root {
  --green: #2d5a27;
  --green2: #4a7c3f;
  --green3: #6aab5e;
  --cream: #f5f0e8;
  --gold: #c9a84c;
  --gold-hover: #b8963b;
  --dark: #1a1a1a;
  --bg: #f9f9f7;
  --card: #ffffff;
  --border: #e0e0e0;
  --red: #c0392b;
  --muted: #555555;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 6px 32px rgba(0,0,0,0.09);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* ---------- Body ---------- */
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: 3rem; }
h2 { font-size: 2.1rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; font-weight: 400; }
p { font-size: 1rem; line-height: 1.75; color: #444; margin-bottom: 14px; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ---------- Layout ---------- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-2.reverse > :first-child { order: 2; }
.grid-2.reverse > :last-child { order: 1; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card { background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 40px; }
.card-sm { background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 28px; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 4px;
  border: 2px solid white;
  cursor: pointer;
  transition: 0.2s;
}
.btn-secondary:hover { background: white; color: var(--green); }
.btn-green {
  display: inline-block;
  background: var(--green);
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-green:hover { background: #1e3f1b; }
.btn-full { width: 100%; text-align: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  height: 72px;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.13); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; color: var(--green); }
.logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 4px;
  transition: 0.15s;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--green); background: rgba(45,90,39,0.06); }
.nav-links a.active { color: var(--green); border-bottom-color: var(--gold); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.hamburger .bar { display: block; width: 28px; height: 3px; background: var(--green); border-radius: 2px; transition: 0.3s; }
.hamburger[aria-expanded="true"] .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ---------- Hero — Main (Home) ---------- */
.hero-main {
  min-height: 92vh;
  background: linear-gradient(145deg, #1a3318 0%, #2d5a27 45%, #4a7c3f 80%, #6aab5e 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(106,171,94,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-main .hero-content { max-width: 700px; color: white; position: relative; z-index: 1; }
.hero-main h1 { color: white; font-size: 3.6rem; margin-bottom: 6px; }
.hero-main .hero-sub { font-size: 1.2rem; color: rgba(255,255,255,0.88); margin: 20px 0 36px; line-height: 1.75; }
.hero-badge {
  display: inline-flex;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.hero-trust span { margin-right: 18px; }

/* ---------- Hero — Page (Interior) ---------- */
.hero-page {
  min-height: 44vh;
  background: linear-gradient(145deg, #1a3318 0%, #2d5a27 45%, #4a7c3f 80%, #6aab5e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 80px 28px 60px;
}
.hero-page h1 { color: white; font-size: 2.8rem; margin-bottom: 16px; }
.hero-page p { color: rgba(255,255,255,0.88); font-size: 1.15rem; max-width: 620px; margin: 0 auto 28px; }
.hero-page .hero-badge { margin-bottom: 16px; }

/* ---------- Service Cards (Home) ---------- */
.service-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-6px); }
.service-card-image {
  height: 220px;
  background: #d9d9d9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-style: italic;
  font-size: 0.9rem;
}
.service-card-image .label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--green);
  color: white;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
}
.service-card-body { padding: 32px; }
.service-card-body h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; margin-bottom: 12px; }
.service-card-body p { font-size: 0.95rem; color: var(--muted); margin-bottom: 16px; }
.service-card-body .tags { font-size: 0.82rem; color: var(--green); margin-bottom: 20px; line-height: 1.9; }
.service-card-body .tags span {
  display: inline-block;
  background: rgba(45,90,39,0.08);
  padding: 3px 10px;
  border-radius: 12px;
  margin: 2px 3px 2px 0;
}
.card-link { color: var(--green); font-weight: 600; font-size: 0.95rem; border-bottom: 1px solid transparent; transition: 0.15s; }
.card-link:hover { border-bottom-color: var(--green); }

/* ---------- Why Strip ---------- */
.why-strip { background: var(--green); color: white; padding: 72px 0; }
.why-strip h2 { color: white; }
.why-strip p { color: rgba(255,255,255,0.78); }
.why-strip .section-label { color: var(--gold); }
.feature-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 40px; }
.feature-item { text-align: center; padding: 24px 12px; }
.feature-icon { font-size: 2.4rem; margin-bottom: 12px; }
.feature-title { font-family: var(--font-body); font-weight: 600; color: white; font-size: 1rem; margin-bottom: 8px; }
.feature-desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ---------- Stats Bar ---------- */
.stats-bar { background: var(--dark); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; color: white; }
.stat-number { font-family: var(--font-heading); font-weight: 700; font-size: 2.8rem; color: var(--gold); line-height: 1.1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; }

/* ---------- Photo Placeholder ---------- */
.photo-placeholder {
  background: #d9d9d9;
  border-radius: 10px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-style: italic;
  font-size: 0.9rem;
  text-align: center;
  padding: 24px;
}

/* ---------- Before / After ---------- */
.before-after-row { display: flex; gap: 20px; margin-top: 24px; }
.before-after-item { flex: 1; text-align: center; }
.before-after-item .photo-placeholder { min-height: 240px; }
.before-after-item p { font-size: 0.85rem; margin-top: 8px; color: #666; font-weight: 600; }

/* ---------- Service Page Sections ---------- */
.service-list { list-style: disc; padding-left: 22px; margin: 16px 0 24px; }
.service-list li { padding: 3px 0; line-height: 1.65; color: #444; }
.service-features { font-size: 0.95rem; color: var(--green); margin: 16px 0 24px; line-height: 2; }

/* ---------- Callout Banner ---------- */
.callout {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: white;
  padding: 72px;
  border-radius: var(--radius-xl);
  text-align: center;
  margin: 60px 0;
}
.callout h2 { color: white; font-size: 2rem; }
.callout p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 28px; }
.callout .sub-line { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 16px; }
.callout .sub-line a { color: var(--gold); }

/* ---------- Comparison Table ---------- */
.compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; margin: 36px 0; }
.compare-table thead { background: var(--green); color: white; }
.compare-table th { padding: 16px 20px; text-align: left; font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid #eee; font-size: 0.92rem; vertical-align: top; }
.compare-table tr:nth-child(even) { background: var(--bg); }
.col-bad { background: #fff8f8 !important; }
.col-good { background: #f0f7ee !important; }
.compare-table tr:nth-child(even) .col-bad { background: #fef2f2 !important; }
.compare-table tr:nth-child(even) .col-good { background: #eaf5e6 !important; }
.check { color: var(--green); font-weight: 700; }
.ex { color: var(--red); font-weight: 700; }

/* ---------- Process Steps ---------- */
.process-steps { display: flex; gap: 0; position: relative; margin: 40px 0; }
.process-step { flex: 1; text-align: center; padding: 32px 16px; position: relative; }
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.process-step h4 { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.process-step::after {
  content: "\2192";
  position: absolute;
  right: -10px;
  top: 44px;
  font-size: 1.4rem;
  color: var(--gold);
  z-index: 1;
}
.process-step:last-child::after { display: none; }

/* ---------- Value Cards ---------- */
.value-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  border-left: 4px solid var(--gold);
  padding: 28px 32px;
  background: white;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.value-card h3 { font-weight: 700; margin-bottom: 10px; font-size: 1.15rem; }
.value-card p { font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: white; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.quote-mark { font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 8px; font-family: var(--font-heading); }
.testimonial-text { font-style: italic; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { font-family: var(--font-body); font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.testimonial-company { font-size: 0.85rem; color: #888; }

/* ---------- Contact Form ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form label { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; color: #333; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: var(--font-body); font-size: 1rem;
  color: var(--dark); background: white;
  margin-bottom: 16px; transition: 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,90,39,0.1);
}
.contact-form textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
#thank-you { display: none; background: var(--green); color: white; padding: 28px; border-radius: var(--radius); text-align: center; font-size: 1.05rem; line-height: 1.7; }
#thank-you.show { display: block; }
#thank-you a { color: var(--gold); font-weight: 600; }
.form-error { color: var(--red); font-size: 0.9rem; display: none; margin-top: -8px; margin-bottom: 12px; }
.form-error.show { display: block; }

/* ---------- Contact Info Blocks ---------- */
.contact-info-block { margin-bottom: 28px; }
.contact-info-block h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: 6px; color: var(--green); }
.contact-info-block p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; margin-bottom: 4px; }
.contact-info-block a { color: var(--green); font-weight: 600; }
.contact-info-block a:hover { text-decoration: underline; }
.contact-steps ol { list-style: decimal; padding-left: 20px; }
.contact-steps ol li { padding: 6px 0; font-size: 0.95rem; line-height: 1.6; color: #444; }
.gold-callout { border-left: 4px solid var(--gold); padding: 16px 20px; background: #fdfbf5; border-radius: 0 6px 6px 0; margin: 24px 0; font-size: 0.93rem; color: var(--muted); font-style: italic; }
.quick-links-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 28px; }
.quick-link-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center; transition: 0.15s; font-size: 0.9rem; font-weight: 600; color: var(--green); }
.quick-link-card:hover { border-color: var(--green); background: #f0f7ee; }

/* ---------- Service Area Tags ---------- */
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.area-tags span {
  display: inline-block; background: rgba(45,90,39,0.08);
  color: var(--green); font-weight: 600; font-size: 0.88rem;
  padding: 6px 14px; border-radius: 20px;
}

/* ---------- Credential Badges ---------- */
.credential-badges { display: flex; gap: 20px; flex-wrap: wrap; margin: 28px 0; }
.credential-badge {
  flex: 1; min-width: 200px;
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 20px 24px; text-align: center;
  font-weight: 600; font-size: 0.95rem; color: var(--dark);
}

/* ---------- Team Placeholder ---------- */
.team-placeholder { width: 120px; height: 120px; border-radius: 50%; background: #d9d9d9; margin: 0 auto 16px; }

/* ---------- Footer ---------- */
.site-footer { background: #111; color: var(--cream); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: white; margin-bottom: 12px; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; line-height: 1.5; }
.footer-heading {
  font-family: var(--font-body); font-weight: 600; font-size: 0.75rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: 0.15s; }
.footer-links a:hover { color: white; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px; padding-top: 24px;
  text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.35);
}

/* ---------- Fade In Animation ---------- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive: 968px ---------- */
@media (max-width: 968px) {
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-2.reverse > :first-child { order: 0; }
  .grid-2.reverse > :last-child { order: 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .service-cards-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .value-cards, .testimonial-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-main h1 { font-size: 2.6rem; }
  .process-steps { flex-direction: column; gap: 8px; }
  .process-step::after { display: none; }
  .compare-table { font-size: 0.85rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
  .contact-layout { grid-template-columns: 1fr; }
  .quick-links-grid { grid-template-columns: 1fr; }
  .credential-badges { flex-direction: column; }
}

/* ---------- Responsive: 600px ---------- */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-main { min-height: 80vh; padding: 60px 0; }
  .hero-main h1 { font-size: 2rem; }
  .hero-page h1 { font-size: 1.8rem; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: white; flex-direction: column; padding: 8px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .nav-links.nav-open { display: flex; }
  .nav-links a { padding: 12px 28px; border-radius: 0; border-bottom: none; }
  .hamburger { display: flex; }
  .grid-3, .grid-4, .feature-list, .stats-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .callout { padding: 40px 24px; }
  .card { padding: 24px; }
  .before-after-row { flex-direction: column; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-contact-item { justify-content: center; }
}
