/* ============================================
   HEALTHY INTERIOR SOLUTIONS - MAIN STYLESHEET
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --black: #1a1a1a;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-light: #e9ecef;
  --gray: #6c757d;
  --gray-dark: #495057;
  --text: #212529;
  --green: #52ae3d;
  --green-dark: #3d8a2e;
  --green-light: #e8f5e4;
  --green-pale: #f4faf2;
  --cream: #f7f1e6;
  --navy: #1b202d;
  --red: #dc3545;
  --sans: 'Space Grotesk', system-ui, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ---------- Utility Classes ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--green);
  color: var(--white);
  padding: 0.4rem 0.75rem;
  margin-bottom: 1rem;
}

.section { padding: 5rem 0; }
.section-pale { background: var(--green-pale); }
.section-light { background: var(--off-white); }
.section-dark { background: var(--black); color: var(--white); }

.section-head { margin-bottom: 2.5rem; }
.section-head h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-head p {
  color: var(--gray);
  margin-top: 0.5rem;
}

/* ---------- Emergency Strip ---------- */
.emergency {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8rem;
}
.emergency a { color: var(--white); text-decoration: underline; }

/* ---------- Header ---------- */
.header {
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { flex-shrink: 0; }

/* ---------- Main Nav ---------- */
.main-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.main-nav > ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  font-size: 0.9rem;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.7rem;
  color: #ccc;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li:hover > a {
  color: var(--white);
}
.nav-arrow { font-size: 0.5rem; transition: transform 0.2s; }
.main-nav > ul > li:hover .nav-arrow { transform: rotate(180deg); }

/* ---------- Header Right ---------- */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.header-phone {
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.6rem 1rem;
  background: var(--green);
  color: var(--white);
  border-radius: 4px;
  transition: background 0.2s;
  white-space: nowrap;
}
.header-phone:hover { background: var(--green-dark); }
.header-contact {
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.6rem 1rem;
  background: var(--white);
  color: var(--black);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.header-contact:hover { background: var(--cream); color: var(--black); }

/* ---------- Mega Menu ---------- */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.15s;
  min-width: 520px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
.main-nav > ul > li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}
.mega-category h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-light);
}
.mega-item {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 4px;
  transition: background 0.15s;
  margin-bottom: 0.125rem;
}
.mega-item:hover { background: var(--off-white); }
.mega-item h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

/* ---------- Mobile Nav Toggle ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--gray-light); }
.btn-outline:hover { border-color: var(--text); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: var(--white); }
.btn-white { background: var(--white); color: var(--text); }
.btn-white:hover { background: var(--off-white); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--gray);
  border-bottom: 1px solid var(--gray-light);
}
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.5rem; }

/* ============================================
   HOMEPAGE STYLES
   ============================================ */

/* ---------- Homepage Hero ---------- */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: url('https://healthyinteriorsolutions.com/wp-content/uploads/AdobeStock_1638360974-scaled.jpeg') center/cover;
  opacity: 0.3;
  mask-image: linear-gradient(to left, black 60%, transparent);
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--green); }
.hero-left { max-width: 600px; }
.hero-right { width: 100%; }
.hero-tagline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--green);
  color: var(--white);
  padding: 0.4rem 0.75rem;
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 1.1rem;
  color: #ccc;
  margin-top: 1.25rem;
  line-height: 1.6;
}

/* Homepage Hero Form */
.hero-form {
  background: var(--white);
  color: var(--text);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.hero-form h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  text-align: center;
  font-weight: 700;
  color: var(--text);
}
.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  margin-bottom: 0.75rem;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}
.hero-form textarea {
  resize: vertical;
  min-height: 80px;
}
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.hero-form input::placeholder,
.hero-form textarea::placeholder { color: var(--gray); }
.hero-form select { cursor: pointer; color: var(--gray); }
.hero-form select:valid { color: var(--text); }
.hero-form option { background: var(--white); color: var(--text); }
.hero-form button {
  width: 100%;
  padding: 1rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.25rem;
  transition: background 0.2s;
}
.hero-form button:hover { background: var(--green-dark); }
.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
}
.form-note a { color: var(--green); font-weight: 600; }

/* ---------- Services Grid (Homepage) ---------- */
.services {
  padding: 5rem 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service {
  background: var(--white);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.service-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.service:hover .service-img img { transform: scale(1.05); }
.service-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.service p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.5;
  flex: 1;
}
.service-tag {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  background: var(--green);
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 700;
  align-self: flex-start;
}
.service-link {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
}
.service-link:hover { text-decoration: underline; }

/* Services grid variant for icon cards (6 items) */
.services-grid.icon-cards {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .services-grid.icon-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .services-grid.icon-cards { grid-template-columns: 1fr; }
}

/* ---------- Feature Grid (clean, no card chrome) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
}
.feature-item {
  text-align: left;
}
.feature-item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--green);
}
.feature-item-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
}
.feature-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.feature-item p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
}
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Symptom Checklist (3 categories) ---------- */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  margin-bottom: 3rem;
}
.symptom-group h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--green);
}
.symptom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.symptom-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.45;
}
.symptom-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--green-light);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2352ae3d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  margin-top: 0.05rem;
}
.symptom-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.symptom-photos img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
@media (max-width: 1024px) {
  .symptom-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
}
@media (max-width: 600px) {
  .symptom-grid { grid-template-columns: 1fr; gap: 2rem; }
  .symptom-photos { grid-template-columns: 1fr; gap: 1rem; }
  .symptom-photos img { height: 240px; }
}

/* ---------- Process (detailed 4-step with included items) ---------- */
.process-detailed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem 4rem;
}
.process-detailed-step {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 1.75rem;
}
.process-detailed-num {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
.process-detailed-step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--white);
  line-height: 1.2;
}
.process-detailed-step > p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin: 0 0 1.25rem 0;
}
.process-detailed-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.process-detailed-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding-left: 1.1rem;
  position: relative;
}
.process-detailed-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .process-detailed { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-detailed-step h3 { font-size: 1.3rem; }
}

