/* =========================================================
   Paint MC — style.css
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Open+Sans:wght@400;600&display=swap');

/* Content loader flash prevention */
body.cl-loading { opacity: 0; }
body { transition: opacity 0.08s ease; }

/* ---------------------------------------------------------
   CSS Variables
   --------------------------------------------------------- */
:root {
  --color-primary:       #1E3A8A;
  --color-primary-hover: #1D4ED8;
  --color-accent:        #EA580C;
  --color-accent-hover:  #C2410C;
  --color-bg:            #FFFFFF;
  --color-bg-alt:        #F8FAFC;
  --color-text:          #0F172A;
  --color-text-muted:    #64748B;
  --color-border:        #E2E8F0;
  --color-white:         #FFFFFF;
  --color-overlay:       rgba(15, 23, 42, 0.62);

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.14);

  --transition:  150ms ease;

  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------------------------------------------------------
   Container
   --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------------------------------------------------
   Typography helpers
   --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.2;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

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

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 4px 14px rgba(234,88,12,.35);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-accent);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--color-bg-alt);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  transform: translateY(-1px);
}

.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ---------------------------------------------------------
   Navigation
   --------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--color-white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.navbar.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(240px, 34vw);
}

.navbar__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar__logo-img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
}

.navbar__logo span {
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.navbar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}

.navbar__links a {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--color-primary);
  background: rgba(30,58,138,.06);
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
}

.navbar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition);
  white-space: nowrap;
}
.navbar__phone:hover { color: var(--color-accent); }
.navbar__phone svg { width: 16px; height: 16px; flex-shrink: 0; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.navbar__mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar__mobile a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 12px 8px;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}
.navbar__mobile a:last-child { border-bottom: none; }
.navbar__mobile a:hover,
.navbar__mobile a.active { color: var(--color-primary); }

.navbar__mobile-cta { margin-top: 12px; }

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  background: var(--color-primary) center center / cover no-repeat;
  overflow: hidden;
  padding-top: 20px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(234,88,12,.18);
  border: 1px solid rgba(234,88,12,.4);
  color: #FDBA74;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero__badge svg { width: 14px; height: 14px; }

.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__title span { color: #FDBA74; }

.hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

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

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
}

.hero__trust-item svg {
  width: 18px;
  height: 18px;
  color: #4ADE80;
  flex-shrink: 0;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--color-primary);
  padding: 64px 0;
  text-align: center;
}

.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.page-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.75);
  max-width: 500px;
  margin: 0 auto 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb svg { width: 14px; height: 14px; }

/* ---------------------------------------------------------
   Stats Bar
   --------------------------------------------------------- */
.stats-bar {
  background: var(--color-primary);
  padding: 32px 0;
}

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

.stats-bar__item { padding: 8px 0; display: flex; flex-direction: column; align-items: center; }

.stats-bar__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 4px;
}

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.stats-bar__suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #FDBA74;
  line-height: 1;
  margin-left: 2px;
}

.stats-bar__label {
  font-family: var(--font-heading);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* ---------------------------------------------------------
   Section spacing
   --------------------------------------------------------- */
.section { padding: 88px 0; }
.section--alt { background: var(--color-bg-alt); }

/* ---------------------------------------------------------
   Service Cards
   --------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(30,58,138,.2);
}

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

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(30,58,138,.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-primary);
}

.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}

.service-card__desc {
  font-size: .9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap var(--transition), color var(--transition);
}

.service-card__link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card__link:hover { color: var(--color-accent); }
.service-card__link:hover svg { transform: translateX(3px); }

/* ---------------------------------------------------------
   Why Choose Us
   --------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.why-item__icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

.why-item__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-item__desc {
  font-size: .9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ---------------------------------------------------------
   Before / After
   --------------------------------------------------------- */
.before-after {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}

.before-after img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.before-after__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15,23,42,.85) 0%, transparent 100%);
  padding: 40px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.before-after__tag {
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.before-after__tag--after {
  background: #22C55E;
  position: absolute;
  top: 20px;
  right: 20px;
}

.before-after__label {
  color: rgba(255,255,255,.85);
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
}

/* ---------------------------------------------------------
   Testimonials
   --------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  color: #F59E0B;
  fill: currentColor;
}

.testimonial-card__quote {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--color-text);
}

.testimonial-card__location {
  font-size: .8125rem;
  color: var(--color-text-muted);
}

/* ---------------------------------------------------------
   CTA Banner
   --------------------------------------------------------- */
.cta-banner {
  background: var(--color-accent);
  padding: 72px 0;
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
}

.cta-banner__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------------------------------------------------
   Gallery
   --------------------------------------------------------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  justify-content: center;
}

