/* ========================================
   ACA Landscaping V1 — SEO Preservation + Conversion Fix
   Earth tones, green accent, clean upgrade
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cardo:ital,wght@0,400;0,700;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #2d5a27;
  --green-light: #3d7a35;
  --green-dark: #1e3d1a;
  --earth: #8b7355;
  --earth-light: #c4a97d;
  --stone: #d4c5a9;
  --stone-light: #f0ebe0;
  --white: #ffffff;
  --off-white: #faf8f5;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --card-shadow: 0 2px 8px rgba(0,0,0,0.06);
  --radius: 8px;
  --btn-radius: 6px;
  --font-heading: 'Cardo', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1140px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--white); overflow-x: hidden; }

h1,h2,h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--green-dark); }
h4,h5,h6 { font-family: var(--font-body); font-weight: 700; color: var(--green-dark); }
h1 { font-size: clamp(2rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.3rem); font-family: var(--font-body); font-weight: 600; }

a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-light); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.btn { display: inline-block; padding: 13px 28px; font-family: var(--font-body); font-weight: 600; font-size: 15px; border-radius: var(--btn-radius); border: none; cursor: pointer; transition: all 0.2s; text-align: center; }
.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 2px 4px rgba(45,90,39,0.2); }
.btn-primary:hover { background: var(--green-light); color: var(--white); transform: translateY(-1px); }
.btn-earth { background: var(--earth); color: var(--white); }
.btn-earth:hover { background: var(--earth-light); color: var(--text); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }
.btn-white { background: var(--white); color: var(--green); }
.btn-white:hover { background: var(--stone-light); transform: translateY(-1px); }

/* Sticky Phone Bar */
.phone-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--green); padding: 12px; text-align: center; display: none; }
.phone-bar a { color: var(--white); font-weight: 700; font-size: 18px; letter-spacing: 0.5px; }
@media (max-width: 768px) { .phone-bar { display: block; } }

/* Top Bar */
.top-bar { background: var(--green-dark); color: rgba(255,255,255,0.85); font-size: 13px; padding: 8px 0; }
.top-bar-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: var(--white); font-weight: 600; }
.top-bar a:hover { color: var(--earth-light); }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 24px; max-width: var(--max-width); margin: 0 auto; }
.logo img { height: 55px; width: auto; }
.nav { display: flex; gap: 24px; align-items: center; }
.nav a { font-weight: 500; font-size: 14px; color: var(--text); }
.nav a:hover { color: var(--green); }
.nav a.active { color: var(--green); font-weight: 600; }
.nav .btn { padding: 10px 20px; font-size: 13px; color: var(--white) !important; }
.mobile-toggle { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--green-dark); }

/* Hero */
.hero { position: relative; min-height: 520px; display: flex; align-items: center; padding: 100px 24px 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,61,26,0.7) 0%, rgba(30,61,26,0.4) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 620px; }
.hero h1 { color: var(--white); margin-bottom: 12px; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 24px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 20px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.2); flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500; }
.hero-trust-item .icon { font-size: 18px; }

/* Sections */
.section { padding: 72px 0; }
.section-green { background: var(--green-dark); color: var(--white); }
.section-green h2,.section-green h3 { color: var(--white); }
.section-stone { background: var(--stone-light); }
.section-off { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 10px; }
.section-header p { max-width: 580px; margin: 0 auto; color: var(--text-light); }
.section-label { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--green); margin-bottom: 6px; }

/* Service Cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--card-shadow); border: 1px solid #eee; text-align: center; transition: all 0.2s; cursor: pointer; }
.service-card:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.service-card .icon { font-size: 2rem; margin-bottom: 12px; }
.service-card h3 { font-size: 0.95rem; margin-bottom: 6px; color: var(--green-dark); }
.service-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* Cards */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--card-shadow); border: 1px solid #eee; transition: transform 0.2s; }
.card:hover { transform: translateY(-3px); }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.93rem; color: var(--text-light); }

/* Stats */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--white); border-radius: var(--radius); box-shadow: 0 4px 20px rgba(0,0,0,0.08); margin-top: -40px; position: relative; z-index: 2; }
.stat-item { padding: 24px 16px; text-align: center; border-right: 1px solid #eee; }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-heading); font-size: 1.8rem; color: var(--green); margin-bottom: 2px; }
.stat-label { font-size: 0.78rem; color: var(--text-light); font-weight: 500; }

/* Testimonials */
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--card-shadow); border: 1px solid #eee; border-top: 3px solid var(--green); }
.testimonial-card p { font-style: italic; margin-bottom: 12px; font-size: 0.93rem; line-height: 1.7; }
.testimonial-author { font-weight: 700; font-size: 0.85rem; color: var(--green-dark); }
.stars { color: #e8a838; font-size: 1rem; margin-bottom: 8px; }

/* Two Col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col-text h2 { margin-bottom: 14px; }
.two-col-text p { margin-bottom: 12px; }
.two-col-img img { border-radius: var(--radius); box-shadow: var(--card-shadow); width: 100%; object-fit: cover; }

/* Service Detail */
.service-detail { background: var(--white); border-radius: var(--radius); padding: 32px; margin-bottom: 20px; box-shadow: var(--card-shadow); border: 1px solid #eee; border-left: 4px solid var(--green); }
.service-detail h3 { margin-bottom: 6px; }
.service-detail p { font-size: 0.93rem; color: var(--text); line-height: 1.7; margin-bottom: 10px; }
.service-detail ul { list-style: none; padding: 0; margin: 12px 0; }
.service-detail ul li { padding: 4px 0 4px 20px; position: relative; font-size: 0.9rem; }
.service-detail ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
.contact-form input,.contact-form textarea,.contact-form select { width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: var(--btn-radius); font-family: var(--font-body); font-size: 15px; margin-bottom: 14px; transition: border-color 0.2s; }
.contact-form input:focus,.contact-form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,90,39,0.08); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form label { display: block; font-weight: 600; margin-bottom: 5px; font-size: 0.85rem; color: var(--green-dark); }
.contact-info-card { background: var(--stone-light); border-radius: var(--radius); padding: 28px; margin-bottom: 16px; }
.contact-info-card h3 { margin-bottom: 16px; }
.contact-info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.contact-info-item .ci-icon { width: 36px; height: 36px; background: var(--green); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--white); }

/* CTA Banner */
.cta-banner { text-align: center; padding: 48px 24px; }
.cta-banner h2 { margin-bottom: 10px; }
.cta-banner p { max-width: 520px; margin: 0 auto 24px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Page Header */
.page-header { background: var(--green-dark); padding: 100px 0 48px; text-align: center; }
.page-header h1 { color: var(--white); margin-bottom: 8px; }
.page-header p { max-width: 520px; margin: 0 auto; color: rgba(255,255,255,0.75); }

/* Footer */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.65); padding: 48px 0 20px; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer h4 { color: var(--white); margin-bottom: 12px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.footer a { color: rgba(255,255,255,0.65); }
.footer a:hover { color: var(--earth-light); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 5px; font-size: 0.85rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* Coverage area tags */
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag { background: var(--stone-light); border: 1px solid var(--stone); border-radius: 20px; padding: 6px 14px; font-size: 0.82rem; font-weight: 500; color: var(--text); }

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

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); gap: 12px; }
  .mobile-toggle { display: block; }
  .hero { min-height: auto; padding: 90px 24px 48px; }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; margin-top: -24px; }
  .stat-item { border-right: none; border-bottom: 1px solid #eee; }
  .hero-buttons,.cta-buttons { flex-direction: column; }
  body { padding-bottom: 52px; }
}