/* ---------- Signs Bento Grid ---------- */
.signs-header {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.signs-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}
.signs-header h2 .accent {
  color: rgba(0,0,0,0.3);
}
.signs-header p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--gray-dark);
  margin: 0 0 0.4rem 0;
}
.signs-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.signs-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0;
  background: var(--gray-light);
}
.signs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.signs-card {
  border-top: 2px solid var(--green);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
}
.signs-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: var(--text);
  line-height: 1.3;
}
.signs-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray-dark);
  margin: 0;
}
@media (max-width: 1024px) {
  .signs-header { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; margin-bottom: 2.5rem; }
  .signs-header h2 { font-size: 2.25rem; }
  .signs-bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .signs-bento { grid-template-columns: 1fr; }
  .signs-photo { aspect-ratio: 16 / 10; }
}

/* ---------- Numbered Services (editorial grid) ---------- */
.services-numbered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
}
.service-numbered {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 1.5rem;
}
.service-numbered-num {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 1rem;
}
.service-numbered h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: var(--white);
  line-height: 1.3;
}
.service-numbered p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.service-numbered p a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.service-numbered p a:hover { color: var(--green); }
@media (max-width: 1024px) {
  .services-numbered { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
}
@media (max-width: 600px) {
  .services-numbered { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Photo Strip (3-up image row) ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.photo-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: 220px; }
}

/* ---------- Process (modern) ---------- */
.process-modern-header {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.process-modern-header h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.process-modern-header h2 .accent {
  color: rgba(0,0,0,0.3);
}
.process-modern-header p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 0.4rem 0;
  color: var(--gray-dark);
}
.process-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
}
.process-modern-grid::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(2.5rem + 22px);
  right: calc(2.5rem + 22px);
  height: 1px;
  background: rgba(0,0,0,0.12);
  z-index: 0;
}
.process-modern-step {
  position: relative;
  z-index: 1;
}
.process-modern-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.process-modern-step h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
}
.process-modern-step p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray-dark);
  margin: 0;
}

/* Process on navy: green accent on lighter half of headline + light gray connector line */
.bg-navy .process-modern-header h2 .accent { color: var(--green); }
.bg-navy .process-modern-header p { color: rgba(255,255,255,0.75); }
.bg-navy .process-modern-grid::before { background: rgba(255,255,255,0.18); }
.bg-navy .process-modern-step p { color: rgba(255,255,255,0.75); }

@media (max-width: 1024px) {
  .process-modern-header { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; margin-bottom: 3rem; }
  .process-modern-header h2 { font-size: 2.25rem; }
  .process-modern-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-modern-grid::before { display: none; }
}
@media (max-width: 600px) {
  .process-modern-grid { grid-template-columns: 1fr; }
}

/* ---------- Section Background Variants ---------- */
.bg-cream { background: var(--cream); }

.bg-green { background: var(--green); color: var(--white); }
.bg-green h1, .bg-green h2, .bg-green h3, .bg-green h4 { color: var(--white); }
.bg-green p { color: rgba(255,255,255,0.92); }
.bg-green a { color: var(--white); text-decoration: underline; }
.bg-green .btn-primary { background: var(--white); color: var(--green); }
.bg-green .btn-primary:hover { background: var(--cream); }
.bg-green .why-us-link { color: var(--white); }
.bg-green .why-us-list li { color: var(--white); }
.bg-green .why-us-list li::before {
  background-color: rgba(255,255,255,0.18);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.bg-green .feature-item h3 { color: var(--white); }
.bg-green .feature-item p { color: rgba(255,255,255,0.9); }
.bg-green .feature-item-icon { color: var(--white); }
.bg-green .content-block h3 { color: var(--white); }
.bg-green .content-block p { color: rgba(255,255,255,0.92); }
.bg-green .process-step h3 { color: var(--white); }
.bg-green .process-step p { color: rgba(255,255,255,0.9); }
.bg-green .process-number { background: var(--white); color: var(--green); }
.bg-green .before-after figcaption { color: rgba(255,255,255,0.85); }
.bg-green .faq-question { color: var(--white); }
.bg-green .faq-question:hover { color: rgba(255,255,255,0.85); }
.bg-green .faq-answer-inner { color: rgba(255,255,255,0.92); }
.bg-green .faq-item { border-color: rgba(255,255,255,0.25); }
.bg-green .faq-icon { color: var(--white); }

.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.85); }
.bg-navy a:not(.btn) { color: var(--green); }
.bg-navy .btn-primary { color: var(--white); }
.bg-navy .why-us-list li { color: var(--white); }
.bg-navy .why-us-list li::before {
  background-color: rgba(255,255,255,0.1);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2352ae3d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.bg-navy .why-us-content h2 { color: var(--white); }
.bg-navy .why-us-content > p { color: rgba(255,255,255,0.8); }
.bg-navy .why-us-link { color: var(--green); }
.bg-navy .why-us-image { box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.bg-navy .feature-item h3 { color: var(--white); }
.bg-navy .feature-item p { color: rgba(255,255,255,0.85); }
.bg-navy .feature-item-icon { color: var(--green); }
.bg-navy .content-block h3 { color: var(--white); }
.bg-navy .content-block p { color: rgba(255,255,255,0.85); }
.bg-navy .process-step h3 { color: var(--white); }
.bg-navy .process-step p { color: rgba(255,255,255,0.85); }
.bg-navy .process-number { background: var(--green); color: var(--white); }
.bg-navy .faq-question { color: var(--white); }
.bg-navy .faq-answer-inner { color: rgba(255,255,255,0.85); }
.bg-navy .faq-item { border-color: rgba(255,255,255,0.15); }
.bg-navy .before-after figcaption { color: rgba(255,255,255,0.7); }

/* ---------- Why Us (modern split) ---------- */
.why-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-us-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  display: block;
}
.why-us-content .eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.why-us-content .eyebrow-line::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}
.why-us-content h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.why-us-content > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-dark);
  margin-bottom: 2rem;
  max-width: 38rem;
}
.why-us-list {
  list-style: none;
  margin: 0 0 2.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-us-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text);
}
.why-us-list li::before {
  content: '';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2352ae3d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  margin-top: 0.1rem;
}
.why-us-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.why-us-link {
  font-weight: 600;
  color: var(--green);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}