.gallery-filter-btn {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 999px;
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-white);
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(30,58,138,.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-alt);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__overlay svg {
  width: 40px;
  height: 40px;
  color: var(--color-white);
}

.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.9);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open { display: flex; }

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox__close:hover { background: rgba(255,255,255,.25); }
.lightbox__close svg { width: 22px; height: 22px; }

/* ---------------------------------------------------------
   Service Detail (services page)
   --------------------------------------------------------- */
.service-detail {
  padding: 80px 0;
}

.service-detail--alt { background: var(--color-bg-alt); }

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-detail__grid--reverse { direction: rtl; }
.service-detail__grid--reverse > * { direction: ltr; }

.service-detail__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.service-detail__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.service-detail__desc {
  font-size: 1.0rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--color-text);
}

.checklist li svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------------------------------------------------------
   About
   --------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(234,88,12,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-card__icon svg {
  width: 30px;
  height: 30px;
  color: var(--color-accent);
}

.value-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card__desc {
  font-size: .9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.service-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.service-areas li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.service-areas li svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   Contact / Estimate Form
   --------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.estimate-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

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

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

.form-group label {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group label .required {
  color: var(--color-accent);
  margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--color-text);
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30,58,138,.12);
  background: var(--color-white);
}

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

.form-group select { cursor: pointer; }

.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9375rem;
  cursor: pointer;
  color: var(--color-text);
}

.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
  min-height: unset;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #B91C1C;
  border-radius: var(--radius-md, 8px);
  padding: 12px 16px;
  font-size: .875rem;
  margin-bottom: 20px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success__icon svg {
  width: 32px;
  height: 32px;
  color: #16A34A;
}

.form-success__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success__sub {
  color: var(--color-text-muted);
  font-size: .9375rem;
}

/* Contact info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.contact-info__card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info__card h3 svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .9375rem;
}

.contact-info__item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__item a {
  color: var(--color-primary);
  font-weight: 600;
  transition: color var(--transition);
}
.contact-info__item a:hover { color: var(--color-accent); }

.contact-info__phone {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.contact-info__phone:hover { color: var(--color-accent); }
.contact-info__phone svg { width: 22px; height: 22px; color: var(--color-accent); }

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
  padding: 10px 14px;
  background: rgba(30,58,138,.05);
  border: 1px solid rgba(30,58,138,.12);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  color: #16A34A;
}

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

.about-split__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.footer {
  background: var(--color-text);
  padding: 64px 0 0;
  color: rgba(255,255,255,.75);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.footer__brand-name span { color: #FDBA74; }

.footer__brand-icon {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__brand-icon svg { width: 18px; height: 18px; color: var(--color-white); }

.footer__tagline {
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 260px;
}

.footer__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FDBA74;
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 600;
  transition: color var(--transition);
}
.footer__phone:hover { color: var(--color-white); }
.footer__phone svg { width: 16px; height: 16px; }

.footer__col-title {
  font-family: var(--font-heading);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 16px;
}

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

.footer__links a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--color-white); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: #FDBA74;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer__contact-item a:hover { color: var(--color-white); }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}

.footer__bottom a {
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer__bottom a:hover { color: rgba(255,255,255,.8); }

/* ---------------------------------------------------------
   Scroll fade-in animation
   --------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay-1 { transition-delay: .1s; }
.fade-in.delay-2 { transition-delay: .2s; }
.fade-in.delay-3 { transition-delay: .3s; }
.fade-in.delay-4 { transition-delay: .4s; }

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --nav-h: 64px; }

  .navbar__inner {
    gap: 16px;
  }

  .navbar__logo {
    font-size: 1.05rem;
    gap: 8px;
    max-width: none;
    flex: 1 1 auto;
  }

  .navbar__logo-img {
    height: 40px;
  }

  .navbar__links,
  .navbar__right { display: none; }

  .navbar__hamburger { display: flex; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail__grid { gap: 40px; }
  .about-split { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .navbar__logo {
    font-size: 1rem;
  }

  .navbar__logo-img {
    height: 36px;
  }

  .footer__grid {
    grid-template-columns: 1fr; 
    gap: 24px; 
    text-align: center; 
  }
  
  .footer__brand-name {
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
  }

  .footer__phone,
  .footer__contact-item {
    justify-content: center;
  }

  .footer__tagline {
    margin: 0 auto 20px;
  }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }

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

  .service-detail__grid,
  .service-detail__grid--reverse { grid-template-columns: 1fr; direction: ltr; }

  .service-detail__img { height: 260px; }

  .about-split { grid-template-columns: 1fr; }
  .about-split__img { height: 280px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .footer__bottom { flex-direction: column; text-align: center; }

  .before-after img { height: 280px; }

  .before-after__overlay { padding: 20px; }

  .estimate-form { padding: 28px 20px; }

  .hero__ctas { flex-direction: column; align-items: center; }

  .hero__trust { gap: 12px; justify-content: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
}

/* =========================================================
   NAVBAR ENHANCEMENTS
   ========================================================= */

