.service-section {
  background-color: var(--medium-gray);
  padding: var(--margin-160) 0;
}
.service-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 80px;
}

.service-content {
  flex: 1;
}
.service-content .btn {
  width: 100%;
  max-width: 233px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-content h4 {
  text-transform: uppercase;
  margin-bottom: 24px;
}

.service-content h4 span {
  color: var(--primary);
}

.service-content p {
  margin-bottom: 46px;
  font-weight: var(--font-weight-500);
  color: var(--gray-700);
}

.service-list {
  list-style: none;
  margin-bottom: 46px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: var(--font-18);
  font-weight: var(--font-weight-500);
  margin-bottom: 24px;
}

.service-list img {
  width: 26px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  display: block;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 28px;
  border-radius: 6px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 2.5fr;
  gap: 16px;
  transition: 0.3s;
}

.feature-icon {
  width: 86px;
  height: 86px;
  background-color: var(--gray-200);
  display: flex;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}
.feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-content h6 {
  font-weight: var(--font-weight-500);
  margin-bottom: 6px;
}

.feature-content p {
  color: var(--gray-700);
  font-weight: var(--font-weight-500);
}

.service-areas-section {
  padding: var(--margin-160) 0;
}
.service-areas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.service-areas-title {
  color: var(--black);
}

.service-areas-search {
  position: relative;
  width: 100%;
  max-width: 467px;
}

.service-areas-search img {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.service-areas-search input {
  background-color: #f9f9f9;
  width: 100%;
  height: 50px;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding-left: 46px;
  font-size: var(--font-16);
  font-weight: var(--font-weight-500);
  font-family: var(--font-family);
  outline: none;
}
input::placeholder {
  font-size: var(--font-16);
  color: var(--gray-500);
  font-weight: var(--font-weight-500);
  font-family: var(--font-family);
}
.service-areas-wrapper {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}

.service-areas-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--medium-gray);
  border: 1px solid var(--gray-200);
  padding: 7px 10px;
  gap: 6px;
}

.service-areas-tab {
  border: 1px solid var(--border-soft);
  background: transparent;
  padding: 15px;
  font-size: var(--font-16);
  font-weight: var(--font-weight-500);
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.service-areas-tab.active {
  background: var(--black);
  color: var(--white);
}

.service-areas-content {
  display: none;
  flex-wrap: wrap;
  gap: 14px;
  padding: 30px;
}

.service-areas-content.active {
  display: flex;
}

.service-areas-location {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--black);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 14px 16px;
  transition: 0.3s;
}

.service-areas-location p {
  font-weight: var(--font-weight-500);
}

.service-areas-location img {
  width: 16px;
  height: auto;
}

.emergency-banner {
  position: relative;
  width: 100%;
  min-height: 465px;
  background: url("../img/emergency_service.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
}

.emergency-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.emergency-banner-container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: auto;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.emergency-banner-content {
  max-width: 871px;
}

.banner-subtitle {
  color: var(--primary);
  font-size: var(--font-18);
  font-weight: var(--font-weight-500);
  margin-bottom: 24px;
}

.emergency-banner-content h4 {
  color: var(--white);

  margin-bottom: 10px;
}

.emergency-banner-text p{
  color: var(--gray-300);
  font-size: var(--font-20);
  font-weight: var(--font-weight-500);
}
.emergency-banner-container .btn {
  width: 100%;
  max-width: 297px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign-section {
  margin: var(--margin-160) 0;
}
.sign-section h4 {
  margin-bottom: 30px;
}
.sign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sign-card {
  background: var(--medium-gray);
  padding: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: 0.3s;
}

.sign-icon {
  width: 86px;
  height: 86px;
  background-color: var(--white);
  display: flex;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}
.sign-icon img {
  width: 40px;
  height: 40px;
}
.sign-content h6 {
  font-weight: var(--font-weight-500);
  margin-bottom: 6px;
}

.sign-content p {
  color: var(--gray-700);
  font-weight: var(--font-weight-500);
}
.warning-section {
  background-color: var(--medium-gray);
  padding: var(--margin-160) 0;
}
.warning-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.warning-card {
  width: 350px;
  background: var(--white);
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid var(--primary);
}

.warning-icon {
  width: 86px;
  height: 86px;
  background-color: var(--primary);
  display: flex;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.warning-icon img {
  width: 40px;
  height: 40px;
}
.warning-card h6 {
  font-weight: var(--font-weight-500);
  color: var(--black);
  margin-bottom: 10px;
}

.warning-card p {
  color: var(--gray-700);
  font-weight: var(--font-weight-500);
}

.warning-content {
  flex: 1;
  background: var(--white);
  border-radius: 6px;
  padding: 40px;
}

.warning-content h4 {
  margin-bottom: 20px;
}

.warning-content p {
  color: var(--gray-700);
  margin-bottom: 46px;
}

.warning-list {
  list-style: none;
}

.warning-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--black);
  font-size: var(--font-18);
  font-weight: var(--font-weight-500);
}

.danger,
.success {
  width: 32px;
  height: 32px;
}

.faq-faq-section {
  margin: var(--margin-160) 0;
}
.faq-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 2fr;
}