.why-us-link:hover { text-decoration: underline; }
.why-us-link::after { content: '→'; }
@media (max-width: 1024px) {
  .why-us { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-us-content h2 { font-size: 2.25rem; }
}

/* ---------- Before / After Split ---------- */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.before-after figure { margin: 0; }
.before-after img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.before-after figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-dark);
}
@media (max-width: 768px) {
  .before-after { grid-template-columns: 1fr; }
  .before-after img { height: 280px; }
}

/* ---------- Certs Bar (Homepage) ---------- */
.certs {
  padding: 2.5rem 0;
  background: var(--black);
  color: var(--white);
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.cert-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--green);
}
.cert-desc {
  font-size: 0.85rem;
  color: #aaa;
}

/* ---------- Areas Section (Homepage) ---------- */
.areas {
  padding: 5rem 0;
  background: var(--off-white);
}
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.areas-grid h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1.5rem;
  color: var(--text);
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.area {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.65rem 1rem;
  border: 1px solid var(--gray-light);
  color: var(--text);
  transition: all 0.2s;
  background: var(--white);
}
.area:hover { border-color: var(--green); color: var(--green); }
.area.hq { background: var(--green); color: var(--white); border-color: var(--green); }
.areas-map {
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.areas-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- About Section (Homepage) ---------- */
.about {
  padding: 5rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--text);
}
.about-content p {
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-content p:last-of-type {
  margin-bottom: 1.5rem;
}
.about-values {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-light);
}
.about-value {
  font-size: 0.85rem;
}
.about-value strong {
  display: block;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}
.about-value span {
  color: var(--gray);
}

/* ---------- Testimonials (Homepage) ---------- */
.testimonials {
  padding: 5rem 0;
  background: var(--off-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial {
  padding: 1.5rem;
  background: var(--white);
  border-left: 4px solid var(--green);
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text);
}
.testimonial-author {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
}
.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 0.75rem;
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */

/* ---------- Service Page Hero ---------- */
.service-hero {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: var(--hero-bg) center/cover;
  opacity: 0.25;
  mask-image: linear-gradient(to left, black 60%, transparent);
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent);
  pointer-events: none;
}
.service-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.service-hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.service-hero h1 span { color: var(--green); }
.service-hero-desc {
  font-size: 1.15rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Two Column Grid ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.two-col h2 span { color: var(--green); }
.two-col p {
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.two-col img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ---------- Pricing Card (Service Pages) ---------- */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 600px;
}
.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-light);
}
.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
}
.pricing-desc {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.pricing-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.pricing-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--gray-dark);
}
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ---------- Process Section ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.process-grid.six-step {
  grid-template-columns: repeat(3, 1fr);
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: var(--gray-light);
}
.process-grid.six-step .process-step:not(:last-child)::after {
  display: none;
}
.process-number {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}
.process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.process-step p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ---------- Area Grid (Service Pages) ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.area-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
}
.area-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.area-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  padding: 1.25rem 0;
  background: var(--black);
  color: var(--white);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.trust-item-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.15rem;
}
.trust-item-desc {
  font-size: 0.75rem;
  color: #aaa;
}

/* ---------- FAQ Section ---------- */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-light);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-family: inherit;
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  font-size: 1.5rem;
  color: var(--green);
  transition: transform 0.3s;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: var(--gray-dark);
  line-height: 1.7;
}
.faq-answer-inner a {
  color: var(--green);
  font-weight: 600;
}

/* ---------- Schedule Section ---------- */
.schedule-section {
  padding: 5rem 0;
  background: var(--green-pale);
}
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.schedule-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.schedule-info p {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.schedule-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.schedule-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.schedule-contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}
.schedule-contact-item h3 {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.1rem;
}
.schedule-contact-item p {
  margin: 0;
  font-weight: 600;
  color: var(--text);
}
.schedule-contact-item a {
  color: var(--text);
}
.schedule-contact-item a:hover {
  color: var(--green);
}
.schedule-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ---------- Schedule Form ---------- */
.schedule-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.schedule-form h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.schedule-form > p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* ---------- Form Styles (Shared) ---------- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--green-dark); }

