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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* --- BRAND PALETTE --- */
:root {
  --brand-gray-dark: #1f2023;
  --brand-gray-mid: #3a3b40;
  --brand-gray-light: #d2d3d7;
  --brand-gray-lighter: #f2f2f4;
  --brand-focus-shadow: rgba(210, 211, 215, 0.35);

  /* ── Typography scale ── */
  --fs-h1:          3.6rem;
  --fs-h2:          2.8rem;
  --fs-h3:          1.4rem;
  --fs-h4:          1.2rem;
  --fs-body-lg:     1.2rem;
  --fs-body:        1.05rem;
  --fs-body-sm:     1rem;
  --fs-label:       0.95rem;
  --fs-input:       1rem;
  --fs-btn:         1rem;
  --fs-btn-lg:      1.1rem;
  --fs-pill:        0.95rem;
  --fs-badge:       0.8rem;
  --fs-meta:        0.9rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


section {
  scroll-margin-top: 100px;
}

/* Navigation */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 20px;
  position: fixed; /* Изменено со sticky на fixed для более надежной фиксации */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);

}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: var(--fs-body);
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: var(--brand-gray-mid);
}

.nav-right {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.phone-button {
  padding: 10px 16px;
  background-color: transparent;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--fs-body);
  border: none;
  white-space: nowrap;
  transition: all 0.3s;
}

.underlined-phone {
  text-decoration: underline;
  text-decoration-color: var(--brand-gray-dark);
  text-underline-offset: 4px;
}

.underlined-phone:hover {
  color: var(--brand-gray-mid);
  text-decoration-color: var(--brand-gray-mid);
}

.hours {
  font-size: var(--fs-meta);
  color: #444;
  white-space: nowrap;
}

.estimate-button {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--brand-gray-mid) 0%, var(--brand-gray-dark) 100%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: var(--fs-btn);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 4px 15px var(--brand-gray-dark);
}

.estimate-button:hover {
  background: linear-gradient(135deg, var(--brand-gray-dark) 0%, #000000 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 968px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    gap: 15px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-right {
    display: none;
  }

  .burger {
    display: block;
  }
}

/* Hero Section */
.hero-section {

  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  background-image: url('../image/123.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: overlay;
  background-attachment: scroll;
  will-change: background-position;
  padding: 200px 20px 150px;
  text-align: center;
  color: white;
  position: relative;
  min-height: 600px;

  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  contain: layout style paint;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: var(--fs-h1);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: none;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--brand-gray-light) 0%, #ffffff 60%, var(--brand-gray-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-size: var(--fs-body-lg);
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--brand-gray-mid) 0%, var(--brand-gray-dark) 60%, #000000 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: var(--fs-btn-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px var(--brand-gray-dark);
}

.hero-cta:hover {
  background: linear-gradient(135deg, #000000 0%, var(--brand-gray-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.65);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
    min-height: 500px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-cta {
    padding: 14px 30px;
    font-size: var(--fs-btn);
  }
}

/* About Section */
.about-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #1a1a1a;
}

.title-accent {
  background: none;
  color: var(--brand-gray-mid);
}

.about-text p {
  font-size: var(--fs-body-lg);
  line-height: 1.8;
  color: #444;
  font-weight: 500;
  margin-bottom: 30px;
}

