@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@300;400;500;600;700&display=swap');

:root {
  --green-dark: #1a4731;
  --green-mid: #2d6a4f;
  --green-light: #e8f5ee;
  --orange: #f97316;
  --orange-dark: #ea6c0a;
  --dark-bg: #0f1f15;
  --text-dark: #1e293b;
  --text-mid: #475569;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --white: #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; color: var(--text-dark); background: #fff; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(28px, 5vw, 52px); }
h2 { font-size: clamp(22px, 3.5vw, 38px); }
h3 { font-size: 20px; }

/* ===== HEADER ===== */
header { position: sticky; top: 0; z-index: 200; background: var(--green-dark); box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: .85rem 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; position: relative; }
.site-brand { font-family: 'Montserrat', sans-serif; font-size: 1.45rem; font-weight: 700; color: #fff; white-space: nowrap; flex-shrink: 0; }
.site-brand:hover { color: #bbf7d0; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); padding: 7px 11px; border-radius: 4px; transition: color .2s, background .2s; }
.nav-links > a:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav-dropdown { position: relative; }
.nav-dropdown-btn { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); background: none; border: none; cursor: pointer; padding: 7px 11px; border-radius: 4px; display: flex; align-items: center; gap: 5px; font-family: 'Roboto', sans-serif; transition: color .2s, background .2s; }
.nav-dropdown-btn:hover { color: #fff; background: rgba(255,255,255,.12); }
.dropdown-arrow { font-size: 10px; transition: transform .2s; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,.18); min-width: 230px; padding: 12px 0 6px; z-index: 300; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 10px 18px; font-size: 14px; color: var(--text-dark); transition: background .15s, color .15s; }
.nav-dropdown-menu a:hover { background: var(--green-light); color: var(--green-dark); }
.btn-call { background: var(--orange); color: #fff !important; padding: .55rem 1.2rem; border-radius: 4px; font-weight: 700 !important; font-size: 14px; white-space: nowrap; transition: background .2s; }
.btn-call:hover { background: var(--orange-dark) !important; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* ===== HOME HERO ===== */
.hero { position: relative; min-height: 72vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; }
.hero-overlay { position: absolute; inset: 0; background: rgba(8,24,16,.68); }
.hero-content { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; padding: 88px 24px; width: 100%; }
.hero-text { max-width: 700px; }
.hero-content h1 { color: #fff; margin-bottom: 18px; font-weight: 800; }
.hero-content p { font-size: clamp(16px,2.2vw,20px); color: #cbd5e1; margin-bottom: 32px; line-height: 1.7; font-weight: 300; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badge { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; padding: 5px 14px; border-radius: 20px; font-size: 13px; font-weight: 500; }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-block; background: var(--orange); color: #fff; padding: .85rem 2rem; border-radius: 4px; font-size: 1rem; font-weight: 700; transition: background .2s; font-family: 'Montserrat', sans-serif; }
.btn-primary:hover { background: var(--orange-dark); color: #fff; }
.btn-green { display: inline-block; background: var(--green-dark); color: #fff; padding: .85rem 2rem; border-radius: 4px; font-size: 1rem; font-weight: 700; transition: background .2s; font-family: 'Montserrat', sans-serif; }
.btn-green:hover { background: var(--green-mid); color: #fff; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--green-dark); padding: 30px 24px; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: clamp(28px,4vw,46px); font-weight: 800; color: #fff; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; text-transform: uppercase; letter-spacing: .09em; }

/* ===== SECTIONS ===== */
section { padding: 72px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 10px; }
.section-title { font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--text-mid); line-height: 1.7; max-width: 640px; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.bg-light { background: #f8fafc; }
.bg-green-light { background: var(--green-light); }
.bg-green-dark { background: var(--green-dark); }
.bg-dark { background: var(--dark-bg); }

/* ===== SERVICE CARDS (home) ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 36px 28px; transition: box-shadow .2s, transform .2s; }
.service-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-3px); }
.service-icon { width: 56px; height: 56px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 28px; }
.service-card h3 { font-size: 19px; color: var(--text-dark); margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.card-link { font-size: 14px; font-weight: 700; color: var(--green-dark); display: inline-flex; align-items: center; gap: 4px; }
.card-link:hover { color: var(--green-mid); }

/* All services pills */
.all-services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.service-pill { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 14px 18px; font-size: 14px; font-weight: 600; color: var(--green-dark); text-align: center; display: block; transition: background .2s, color .2s, border-color .2s; }
.service-pill:hover { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }

/* ===== WHY CARDS ===== */
.bg-green-dark .section-label { color: #86efac; }
.bg-green-dark .section-title { color: #fff; }
.bg-green-dark .section-subtitle { color: #bbf7d0; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; padding: 32px 24px; text-align: center; }
.why-icon { font-size: 40px; margin-bottom: 16px; }
.why-card h3 { font-size: 17px; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: #bbf7d0; line-height: 1.65; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 32px 28px; }
.stars { color: #f59e0b; font-size: 18px; margin-bottom: 14px; }
.review-card blockquote { font-size: 15px; color: #475569; line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.reviewer { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.reviewer span { font-weight: 400; color: var(--text-mid); }

/* ===== AREA GRID ===== */
.area-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 40px; }
.area-item { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 14px 18px; font-size: 14px; font-weight: 600; color: var(--green-dark); text-align: center; display: block; transition: background .2s, color .2s, border-color .2s; }
.area-item:hover { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }

/* ===== CONTACT ===== */
.contact-section { background: var(--dark-bg); color: #fff; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info .section-label { color: #86efac; }
.contact-info .section-title { color: #fff; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-icon { font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.contact-text { font-size: 16px; color: #cbd5e1; line-height: 1.6; }
.contact-text strong { color: #fff; display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.contact-cta { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 44px 36px; text-align: center; }
.contact-cta h3 { font-size: 24px; color: #fff; margin-bottom: 12px; }
.contact-cta p { font-size: 15px; color: #94a3b8; margin-bottom: 28px; line-height: 1.65; }

/* ===== FOOTER ===== */
footer { background: #111; color: #94a3b8; padding: 56px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 28px; }
.footer-brand { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-desc { font-size: 14px; line-height: 1.75; color: #64748b; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: #64748b; transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom { display: flex; flex-direction: column; gap: 10px; text-align: center; }
.footer-copyright { font-size: 13px; color: #475569; }
.footer-disclaimer { font-size: .78rem; color: #475569; line-height: 1.65; max-width: 800px; margin: 0 auto; }

/* ===== SERVICE PAGE HERO (split layout — reference site pattern) ===== */
.svc-page-hero { background: var(--green-dark); padding: 0; overflow: hidden; }
.svc-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.svc-hero-text { padding: 64px 48px 64px 24px; display: flex; flex-direction: column; justify-content: center; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.4); margin: 0 6px; }
.svc-hero-text h1 { color: #fff; margin-bottom: 16px; font-size: clamp(24px,3.5vw,42px); }
.svc-hero-text .lead { font-size: 17px; color: #bbf7d0; line-height: 1.7; margin-bottom: 28px; font-weight: 300; }
.svc-hero-text .badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.svc-badge { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; padding: 5px 14px; border-radius: 20px; font-size: 13px; font-weight: 500; }
.svc-hero-image { display: flex; align-items: center; justify-content: center; overflow: hidden; }
.svc-hero-image img { width: 100%; display: block; }

/* ===== BREADCRUMB (standalone for city pages) ===== */
.page-breadcrumb { background: var(--green-dark); padding: 14px 24px; }
.page-breadcrumb-inner { max-width: 1200px; margin: 0 auto; font-size: 13px; color: rgba(255,255,255,.7); }
.page-breadcrumb-inner a { color: rgba(255,255,255,.85); }
.page-breadcrumb-inner a:hover { color: #fff; }
.page-breadcrumb-inner span { color: rgba(255,255,255,.4); margin: 0 6px; }

/* ===== PROCESS STEPS ===== */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 40px; }
.process-step { text-align: center; padding: 32px 20px; background: #fff; border: 1px solid var(--border); border-radius: 12px; position: relative; }
.step-num { width: 52px; height: 52px; background: var(--green-dark); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.process-step h3 { font-size: 16px; color: var(--text-dark); margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ===== SERVICE AREA CARDS ===== */
.area-cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px; }
.area-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 28px 22px; transition: box-shadow .2s, transform .2s; }
.area-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.09); transform: translateY(-2px); }
.area-card-icon { font-size: 28px; margin-bottom: 12px; }
.area-card h3 { font-size: 17px; color: var(--text-dark); margin-bottom: 8px; }
.area-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.area-card a { font-size: 14px; font-weight: 700; color: var(--green-dark); }
.area-card a:hover { color: var(--green-mid); }

/* ===== FAQ ===== */
.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; padding: 20px 24px; text-align: left; font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background .15s; }
.faq-question:hover { background: var(--green-light); }
.faq-arrow { font-size: 12px; color: var(--green-dark); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 15px; color: var(--text-mid); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ===== PAGE CONTENT (inner pages - full width) ===== */
.page-content { max-width: 1200px; margin: 0 auto; }
.page-content p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }
.page-content h2 { font-size: clamp(20px,3vw,30px); color: var(--text-dark); margin: 40px 0 16px; }
.page-content h3 { font-size: 20px; color: var(--text-dark); margin: 28px 0 12px; }
.page-content ul { list-style: none; padding: 0; margin-bottom: 20px; }
.page-content ul li { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 10px; padding-left: 28px; position: relative; }
.page-content ul li::before { content: "✓"; color: var(--green-dark); font-weight: 700; position: absolute; left: 0; }

/* ===== SECTION CTA ===== */
.section-cta { background: var(--green-dark); border-radius: 16px; padding: 56px 48px; text-align: center; }
.section-cta h2 { color: #fff; margin-bottom: 14px; }
.section-cta p { font-size: 17px; color: #bbf7d0; margin-bottom: 32px; line-height: 1.65; max-width: 560px; margin-left: auto; margin-right: auto; }
.btn-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CITY PAGE HERO ===== */
.city-hero, .page-hero.bg-green { background: var(--green-dark); padding: 72px 24px; }
.city-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero { max-width: 100%; }
.page-hero .section-inner { max-width: 1200px; margin: 0 auto; }
.city-hero h1, .page-hero h1 { color: #fff; margin-bottom: 16px; font-size: clamp(26px,4vw,46px); }
.city-hero .lead, .page-hero .lead { font-size: 18px; color: #bbf7d0; line-height: 1.65; max-width: 680px; font-weight: 300; }
.breadcrumb.light, .breadcrumb.light a { color: rgba(255,255,255,.75); }
.breadcrumb.light a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .area-grid { grid-template-columns: repeat(3,1fr); }
  .all-services-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .area-cards-grid { grid-template-columns: repeat(2,1fr); }
  .svc-hero-inner { grid-template-columns: 1fr; }
  .svc-hero-image { max-height: 460px; }
}
@media (max-width: 768px) {
  section { padding: 52px 20px; }
  .header-inner { position: relative; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--green-dark); flex-direction: column; gap: 0; padding: 4px 0 16px; box-shadow: 0 4px 16px rgba(0,0,0,.25); }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: 12px 24px; width: 100%; border-top: 1px solid rgba(255,255,255,.1); border-radius: 0; }
  .btn-call { margin: 10px 24px 0; text-align: center; display: block; border-radius: 4px !important; }
  .mobile-menu-btn { display: flex; margin-left: auto; }
  .nav-dropdown-btn { padding: 12px 24px; width: 100%; border-top: 1px solid rgba(255,255,255,.1); border-radius: 0; justify-content: space-between; }
  .nav-dropdown-menu { position: static; box-shadow: none; background: rgba(0,0,0,.2); border-radius: 0; padding: 0; min-width: auto; }
  .nav-dropdown-menu a { padding: 10px 24px 10px 44px; color: rgba(255,255,255,.85); }
  .nav-dropdown-menu a:hover { background: rgba(255,255,255,.08); color: #fff; }
  .services-grid, .reviews-grid, .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .area-cards-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: repeat(2,1fr); }
  .all-services-grid { grid-template-columns: repeat(2,1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-inner { grid-template-columns: 1fr; gap: 12px; }
  .svc-hero-text { padding: 48px 24px; }
  .section-cta { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .site-brand { font-size: 1.1rem; }
  .area-grid, .all-services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps, .area-cards-grid { grid-template-columns: 1fr; }
}