/* Paint-stroke underline on desktop nav links */
.navbar__links a {
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s cubic-bezier(.4, 0, .2, 1);
}
.navbar__links a:hover::after,
.navbar__links a.active::after { transform: scaleX(1); }
.navbar__links a.active {
  color: var(--color-primary);
  background: transparent;
}

/* Logo icon rotation on hover */
.navbar__logo-icon {
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.navbar__logo:hover .navbar__logo-icon {
  transform: rotate(-14deg);
}

/* Backdrop blur when scrolled */
.navbar.scrolled {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, .95);
}

/* Mobile menu: smooth max-height transition */
.navbar__mobile {
  display: flex !important;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  padding: 0 24px;
  transform: none;
  transition: max-height .32s cubic-bezier(.4, 0, .2, 1),
              opacity .25s ease,
              padding .28s cubic-bezier(.4, 0, .2, 1);
}
.navbar__mobile.open {
  max-height: 520px;
  opacity: 1;
  pointer-events: auto;
  padding: 12px 24px 24px;
}
.navbar__mobile a { border-bottom: 1px solid var(--color-border); }
.navbar__mobile a:last-child { border-bottom: none; }

/* =========================================================
   GLOBAL KEYFRAMES
   ========================================================= */

@keyframes float-drop {
  0%   { transform: translateY(0) scale(1); opacity: .7; }
  60%  { opacity: .45; }
  100% { transform: translateY(72px) scale(.7); opacity: 0; }
}

@keyframes drip-fall {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

@keyframes roller-spin {
  to { transform: rotate(360deg); }
}

@keyframes spray-pulse {
  0%, 100% { opacity: 0; transform: translateX(0) scale(0); }
  50%       { opacity: 1; transform: translateX(12px) scale(1); }
}

@keyframes swatch-slide {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); }
}

@keyframes tool-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

