/* ============================================================
   VixFix Professional Services — Main Stylesheet
   Brand: Green #034a1c · Yellow #d6ce02 · Black #000000
   ============================================================ */

:root {
  --white: #FFFFFF;
  --off-white: #F7F7F5;
  --alt-bg: #F0EEE9;
  --dark: #000000;
  --dark-section: #034a1c;
  --mid: #555555;
  --light-text: #888888;
  --nav-bg: #034a1c;

  --yellow: #d6ce02;
  --yellow-hover: #b8b102;
  --green: #034a1c;
  --green-hover: #023515;

  --border-green: 1.5px solid #034a1c;
  --border-yellow: 2px solid #d6ce02;

  --font-body: 'Open Sans', system-ui, sans-serif;
  --font-display: 'Montserrat', system-ui, sans-serif;

  --radius: 4px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --max-width: 1200px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- UTILITY ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-dark { background: var(--dark-section); color: var(--white); }
.section-alt { background: var(--alt-bg); }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--yellow); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  min-height: 44px;
}

.btn-primary {
  background: #d6ce02;
  color: #000000;
  border: none;
}
.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  color: #000000;
}

.btn-ghost {
  background: transparent;
  color: #034a1c;
  border: 2px solid #034a1c;
}
.btn-ghost:hover {
  background: #034a1c;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Ghost button on dark/green backgrounds — needs white for visibility */
.section-dark .btn-ghost,
.about-cta .btn-ghost,
.article-cta .btn-ghost,
.reviews-banner .btn-ghost,
.projects-banner .btn-ghost,
.page-banner .btn-ghost {
  color: #ffffff;
  border-color: rgba(255,255,255,0.6);
}
.section-dark .btn-ghost:hover,
.about-cta .btn-ghost:hover,
.article-cta .btn-ghost:hover,
.reviews-banner .btn-ghost:hover,
.projects-banner .btn-ghost:hover,
.page-banner .btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border-color: #ffffff;
}

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

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #034a1c;
  transition: background 0.3s, box-shadow 0.3s;
  border-bottom: 1.5px solid rgba(214,206,2,0.25);
}
.site-header.scrolled {
  background: #023515;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  border-bottom-color: rgba(214,206,2,0.4);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  padding: 6px;
  border-radius: 4px;
  line-height: 0;
  flex-shrink: 0;
}
.logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }

.nav-cta {
  background: #d6ce02 !important;
  color: #000000 !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  border: none !important;
  font-weight: 700 !important;
  min-height: 44px;
}
.nav-cta:hover {
  filter: brightness(1.08);
  background: #d6ce02 !important;
  color: #000000 !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: #121212;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/heropicture.jpg') center center / cover no-repeat;
  filter: grayscale(100%) brightness(0.45);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

/* Left column */
.hero-text { display: flex; flex-direction: column; }

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--yellow);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(214,206,2,0.6);
  padding: 12px 20px;
  border-radius: var(--radius);
  background: rgba(214,206,2,0.08);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
  align-self: flex-start;
}
.hero-phone-btn:hover { background: rgba(214,206,2,0.16); border-color: rgba(214,206,2,0.9); }
.hero-phone-btn svg { color: var(--yellow); flex-shrink: 0; }

/* Hero button row — phone + Free Estimate side by side */
.hero-btn-row { display: flex; gap: 12px; align-items: stretch; }

/* Free Estimate button — hidden on desktop (form card is visible), shown on mobile */
.hero-estimate-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius);
  background: #d6ce02;
  color: #000000;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: filter 0.2s, transform 0.2s;
  text-align: center;
  min-height: 44px;
}
.hero-estimate-btn:hover { filter: brightness(1.08); transform: translateY(-2px); }

/* Right column: estimate form card */
.hero-form-card {
  background: rgba(0, 0, 0, 0.55);
  border: 1.5px solid rgba(214,206,2,0.35);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-form-header { margin-bottom: 4px; }

.hero-form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-form-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.hero-form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-form-card input,
.hero-form-card textarea {
  width: 100%;
  padding: 13px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: border-color 0.2s;
}
.hero-form-card textarea {
  min-height: 108px;
  line-height: 1.5;
  resize: vertical;
}
.hero-form-card input::placeholder,
.hero-form-card textarea::placeholder { color: rgba(255,255,255,0.35); }
.hero-form-card input:focus,
.hero-form-card textarea:focus { outline: none; border-color: var(--yellow); }

.hero-services-btn {
  margin-top: 2px;
  font-size: 0.82rem;
  padding: 10px 24px;
  letter-spacing: 0.06em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

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

.service-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(3,74,28,0.15);
  border-top: 3px solid var(--yellow);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-bottom: 3px solid var(--yellow);
}

.card-icon { margin-bottom: 16px; color: var(--green); }
.card-icon svg { display: block; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.6; }

.services-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--mid);
}
.services-note a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
}
.about-text p strong { color: var(--white); }
.about-text .btn { margin-top: 12px; }

