/* ── GREEN TOUCH GLOBAL STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --green-dark:   #152a1a;
  --green-mid:    #1e3d25;
  --green-rich:   #2d5a35;
  --green-accent: #4a8c56;
  --green-light:  #c8e6cc;
  --green-pale:   #f0f7f1;
  --gold:         #c8992a;
  --gold-light:   #fdf3dc;
  --gold-mid:     #e8b84b;
  --cream:        #faf8f3;
  --white:        #ffffff;
  --text-dark:    #111a12;
  --text-mid:     #374038;
  --text-muted:   #5e6e60;
  --border:       #dce8dc;
  --border-mid:   #c4d8c6;
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --radius-xl:    28px;
  --shadow-sm:    0 1px 4px rgba(21,42,26,0.07);
  --shadow-md:    0 4px 16px rgba(21,42,26,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: 'DM Serif Display', serif; line-height: 1.15; color: var(--green-dark); }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
p { color: var(--text-mid); }
a { color: var(--green-rich); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-accent);
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 0.5rem; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; margin-bottom: 2.5rem; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  padding: 13px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--green-dark); border-color: var(--gold); }
.btn-primary:hover { background: #d9a72e; border-color: #d9a72e; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-green { background: var(--green-rich); color: var(--white); border-color: var(--green-rich); }
.btn-green:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-1px); }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--green-dark);
  font-weight: 400;
}
.nav-logo-text { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--white); }
.nav-logo-sub { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); display: block; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta { margin-left: 12px; }
.nav-phone { font-size: 0.82rem; font-weight: 600; color: var(--gold); text-decoration: none; margin-right: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.25s; }
.mobile-menu { display: none; background: var(--green-mid); padding: 1rem 1.5rem 1.5rem; flex-direction: column; gap: 4px; }
.mobile-menu a { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 500; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); text-decoration: none; display: block; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 10px; text-align: center; justify-content: center; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
}

/* ── HERO ── */
.hero {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 110%, rgba(74,140,86,0.28) 0%, transparent 65%),
    repeating-linear-gradient(115deg, transparent, transparent 80px, rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px);
}
.hero-content { position: relative; max-width: 700px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,153,42,0.4);
  background: rgba(200,153,42,0.1);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--green-light); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.72); margin-bottom: 2rem; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 3rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 6px 14px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── STATS ── */