.about-link {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--brand-gray-mid) 0%, var(--brand-gray-dark) 100%);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.about-link:hover {
  background: linear-gradient(135deg, #000000 0%, var(--brand-gray-dark) 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.about-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}

.stat-item {
  text-align: center;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  transition: transform 0.3s ease;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: var(--fs-body-sm);
  color: #444;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.stat-divider {
  width: 2px;
  height: 60px;
  background: #ddd;
}

@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text h2 {
    font-size: 2rem;
  }

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

/* Section Titles */
.section-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.section-title .title-accent {
  background: none;
  color: var(--brand-gray-mid);
}

.section-title-center {
  font-size: var(--fs-h2);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 32px;
  color: #1a1a1a;
}

.section-title-center .title-accent {
  background: none;
  color: var(--brand-gray-mid);
  display: block;
}

@media (max-width: 768px) {
  .section-title-center {
    font-size: 1.75rem;
  }
}

/* Services Section */
.services-section {
  padding: 60px 20px;
  background: #ffffff;
}

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

.service-card {
  background: var(--brand-gray-lighter);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: stretch;
}

.service-card-small {
  background: var(--brand-gray-lighter);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-small:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.service-card-small img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card-small .service-content {
  padding: 15px;
}

.service-card-small .service-content h3 {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
}

.service-card-small .service-content p {
  font-size: var(--fs-body) !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;

}

.service-content h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.service-content p {
  font-size: var(--fs-body);
  color: #444;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.6;

}

.service-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--brand-gray-mid) 0%, var(--brand-gray-dark) 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: var(--fs-btn);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-top: auto;
}

.service-btn:hover {
  background: linear-gradient(135deg, #000000 0%, var(--brand-gray-dark) 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}

.finishing-section {
    padding: 60px 20px;
  background: #f9f9f9;
}

@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

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

/* Why Choose Us Section */
.why-section {
  padding: 60px 20px;
  background: #fff;
}

.why-intro {
  text-align: center;
  font-size: var(--fs-body-lg);
  color: #444;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.why-card h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.why-card p {
  font-size: var(--fs-body);
  color: #444;
  line-height: 1.6;
}

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

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

/* Projects Section */
.projects-section {
  padding: 80px 20px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.98) 0%, rgba(244, 246, 249, 0.98) 42%, #eef2f5 100%);
}

.projects-section .section-title-center {
  letter-spacing: -0.03em;
}

.showcase-intro {
  max-width: 720px;
  margin: 14px auto 0;
  text-align: center;
  font-size: var(--fs-body-lg);
  font-weight: 500;
  line-height: 1.75;
  color: #444;
}

/* ===== Simple Slider ===== */
.simple-slider {
  position: relative;
  margin: 32px auto 0;
  max-width: 1220px;
  padding: 0 50px;
}

.simple-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0 18px;
}

.simple-slider-track::-webkit-scrollbar {
  display: none;
}

/* --- Service cards --- */
.simple-slider-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.simple-slider-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.simple-slider-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.simple-slider-card h3 {
  padding: 16px 18px 0;
  font-size: var(--fs-h3);
  font-weight: 700;
  color: #1a1a1a;
}

.simple-slider-card p {
  padding: 8px 18px 18px;
  font-size: var(--fs-body);
  font-weight: 500;
  color: #444;
  line-height: 1.6;
}

/* --- Work images --- */
.simple-slider-img {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.simple-slider-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.simple-slider-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* --- Nav buttons --- */
.simple-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--brand-gray-dark);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, opacity 0.2s ease;
}

.simple-slider-btn:hover:not(:disabled) {
  background: #000;
}

.simple-slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.simple-slider-prev { left: 0; }
.simple-slider-next { right: 0; }

/* --- CTA link --- */
.showcase-cta-wrap {
  text-align: center;
  margin-top: 34px;
}

.showcase-cta-link {
  display: inline-block;
  min-width: 220px;
  padding-left: 28px;
  padding-right: 28px;
}

