/* =============================================
   TCR Brush and Concrete Removal — Global Styles
   ============================================= */

:root {
  --green:    #2e5c28;
  --green2:   #245021;
  --green3:   #1a3d18;
  --accent:   #4a8c40;
  --accent2:  #3a7831;
  --white:    #ffffff;
  --offwhite: #f0f0f0;   /* neutral gray page/section bg */
  --card-bg:  #f7f7f7;   /* card surfaces */
  --text:     #1c1c1c;   /* neutral dark text */
  --muted:    #6b7280;   /* neutral medium gray */
  --light:    #e2e2e2;   /* neutral border */
  --radius:   8px;
  --max:      1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--offwhite);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

em { font-style: normal; color: var(--accent); }

/* ---- TYPOGRAPHY ---- */

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- LAYOUT ---- */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; background: var(--white); }
.section--dark { background: var(--green3); color: var(--white); }
.section--light { background: var(--offwhite); }
.section--green { background: var(--green); color: var(--white); }

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(74,140,64,.12);
  border: 1px solid rgba(74,140,64,.25);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
}

.section--dark .section__label,
.section--green .section__label {
  color: #9dd494;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}

.section__heading { margin-bottom: 16px; }
.section__sub { color: var(--muted); max-width: 620px; }
.section--dark .section__sub,
.section--green .section__sub { color: rgba(255,255,255,.75); }

.text-center { text-align: center; }
.text-center .section__sub { margin: 0 auto; }

/* ---- BUTTONS ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .15s, box-shadow .15s;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--green:hover {
  background: var(--green2);
  border-color: var(--green2);
  box-shadow: 0 6px 20px rgba(46,92,40,.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn--outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline-green:hover {
  background: var(--green);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--offwhite);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

/* ---- HEADER ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green3);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo img { height: 48px; width: auto; display: block; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__nav a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.header__nav .nav--highlight {
  background: transparent;
  color: rgba(255,255,255,.82);
  padding: 8px 14px;
}
.header__nav .nav--highlight:hover,
.header__nav .nav--highlight.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  padding: 8px 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  transition: border-color .15s, background .15s;
}
.header__phone:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}
.header__phone svg { flex-shrink: 0; }

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--green3);
  border-top: 1px solid rgba(255,255,255,.1);
  z-index: 99;
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 12px 16px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover { background: rgba(255,255,255,.1); color: var(--white); }
.mobile-nav .nav--highlight {
  background: transparent;
  color: rgba(255,255,255,.85);
}

/* ---- HERO ---- */

.hero {
  background: var(--green3);
  color: var(--white);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(74,140,64,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9dd494;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.hero h1 { margin-bottom: 18px; }

.hero h1 em {
  color: #9dd494;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  max-width: 580px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero__badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

.hero__badge-item svg { flex-shrink: 0; color: #9dd494; }

/* ---- TRUST BAR ---- */

.trust-bar {
  background: var(--green);
  padding: 20px 0;
}

.trust-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .03em;
}

.trust-bar__item svg { flex-shrink: 0; color: #9dd494; }

/* ---- SERVICE CARDS ---- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
}

.service-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  background: #f4f4f4;
  border-bottom: 1px solid var(--light);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(46,92,40,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.service-card__title { font-size: 1.2rem; font-weight: 700; }

.service-card__body { padding: 24px; }

.service-card__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  margin-top: 14px;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.service-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: gap .15s;
}
.service-card__cta:hover { gap: 10px; }

/* ---- WHY SECTION ---- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
}

.why-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(46,92,40,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--green);
}

.why-card__title { font-size: 1.2rem; margin-bottom: 10px; }
.why-card__text { font-size: 15px; color: var(--muted); }

/* ---- SERVICE AREAS ---- */

.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.areas__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.areas__item svg { color: var(--accent); flex-shrink: 0; }

/* ---- CTA BAND ---- */

.cta-band {
  background: var(--green);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 520px; margin: 0 auto 32px; }

.cta-band__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ---- FOOTER ---- */

.site-footer {
  background: var(--green3);
  color: rgba(255,255,255,.75);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand-logo {
  height: 52px;
  width: auto;
  margin-bottom: 14px;
  background: #fff;
  border-radius: 6px;
  padding: 5px 10px;
  display: block;
}

.footer__brand-text { font-size: 14px; line-height: 1.7; }

.footer__col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}

/* =============================================
   BEFORE / AFTER SLIDER
   ============================================= */

.slider-section { padding: 80px 0; }

.slider-outer {
  max-width: 780px;
  margin: 48px auto 0;
}

.slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(46,92,40,.25), 0 4px 16px rgba(0,0,0,.15);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}

/* AFTER = background (always full size) */
.slider-bg-img {
  display: block;
  width: 100%;
  height: auto;
}

/* BEFORE = clipped overlay on top, starting at 50% from the left */
.slider-before-pane {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.slider-before-pane img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;          /* full container width so image spans behind clip */
  height: 100%;
  object-fit: cover;
  max-width: none;
}

/* inline "BEFORE" / "AFTER" labels baked into the image area */
.slider-badge {
  position: absolute;
  top: 16px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 40px;
  pointer-events: none;
  z-index: 12;
}
.slider-badge--before {
  left: 16px;
  background: rgba(0,0,0,.55);
  color: #fff;
}
.slider-badge--after {
  right: 16px;
  background: rgba(46,92,40,.85);
  color: #fff;
}

/* drag handle */
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--white);
  box-shadow: 0 0 10px rgba(0,0,0,.5);
  z-index: 11;
  pointer-events: none;
}

.slider-handle__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  pointer-events: none;
}

.slider-hint {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.slider-hint svg { color: var(--accent); }

/* =============================================
   VIDEO SECTION
   ============================================= */

.video-section { padding: 80px 0; }

.video-wrap {
  max-width: 820px;
  margin: 48px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(46,92,40,.2);
}

.video-wrap video {
  width: 100%;
  display: block;
}

/* ---- PROCESS STEPS ---- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.1); }

.step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step__title { font-size: 1.1rem; margin-bottom: 8px; }
.step__text { font-size: 14px; color: var(--muted); }

/* ---- FAQ ---- */

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-item {
  border: 1px solid var(--light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: background .15s;
}
.faq-question:hover { background: var(--offwhite); }
.faq-question.active { background: rgba(46,92,40,.05); color: var(--green); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--accent);
  transition: transform .2s;
}
.faq-question.active .faq-icon { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--muted);
  border-top: 1px solid var(--light);
}
.faq-answer.open { display: block; padding-top: 16px; }

/* ---- CONTACT FORM ---- */

.contact-form {
  max-width: 680px;
  margin: 48px auto 0;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,92,40,.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 900px) {
  .header__nav,
  .header__phone { display: none; }
  .header__burger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .areas__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
  .why-grid { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero__badges { gap: 14px; }
  .trust-bar__inner { gap: 20px; }
  .contact-form { padding: 28px 20px; }
}
