/* ============================================================
   THEME: BOLD
   Inspired by Asbestos Remediation - accent color + navy, Montserrat
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Karla:wght@400;500;700&display=swap');

:root {
  --primary: #94c11e;
  --primary-dark: #7da818;
  --secondary: #1a2a3a;
  --accent: #94c11e;
  --text: #2d3748;
  --text-light: #4a5568;
  --bg: #fff;
  --bg-light: #f0f5fa;
  --bg-dark: #1a2a3a;
  --border: #e2e8f0;
  --radius: 6px;
  --max-width: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Karla', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* ---- Header ---- */
header {
  background: var(--secondary);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img { height: 40px; width: auto; }
.logo span { }
.logo:hover { text-decoration: none; color: var(--primary); }

nav { display: flex; gap: 20px; }
nav a { color: #ccc; font-weight: 500; font-size: 0.9rem; }
nav a:hover { color: #fff; text-decoration: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-secondary:hover { background: #fff; color: var(--secondary); }

.btn-phone {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.8rem;
}
.btn-phone:hover { background: var(--primary-dark); color: #fff; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #243b53 100%);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2;
}

.hero > *:not(.hero-img) { position: relative; z-index: 1; }

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
}

.hero p {
  font-size: 1.1rem;
  color: #b0c4d8;
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.hero .btn { margin: 0 8px 10px; }

/* ---- Main ---- */
main { max-width: var(--max-width); margin: 0 auto; }

.intro-section {
  padding: 45px 20px;
  font-size: 1.05rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  line-height: 1.85;
}
.intro-section p { margin-bottom: 16px; }
.intro-section p:last-child { margin-bottom: 0; }

/* ---- Content Sections ---- */
.content-section { padding: 45px 20px; border-bottom: 1px solid var(--border); }
.content-section h2 {
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 28px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.subsection { margin-bottom: 25px; padding-left: 18px; border-left: 4px solid var(--primary); }
.subsection h3 { font-size: 1.05rem; color: var(--text); margin-bottom: 8px; font-weight: 700; }
.subsection p { color: var(--text-light); line-height: 1.8; }

/* ---- FAQ ---- */
.faq-section { padding: 45px 20px; background: var(--bg-light); }
.faq-section h2 {
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 800;
}
.faq-item {
  margin-bottom: 15px;
  padding: 22px;
  background: var(--bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}
.faq-item h3 { font-size: 1rem; color: var(--text); margin-bottom: 6px; font-weight: 700; }
.faq-item p { color: var(--text-light); line-height: 1.7; }

/* ---- Google Reviews Widget ---- */
.g-reviews-widget { display: flex; gap: 30px; align-items: flex-start; background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 28px; }
.g-reviews-summary { min-width: 180px; text-align: center; padding: 10px 20px; border-right: 1px solid #e8eaed; flex-shrink: 0; }
.g-logo { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 12px; font-size: 0.9rem; font-weight: 500; color: #5f6368; }
.g-rating-big { font-size: 3rem; font-weight: 400; line-height: 1; color: #202124; margin-bottom: 8px; }
.g-summary-stars { display: flex; justify-content: center; gap: 2px; margin-bottom: 6px; }
.g-star { width: 20px; height: 20px; }
.g-star-full { fill: #f4b400; }
.g-star-empty { fill: #dadce0; }
.g-review-count { font-size: 0.85rem; color: #70757a; }
.g-reviews-list { flex: 1; display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.g-reviews-list::-webkit-scrollbar { height: 6px; }
.g-reviews-list::-webkit-scrollbar-track { background: #f1f3f4; border-radius: 3px; }
.g-reviews-list::-webkit-scrollbar-thumb { background: #dadce0; border-radius: 3px; }
.g-review-card { min-width: 280px; max-width: 320px; flex-shrink: 0; background: #fff; border: 1px solid #e8eaed; border-radius: 8px; padding: 16px; scroll-snap-align: start; }
.g-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.g-avatar { width: 36px; height: 36px; border-radius: 50%; background: #1a73e8; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 500; font-size: 0.95rem; flex-shrink: 0; }
.g-reviewer { display: flex; flex-direction: column; }
.g-reviewer-name { font-size: 0.9rem; font-weight: 500; color: #202124; }
.g-review-time { font-size: 0.78rem; color: #70757a; }
.g-review-stars { display: flex; gap: 1px; margin-bottom: 8px; }
.g-review-stars .g-star { width: 14px; height: 14px; }
.g-review-text { font-size: 0.88rem; line-height: 1.5; color: #3c4043; margin: 0; }

/* ---- Nearby / Cities ---- */
.nearby-section, .cities-section { padding: 40px 20px; border-bottom: 1px solid var(--border); }
.nearby-section h2, .cities-section h2 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 700;
}
.nearby-section a, .cities-section a { font-weight: 500; color: var(--primary-dark); }

/* ---- Form ---- */
.form-section { padding: 45px 20px; text-align: center; background: var(--bg-light); }
.form-section h2 { font-size: 1.6rem; color: var(--secondary); margin-bottom: 8px; text-transform: uppercase; font-weight: 800; }
.form-section p { color: var(--text-light); margin-bottom: 20px; }

/* ---- Contact ---- */
.contact-section { padding: 45px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h2, .contact-form h2 { font-size: 1.3rem; color: var(--secondary); margin-bottom: 15px; text-transform: uppercase; }
.contact-info p { margin-bottom: 10px; }

/* ---- Footer ---- */
footer {
  background: var(--bg-dark);
  color: #ccc;
  padding: 50px 20px;
  text-align: center;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-cta { margin-bottom: 35px; }
.footer-cta h2 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; text-transform: uppercase; font-weight: 800; }
.footer-cta p { margin-bottom: 20px; color: #8899aa; }
.footer-cta .btn { margin: 0 6px 10px; }
.copyright { font-size: 0.8rem; color: #556677; border-top: 1px solid #2a3a4a; padding-top: 20px; }

/* ---- Page Layout (content + sticky sidebar) ---- */
.page-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 30px;
  padding: 0 20px;
  align-items: flex-start;
}

.page-layout main {
  flex: 1;
  min-width: 0;
}

.sidebar {
  width: 320px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  align-self: flex-start;
}

.sidebar-form {
  background: var(--bg-light, #f7f8f9);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  padding: 25px;
}

.sidebar-form h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--secondary, #1a1a2e);
}

.sidebar-form p {
  font-size: 0.9rem;
  color: var(--text-light, #666);
  margin-bottom: 15px;
  line-height: 1.6;
}

.sidebar-form iframe {
  width: 100%;
  border: none;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; justify-content: center; text-align: center; gap: 10px; }
  nav { width: 100%; justify-content: center; }
  .hero h1 { font-size: 2rem; }
  .hero { padding: 50px 20px; }
  .contact-section { grid-template-columns: 1fr; }
  .page-layout { flex-direction: column; padding: 0 10px; }
  .sidebar { width: 100%; position: static; }
  .g-reviews-widget { flex-direction: column; }
  .g-reviews-summary { border-right: none; border-bottom: 1px solid #e8eaed; padding-bottom: 16px; }
  .g-review-card { min-width: 240px; }
}