.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-left: 4px solid var(--yellow);
  padding: 28px 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-word {
  font-size: 1.6rem;
  line-height: 1.2;
}
.stat-stars {
  display: flex;
  gap: 4px;
  color: var(--yellow);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   PROCESS — horizontal timeline
   ============================================================ */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 36px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #034a1c;
  border: 3px solid #d6ce02;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-text { flex: 1; }

.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.process-step p { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }

/* Legacy .step-num */
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(214,206,2,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  cursor: default;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 1.4rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: border-color 0.2s, background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.project-card {
  border: 1px solid rgba(3,74,28,0.15);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.project-card:hover { transform: translateY(-3px); }

.project-img {
  height: 220px;
  background: #D0CCC4;
  position: relative;
  overflow: hidden;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-img:not(:has(img))::after,
.project-img img[src=""]::after {
  content: 'Photo Coming Soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #888;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.project-img-1 { background: #BFB9AE; }
.project-img-1 img { object-position: top; }
.project-img-3 { background: #B8BCC0; }
.project-img-3 img { object-position: bottom; }

/* Before / After pairs */
.before-after-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 3px solid var(--yellow);
}
.before-after-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #C8C3BC;
}
.before-after-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.before-after-img:not(:has(img))::after,
.before-after-img img[src=""]::after {
  content: 'Photo Coming Soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #888;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ba-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 2px;
  border-left: 3px solid var(--yellow);
}
.ba-label-after {
  border-left-color: var(--yellow);
}

@media (max-width: 480px) {
  .before-after-wrap { grid-template-columns: 1fr; }
  .before-after-img { height: 180px; }
}

.project-info {
  padding: 20px 24px;
}
.project-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.project-info p { font-size: 0.875rem; color: var(--mid); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  padding: 32px 28px;
  border-left: 4px solid #d6ce02;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.stars { display: flex; gap: 3px; color: #d6ce02; margin-bottom: 16px; }
.stars svg { display: block; }
.testimonial-card p { font-size: 0.95rem; color: var(--mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; flex: 1; }
.reviewer { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dark); }

.reviewer-row { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.reviewer-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #034a1c;
  border: 2px solid #d6ce02;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-text p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}
.contact-item a { color: var(--white); font-weight: 600; }
.contact-item a:hover { color: var(--yellow); }

.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(214,206,2,0.35);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.contact-form textarea { resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #121212;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
  border-top: 3px solid #d6ce02;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo { background: #fff; padding: 5px; border-radius: 4px; }
.footer-brand .logo img { max-height: 40px; }
.footer-brand p { font-size: 0.88rem; margin-top: 8px; }

.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--yellow); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: var(--yellow); }

.footer-social { margin-top: 16px; }
.footer-social a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 6px 14px;
  border-radius: var(--radius);
  display: inline-block;
  transition: all 0.2s;
}
.footer-social a:hover { color: var(--yellow); border-color: rgba(214,206,2,0.6); background: rgba(214,206,2,0.08); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   CONTACT ICON ALIGNMENT
   ============================================================ */
.contact-item svg { color: var(--yellow); flex-shrink: 0; }

/* ============================================================
   NAV ACTIVE STATE
   ============================================================ */
.nav-links a.active {
  color: var(--white);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}

/* ============================================================
   TESTIMONIALS NEAR-TOP TREATMENT
   ============================================================ */
.section-testi {
  padding-top: 64px;
  padding-bottom: 80px;
  background: var(--off-white);
}

.section-testi .eyebrow { color: var(--mid); }

.section-testi .section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-banner {
  position: relative;
  background: var(--dark-section);
  color: var(--white);
  padding: 80px 0 96px;
  overflow: hidden;
}

.about-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 60%, rgba(0,0,0,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(214,206,2,0.05) 0%, transparent 50%);
}

.about-banner .container { position: relative; z-index: 2; }

.about-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 680px;
}

.about-banner h1 em { font-style: normal; color: var(--yellow); }

.about-banner-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.7;
}

.about-philosophy {
  background: var(--alt-bg);
  padding: 80px 0;
}

.philosophy-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.philosophy-quote blockquote em {
  font-style: normal;
  color: var(--green);
}

.philosophy-attr {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light-text);
}

.about-cta {
  background: var(--dark-section);
  color: var(--white);
  padding: 96px 0;
  text-align: center;
}

.about-cta .container {
  text-align: center;
}

.about-cta .eyebrow,
.about-cta .section-title {
  text-align: center;
}

.about-cta .section-title { color: var(--white); margin-bottom: 16px; }

.about-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

/* ============================================================
   SWIPER — SERVICES CAROUSEL (always active on all screen sizes)
   ============================================================ */
.services-carousel-wrap { position: relative; }

.services-swiper { padding-bottom: 52px !important; overflow: hidden !important; }
.services-swiper .swiper-slide { height: auto; }
.services-swiper .service-card { height: 100%; }

.swiper-button-next,
.swiper-button-prev {
  width: 36px !important;
  height: 36px !important;
  background: var(--white) !important;
  border: var(--border-green) !important;
  border-radius: var(--radius) !important;
  color: var(--green) !important;
  box-shadow: var(--shadow);
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 0.75rem !important; font-weight: 900; }
.swiper-button-next:hover,
.swiper-button-prev:hover { background: var(--green) !important; color: var(--white) !important; }

.swiper-pagination-bullet { background: #C8C3BC; opacity: 1; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--yellow) !important; opacity: 1; }

/* ============================================================
   MOBILE-ONLY SWIPERS — desktop grid overrides
   When Swiper is disabled (≥769px), restore original grid layouts
   ============================================================ */
@media (min-width: 769px) {
  .testimonials-swiper { margin-top: 48px; }
  .testimonials-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transform: none !important;
    flex-direction: unset !important;
  }
  .testimonials-swiper .swiper-slide { width: auto !important; margin-right: 0 !important; display: flex; }
  .testimonials-swiper .swiper-pagination { display: none !important; }

  .projects-home-swiper { margin-top: 48px; }
  .projects-home-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    transform: none !important;
    flex-direction: unset !important;
  }
  .projects-home-swiper .swiper-slide { width: auto !important; margin-right: 0 !important; }
  .projects-home-swiper .swiper-pagination { display: none !important; }

  .process-swiper { margin-top: 48px; }
  .process-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    transform: none !important;
    flex-direction: unset !important;
  }
  .process-swiper .swiper-slide { width: auto !important; margin-right: 0 !important; display: flex; }
  .process-swiper .swiper-pagination { display: none !important; }

  .reviews-swiper { margin-top: 48px; }
  .reviews-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    transform: none !important;
    flex-direction: unset !important;
  }
  .reviews-swiper .swiper-slide { width: auto !important; margin-right: 0 !important; display: flex; }
  .reviews-swiper .swiper-pagination { display: none !important; }

  .faq-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    transform: none !important;
    flex-direction: unset !important;
  }
  .faq-swiper .swiper-slide { width: auto !important; margin-right: 0 !important; display: flex; }
  .faq-swiper .swiper-pagination { display: none !important; }

  .blog-card-swiper { margin-top: 48px; }
  .blog-card-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    transform: none !important;
    flex-direction: unset !important;
  }
  .home-blog-swiper .swiper-wrapper { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .blog-card-swiper .swiper-slide { width: auto !important; margin-right: 0 !important; display: flex; }
  .blog-card-swiper .swiper-pagination { display: none !important; }

  .city-swiper { margin-top: 48px; }
  .city-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    transform: none !important;
    flex-direction: unset !important;
  }
  .city-swiper .swiper-slide { width: auto !important; margin-right: 0 !important; display: flex; }
  .city-swiper .swiper-pagination { display: none !important; }

  .sa-why-swiper { margin-top: 36px; }
  .sa-why-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    transform: none !important;
    flex-direction: unset !important;
  }
  .sa-why-swiper .swiper-slide { width: auto !important; margin-right: 0 !important; display: flex; min-width: 0; }
  .sa-why-swiper .swiper-pagination { display: none !important; }
}