@keyframes stroke-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes splash-in {
  from { transform: scale(0) rotate(-20deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* =========================================================
   SERVICES PAGE — HERO
   ========================================================= */

.svc-hero {
  position: relative;
  background: oklch(22% .065 263);
  padding: 90px 0 140px;
  overflow: hidden;
}

.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, oklch(32% .12 263 / .25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 70%, oklch(60% .22 40 / .08) 0%, transparent 60%);
  pointer-events: none;
}

.svc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.svc-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 12px;
}

.svc-hero__title em {
  font-style: normal;
  color: oklch(78% .18 45);
}

/* Animated brush-stroke decoration */
.svc-hero__stroke {
  display: block;
  width: min(420px, 90%);
  height: 24px;
  margin-bottom: 24px;
  overflow: visible;
}

.svc-hero__stroke path {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
}

.svc-hero__stroke path.animated {
  animation: stroke-draw .9s .3s cubic-bezier(.4, 0, .2, 1) forwards;
}

.svc-hero__sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

/* Quick-jump pills */
.svc-hero__jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.svc-hero__jumps a {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
  padding: 10px 22px;
  border: 1.5px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  color: rgba(255, 255, 255, .85);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.svc-hero__jumps a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* Floating paint drops */
.svc-hero__drops {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.paint-drop {
  position: absolute;
  animation: float-drop var(--dur, 4.5s) var(--delay, 0s) ease-in-out infinite;
  color: var(--dc, var(--color-accent));
  opacity: .65;
}

.paint-drop svg { width: 100%; height: auto; }

.pd-1  { --dur:4.2s; --delay:0s;    --dc:oklch(60% .22 40 / .7); left:6%;  top:55%; width:22px; }
.pd-2  { --dur:5.5s; --delay:-1.6s; --dc:oklch(72% .16 40 / .5); left:18%; top:35%; width:14px; }
.pd-3  { --dur:3.8s; --delay:-2.4s; --dc:oklch(55% .2  40 / .6); left:32%; top:68%; width:18px; }
.pd-4  { --dur:6.2s; --delay:-0.8s; --dc:oklch(65% .18 40 / .4); right:22%;top:28%; width:28px; }
.pd-5  { --dur:4.8s; --delay:-3.1s; --dc:oklch(78% .1  70 / .35);right:10%;top:60%; width:16px; }
.pd-6  { --dur:5.1s; --delay:-1.2s; --dc:oklch(50% .22 40 / .55);right:38%;top:45%; width:20px; }
.pd-7  { --dur:3.5s; --delay:-4.0s; --dc:oklch(80% .08 80 / .25);left:50%; top:20%; width:12px; }

/* Bottom drip decoration */
.svc-hero__drips {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 3%;
}

.drip-drop {
  background: var(--color-bg);
  border-radius: 0 0 50% 50%;
  width: 20px;
  flex-shrink: 0;
  transform: scaleY(0);
  transform-origin: top;
  animation: drip-fall .9s var(--dd, 0s) cubic-bezier(.4, 0, .2, 1) forwards;
}

/* =========================================================
   SERVICES PAGE — EQUIPMENT OVERVIEW
   ========================================================= */

.svc-overview {
  background: var(--color-bg);
  padding: 0;
  position: relative;
  z-index: 2;
}

.svc-overview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--color-accent);
  box-shadow: var(--shadow-md);
}

.equip-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px 36px;
  background: var(--color-white);
  border-right: 1px solid var(--color-border);
  transition: background .22s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.equip-card:last-child { border-right: none; }

.equip-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}

.equip-card:hover { background: oklch(98% .005 263); }
.equip-card:hover::after { transform: scaleX(1); }

.equip-card:hover .equip-card__icon-svg {
  animation: tool-bob .6s ease both;
}

.equip-card__icon-svg {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
}

.equip-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.equip-card__teaser {
  font-size: .85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.equip-card__arrow {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: .04em;
  transition: letter-spacing .2s ease;
}

.equip-card:hover .equip-card__arrow { letter-spacing: .12em; }

/* =========================================================
   SERVICES PAGE — SERVICE PANELS
   ========================================================= */

.svc-panel {
  padding: 96px 0;
  position: relative;
}

.svc-panel--alt { background: var(--color-bg-alt); }

.svc-panel--dark {
  background: oklch(22% .065 263);
  color: #fff;
}

.svc-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.svc-panel__grid--rev .svc-panel__visual { order: 2; }
.svc-panel__grid--rev .svc-panel__content { order: 1; }

.svc-panel__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
}