/* --- Tablet --- */
@media (max-width: 1024px) {
  .simple-slider-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .simple-slider-img {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .simple-slider { padding: 0 44px; }
}

/* --- Mobile --- */
@media (max-width: 640px) {
  .services-section,
  .projects-section {
    padding: 50px 16px;
  }

  .showcase-intro {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .simple-slider {
    padding: 0;
    margin-top: 24px;
  }

  .simple-slider-card {
    flex: 0 0 100%;
  }

  .simple-slider-img {
    flex: 0 0 100%;
  }

  .simple-slider-btn {
    top: auto;
    bottom: -52px;
    transform: none;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .simple-slider-prev { left: calc(50% - 50px); }
  .simple-slider-next { right: calc(50% - 50px); }

  .simple-slider-track {
    padding-bottom: 12px;
  }

  .showcase-cta-wrap {
    margin-top: 64px;
  }

  .showcase-cta-link {
    min-width: 0;
    width: 100%;
    max-width: 280px;
  }
}

/* Reviews Section */
.reviews-section {
  padding: 60px 20px;
  background: #fff;
}

.reviews-intro {
  text-align: center;
  font-size: var(--fs-body-lg);
  font-weight: 500;
  color: #444;
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.8;

}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 968px) {
  .reviews-slider {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}


@media (max-width: 650px) {
  .reviews-slider {
    grid-template-columns: 1fr;
  }

  .review-card {
    max-width: 100%;
  }
}


.review-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-card h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.review-card p {
  font-size: var(--fs-body-lg);
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-weight: 600;
  color: var(--brand-gray-mid);
  margin-top: auto;
}

.reviews-note {
  text-align: center;
  margin-top: 40px;
  font-size: var(--fs-body);
  font-weight: 500;
  color: #444;
}

.reviews-note p {
  font-size: var(--fs-body-lg);
}

.reviews-note a {
  color: var(--brand-gray-mid);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .review-card {
    flex: 0 0 90%;
  }
}

/* Contact Section */
.contact-section {
  padding: 0;
  background: linear-gradient(135deg, var(--brand-gray-dark) 0%, #101114 60%, #000000 100%);
  position: relative;
  overflow: visible;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.contact-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 180px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.container-form {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.contact-section .title-accent {
  /* здесь фон тёмный, поэтому оставляем светлый вариант */
  background: linear-gradient(135deg, #ffffff 0%, var(--brand-gray-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info {
  flex: 1;
}

.contact-info h2,
.contact-info .section-title-center {
  color: #fff !important;
  text-align: left !important;
  font-size: var(--fs-h2) !important;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0;
}

.contact-intro {
  text-align: left;
  font-size: var(--fs-body);
  font-weight: 500;
  margin: 16px 0 0;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* White card */
.contact-form-wrapper {
  flex: 1.3;
  max-width: 560px;
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  overflow: visible;
}

/* 2-column row */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Notes + Button row: notes takes more space */
.form-row-notes {
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

.form-field-btn {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-form {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-size: var(--fs-label);
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
  display: block;
}

.contact-form input {
  padding: 10px 13px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: var(--fs-input);
  background: #fafafa;
  color: #333;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input::placeholder { color: #bbb; }
.contact-form input:focus {
  outline: none;
  border-color: var(--brand-gray-light);
  background: #fff;
  box-shadow: 0 0 0 3px var(--brand-focus-shadow);
}

.contact-form .phone-wrapper {
  display: flex;
  align-items: center;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  background: #fafafa;
  padding-left: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form .phone-wrapper:focus-within {
  border-color: var(--brand-gray-light);
  background: #fff;
  box-shadow: 0 0 0 3px var(--brand-focus-shadow);
}
.contact-form .phone-prefix {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333;
  font-weight: 600;
  font-size: var(--fs-input);
  white-space: nowrap;
  margin-right: 8px;
}
.contact-form .phone-prefix img { width: 20px; height: 14px; }
.contact-form .phone-wrapper input {
  border: none;
  outline: none;
  background: transparent;
  color: #333;
  padding: 10px 10px 10px 0;
  font-size: var(--fs-input);
  font-family: 'Poppins', sans-serif;
  box-shadow: none !important;
}

.contact-form textarea {
  padding: 10px 13px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: var(--fs-input);
  background: #fafafa;
  color: #333;
  font-family: 'Poppins', sans-serif;
  resize: none;
  width: 100%;
  min-height: 72px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form textarea::placeholder { color: #bbb; }
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-gray-light);
  background: #fff;
  box-shadow: 0 0 0 3px var(--brand-focus-shadow);
}

.contact-form button:not(.job-pill) {
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--brand-gray-mid) 0%, var(--brand-gray-dark) 60%, #000000 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: var(--fs-btn);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  white-space: nowrap;
}
.contact-form button:not(.job-pill):hover {
  background: linear-gradient(135deg, #000000 0%, var(--brand-gray-dark) 100%);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
  transform: translateY(-2px);
}

/* Chips inside white card */
.contact-form-wrapper .chip span {
  background: #f5f5f5 !important;
  border-color: #e0e0e0 !important;
  color: #444 !important;
  padding: 5px 11px;
  font-size: var(--fs-pill);
}
.contact-form-wrapper .chip input:checked + span {
  background: var(--brand-gray-dark) !important;
  border-color: var(--brand-gray-dark) !important;
  color: #fff !important;
}
.contact-form-wrapper .chip-group-label { color: #aaa !important; }

@media (max-width: 968px) {
  .container-form {
    flex-direction: column;
    gap: 32px;
    padding: 48px 24px;
  }
  .contact-info h2,
  .contact-info .section-title-center {
    text-align: center !important;
    font-size: 1.75rem !important;
  }
  .contact-intro { text-align: center; }
  .contact-form-wrapper { width: 100%; max-width: 580px; padding: 28px 20px; }
}

@media (max-width: 500px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .form-row-notes { grid-template-columns: 1fr; }
}


.footer {
  background: #1a1a1a;
  color: white;
  padding: 20px 10px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: #ddd;
  font-size: var(--fs-body-sm);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--brand-gray-light);
}

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

.footer-contact a {
  color: #ddd;
  font-size: var(--fs-body-sm);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--brand-gray-light);
}

.footer-contact p {
  color: #aaa;
  font-size: var(--fs-meta);
}

.footer-phone {
  text-decoration: underline;
  text-decoration-color: var(--brand-gray-light);
  text-underline-offset: 4px;
  font-weight: 700;
  font-size: var(--fs-body-lg);
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #2a2a2a;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-size: var(--fs-meta);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #3a3a3a;
}

.social-btn:hover {
  background: #3a3a3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-text {
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  position: relative;
  z-index: 2;
}

.social-icon-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  object-fit: contain;
}

/*!* Для SVG файлов (WhatsApp) применяем белый фильтр *!*/
/*.social-whatsapp .social-icon-svg {*/
/*  filter: brightness(0) ;*/
/*}*/

/* Цветовые акценты для разных соц.сетей */
.social-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-facebook:hover .social-icon-svg {
  filter: brightness(1.1);
  transform: scale(1.1);
}

.social-instagram:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #bc1888;
}

.social-instagram:hover .social-icon-svg {
  filter: brightness(1.1);
  transform: scale(1.1);
}
/* Цветовые акценты для разных соц.сетей */
.social-whatsapp:hover {
  background: #0dc648;
  border-color: #00aa25;
}
/*.social-whatsapp:hover {*/
/*  background: linear-gradient(135deg, #9bf033 0%, #3ce653 25%, #27dc45 50%, #9f256b 75%, #bc1888 100%);*/
/*  border-color: #000000;*/
/*}*/

.social-whatsapp:hover .social-icon-svg {

  transform: scale(1.1);
}

@media (max-width: 600px) {
  .social-btn {
    padding: 8px 16px;
    font-size: 12px;
    gap: 8px;
  }

  .social-icon-svg {
    width: 18px;
    height: 18px;
  }

  .footer-social {
    justify-content: center;
    width: 100%;
  }
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid #333;
  color: #aaa;
  font-size: var(--fs-meta);
}

.footer-bottom p {
  margin: 5px 0;
}

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

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Popup Styles */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.popup {
  background: white;
  padding: 30px 30px 24px;
  border-radius: 20px;
  max-width: min(760px, 100%);
  width: min(760px, 100%);
  position: relative;
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
  max-height: min(860px, calc(100dvh - 40px));
  overflow-y: auto;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
}

.popup .job-pills-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.popup .job-pill {
  border-radius: 10px;
  justify-content: center;
  white-space: normal;
  text-align: center;
  padding: 10px 10px;
}


.popup #quote-form {
  gap: 10px;
}

.popup #quote-form .form-row-2 {
  gap: 14px;
}

.popup #quote-form .form-row-notes {
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 14px;
  align-items: stretch;
}

.popup #quote-form label {
  margin-bottom: 3px;
}

.popup #quote-form input,
.popup #quote-form textarea,
.popup #quote-form .phone-wrapper,
.popup #quote-form .job-select-trigger {
  margin: 0;
}

.popup #quote-form input,
.popup #quote-form textarea,
.popup #quote-form .job-select-trigger,
.popup #quote-form .phone-wrapper input {
  font-size: var(--fs-input);
}

.popup #quote-form input,
.popup #quote-form textarea,
.popup #quote-form .job-select-trigger {
  padding-top: 11px;
  padding-bottom: 11px;
}

.popup #quote-form .phone-wrapper {
  min-height: 50px;
}

.popup #quote-form textarea {
  min-height: 58px;
}