/* ---------- Map Section ---------- */
.map-section {
  padding: 4rem 0;
  background: var(--white);
}
.map-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}
.map-section > .container > p {
  text-align: center;
  color: var(--gray-dark);
  margin-bottom: 2rem;
}
.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.map-wrap iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* ============================================
   PAGE HERO (Pricing, Gallery, Contact)
   ============================================ */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.page-hero p {
  color: #aaa;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing {
  padding: 4rem 0;
  background: var(--off-white);
}
.pricing-category {
  margin-bottom: 3rem;
}
.pricing-category:last-child {
  margin-bottom: 0;
}
.pricing-category-header {
  margin-bottom: 1.5rem;
}
.pricing-category-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Pricing page card overrides */
.pricing .pricing-card {
  border: 1px solid var(--gray-light);
  padding: 0;
  max-width: none;
}
.pricing-card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.pricing-card-title h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.pricing-card-title .unit {
  font-size: 0.8rem;
  color: var(--gray);
}
.pricing-card-price {
  text-align: right;
  flex-shrink: 0;
}
.pricing-card-price .amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green);
}
.pricing-card-price .per {
  font-size: 0.8rem;
  color: var(--gray);
}
.pricing-card-body {
  padding: 1.5rem;
  flex: 1;
}
.pricing-card-body p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.pricing-card-body p:last-child {
  margin-bottom: 0;
}
.pricing-card-body h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin: 1.25rem 0 0.75rem;
}
.pricing-card-body h4:first-child {
  margin-top: 0;
}
.pricing-card-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pricing-card-body li {
  font-size: 0.85rem;
  color: var(--gray-dark);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.pricing-card-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.pricing-note {
  background: var(--green-pale);
  border-left: 3px solid var(--green);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin-top: 1rem;
}
.pricing-important {
  background: #fff3cd;
  border-left: 3px solid #ffc107;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin-top: 1rem;
}
.pricing-card.full-width {
  grid-column: span 2;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery {
  padding: 4rem 0;
  background: var(--off-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact {
  padding: 5rem 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-info > p {
  color: var(--gray-dark);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green-dark);
}
.contact-item-content h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-bottom: 0.25rem;
}
.contact-item-content p {
  font-size: 1.1rem;
  color: var(--text);
}
.contact-item-content a {
  color: var(--green);
  font-weight: 600;
}
.contact-item-content a:hover {
  text-decoration: underline;
}
.contact-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.contact-form-wrap {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: 8px;
}
.contact-form-wrap h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-form-wrap > p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.social-links {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-light);
}
.social-links h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-bottom: 1rem;
}
.social-icons {
  display: flex;
  gap: 0.75rem;
}
.social-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.social-icon:hover {
  background: var(--green);
  border-color: var(--green);
}
.social-icon:hover svg {
  color: var(--white);
}
.social-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gray-dark);
}

/* Contact page map section override */
.contact ~ .map-section {
  background: var(--green-pale);
  padding: 5rem 0;
}
.contact ~ .map-section .map-wrap iframe {
  height: 400px;
}

/* Hours Section */
.hours-section {
  padding: 4rem 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.hours-section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.hours-section p {
  color: #aaa;
  margin-bottom: 1.5rem;
}
.hours-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-size: 1.25rem;
  font-weight: 700;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  padding: 4rem 0;
  text-align: center;
  background: var(--green);
  color: var(--white);
}
.cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.cta p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 0 1.5rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
  margin-bottom: 1rem;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.5rem; }
.footer a { color: #ccc; }
.footer a:hover { color: var(--green); }
.footer-tagline { color: #888; font-size: 0.85rem; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 0.75rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.full-width { grid-column: span 1; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.featured { grid-column: span 1; grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-values { flex-direction: column; gap: 1rem; }
  .areas-grid { grid-template-columns: 1fr; gap: 2rem; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-phone { display: none; }
  .header-contact { display: none; }

  /* Mobile Nav Active State */
  .main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    border-top: 1px solid #333;
    padding: 1rem 0;
    max-height: 80vh;
    overflow-y: auto;
  }
  .main-nav.active > ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav.active > ul > li > a {
    padding: 1rem 2rem;
    border-bottom: 1px solid #333;
  }
  .main-nav.active .mega-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    width: 100%;
    grid-template-columns: 1fr;
    box-shadow: none;
    border-radius: 0;
    background: #222;
    padding: 1rem 2rem;
    display: none;
  }
  .main-nav.active > ul > li.menu-open .mega-menu {
    display: grid;
  }
  .main-nav.active .mega-category {
    margin-bottom: 1rem;
  }
  .main-nav.active .mega-category h4 {
    color: #888;
    border-bottom-color: #444;
  }
  .main-nav.active .mega-item h5 {
    color: #ccc;
  }
  .main-nav.active .mega-item:hover {
    background: #333;
  }

  /* Hamburger Animation */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 768px) {
  .hero-right { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .process-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; }
  .schedule-buttons { flex-direction: column; }
  .contact-buttons { flex-direction: column; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .emergency { font-size: 0.7rem; gap: 1rem; padding: 0.5rem 1rem; }
  .header-inner { padding: 0.75rem 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .reviews-stats { flex-direction: column; gap: 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ---------- Testimonials & Reviews ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--green);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars span {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-info p {
  font-size: 0.85rem;
  color: var(--gray);
}

.testimonial-service {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
  background: var(--green-light);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.25rem;
}

/* Google Rating Summary */
.google-rating {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}

.google-rating-logo {
  height: 40px;
}

.google-rating-score {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.google-rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.google-rating-max {
  font-size: 1.25rem;
  color: var(--gray);
}

.google-rating-stars {
  display: flex;
  gap: 0.25rem;
}

.google-rating-stars span {
  color: #fbbf24;
  font-size: 1.5rem;
}

.google-rating-count {
  font-size: 0.95rem;
  color: var(--gray);
}

.google-rating-count strong {
  color: var(--text);
}

/* Reviews Page Specific */
.reviews-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
  text-align: center;
}

.reviews-stat h3 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.reviews-stat p {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 2rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.review-meta h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.review-meta p {
  font-size: 0.85rem;
  color: var(--gray);
}

.review-stars {
  display: flex;
  gap: 0.15rem;
}

.review-stars span {
  color: #fbbf24;
  font-size: 1.1rem;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.review-service {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
  background: var(--green-light);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-top: 1rem;
}

/* Filter Tabs for Reviews Page */
.reviews-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--gray-light);
  border-radius: 50px;
  background: var(--white);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* Compact Testimonial for Service Pages */
.testimonials-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonials-compact.three-col {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .testimonials-compact.three-col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .testimonials-compact { grid-template-columns: 1fr; }
  .testimonials-compact.three-col { grid-template-columns: 1fr; }
  .google-rating { flex-direction: column; text-align: center; gap: 1rem; }
}

/* ============================================
   CONTENT GRID LAYOUT (Sidebar Pages)
   ============================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.content-main {
  min-width: 0;
}

.content-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-box {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.sidebar-box p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.sidebar-box .btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .content-sidebar {
    position: static;
  }
}

/* ---------- Check List ---------- */
.check-list {
  list-style: none;
}

.check-list li {
  padding: 0.6rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--gray-dark);
  font-size: 0.95rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ---------- Two Column Grid (Generic) ---------- */
.two-col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .two-col-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Result Cards ---------- */
.result-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.result-card.positive {
  border-color: var(--green);
  border-width: 2px;
}

.result-card.negative {
  border-color: #f59e0b;
  border-width: 2px;
}

.result-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.result-card.positive h3 {
  color: var(--green);
}

.result-card.negative h3 {
  color: #d97706;
}

.result-card p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.result-card ul {
  list-style: none;
  text-align: left;
}

.result-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.result-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ---------- Comparison Grid ---------- */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.comparison-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 2rem;
}

.comparison-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--green);
}

.comparison-card ul {
  list-style: none;
}

.comparison-card ul li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-light);
}