.svc-panel__title {
  font-family: var(--font-heading);
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.svc-panel__desc {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.svc-panel--dark .svc-panel__title { color: #fff; }
.svc-panel--dark .svc-panel__desc  { color: rgba(255, 255, 255, .72); }

/* Illustrated stage backgrounds */
.illus-stage {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.illus-stage__bg {
  position: absolute;
  inset: -20px;
  border-radius: var(--radius-lg);
  z-index: 0;
}

.illus-stage__bg--interior {
  background: oklch(97% .005 263);
  border: 2px dashed oklch(88% .005 263);
}

.illus-stage__bg--exterior {
  background: oklch(96% .012 150);
  border: 2px dashed oklch(86% .012 150);
}

.illus-stage__bg--commercial {
  background: oklch(22% .065 263);
  border-radius: var(--radius-lg);
}

.illus-stage svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

/* SVG draw animation */
.svg-draw {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}
.svg-draw.animated {
  animation: stroke-draw 1.4s cubic-bezier(.4, 0, .2, 1) forwards;
}

/* Brush drip animation */
.brush-drip-anim {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
}
.brush-drip-anim.animated {
  animation: stroke-draw .8s .9s ease-out forwards;
}

/* Roller spin */
.roller-spin-anim {
  transform-box: fill-box;
  transform-origin: center center;
}
.roller-spin-anim.spinning {
  animation: roller-spin 2.5s linear infinite;
}

/* ============================================
   LOGO IMAGES
   ============================================ */
.navbar__logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.footer__logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 0;
}

/* ============================================
   ROLLER HERO STROKE ANIMATION
   ============================================ */
.roller-stroke-wrap {
  position: relative;
  width: 540px;
  max-width: 92%;
  height: 100px;
  margin: 14px auto 0;
}
.roller-track {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 110px);
  height: 64px;
  border-radius: 0 4px 4px 0;
  background: oklch(18% .04 260 / .4);
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 20 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0 L8 0 A8 8 0 0 0 8 16 L15 16 A2 2 0 0 1 15 20 L10 20 A6 6 0 0 0 10 32 L15 32 A2 2 0 0 1 15 36 L10 36 A6 6 0 0 0 10 48 L15 48 A2 2 0 0 1 15 52 L8 52 A6 6 0 0 0 8 64 L20 64 Z' fill='black'/%3E%3C/svg%3E"), linear-gradient(black, black);
  -webkit-mask-position: left top, 19px top;
  -webkit-mask-size: 20px 64px, calc(100% - 19px) 100%;
  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 20 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0 L8 0 A8 8 0 0 0 8 16 L15 16 A2 2 0 0 1 15 20 L10 20 A6 6 0 0 0 10 32 L15 32 A2 2 0 0 1 15 36 L10 36 A6 6 0 0 0 10 48 L15 48 A2 2 0 0 1 15 52 L8 52 A6 6 0 0 0 8 64 L20 64 Z' fill='black'/%3E%3C/svg%3E"), linear-gradient(black, black);
  mask-position: left top, 19px top;
  mask-size: 20px 64px, calc(100% - 19px) 100%;
  mask-repeat: no-repeat, no-repeat;
  overflow: hidden;
}
.roller-paint-fill {
  width: 0%;
  height: 100%;
  background: #EA580C;
  box-shadow: inset 0 5px 0 rgba(255,255,255,.18), inset 0 -5px 0 rgba(0,0,0,.22);
  transition: width 1.5s cubic-bezier(.4, 0, .2, 1);
}
.roller-roller {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 140px;
  height: 100px;
  transition: left 1.5s cubic-bezier(.4, 0, .2, 1);
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.55));
}
.roller-stroke-wrap.animated .roller-paint-fill {
  width: 100%;
}
.roller-stroke-wrap.animated .roller-roller {
  left: calc(100% - 140px);
}

/* ============================================
   MOBILE RESPONSIVE — COMPREHENSIVE
   ============================================ */
@media (max-width: 768px) {
  /* Hero */
  .hero__content {
    text-align: center;
    align-items: center;
  }
  .hero__title, .hero__sub { text-align: center; }
  .hero__actions { justify-content: center; flex-wrap: wrap; }
  .hero__stats { justify-content: center; flex-wrap: wrap; }

  /* Section headers */
  .section__header, .section-header { text-align: center; }
  .section__header h2, .section-header h2,
  .section__header p,  .section-header p { text-align: center; }

  .why-grid{
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .why-item{
    align-items: center;
    justify-content: center;
  }

  /* Services hero */
  .svc-hero__content {
    text-align: center;
    align-items: center;
  }
  .svc-hero__title, .svc-hero__sub { text-align: center; }
  .svc-hero__jumps { justify-content: center; flex-wrap: wrap; }
  .roller-stroke-wrap { max-width: 95%; }

  /* Service panels */
  .svc-panel__grid, .svc-panel__grid--rev {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .svc-panel__body { align-items: center; text-align: center; }
  .svc-panel__body ul { list-style: none; padding: 0; }

  /* Overview grid */
  .svc-overview__grid { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .svc-process__grid { grid-template-columns: 1fr; gap: 2rem; }
  .svc-process__grid::before { display: none; }
  .process-step { text-align: center; }

  /* Tools */
  .svc-tools__grid { grid-template-columns: repeat(2, 1fr); }

  /* Sub-service cards */
  .svc-sub-cards { grid-template-columns: 1fr; }
  .svc-sub-card { text-align: center; }

  /* Color palette bar */
  .color-palette-bar { justify-content: center; }

  /* About page */
  .about-story__grid, .about-values__grid, .about-team__grid {
    grid-template-columns: 1fr;
  }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .service-areas__grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero .hero__content { text-align: center; }

  /* Contact page */
  .contact-layout { grid-template-columns: 1fr; }

  /* Gallery page */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__filters { flex-wrap: wrap; justify-content: center; }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .footer__logo-img {
    height: 48px;
    width: auto;
  }
  .footer__tagline { text-align: center; justify-self: center; }
  .footer__links { text-align: center; }
  .footer__phone { justify-content: center; }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer__bottom-links { justify-content: center; flex-wrap: wrap; }
  .footer__col-title { text-align: center; }
  .footer__contact-item{
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .svc-tools__grid { grid-template-columns: 1fr; }
  .svc-overview__grid { grid-template-columns: 1fr; }
  .about-stats__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .service-areas__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.5rem; }
}

/* Spray mist particles */
.spray-particle {
  opacity: 0;
}
.spray-particle.spraying {
  animation: spray-pulse var(--sp-dur, .8s) var(--sp-delay, 0s) ease-in-out infinite;
}

/* =========================================================
   SERVICES PAGE — COLOR PALETTE BAR (Residential)
   ========================================================= */

.color-palette-bar {
  display: flex;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0;
  height: 64px;
  box-shadow: var(--shadow-lg);
}

.swatch {
  flex: 1;
  background: var(--c, #ccc);
  transition: flex .3s ease;
  cursor: default;
  position: relative;
}

.swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .15);
  opacity: 0;
  transition: opacity .2s ease;
}

.swatch:hover { flex: 2.5; }
.swatch:hover::after { opacity: 1; }

/* Residential sub-service cards on dark bg */
.svc-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.svc-sub-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: background .22s ease, border-color .22s ease;
}

.svc-sub-card:hover {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .22);
}