.popup #quote-form .form-field-btn {
  justify-content: stretch;
}

.popup #quote-form .form-field-btn button {
  height: 100%;
  min-height: 58px;
  margin-top: 0;
}

.popup #quote-form .job-select-dropdown {
  max-height: 190px;
}

@media (max-width: 600px) {
  .popup {
    padding: 22px 16px 18px;
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    max-height: calc(100dvh - 16px);
  }

  .popup h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .popup-overlay {
    padding: 8px;
    align-items: center;
  }

  .popup #quote-form .form-row-2,
  .popup #quote-form .form-row-notes {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .popup #quote-form {
    gap: 9px;
  }

  .popup #quote-form textarea {
    min-height: 52px;
  }

  .popup #quote-form .job-select-dropdown {
    max-height: 160px;
  }
}

@media (max-width: 900px) {
  .popup {
    width: min(680px, 100%);
    max-width: min(680px, 100%);
    padding: 26px 22px 20px;
  }

  .popup #quote-form .form-row-notes {
    grid-template-columns: 1fr;
  }
}

.popup h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #1a1a1a;
  padding-right: 28px;
}

.popup input,
.popup textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  box-sizing: border-box;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: var(--fs-input);
  font-family: 'Poppins', sans-serif;
}

.popup input:focus {
  outline: none;
  border-color: var(--brand-gray-light);
  box-shadow: 0 0 0 3px var(--brand-focus-shadow);
}