.comparison-card ul li:last-child {
  border-bottom: none;
}

.comparison-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Service Area Links ---------- */
.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.area-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  color: var(--text);
  transition: all 0.2s;
}

.area-link:hover {
  border-color: var(--green);
  color: var(--green);
}

.area-link.primary {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.area-link.primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

/* ---------- Info Cards Grid ---------- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.info-card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.info-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- Six Column Grid (Signs/Reasons) ---------- */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sign-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.sign-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.sign-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

.sign-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.sign-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .signs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .signs-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Testing Types Grid ---------- */
.testing-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testing-type {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 1.5rem;
}

.testing-type h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.testing-type p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .testing-types {
    grid-template-columns: 1fr;
  }
}

/* ---------- Service Cards (Icon Cards) ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.service-card p a {
  color: var(--green);
  font-weight: 600;
}

.service-card p a:hover {
  text-decoration: underline;
}

/* ---------- Content Blocks ---------- */
.content-block {
  margin-bottom: 2rem;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.content-block p {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

.content-block p a {
  color: var(--green);
  font-weight: 600;
}

.content-block p a:hover {
  text-decoration: underline;
}

/* ---------- Sidebar Box Variations ---------- */
.sidebar-box h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.sidebar-box.highlight {
  background: var(--green-pale);
  border-color: var(--green);
}

/* ---------- Result Icons ---------- */
.result-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.result-icon svg {
  width: 32px;
  height: 32px;
}

.result-icon.good {
  background: var(--green-light);
}

.result-icon.good svg {
  color: var(--green);
}

.result-icon.action {
  background: #fef3c7;
}

.result-icon.action svg {
  color: #d97706;
}

/* ---------- Trust Items (Horizontal) ---------- */
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.15rem;
}

.trust-item span {
  font-size: 0.75rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .trust-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* ---------- Comparison Grid (3 columns) ---------- */
@media (min-width: 1024px) {
  .comparison-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- FAQ Container ---------- */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================
   VISUAL ENHANCEMENTS (Test)
   ============================================ */

/* ---------- Enhanced Card Hover (Pronoss Style) ---------- */
.service-card.enhanced {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-light);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.service-card.enhanced::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 2px solid var(--green);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-card.enhanced:hover {
  transform: translateY(-2px);
  border-color: transparent;
}

.service-card.enhanced:hover::before {
  opacity: 1;
}

/* Cleaner icon style - no pale green background */
.service-card.enhanced .service-card-icon {
  background: var(--white);
  border: 2px solid var(--gray-light);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.service-card.enhanced:hover .service-card-icon {
  border-color: var(--green);
  background: var(--green);
}

.service-card.enhanced:hover .service-card-icon svg {
  color: var(--white);
}

/* ---------- Diagonal Section Divider ---------- */
.section-divider {
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
  z-index: 1;
}

.section-divider-reverse::after {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
}

/* ---------- Accent Corner Card ---------- */
.accent-card {
  position: relative;
  overflow: hidden;
}

.accent-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--green);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.accent-card:hover::before {
  opacity: 0.2;
}

/* ---------- Process Steps Enhanced ---------- */
.process-step.enhanced {
  transition: transform 0.25s ease;
}

.process-step.enhanced:hover {
  transform: translateY(-4px);
}

.process-step.enhanced .process-number {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step.enhanced:hover .process-number {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(82, 174, 61, 0.3);
}

/* ---------- Testimonial Card Enhanced ---------- */
.testimonial-card.enhanced {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card.enhanced:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.testimonial-card.enhanced .testimonial-stars span {
  transition: transform 0.2s ease;
}

.testimonial-card.enhanced:hover .testimonial-stars span {
  transform: scale(1.1);
}

/* ---------- Area Cards Enhanced ---------- */
.area-card.enhanced {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.area-card.enhanced::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.area-card.enhanced:hover {
  border-color: var(--green);
}

.area-card.enhanced:hover::before {
  transform: scaleX(1);
}

/* ---------- Pricing Card Enhanced ---------- */
.pricing-card.enhanced {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.enhanced:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(82, 174, 61, 0.15);
}

/* ---------- Check List Animated ---------- */
.check-list.animated li {
  opacity: 0;
  transform: translateX(-10px);
  animation: fadeInLeft 0.4s ease forwards;
}

.check-list.animated li:nth-child(1) { animation-delay: 0.05s; }
.check-list.animated li:nth-child(2) { animation-delay: 0.1s; }
.check-list.animated li:nth-child(3) { animation-delay: 0.15s; }
.check-list.animated li:nth-child(4) { animation-delay: 0.2s; }
.check-list.animated li:nth-child(5) { animation-delay: 0.25s; }
.check-list.animated li:nth-child(6) { animation-delay: 0.3s; }
.check-list.animated li:nth-child(7) { animation-delay: 0.35s; }
.check-list.animated li:nth-child(8) { animation-delay: 0.4s; }

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---------- Section Background Accent ---------- */
.section-accent {
  position: relative;
}

.section-accent::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  opacity: 0.03;
  pointer-events: none;
}

/* ---------- Image Hover Zoom ---------- */
.img-hover-zoom {
  overflow: hidden;
  border-radius: 8px;
}

.img-hover-zoom img {
  transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
  transform: scale(1.05);
}

/* ---------- Trust Bar Enhanced ---------- */
.trust-bar.enhanced .trust-item-name {
  position: relative;
  display: inline-block;
}

.trust-bar.enhanced .trust-item-name::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--green);
  opacity: 0.5;
}

/* ---------- Two Column Image Border ---------- */
.two-col .img-frame {
  position: relative;
}

.two-col .img-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 2px solid var(--green);
  border-radius: 8px;
  opacity: 0.2;
  z-index: -1;
}

.two-col .img-frame img {
  position: relative;
  z-index: 1;
}

/* ---------- Section with Background Image ---------- */
.section-with-bg {
  position: relative;
  background-size: cover;
  background-position: center;
}

.section-with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.85) 100%);
  z-index: 0;
}