/* Mobile swiper spacing and dots */
@media (max-width: 768px) {
  .testimonials-swiper,
  .projects-home-swiper,
  .process-swiper,
  .faq-swiper,
  .blog-card-swiper,
  .city-swiper,
  .sa-why-swiper,
  .reviews-swiper {
    margin-top: 32px;
    padding-bottom: 40px !important;
    overflow: hidden !important;
  }

  /* Show Free Estimate button beside phone button */
  .hero-estimate-btn { display: inline-flex; }
  .hero-btn-row .hero-phone-btn,
  .hero-btn-row .hero-estimate-btn { flex: 1; justify-content: center; }

  /* Hide estimate form card — Free Estimate button handles this CTA on mobile */
  .hero-form-card { display: none; }
  .modal-backdrop .hero-form-card { display: flex; }
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.projects-banner { background: var(--dark-section); color: var(--white); padding: 80px 0 80px; position: relative; overflow: hidden; }
.projects-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 60%, rgba(0,0,0,0.2) 0%, transparent 55%);
}
.projects-banner .container { position: relative; z-index: 2; }
.projects-banner h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 800; line-height: 1.05; color: var(--white); margin-bottom: 16px; }
.projects-banner h1 em { font-style: normal; color: var(--yellow); }
.projects-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 480px; line-height: 1.7; }

