/* ============================================================
   MOLD REMEDIATION CT — Main Stylesheet
   ============================================================ */

:root {
  --green: #059669;
  --green-dark: #064e3b;
  --green-mid: #065f46;
  --green-light: #d1fae5;
  --green-bg: #f0faf4;
  --text: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); }
ul { list-style: none; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--green-dark);
  color: #a7f3d0;
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px 6px;
}
.topbar a { white-space: nowrap; }
.topbar strong { color: #fff; }
.topbar a { color: #6ee7b7; font-weight: 600; text-decoration: none; }

/* ============================================================
   HEADER
   ============================================================ */
header {
  background: var(--white);
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.1;
}
.logo-text span { color: var(--green); }
nav {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-wrap: wrap;
}
nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 5px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
nav a:hover { background: var(--green-bg); color: var(--green-dark); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
  z-index: 200;
  padding: 6px 0;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text);
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--green-bg); color: var(--green-dark); }
.header-cta {
  background: var(--green);
  color: white !important;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.header-cta:hover { background: var(--green-dark); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: white;
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/mold wall.JPG') center/cover no-repeat;
  opacity: 0.12;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(110,231,183,0.2);
  border: 1px solid #6ee7b7;
  color: #6ee7b7;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 span { color: #6ee7b7; }
.hero-desc {
  font-size: 18px;
  color: #a7f3d0;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-primary {
  background: var(--green);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.15s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #047857; transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  padding: 13px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.15s;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); }
.hero-stats {
  display: flex;
  gap: 28px;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 26px; font-weight: 900; color: #6ee7b7; }
.hero-stat span { font-size: 12px; color: #a7f3d0; }

/* Hero form card */
.hero-form-card {
  background: white;
  border-radius: 12px;
  padding: 28px;
  color: var(--text);
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.hero-form-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.hero-form-card p { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 72px 20px; }
.section-alt { background: var(--green-bg); }
.section-dark { background: var(--green-dark); color: white; }
.container { max-width: 1140px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.section-dark .section-label { color: #6ee7b7; }
h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-dark h2 { color: white; }
.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 44px;
}
.section-dark .section-subtitle { color: #a7f3d0; }

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: white;
  border-radius: 10px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.card-icon {
  width: 50px;
  height: 50px;
  background: var(--green-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}
.card h3 { font-size: 19px; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.card p { color: var(--text-light); font-size: 14px; margin-bottom: 16px; }
.card-link {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-link::after { content: '→'; }
.card-link:hover { color: var(--green-dark); }

/* Service page cards with image */
.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.15s;
}
.service-card:hover { transform: translateY(-3px); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 20px; }
.service-card-body h3 { font-size: 17px; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.service-card-body p { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }

/* ============================================================
   TRUST BADGES / STATS
   ============================================================ */
.trust-bar {
  background: var(--green-bg);
  border-top: 1px solid var(--green-light);
  border-bottom: 1px solid var(--green-light);
  padding: 24px 20px;
}
.trust-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
.trust-item span { font-size: 18px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-icon {
  background: var(--green-bg);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-item h4 { font-size: 15px; font-weight: 700; color: var(--green-dark); margin-bottom: 4px; }
.why-item p { font-size: 13px; color: var(--text-light); }

/* ============================================================
   LOCATION LINKS
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.location-link {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.location-link:hover { border-color: var(--green); color: var(--green-dark); background: var(--green-bg); }
.location-link::before { content: '📍'; font-size: 14px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial {
  background: white;
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.stars { color: #f59e0b; font-size: 18px; margin-bottom: 10px; }
.testimonial p { font-size: 14px; color: var(--text); margin-bottom: 14px; font-style: italic; }
.testimonial-author { font-size: 13px; font-weight: 700; color: var(--green-dark); }
.testimonial-location { font-size: 12px; color: var(--text-light); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section { background: var(--green-dark); color: white; padding: 72px 20px; }
.contact-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { color: white; }
.contact-info p { color: #a7f3d0; margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: white;
  text-decoration: none;
  font-size: 15px;
}
.contact-detail-icon {
  background: rgba(255,255,255,0.1);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail span { font-weight: 600; }

/* Form styles */
.form-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  color: var(--text);
}
.form-card h3 { font-size: 20px; font-weight: 800; color: var(--green-dark); margin-bottom: 6px; }
.form-card > p { color: var(--text-light); font-size: 14px; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit {
  width: 100%;
  background: var(--green);
  color: white;
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}
.btn-submit:hover { background: var(--green-dark); }
.form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 10px; }
#form-success {
  display: none;
  background: var(--green-bg);
  border: 1.5px solid var(--green);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 12px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: white;
  padding: 60px 20px;
}
.page-hero .breadcrumb {
  font-size: 13px;
  color: #6ee7b7;
  margin-bottom: 12px;
}
.page-hero .breadcrumb a { color: #6ee7b7; text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { font-size: 36px; font-weight: 900; margin-bottom: 12px; line-height: 1.2; }
.page-hero p { font-size: 17px; color: #a7f3d0; max-width: 580px; margin-bottom: 24px; }

/* ============================================================
   CONTENT SECTIONS (inner pages)
   ============================================================ */
.content-with-sidebar {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.content-main h2 {
  font-size: 26px;
  margin-top: 36px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-light);
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { font-size: 19px; color: var(--green-dark); margin: 20px 0 8px; }
.content-main p { color: var(--text-light); margin-bottom: 14px; font-size: 15px; }
.content-main ul { margin: 12px 0 18px 0; }
.content-main ul li {
  padding: 5px 0 5px 22px;
  position: relative;
  font-size: 15px;
  color: var(--text-light);
}
.content-main ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.content-main .img-full { border-radius: 10px; margin: 20px 0; width: 100%; object-fit: cover; max-height: 350px; }

/* Sidebar */
.sidebar-card {
  background: white;
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  position: sticky;
  top: 80px;
}
.sidebar-card h4 { font-size: 16px; font-weight: 800; color: var(--green-dark); margin-bottom: 14px; }
.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  border-radius: var(--radius);
  padding: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  transition: background 0.15s;
}
.sidebar-phone:hover { background: var(--green-dark); }
.sidebar-links { margin-top: 14px; }
.sidebar-links a {
  display: block;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}
.sidebar-links a:hover { color: var(--green); }
.sidebar-links a:last-child { border-bottom: none; }

/* ============================================================
   BEFORE/AFTER
   ============================================================ */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.ba-item { position: relative; border-radius: 10px; overflow: hidden; }
.ba-item img { width: 100%; height: 220px; object-fit: cover; }
.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green-dark);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 16px; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--text-light); }

/* ============================================================
   MAPS EMBED
   ============================================================ */
.map-embed {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border);
  margin-top: 16px;
}
.map-embed iframe { width: 100%; height: 320px; border: none; display: block; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.15s;
}
.blog-card:hover { transform: translateY(-3px); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-tag {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-card-body h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.blog-card-body p { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.blog-card-body a { color: var(--green); text-decoration: none; font-weight: 600; font-size: 13px; }

/* Blog article */
.blog-article { max-width: 820px; margin: 0 auto; }
.blog-article h2 { font-size: 24px; margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--green-light); }
.blog-article h3 { font-size: 19px; color: var(--green-dark); margin: 22px 0 8px; }
.blog-article p { font-size: 16px; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.blog-article ul { margin: 12px 0 20px 0; }
.blog-article ul li { padding: 5px 0 5px 24px; position: relative; font-size: 15px; color: var(--text-light); }
.blog-article ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.blog-article img { border-radius: 10px; margin: 24px 0; width: 100%; object-fit: cover; max-height: 380px; }
.blog-cta-box {
  background: var(--green-bg);
  border: 2px solid var(--green);
  border-radius: 10px;
  padding: 24px;
  margin: 32px 0;
  text-align: center;
}
.blog-cta-box h4 { font-size: 18px; font-weight: 800; color: var(--green-dark); margin-bottom: 8px; }
.blog-cta-box p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0a0f0d;
  color: #9ca3af;
  padding: 56px 20px 24px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand .logo-text { color: white; font-size: 18px; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}
.footer-col h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: #6ee7b7; }
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: #6ee7b7; text-decoration: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.cta-green {
  background: var(--green);
  color: white;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  transition: background 0.15s;
}
.cta-green:hover { background: var(--green-dark); color: white; }
.divider { height: 3px; background: linear-gradient(90deg, var(--green), var(--green-light)); border: none; border-radius: 2px; margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { display: none; }
  .hero h1 { font-size: 32px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .locations-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .header-inner { flex-wrap: wrap; }
  nav { display: none; }
  .hero h1 { font-size: 26px; }
  .hero-desc { font-size: 15px; }
  h2 { font-size: 26px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-inner { gap: 14px; flex-wrap: wrap; }
  .hero-stats { gap: 16px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}