.section-with-bg > .container {
  position: relative;
  z-index: 1;
}

.section-with-bg h2,
.section-with-bg p {
  color: var(--white);
}

.section-with-bg .service-card.enhanced {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.section-with-bg .service-card.enhanced h3 {
  color: var(--white);
}

.section-with-bg .service-card.enhanced p {
  color: rgba(255, 255, 255, 0.7);
}

.section-with-bg .service-card.enhanced p a {
  color: var(--green);
}

.section-with-bg .service-card.enhanced .service-card-icon {
  background: transparent;
  border-color: var(--green);
}

.section-with-bg .service-card.enhanced .service-card-icon svg {
  color: var(--green);
}

.section-with-bg .service-card.enhanced:hover {
  background: rgba(255, 255, 255, 0.1);
}

.section-with-bg .service-card.enhanced:hover .service-card-icon {
  background: var(--green);
}

.section-with-bg .service-card.enhanced:hover .service-card-icon svg {
  color: var(--white);
}

/* ---------- Image Strip ---------- */
.image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.image-strip-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.image-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-strip-item:hover img {
  transform: scale(1.1);
}

.image-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-strip-item:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .image-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Stats Row (Alternative to Trust Bar) ---------- */
.stats-row,
.stats-bar {
  padding: 3rem 0;
  background: var(--black);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .stats-row,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stat-item::after {
    display: none;
  }
}

/* ---------- Before/After Comparison ---------- */
.before-after-section {
  padding: 4rem 0;
  background: var(--off-white);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.before-after-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: ew-resize;
}

.before-after-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-item .after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.1s ease;
}

.before-after-item .divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.before-after-item .divider::before {
  content: '⟷';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.before-after-item .label {
  position: absolute;
  bottom: 1rem;
  padding: 0.4rem 0.8rem;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  z-index: 5;
}

.before-after-item .label.before-label {
  left: 1rem;
}

.before-after-item .label.after-label {
  right: 1rem;
}

@media (max-width: 768px) {
  .before-after-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Before/After Compare Cards */
.before-after-compare {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.before-after-compare img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.compare-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(220, 53, 69, 0.9);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.compare-label.after {
  background: var(--green);
}

/* ---------- Before/After Slider ---------- */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  cursor: ew-resize;
  user-select: none;
}

.ba-slider .ba-after {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.ba-slider .ba-before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  /* clip-path controls the reveal */
  clip-path: inset(0 50% 0 0);
}

.ba-slider .ba-before img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-slider .ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--white);
  left: 50%;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.ba-slider .ba-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.ba-slider .ba-handle::after {
  content: '◀ ▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  color: var(--text);
  letter-spacing: 0.1em;
  white-space: nowrap;
  z-index: 1;
}

.ba-slider .ba-label {
  position: absolute;
  top: 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  z-index: 5;
}

.ba-slider .ba-label-before {
  left: 1rem;
  background: rgba(220, 53, 69, 0.9);
  color: var(--white);
}

.ba-slider .ba-label-after {
  right: 1rem;
  background: var(--green);
  color: var(--white);
}

/* ---------- Full-Bleed Process Section ---------- */
.process-fullbleed {
  position: relative;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.process-fullbleed::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.process-fullbleed > .container {
  position: relative;
  z-index: 1;
}

.process-fullbleed h2,
.process-fullbleed p {
  color: var(--white);
}

.process-fullbleed .process-step {
  text-align: center;
}

.process-fullbleed .process-number {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  font-size: 1.5rem;
}

.process-fullbleed .process-step h3 {
  color: var(--white);
  font-size: 1.1rem;
}

.process-fullbleed .process-step p {
  color: rgba(255,255,255,0.7);
}

/* ---------- Photo Service Cards ---------- */
.service-photos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-photo-card {
  text-align: center;
}

.service-photo-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-photo-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-photo-card .price {
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 700;
}

.service-photo-card .price span {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 400;
}

@media (max-width: 768px) {
  .service-photos-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Bold CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: 4rem 0;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.85) 0%, rgba(180, 40, 50, 0.9) 100%);
}

.cta-banner > .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-banner.green::before {
  background: linear-gradient(135deg, rgba(82, 174, 61, 0.85) 0%, rgba(61, 138, 46, 0.9) 100%);
}