.svc-sub-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(234, 88, 12, .2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.svc-sub-card__icon svg {
  width: 24px;
  height: 24px;
  color: oklch(78% .18 45);
}

.svc-sub-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.svc-sub-card__desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

/* =========================================================
   SERVICES PAGE — PROCESS TIMELINE
   ========================================================= */

.svc-process {
  padding: 96px 0;
  background: var(--color-bg);
}

.svc-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.svc-process__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  z-index: 0;
}

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

.process-step__num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 4px solid var(--color-bg);
  box-shadow: 0 0 0 3px var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background .25s ease, box-shadow .25s ease;
}

.process-step:hover .process-step__num {
  background: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent);
}

.process-step__num svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.process-step__label {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.process-step__desc {
  font-size: .875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* =========================================================
   SERVICES PAGE — TOOLS SHOWCASE
   ========================================================= */

.svc-tools {
  padding: 96px 0;
  background: oklch(22% .065 263);
}

.svc-tools .section-label { color: oklch(78% .18 45); }
.svc-tools .section-title { color: #fff; }
.svc-tools .section-sub   { color: rgba(255, 255, 255, .65); margin-top: 12px; }

.svc-tools__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.tool-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, oklch(60% .22 40 / .12) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  transition: opacity .3s ease;
}

.tool-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
  transform: translateY(-3px);
}

.tool-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.tool-card__icon svg {
  width: 64px;
  height: 64px;
}

.tool-card:hover .tool-card__icon svg {
  animation: tool-bob .7s ease both;
}

.tool-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.tool-card__desc {
  font-size: .9375rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
}

/* CTA with splash decoration */
.cta-banner--splatter {
  position: relative;
  overflow: hidden;
}

.cta-splash {
  position: absolute;
  pointer-events: none;
  opacity: .12;
}
.cta-splash--tl { top: -40px; left: -40px; width: 220px; }
.cta-splash--br { bottom: -40px; right: -40px; width: 180px; transform: rotate(180deg); }

/* =========================================================
   SERVICES PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .svc-overview__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .svc-process__steps::before { display: none; }
  .svc-tools__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .svc-hero { padding: 64px 0 100px; }
  .svc-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .svc-panel { padding: 64px 0; }
  .svc-panel__grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-panel__grid--rev .svc-panel__visual,
  .svc-panel__grid--rev .svc-panel__content { order: unset; }
  .svc-panel__visual { min-height: 280px; }
  .svc-overview__grid { grid-template-columns: repeat(2, 1fr); }
  .equip-card { padding: 28px 16px; }
  .svc-process { padding: 64px 0; }
  .svc-process__steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-tools { padding: 64px 0; }
  .svc-tools__grid { grid-template-columns: 1fr 1fr; }
  .color-palette-bar { height: 48px; }
  .illus-stage { max-width: 320px; }
}

@media (max-width: 540px) {
  .svc-overview__grid { grid-template-columns: 1fr; }
  .svc-process__steps { grid-template-columns: 1fr; }
  .svc-tools__grid { grid-template-columns: 1fr; }
  .svc-hero__jumps a { padding: 8px 16px; font-size: .8rem; }
}

/* =========================================================
   NAVBAR — large desktop sizing
   ========================================================= */
@media (min-width: 1200px) {
  :root { --nav-h: 80px; }

  .navbar__logo {
    font-size: 1.25rem;
    gap: 12px;
    max-width: 280px;
  }

  .navbar__logo-img {
    height: 60px;
  }

  .navbar__links a {
    font-size: 0.9rem;
    padding: 8px 14px;
  }

  .navbar__phone {
    font-size: 0.9rem;
  }

  .navbar__right {
    gap: 14px;
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .navbar__right .btn-sm {
    padding: 9px 14px;
    font-size: 0.8125rem;
  }
}

/* =========================================================
   HERO — EXPERIENCE IN SECTION
   ========================================================= */
.hero__experience {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}

.hero__experience-label {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
  padding-top: 5px;
}

.hero__experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hero__experience-tags li {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .02em;
}

/* =========================================================
   WHATSAPP BUTTON STYLES
   ========================================================= */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 700;
  border: none;
}
.btn-whatsapp:hover {
  background: #128C7E;
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
  transform: translateY(-1px);
}
.btn-whatsapp svg { width: 20px; height: 20px; flex-shrink: 0; }

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5), 0 2px 8px rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6), 0 4px 14px rgba(0,0,0,.25);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