.phone-wrapper {
  display: flex;
  align-items: center;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  margin: 10px 0;
  padding-left: 10px;
  background: #fff;
}

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  margin-right: 8px;
}

.phone-prefix img {
  width: 20px;
  height: 14px;
}

.phone-wrapper input {
  border: none;
  outline: none;
  flex: 1;
  font-size: var(--fs-input);
  padding: 12px;
}

.popup button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--brand-gray-mid) 0%, var(--brand-gray-dark) 100%);
  border: none;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  font-size: var(--fs-btn);
  margin-top: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.popup button:hover {
  background: linear-gradient(135deg, #000000 0%, var(--brand-gray-dark) 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55);
  transform: translateY(-2px);
}

.popup .close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 32px;
  cursor: pointer;
  color: #444;
  line-height: 1;
}

.popup .close:hover {
  color: var(--brand-gray-light);
}

/* Mobile Fixed Buttons */
.mobile-fixed-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: none;
}

.mobile-fixed-buttons button,
.mobile-fixed-buttons a {
  width: 50%;
  padding: 16px 0;
  text-align: center;
  font-size: 16px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border: none;
  display: inline-block;
}

.mobile-fixed-buttons button {
  background: linear-gradient(135deg, var(--brand-gray-mid) 0%, var(--brand-gray-dark) 100%);
  cursor: pointer;
}