.projects-category { padding: 80px 0; }
.projects-category:nth-child(even) { background: var(--alt-bg); }
.projects-category-header { margin-bottom: 40px; }

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.reviews-banner { background: var(--dark-section); color: var(--white); padding: 80px 0 80px; position: relative; overflow: hidden; }
.reviews-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(214,206,2,0.05) 0%, transparent 50%);
}
.reviews-banner .container { position: relative; z-index: 2; }
.reviews-banner h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 800; line-height: 1.05; color: var(--white); margin-bottom: 16px; }
.reviews-banner h1 em { font-style: normal; color: var(--yellow); }
.reviews-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 480px; line-height: 1.7; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.review-card-full {
  padding: 36px 32px;
  border-left: 4px solid #d6ce02;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.review-card-full .stars { display: flex; gap: 4px; color: #d6ce02; margin-bottom: 20px; }
.review-card-full blockquote { font-size: 1.05rem; color: var(--mid); line-height: 1.75; font-style: italic; margin-bottom: 24px; flex: 1; }
.review-card-full .reviewer-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dark); }
.review-card-full .reviewer-location { font-size: 0.8rem; color: var(--light-text); margin-top: 3px; }
.review-card-full .reviewer { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.review-card-full .review-service { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); margin-top: 6px; }

.leave-review {
  background: var(--off-white);
  padding: 80px 0;
  text-align: center;
}
.leave-review h2 { margin-bottom: 12px; }
.leave-review p { color: var(--mid); font-size: 1rem; max-width: 440px; margin: 0 auto 32px; line-height: 1.7; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1060px) {
  .hero-content { grid-template-columns: 1fr 380px; gap: 40px; }
  .services-grid-9 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .services-grid-9 { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .hero-form-card { max-width: 520px; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .projects-grid-home { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .projects-grid-home { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .section { padding: 64px 0; }
  .hero { min-height: 70vh; }
  .logo img { max-height: 40px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--nav-bg); padding: 20px 24px; gap: 16px; border-bottom: 2px solid rgba(214,206,2,0.35); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-content { padding: 48px 20px; }
  .hero h1 { font-size: 2.8rem; }
  .hero-form-card { padding: 28px 20px; max-width: 100%; width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .contact-grid { gap: 32px; }
  .projects-grid { margin-top: 24px; }

  /* Process vertical timeline */
  .process-timeline { grid-template-columns: 1fr; margin-top: 48px; }
  .process-timeline::before {
    top: 28px; bottom: 28px;
    left: 27px; right: auto;
    width: 2px; height: auto;
  }
  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0 0 28px 0;
  }
  .step-circle { margin-bottom: 0; }
}

/* ============================================================
   SECTION-TITLE EM — italicized accent (all section headings)
   ============================================================ */
.section-title em { font-style: normal; color: var(--green); }
.section-dark .section-title em { color: var(--yellow); }
.article-cta .section-title em { color: var(--yellow); }

/* ============================================================
   PAGE BANNER — generic hero banner for inner pages
   ============================================================ */
.page-banner {
  position: relative;
  background: var(--dark-section);
  color: var(--white);
  padding: 80px 0 96px;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 60%, rgba(0,0,0,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(214,206,2,0.05) 0%, transparent 50%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 760px;
}
.page-banner h1 em { font-style: normal; color: var(--yellow); }
.page-banner .page-banner-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================================
   SERVICE AREAS STRIP — above footer on all pages
   ============================================================ */
.service-areas-strip {
  background: #0d0d0d;
  border-top: 1px solid rgba(214,206,2,0.2);
  padding: 28px 0;
  text-align: center;
}
.service-areas-strip p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.service-areas-strip a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.service-areas-strip a:hover { color: var(--yellow); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 96px 0; background: var(--off-white); }

.faq-swiper { margin-top: 48px; }

.faq-item {
  background: var(--white);
  border: 1px solid rgba(3,74,28,0.12);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  height: 100%;
}

.faq-q {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.faq-a {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.7;
}

.faq-a a { color: var(--green); font-weight: 600; text-decoration: underline; }

.home-blog-link { margin-top: 24px; }

/* ============================================================
   SERVICE AREAS INDEX — city card grid
   ============================================================ */
.city-card {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(3,74,28,0.12);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.city-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.city-card-state {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 12px;
}
.city-card-desc {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
}
.city-card-arrow {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
}

/* ============================================================
   BLOG INDEX — article card grid
   ============================================================ */
.blog-card {
  background: var(--white);
  border: 1px solid rgba(3,74,28,0.12);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.blog-card-img {
  height: 200px;
  background: #2a2a2a;
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.blog-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
  flex: 1;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card-link {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  text-decoration: underline;
}
.blog-card-link:hover { color: var(--green-hover); }

/* ============================================================
   BLOG ARTICLE
   ============================================================ */
.article-hero {
  background: var(--dark-section);
  color: var(--white);
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 60%, rgba(0,0,0,0.2) 0%, transparent 55%);
}
.article-hero .container { position: relative; z-index: 2; }
.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 800px;
}
.article-hero h1 em { font-style: normal; color: var(--yellow); }
.article-meta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px;
  color: var(--dark);
}
.article-body p { font-size: 1rem; line-height: 1.8; margin-bottom: 24px; color: var(--mid); }
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin: 48px 0 16px;
  line-height: 1.2;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0 12px;
}
.article-body ul, .article-body ol {
  padding-left: 28px;
  margin-bottom: 24px;
}
.article-body li { font-size: 1rem; line-height: 1.8; color: var(--mid); margin-bottom: 8px; }
.article-body strong { color: var(--dark); font-weight: 700; }
.article-cta {
  background: var(--dark-section);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.article-cta .section-title { color: var(--white); margin-bottom: 16px; }
.article-cta p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.article-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SERVICE AREA PAGE — intro + why section
   ============================================================ */
.sa-intro {
  max-width: 760px;
  line-height: 1.8;
  color: var(--mid);
  font-size: 1rem;
}
.sa-why-swiper {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.sa-why-item {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100%;
  padding: 24px 26px 24px 58px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbf7 100%);
  border: 1px solid rgba(3,74,28,0.14);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
}
.sa-why-item::before {
  content: '✓';
  position: absolute;
  left: 22px;
  top: 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: rgba(3,74,28,0.1);
  color: var(--green);
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.9rem;
  line-height: 1;
}
.sa-why-item strong { color: var(--dark); }
.sa-testimonial {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(3,74,28,0.12);
  border-top: 4px solid var(--yellow);
  padding: 36px 40px;
  border-radius: var(--radius);
  margin: 48px auto 0;
  max-width: 680px;
  text-align: center;
  box-shadow: 0 12px 34px rgba(0,0,0,0.1);
}
.sa-testimonial::before {
  content: '“';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--yellow);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}
.sa-testimonial blockquote {
  font-size: 1.05rem;
  color: var(--mid);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 16px;
}
.sa-testimonial cite {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  font-style: normal;
}

@media (max-width: 700px) {
  .faq-section { padding: 64px 0; }
  .faq-item { padding: 28px 24px; }
  .sa-why-item { padding: 22px 20px 22px 54px; font-size: 0.92rem; }
  .sa-why-item::before { left: 18px; top: 22px; }
  .sa-testimonial { padding: 36px 24px 28px; margin-top: 36px; }
}

/* ============================================================
   SERVICES VANILLA CAROUSEL
   ============================================================ */
.svc-carousel {
  position: relative;
  margin-top: 48px;
}

.svc-track-wrap { overflow: hidden; }

.svc-track {
  display: flex;
  will-change: transform;
}

.svc-card {
  flex-shrink: 0;
  background: #ffffff;
  border-top: 4px solid #d6ce02;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}
.svc-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.65;
}

.svc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.svc-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #034a1c;
  color: #034a1c;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.svc-btn:hover { background: #034a1c; color: #ffffff; }

.svc-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 220px;
  flex-wrap: wrap;
}

.svc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #C8C3BC;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.svc-dot.active {
  background: #d6ce02;
  transform: scale(1.35);
}

@media (max-width: 768px) {
  .svc-track-wrap {
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
  }

  .svc-carousel-mobile .svc-track-wrap:active {
    cursor: grabbing;
  }

  .svc-controls {
    gap: 0;
    margin-top: 16px;
  }

  .svc-btn {
    display: none;
  }

  .svc-dots {
    max-width: none;
  }
}

/* ============================================================
   SHARED CAROUSEL EASING — smooth cubic-bezier for slide swipers
   (brands marquee is linear, set separately below)
   ============================================================ */
.testimonials-swiper .swiper-wrapper,
.faq-swiper .swiper-wrapper,
.blog-card-swiper .swiper-wrapper,
.city-swiper .swiper-wrapper,
.sa-why-swiper .swiper-wrapper,
.reviews-swiper .swiper-wrapper,
.projects-cat-swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1) !important;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-swiper .swiper-wrapper,
  .faq-swiper .swiper-wrapper,
  .blog-card-swiper .swiper-wrapper,
  .city-swiper .swiper-wrapper,
  .sa-why-swiper .swiper-wrapper,
  .reviews-swiper .swiper-wrapper,
  .projects-cat-swiper .swiper-wrapper {
    transition: none !important;
  }
}

/* ============================================================
   PROJECTS CATEGORY CAROUSEL (per-category Swiper on projects.html)
   Reuses .project-card / .project-img / .before-after-wrap untouched —
   only wraps them in Swiper slides and adds nav + dots.
   ============================================================ */
.projects-cat-carousel {
  position: relative;
  margin-top: 48px;
  padding: 0 56px; /* desktop: room for arrow buttons outside the track */
}

.projects-cat-swiper { padding-bottom: 44px !important; overflow: hidden !important; }
.projects-cat-swiper .swiper-slide { height: auto; display: flex; }
.projects-cat-swiper .swiper-slide .project-card { width: 100%; display: flex; flex-direction: column; }

.projects-cat-nav {
  position: absolute;
  top: calc(50% - 22px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: var(--border-green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 5;
  padding: 0;
}
.projects-cat-nav:hover { background: var(--green); color: var(--white); transform: translateY(-50%) scale(1.05); }
.projects-cat-nav:disabled { opacity: 0.35; cursor: default; transform: translateY(-50%); }
.projects-cat-prev { left: 0; }
.projects-cat-next { right: 0; }

.projects-cat-swiper .swiper-pagination-bullet { background: #C8C3BC; opacity: 1; width: 8px; height: 8px; }
.projects-cat-swiper .swiper-pagination-bullet-active { background: var(--yellow); opacity: 1; }

@media (max-width: 768px) {
  .projects-cat-carousel { padding: 0; margin-top: 32px; }
  .projects-cat-nav { display: none; }
  .projects-cat-swiper { padding-bottom: 36px !important; }
}

/* ============================================================
   BRANDS STRIP (homepage) — auto-scrolling logo marquee
   ============================================================ */
.brands-section {
  padding: 72px 0;
  background: var(--off-white);
  text-align: center;
  border-top: 1px solid rgba(3,74,28,0.08);
  border-bottom: 1px solid rgba(3,74,28,0.08);
}
.brands-section .section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 18px;
}
.brands-marquee {
  --brands-loop-distance: 0px;
  --brands-loop-duration: 22s;
  position: relative;
  overflow: hidden;
  max-width: min(1120px, 100%);
  margin: 0 auto;
  padding: 16px 0 6px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
}
.brands-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.brands-set {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
  padding-inline: 9px;
}
.brands-marquee.is-ready .brands-track {
  animation: brands-marquee-scroll var(--brands-loop-duration) linear infinite;
}
.brands-marquee:hover .brands-track,
.brands-marquee:focus-within .brands-track,
.brands-marquee.is-paused .brands-track {
  animation-play-state: paused;
}
.brand-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(140px, 16vw, 188px);
  height: clamp(64px, 7vw, 82px);
  padding: 10px 16px;
}
.brand-logo {
  height: 44px;
  width: auto;
  max-width: min(140px, 100%);
  object-fit: contain;
  display: block;
}
.brand-logo-sherwin {
  height: 50px;
  max-width: min(160px, 100%);
}
.brand-logo-behr {
  height: 48px;
  max-width: min(152px, 100%);
}

@media (max-width: 768px) {
  .brands-section { padding: 56px 0; }
  .brands-section .section-title { margin-bottom: 14px; }
  .brands-marquee {
    padding: 12px 0 2px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 3%, black 97%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 3%, black 97%, transparent 100%);
  }
  .brands-set { gap: 12px; padding-inline: 6px; }
  .brand-pill {
    min-width: 124px;
    height: 58px;
    padding: 8px 10px;
  }
  .brand-logo { height: 34px; max-width: 112px; }
  .brand-logo-sherwin { height: 40px; max-width: 126px; }
  .brand-logo-behr { height: 38px; max-width: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  .brands-marquee {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .brands-track {
    width: auto;
  }
  .brands-marquee .brands-set.is-clone {
    display: none;
  }
  .brands-marquee .brands-track,
  .brands-marquee.is-ready .brands-track {
    animation: none !important;
    transform: none !important;
  }
}

@keyframes brands-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(var(--brands-loop-distance) * -1), 0, 0); }
}