.stats-bar {
  background: var(--green-mid);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.stats-inner { display: flex; flex-wrap: wrap; justify-content: center; }
.stat { text-align: center; padding: 1.5rem 2.5rem; border-right: 1px solid rgba(255,255,255,0.1); flex: 1; min-width: 120px; }
.stat:last-child { border-right: none; }
.stat-number { font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--gold); display: block; line-height: 1; }
.stat-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); display: block; margin-top: 4px; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { border-color: var(--green-accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.service-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.service-link { font-size: 0.8rem; font-weight: 600; color: var(--green-accent); margin-top: 0.75rem; display: inline-block; }

/* ── AREA CARDS ── */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 640px) { .area-grid { grid-template-columns: 1fr; } }
.area-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.area-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--green-dark); margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.area-badge { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-accent); background: var(--green-pale); border: 1px solid var(--border); border-radius: 100px; padding: 3px 10px; }
.city-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.city-pill { font-size: 0.82rem; color: var(--text-mid); background: var(--green-pale); border: 1px solid var(--border); border-radius: 100px; padding: 4px 13px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.15rem 1.5rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--green-dark);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; transition: background 0.15s;
}
.faq-q:hover { background: var(--green-pale); }
.faq-chev { width: 24px; height: 24px; border-radius: 50%; background: var(--green-pale); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s; }
.faq-item.open .faq-chev { background: var(--green-rich); border-color: var(--green-rich); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 1rem; }
.faq-item.open .faq-a { max-height: 600px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--gold-light); border-top: 1px solid rgba(200,153,42,0.2); border-bottom: 1px solid rgba(200,153,42,0.2); padding: 2.5rem 0; }
.trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.trust-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 500; color: var(--green-dark); background: var(--white); border: 1px solid rgba(200,153,42,0.3); border-radius: 100px; padding: 9px 18px; }
.trust-check { width: 18px; height: 18px; border-radius: 50%; background: var(--green-accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── CTA SECTION ── */
.cta-section { background: var(--green-dark); color: var(--white); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(74,140,86,0.25) 0%, transparent 60%); pointer-events: none; }
.cta-section h2 { color: var(--white); position: relative; margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-size: 1.05rem; position: relative; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; }

/* ── FOOTER ── */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.6); padding: 3.5rem 0 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 8px; transition: color 0.15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.78rem; }
.footer-phone { color: var(--gold); font-weight: 600; font-size: 1.1rem; text-decoration: none; display: block; margin-top: 0.5rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--green-dark); padding: 4rem 0 3.5rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(74,140,86,0.25) 0%, transparent 65%); }
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 580px; }
.breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--green-dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-accent); box-shadow: 0 0 0 3px rgba(74,140,86,0.12); }
.form-group textarea { min-height: 130px; resize: vertical; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.5rem; }
.contact-icon { width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--green-pale); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-item h4 { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-info-item p, .contact-info-item a { font-size: 0.95rem; color: var(--green-dark); font-weight: 500; text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .stat { padding: 1.25rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat:last-child { border-bottom: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

/* ── LOGO IMAGE ── */
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
  transition: opacity 0.15s;
}
.nav-logo:hover img { opacity: 0.88; }
.nav-logo { padding: 6px 0; }
footer .nav-logo img,
.footer .nav-logo img {
  filter: brightness(0) invert(1);
  height: 52px;
}

/* ══════════════════════════════════════
   SITE LOGO — clean integration
══════════════════════════════════════ */
.site-logo {
  display: block;
  width: auto;
  transition: opacity 0.15s ease;
}
.nav-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 0;
}
.nav-logo-img .site-logo {
  height: 46px;
  max-width: 220px;
  object-fit: contain;
}
.nav-logo-img:hover .site-logo { opacity: 0.85; }

/* Footer logo — white version */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 0.75rem;
}
.footer-logo {
  height: 54px;
  max-width: 240px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-logo-link:hover .footer-logo { opacity: 1; }

/* Hero logo on homepage */
.hero-logo {
  height: 88px;
  max-width: 360px;
  width: 100%;
  object-fit: contain;
  display: block;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}

/* Remove old nav-logo styles that conflict */
.nav-logo-mark { display: none !important; }
.nav-logo-text { display: none !important; }
.nav-logo-sub  { display: none !important; }

@media (max-width: 820px) {
  .nav-logo-img .site-logo { height: 38px; }
}

/* ══ LOGO ══ */
.nav-logo-img { display:flex; align-items:center; text-decoration:none; padding:4px 0; }
.nav-logo-img .site-logo {
  height: 52px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
  transition: opacity 0.15s;
}
.nav-logo-img:hover .site-logo { opacity: 0.85; }

.footer-logo-link { display:inline-block; margin-bottom:0.75rem; }
.footer-logo {
  height: 58px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.hero-logo {
  height: 110px;
  max-width: 420px;
  width: 100%;
  object-fit: contain;
  display: block;
  margin-bottom: 1.5rem;
}

.nav-logo-mark { display: none !important; }
.nav-logo-text { display: none !important; }
.nav-logo-sub  { display: none !important; }

@media (max-width: 820px) {
  .nav-logo-img .site-logo { height: 40px; }
  .hero-logo { height: 80px; }
}


/* ── NAV PHONE FIX ── */
.nav-phone {
  white-space: nowrap !important;
  font-size: 0.88rem !important;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-inner {
  flex-wrap: nowrap !important;
}