.mobile-fixed-buttons a {
  background: linear-gradient(135deg, #000000 0%, var(--brand-gray-dark) 100%);
}

@media (max-width: 768px) {
  .mobile-fixed-buttons {
    display: flex;
  }

  .footer {
    padding-bottom: 80px;
  }
}

/* FAQ Section (if needed) */
.faq {
  padding: 60px 20px;
  background: #f9f9f9;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.faq-question {
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  font-size: var(--fs-h4);
  padding: 15px;
  cursor: pointer;
  font-weight: 700;
  color: #1a1a1a;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  font-size: var(--fs-body);
  font-weight: 500;
  color: #444;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

.contact-form textarea,
#quote-form textarea {
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  min-height: 110px;
  line-height: 1.4;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

.contact-form textarea,
#quote-form textarea {
  font-family: inherit;
  font-size: inherit;
  padding: 12px 14px;
  border-radius: 10px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.popup form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popup input,
.popup textarea {
  margin: 0;
}

.popup label {
  font-size: var(--fs-label);
  font-weight: 500;
  color: #333;
}

.popup textarea {
  resize: vertical;
  min-height: 110px;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

.phone-wrapper:focus-within {
  border-color: var(--brand-gray-light);
  box-shadow: 0 0 0 3px var(--brand-focus-shadow);
}

.contact-form label {
  font-size: var(--fs-label);
  font-weight: 500;
  color: #000000;
}

.contact-form textarea {
  padding: 15px 20px;
  border: 2px solid #333;
  border-radius: 8px;
  font-size: var(--fs-input);
  font-family: 'Poppins', sans-serif;
  resize: vertical;
  min-height: 110px;
}

.contact-form textarea::placeholder {
  color: #555;
}

.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-gray-light);
  background: #ffffff;
  color: #333;
  box-shadow: 0 0 0 3px var(--brand-focus-shadow);
}

html {
  overflow-x: hidden;
}

.about-content > * {
  min-width: 0;
}

.about-text,
.about-text p {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.about-stats {
  flex-wrap: wrap;
  gap: 16px;
}

.stat-divider {
  display: none;
}

@media (max-width: 600px) {
  .about-stats {
    justify-content: center;
  }

  .stat-item {
    flex: 1 1 120px;
    min-width: 120px;
  }

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


/* areas-section — marquee */
.areas-section {
  padding: 60px 0;
  background: #f9f9f9;
  text-align: center;
  overflow: hidden;
}

.areas-section .container {
  padding: 0 20px;
}

.areas-section .section-title-center {
  margin-bottom: 10px;
  color: var(--brand-gray-dark);
}

.areas-subtitle {
  font-size: var(--fs-body-lg);
  font-weight: 600;
  margin-bottom: 36px;
  color: #333;
}

/* Marquee wrapper */
.areas-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Pause on hover (desktop) */
.areas-marquee-wrapper:hover .areas-marquee-track {
  animation-play-state: paused;
}

.areas-marquee-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  padding: 10px 0;
  animation: marquee-scroll 38s linear infinite;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: var(--fs-meta);
  font-weight: 500;
  color: #1b1b1b;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  flex-shrink: 0;
  cursor: default;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.area-chip:hover {
  border-color: var(--brand-gray-mid);
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.area-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: var(--brand-gray-mid);
  color: white;
  font-size: var(--fs-badge);
  border-radius: 3px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .areas-section .section-title-center {
    font-size: 1.75rem;
  }
  .area-chip {
    font-size: var(--fs-badge);
    padding: 6px 14px;
  }
  .areas-marquee-track {
    gap: 10px;
    animation-duration: 28s;
  }
}

/* ── Why Choose Us — two-column layout ── */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left .section-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  text-align: left;
  margin-bottom: 0;
}

.why-left .why-intro {
  text-align: left;
  margin: 24px 0 0 0;
  font-size: var(--fs-body-lg);
  color: #444;
  line-height: 1.8;
  max-width: 100%;
}

.why-right .why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 0;
}

.why-right .why-card {
  text-align: left;
  padding: 24px;
  background: #f9f9f9;
  border-radius: 12px;
  border-left: 4px solid var(--brand-gray-mid);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-right .why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--brand-gray-dark);
}