/* ============================================================
   FAQ PAGE — grouped accordion
   ============================================================ */
.faq-page-section { padding: 80px 0; }
.faq-page-section:nth-child(even) { background: var(--alt-bg); }

.faq-group-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-accordion {
  background: var(--white);
  border: 1px solid rgba(3,74,28,0.12);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.15s;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary:hover { background: var(--off-white); }
.faq-accordion summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-accordion[open] summary::after { content: '−'; }
.faq-accordion[open] summary { background: var(--off-white); }

.faq-accordion-body {
  padding: 4px 28px 24px;
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
}
.faq-accordion-body a { color: var(--green); font-weight: 600; text-decoration: underline; }

.home-faq-link {
  text-align: center;
  margin-top: 32px;
}
.home-faq-link a {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 3px;
  transition: color 0.2s;
}
.home-faq-link a:hover { color: var(--green-hover); }

@media (max-width: 700px) {
  .faq-page-section { padding: 56px 0; }
  .faq-accordion summary { padding: 18px 20px; font-size: 0.96rem; }
  .faq-accordion-body { padding: 2px 20px 20px; }
}

/* ============================================================
   FOOTER — mobile reorder + builder credit
   ============================================================ */
.footer-credit {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
  margin-top: 6px;
}

@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; order: 1; }
  .footer-contact { order: 2; }
  .footer-links { order: 3; }
}
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { order: 1; }
  .footer-contact { order: 2; }
  .footer-links { order: 3; }
}