@media (max-width: 768px) {
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .hero__experience { justify-content: center; }
  .hero__experience-tags { justify-content: center; }
}

/* =========================================================
   COMMERCIAL SUB-CARDS (dark panel, like residential)
   ========================================================= */
.svc-commercial-subs {
  padding: 96px 0;
  background: oklch(20% .07 263);
}

.svc-commercial-subs .section-label { color: oklch(78% .18 45); }
.svc-commercial-subs .section-title { color: #fff; }
.svc-commercial-subs .section-sub   { color: rgba(255,255,255,.65); margin-top: 12px; }

.svc-commercial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.svc-commercial-tags li {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.78);
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  transition: background .2s ease;
}

.svc-commercial-tags li:hover {
  background: rgba(255,255,255,.14);
}

@media (max-width: 768px) {
  .svc-commercial-subs { padding: 64px 0; }
}

/* =========================================================
   RESPONSIVE — unified (sm ≤480, md ≤768, lg ≤1024)
   ========================================================= */

html { overflow-x: clip; }

.about-story-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__content { padding: 64px 0; }
  .section { padding: 72px 0; }
  .page-hero { padding: 56px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-banner { padding: 64px 32px; }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 0;
  }

  .hero__content {
    padding: 48px 0 64px;
    max-width: 100%;
  }

  .page-hero { padding: 44px 0; }
  .page-hero__sub { font-size: 1rem; }

  .section { padding: 64px 0; }

  .services-grid,
  .why-grid,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .service-areas { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .about-split { gap: 32px; }
  .about-split__img { height: 260px; }

  .about-story-stats {
    gap: 24px;
    justify-content: center;
  }

  .before-after img { height: 240px; }
  .before-after__overlay { padding: 20px 16px; }

  .cta-banner { padding: 52px 20px; text-align: center; }
  .cta-banner__title { font-size: clamp(1.5rem, 5vw, 2rem); }

  .hero__ctas .btn,
  .cta-banner .btn,
  .form-submit { width: 100%; max-width: 360px; }

  .radio-group { flex-wrap: wrap; gap: 12px; }

  .trust-badges { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }
  .page-hero { padding: 36px 0; }

  .service-areas { grid-template-columns: 1fr; }

  .about-story-stats {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .navbar__logo span {
    max-width: min(200px, 42vw);
    font-size: 0.95rem;
  }

  .hero__title { font-size: clamp(1.75rem, 8vw, 2.35rem); }
  .hero__trust { flex-direction: column; align-items: center; gap: 10px; }

  .service-card,
  .value-card,
  .testimonial-card { padding: 28px 20px; }

  .estimate-form { padding: 24px 16px; }

  .gallery-filters { gap: 8px; }
  .gallery-filter-btn { padding: 8px 14px; font-size: 0.8125rem; }

  .footer__bottom span { font-size: 0.8125rem; }
}