.why-right .why-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
  color: #1a1a1a;
}

.why-right .why-card p {
  font-size: var(--fs-body);
  color: #444;
  line-height: 1.6;
}

/* ── Custom Select Multiple with Checkboxes ── */
/* ══════════════════════════════════════════════
   JOB PILL TOGGLE BUTTONS — unified across all forms
   ══════════════════════════════════════════════ */
.job-pills-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.job-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 2px solid #d8d9dd;
  border-radius: 50px;
  background: #ffffff;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: var(--fs-pill);
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease,
              color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

/* subtle hover */
.job-pill:hover {
  border-color: #9a9ba2;
  background: #f7f7f8;
  color: #1a1a1a;
}

/* SELECTED — bright accent so it's crystal clear */
.job-pill.selected {
  border-color: #1f2023;
  background: #1f2023;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(31, 32, 35, 0.30);
  transform: translateY(-1px);
}

/* checkmark prepended via ::before on selected */
.job-pill.selected::after {
  content: '✓';
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 2px;
  opacity: 0.85;
}

.job-pill.selected:hover {
  background: #3a3b40;
  border-color: #3a3b40;
}

/* popup has dark bg — keep pills readable */
.popup .job-pill {
  background: #f7f7f8;
  border-color: #d0d1d5;
  color: #333;
}
.popup .job-pill:hover {
  background: #eeeef0;
  border-color: #9a9ba2;
}
.popup .job-pill.selected {
  background: #1f2023;
  border-color: #1f2023;
  color: #fff;
}
.popup .job-pill.selected:hover {
  background: #3a3b40;
  border-color: #3a3b40;
}

/* ── Mobile: 2-column grid ── */
@media (max-width: 600px) {
  .job-pills-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .job-pill {
    font-size: var(--fs-pill);
    padding: 10px 10px;
    justify-content: center;
    border-radius: 10px;
    white-space: normal;
    text-align: center;
  }
  .job-pill.selected::after {
    display: none; /* checkmark hidden on mobile to save space */
  }
}


/* keep legacy job-select-* in case popup still uses them */
.job-select-wrapper {
  position: relative;
  width: 100%;
  overflow: visible !important;
}

.job-select-trigger {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: #ffffff;
  color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  text-align: left;
}

.contact-form .job-select-trigger,
.popup .job-select-trigger {
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 0;
}

.job-select-trigger.has-selection {
  border-color: var(--brand-gray-mid);
  background: linear-gradient(135deg, rgba(90, 90, 90, 0.04) 0%, rgba(90, 90, 90, 0.02) 100%);
  color: #ffffff;
  font-weight: 600;
}

.job-select-trigger:hover {
  border-color: var(--brand-gray-light);
  background-color: #f9f9f9;
}

.contact-form .job-select-trigger:hover,
.popup .job-select-trigger:hover {
  color: #1a1a1a;
  transform: none;
  box-shadow: none;
}

.job-select-trigger:focus {
  outline: none;
  border-color: var(--brand-gray-mid);
  box-shadow: 0 0 0 3px rgba(90, 90, 90, 0.1);
}

.job-select-trigger.active {
  border-color: var(--brand-gray-mid);
  background-color: #ffffff;
}

.job-select-arrow {
  transition: transform 0.3s ease;
  color: var(--brand-gray-mid);
  flex-shrink: 0;
  margin-left: 10px;
}

.job-select-trigger.active .job-select-arrow {
  transform: rotate(180deg);
}

.job-select-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-select-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-gray-mid);
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.job-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 2px solid var(--brand-gray-light);
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-top: -2px;
  padding: 8px 0;
  z-index: 10000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-height: 250px;
  overflow-y: auto;
  overflow-x: visible;
}