.faq-left h4 {
  color: var(--black);
  margin-bottom: 10px;
}

.faq-left p {
  color: var(--secondary);
  font-weight: var(--font-weight-500);
  margin-bottom: 24px;
}
.faq-left .btn {
  width: 100%;
  max-width: 233px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item {
  border-bottom: 1px solid #d8d8d8;
  padding: 0px 0 32px;
  margin-bottom: 32px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.faq-question h6 {
  font-weight: var(--font-weight-500);
  color: #202020;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-24);
  color: var(--charcoal);
  transition: 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--primary);
  color: var(--black);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin-top: 20px;
  color: var(--gray-700);
  font-weight: var(--font-weight-500);
  width: 100%;
  max-width: 959px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}
.sign-section.mt-0{margin:0;}
.feature-grid.grid-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hero-section--services {
  height: 460px;
}

.hero-section--services::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.68) 100%);
  z-index: 1;
}

.hero-section--services .container {
  position: relative;
  z-index: 2;
}

.hero-section-copy {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.hero-section--services h1,
.hero-section--services h2 {
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-section-lead {
  margin: 0 0 24px;
  color: #f0f0f0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.hero-section-call {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 260px;
  height: auto;
  padding: 14px 22px;
  margin: 0 auto;
}

.hero-section-call span {
  font-size: 13px;
  font-weight: 600;
}

.page-template-services .about-section {
  margin-top: 72px;
}

.page-template-services .service-list li {
  color: #111;
}

.bb-call-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99990;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 10px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bb-call-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  color: #fff;
}

.bb-call-float-icon {
  position: relative;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #111;
  border-radius: 50%;
  flex-shrink: 0;
}

.bb-call-float-icon::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: bb-call-pulse 1.8s ease-out infinite;
}

.bb-call-float-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.bb-call-float-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f5ca27;
}

.bb-call-float-number {
  font-size: 16px;
  font-weight: 700;
}

@keyframes bb-call-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.page-template-services .service-areas-tabs {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

@media (max-width: 991px) {
  .hero-section--services {
    height: auto;
    min-height: 380px;
    padding: 72px 16px 36px;
  }

  .hero-section--services h1,
  .hero-section--services h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .hero-section-lead {
    font-size: 16px;
  }

  .hero-section-call {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .page-template-services {
    padding-bottom: 148px;
  }

  .bb-call-float {
    left: 12px;
    right: 12px;
    bottom: 68px;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
  }

  .bb-call-float-icon::after {
    display: none;
  }

  .page-template-services .about-section,
  .page-template-services .sign-section {
    margin: 56px 0;
  }

  .page-template-services .service-areas-section,
  .page-template-services .faq-faq-section,
  .page-template-services .warning-section {
    padding: 56px 0;
  }

  .page-template-services .emergency-banner {
    min-height: 0;
  }

  .page-template-services .emergency-banner-container {
    padding: 36px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bb-call-float-icon::after {
    animation: none;
  }
}

@media print {
  .bb-call-float {
    display: none;
  }
}