/* ============================================================
   ESTIMATE MODAL — hero-form-card clone inside a backdrop
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-backdrop[hidden] { display: none; }

.modal-backdrop.modal-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  max-width: 500px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  transform: scale(0.96) translateY(8px);
  transition: transform 0.2s ease;
}

.modal-backdrop.modal-open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background-color 0.2s;
  line-height: 1;
  z-index: 1;
}

.modal-close:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
}

body.modal-lock { overflow: hidden; }

@media (max-width: 540px) {
  .modal-backdrop { padding: 16px; }
  .modal-card { padding: 28px 20px; }
}

/* ============================================================
   ABOUT-CTA heading accent — yellow on dark matte bg
   (overrides the default green .section-title em accent)
   ============================================================ */
.about-cta .section-title em { color: var(--yellow); }

/* ============================================================
   CONTACT SECTION — matte black override (homepage only)
   ============================================================ */
#contact { background: #121212; }

/* ============================================================
   OFFICE HOURS
   ============================================================ */
.hours-table {
  border-collapse: collapse;
  margin-top: 2px;
}
.hours-table td {
  padding: 3px 0;
  font-size: 0.88rem;
  vertical-align: top;
}
.hours-table td:first-child {
  color: var(--yellow);
  font-weight: 700;
  padding-right: 20px;
  min-width: 72px;
  white-space: nowrap;
}
.hours-table td:last-child { color: rgba(255,255,255,0.8); }

.footer-hours {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  line-height: 1.6;
}