.job-checkbox {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 14px;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.job-checkbox:hover {
  background-color: #f5f5f5;
}

.job-checkbox input[type="checkbox"] {
  display: none;
}

.checkbox-mark {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  background: #ffffff;
}

.job-checkbox input[type="checkbox"]:checked + .checkbox-mark {
  background: #d8d8d8;
  border-color: #444;
}

.job-checkbox input[type="checkbox"]:checked + .checkbox-mark::after {
  content: '✓';
  color: #222;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 968px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-left .section-title {
    text-align: center;
    font-size: 2rem;
  }
  .why-left .why-intro {
    text-align: center;
  }
  .why-right .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* --- Keyframes --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Base hidden state (JS adds .is-visible) --- */
.anim-up,
.anim-left,
.anim-right,
.anim-fade,
.anim-scale {
  opacity: 0;
  transition: none;
}

.anim-up.is-visible    { animation: fadeInUp   0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
.anim-left.is-visible  { animation: fadeInLeft 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
.anim-right.is-visible { animation: fadeInRight 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
.anim-fade.is-visible  { animation: fadeIn     0.8s ease forwards; }
.anim-scale.is-visible { animation: scaleIn    0.6s cubic-bezier(0.22,1,0.36,1) forwards; }

.service-card.anim-up.is-visible {
  box-shadow: 0 14px 32px rgba(14, 18, 26, 0.14), 0 3px 10px rgba(14, 18, 26, 0.08);
}

.service-card.anim-up.is-visible:hover {
  box-shadow: 0 18px 38px rgba(14, 18, 26, 0.18), 0 6px 14px rgba(14, 18, 26, 0.1);
}

/* Stagger delays for grids */
.anim-delay-1 { animation-delay: 0.1s !important; }
.anim-delay-2 { animation-delay: 0.2s !important; }
.anim-delay-3 { animation-delay: 0.3s !important; }
.anim-delay-4 { animation-delay: 0.4s !important; }

/* ============================================
   HERO — fade in on load
   ============================================ */
.hero-title   { animation: fadeInUp  0.9s cubic-bezier(0.22,1,0.36,1) 0.2s both; }
.hero-subtitle{ animation: fadeInUp  0.9s cubic-bezier(0.22,1,0.36,1) 0.4s both; }
.hero-cta     { animation: fadeInUp  0.9s cubic-bezier(0.22,1,0.36,1) 0.6s both; }

/* ============================================
   NAVBAR — slide down on load
   ============================================ */
.navbar { animation: slideInDown 0.6s cubic-bezier(0.22,1,0.36,1) both; }

/* ============================================
   HOVER micro-interactions
   ============================================ */

/* Nav links underline sweep */
.nav-links li a {
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-gray-mid);
  transition: width 0.3s ease;
}
.nav-links li a:hover::after { width: 100%; }

/* Service cards — lift + glow */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Why cards — border glow on hover */
.why-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Review cards */
.review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Buttons — pulse on hover */
.hero-cta,
.estimate-button,
.about-link,
.service-btn,
.contact-form button:not(.job-pill) {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
}
.hero-cta:hover,
.estimate-button:hover,
.about-link:hover,
.service-btn:hover,
.contact-form button:not(.job-pill):hover {
  transform: translateY(-3px) scale(1.02);
}

/* Stat numbers count-up feel — subtle scale on scroll */
.stat-number {
  display: inline-block;
  transition: transform 0.4s ease;
}
.stat-item:hover {
  transform: translateY(-3px);
}

.stat-item:hover .stat-number {
  transform: scale(1.12);
}

/* Footer links */
.footer-links a {
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-links a:hover {
  padding-left: 6px;
}

/* area-item removed — replaced by .area-chip marquee */

/* Chip pills bounce */
.chip span {
  transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.chip:hover span {
  transform: scale(1.05);
}

/* ============================================
   SCROLL OBSERVER — injected via <style> tag
   Put this script in your HTML before </body>
   ============================================ */