.cta-banner.dark::before {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.88) 0%, rgba(26, 26, 26, 0.92) 100%);
}

/* CTA Buttons container */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ---------- Decorative Blobs ---------- */
.has-blobs {
  position: relative;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  pointer-events: none;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--green);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 200px;
  height: 200px;
  background: var(--green);
  bottom: -50px;
  left: -50px;
}

/* ============================================
   MOBILE OPTIMIZATION - SERVICE PAGES
   ============================================ */

@media (max-width: 1024px) {
  /* Service Hero - hide background image on smaller screens */
  .service-hero::before {
    width: 100%;
    opacity: 0.15;
  }

  /* Process fullbleed - disable fixed background (doesn't work on iOS) */
  .process-fullbleed {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  /* Container padding reduction */
  .container {
    padding: 0 1rem;
  }

  /* General section padding */
  .section {
    padding: 3rem 0;
  }

  /* Service Hero mobile adjustments */
  .service-hero {
    padding: 2.5rem 0;
  }

  .service-hero::before {
    display: none;
  }

  .service-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .service-hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .service-hero-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  /* Two-column sections */
  .two-col {
    gap: 2rem;
  }

  .two-col h2 {
    font-size: 1.5rem;
  }

  /* Image frames - hide decorative border on mobile */
  .two-col .img-frame::before {
    display: none;
  }

  /* Pricing card mobile */
  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .pricing-price {
    font-size: 2.5rem;
  }

  /* Process fullbleed mobile */
  .process-fullbleed {
    padding: 3rem 0;
    background-attachment: scroll;
  }

  .process-fullbleed .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-fullbleed .process-step {
    padding: 1.5rem;
  }

  /* CTA Banner mobile */
  .cta-banner {
    padding: 3rem 0;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
  }

  .cta-banner p {
    font-size: 1rem;
  }

  /* Before/After Slider mobile */
  .ba-slider {
    max-width: 100%;
    border-radius: 8px;
  }

  .ba-label {
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    top: 0.5rem;
  }

  .ba-label-before {
    left: 0.5rem;
  }

  .ba-label-after {
    right: 0.5rem;
  }

  .ba-handle::after {
    font-size: 0.7rem;
    padding: 0.35rem 0.5rem;
  }

  /* Before/After Grid mobile */
  .before-after-grid {
    gap: 1rem;
  }

  .before-after-compare {
    border-radius: 8px;
  }

  /* Stats row/bar mobile */
  .stats-row,
  .stats-bar {
    padding: 2rem 0;
  }

  .stats-grid {
    gap: 1rem;
  }

  .stat-item {
    padding: 0 0.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* Testimonials mobile */
  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  /* Schedule section mobile */
  .schedule-section {
    padding: 3rem 0;
  }

  .schedule-info h2 {
    font-size: 1.5rem;
  }

  .schedule-form {
    padding: 1.5rem;
  }

  .schedule-form h3 {
    font-size: 1.25rem;
  }

  /* FAQ mobile */
  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-answer-inner {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
  }

  /* Section with background mobile */
  .section-with-bg {
    padding: 3rem 0;
  }

  .section-with-bg .services-grid {
    gap: 1rem;
  }

  /* Service cards mobile */
  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  /* Map section mobile */
  .map-section {
    padding: 3rem 0;
  }

  .map-wrap {
    height: 300px;
  }

  /* Footer mobile */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  /* Decorative blobs - hide on mobile */
  .blob {
    display: none;
  }

  /* Button spacing fixes */
  .btn + .btn {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  [style*="margin-left: 1rem"].btn {
    margin-left: 0 !important;
    margin-top: 0.75rem;
  }

  /* Center text on mobile for certain sections */
  .section-with-bg > .container > div[style*="text-align: center"],
  .process-fullbleed > .container > div[style*="text-align: center"] {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .service-hero h1 {
    font-size: 1.5rem;
  }

  .two-col h2 {
    font-size: 1.35rem;
  }

  .pricing-price {
    font-size: 2rem;
  }

  .stats-row,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item:not(:nth-child(-n+2)) {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    margin-top: 1rem;
  }

  .stat-item::after {
    display: none;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }

  .emergency {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .breadcrumb {
    font-size: 0.75rem;
  }
}

/* ============================================
   PROCESS ACCORDION (CoolFix Style)
   ============================================ */

.process-accordion-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafa 0%, #f0f4f4 100%);
  position: relative;
  overflow: hidden;
}

.process-accordion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.process-accordion-image {
  position: relative;
}

.process-accordion-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.process-accordion-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.process-accordion-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.process-accordion-content .eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.process-accordion-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.process-accordion-content > p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Accordion Items */
.process-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-accordion-item {
  border-bottom: 1px solid var(--gray-light);
  position: relative;
}

.process-accordion-item:first-child {
  border-top: 1px solid var(--gray-light);
}

.process-accordion-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.process-accordion-item.active::before {
  transform: scaleY(1);
}

.process-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0 1.25rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.process-accordion-trigger h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  transition: color 0.2s ease;
}

.process-accordion-item.active .process-accordion-trigger h3 {
  color: var(--green);
  font-weight: 600;
}

.process-accordion-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.process-accordion-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--gray);
  transition: all 0.3s ease;
}

.process-accordion-item.active .process-accordion-arrow {
  background: var(--green);
  border-color: var(--green);
}

.process-accordion-item.active .process-accordion-arrow svg {
  stroke: white;
  transform: rotate(90deg);
}

.process-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.process-accordion-item.active .process-accordion-body {
  max-height: 200px;
}

.process-accordion-body p {
  padding: 0 1rem 1.25rem 1rem;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .process-accordion-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-accordion-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .process-accordion-content h2 {
    font-size: 1.75rem;
  }

  .process-accordion-section {
    padding: 3rem 0;
  }
}

/* ---------- Service Photo Cards ---------- */
.service-photo-card {
  display: block;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.service-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-photo-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-photo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-photo-card:hover .service-photo-card-img img {
  transform: scale(1.05);
}

.service-photo-card-content {
  padding: 1.5rem;
}

.service-photo-card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.service-photo-card-content p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .services-grid[style*="repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}

/* ---------- Team Accordion ---------- */
.team-accordion {
  display: flex;
  gap: 0.5rem;
  height: 400px;
}

.team-accordion-item {
  flex: 1;
  min-width: 80px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-accordion-item:hover,
.team-accordion-item.active {
  flex: 3;
}

.team-accordion-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 40%, transparent 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.team-accordion-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-accordion-item:hover img {
  transform: scale(1.05);
}

.team-accordion-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  color: white;
}

.team-accordion-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  white-space: nowrap;
}

.team-accordion-content p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
}

.team-accordion-content .team-bio {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  margin-top: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.team-accordion-item:hover .team-bio,
.team-accordion-item.active .team-bio {
  max-height: 100px;
  opacity: 0.85;
  margin-top: 0.75rem;
}

/* Team placeholder styles (no photo) */
.team-accordion-placeholder {
  width: 100%;
  height: 100%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-accordion-placeholder span {
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.team-accordion-item:hover .team-accordion-placeholder span {
  font-size: 6rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .team-accordion {
    flex-direction: column;
    height: auto;
  }

  .team-accordion-item {
    height: 120px;
    min-width: auto;
  }

  .team-accordion-item:hover,
  .team-accordion-item.active {
    height: 200px;
    flex: none;
  }

  .team-accordion-placeholder span {
    font-size: 3rem;
  }
}

/* ==========================================
   CRAWL SPACE PAGE — Mobile Optimization
   ========================================== */

/* iOS zoom prevention — form fields ≥16px */
@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }
}

/* Tablet & smaller phones (≤768px) */
@media (max-width: 768px) {
  /* Tighter section vertical rhythm */
  .section { padding: 3rem 0; }

  /* Editorial headlines scale down */
  .process-modern-header h2,
  .signs-header h2,
  .why-us-content h2 {
    font-size: 2rem;
    line-height: 1.1;
  }

  /* Intro paragraphs */
  .process-modern-header p,
  .signs-header p,
  .why-us-content > p {
    font-size: 1rem;
  }

  /* Service hero — tighter padding & smaller h1 */
  .service-hero { padding: 4rem 0 3rem; }
  .service-hero h1 { font-size: 1.85rem; line-height: 1.15; }
  .service-hero-desc { font-size: 1rem; }

  /* Hero buttons stack full-width */
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  /* Why Us actions wrap & button stretches */
  .why-us-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .why-us-actions .btn {
    width: 100%;
    text-align: center;
  }
  .why-us-link { justify-content: center; }

  /* Process numbers slightly smaller */
  .process-modern-number { width: 40px; height: 40px; font-size: 0.9rem; }
  .process-modern-step h3 { font-size: 1.15rem; }

  /* Numbered services tighter */
  .service-numbered h3 { font-size: 1.1rem; }
  .service-numbered-num { font-size: 0.75rem; margin-bottom: 0.75rem; }

  /* Bento photo aspect on tablet */
  .signs-photo { aspect-ratio: 16 / 10; }

  /* Photo strip height on phone */
  .photo-strip { gap: 0.75rem; }

  /* Why Us list — smaller circle gap on mobile */
  .why-us-list { gap: 0.85rem; }
  .why-us-list li { font-size: 0.95rem; gap: 0.85rem; }

  /* Schedule grid stacks */
  .schedule-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Areas grid stacks */
  .areas-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* FAQ question size on phone */
  .faq-question { font-size: 1rem; padding: 1.25rem 0; }
  .faq-answer-inner { font-size: 0.95rem; padding-bottom: 1.25rem; }

  /* Touch targets — buttons min 44px tall */
  .btn { min-height: 44px; padding: 0.75rem 1.5rem; }

  /* Before/After spacing */
  .before-after { gap: 1rem; }
  .before-after figcaption { font-size: 0.75rem; margin-top: 0.5rem; }
}

/* Small phones (≤480px) */
@media (max-width: 480px) {
  .section { padding: 2.5rem 0; }
  .container { padding: 0 1.25rem; }

  /* Headlines tighter still */
  .process-modern-header h2,
  .signs-header h2,
  .why-us-content h2 {
    font-size: 1.75rem;
    letter-spacing: -0.01em;
  }

  .service-hero h1 { font-size: 1.65rem; }
  .service-hero-desc { font-size: 0.95rem; }

  /* Sign cards — tighten internal spacing */
  .signs-card { padding-top: 1.25rem; }
  .signs-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
  .signs-card p { font-size: 0.9rem; }

  /* Bento gap tight */
  .signs-bento { gap: 1.25rem; }
  .services-numbered { gap: 1.75rem; }

  /* Photo aspect — wider so they don't dominate */
  .signs-photo { aspect-ratio: 16 / 9; }
  .photo-strip img { height: 200px; }
  .before-after img { height: 240px; }
  .why-us-image { border-radius: 8px; }

  /* Process numbers further down */
  .process-modern-grid { gap: 1.75rem; }
  .process-modern-number { margin-bottom: 1rem; }

  /* Form labels tighter */
  .form-group label { font-size: 0.85rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Emergency strip wraps cleanly */
  .emergency { font-size: 0.85rem; padding: 0.5rem 1rem; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
}

/* Very small phones (≤360px) — last-resort scaling */
@media (max-width: 360px) {
  .service-hero h1 { font-size: 1.5rem; }
  .process-modern-header h2,
  .signs-header h2,
  .why-us-content h2 {
    font-size: 1.55rem;
  }
}
