/* Общие стили и сброс */
:root {
  --primary-color: #017139;
  --secondary-color: #005a2d;
  --accent-color: #ff7700;
  --text-color: #333;
  --light-text: #fff;
  --light-bg: #f8f9fa;
  --dark-bg: #192a3e;
  --border-color: #e1e1e1;
  --success-color: #28a745;
}

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

body {
  font-family: "Roboto", Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  height: inherit;
}

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

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s;
}

a:hover {
  color: var(--accent-color);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  color: var(--primary-color);
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

section {
  padding: 3rem 0;
  position: relative;
  /* overflow: hidden; */
}

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

/* Шапка и навигация */
.top-header {
  background-color: var(--dark-bg);
  color: var(--light-text);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.top-header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.authorization {
  text-align: right;
}

.auth-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.auth-badge span:first-child {
  font-weight: bold;
  color: var(--accent-color);
}

.main-nav {
  background-color: var(--light-bg);
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.nav-center,
.nav-right {
  display: flex;
  align-items: center;
}

.location,
.phone-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.location {
  background-color: var(--accent-color);
  color: var(--light-text);
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.location i {
  color: var(--light-text);
  font-size: 1.2rem;
}

.location span {
  color: var(--light-text);
}

.location:hover {
  background-color: #e56b00;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.phone-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 15px;
  background-color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.phone-cta:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.phone-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.phone-cta i {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.phone-cta:hover i {
  color: var(--light-text);
}

.phone-cta span:first-of-type {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
  transition: color 0.3s;
}

.phone-cta:hover span {
  color: var(--light-text);
}

.small-text {
  font-size: 0.8rem;
  color: #666;
}

/* Hero Section */
.hero {
  display: flex;

  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/hero.png") no-repeat center center;
  background-size: cover;
  color: var(--light-text);
  padding: 2rem 0;
  position: relative;
  min-height: 100vh;
}

.hero .container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding-right: 2rem;
}

.hero h1,
.hero h2,
.hero h3 {
  color: var(--light-text);
  margin-bottom: 1rem;
}

.hero h1 {
  text-align: center;
  text-transform: uppercase;
}

.hero h2 {
  display: inline-flex;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
  text-transform: uppercase;
  font-size: 2.5rem;
  text-align: left;
  font-weight: 600;
  background-color: #ffdd00;
  color: black;
}

.hero h2 span {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
}

.cta-button,
.call-button {
  display: inline-block;
  margin: 1rem 0;
  padding: 12px 24px;
  background-color: var(--accent-color);
  color: var(--light-text);
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover,
.call-button:hover {
  color: var(--light-text);
  background-color: #e56b00;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.call-button {
  background-color: #ff0000e4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 2rem;
  line-height: normal;
  text-align: center;
  color: var(--light-text);
  width: 90%;
}

.call-button i {
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

.hero__subtitle {
  font-size: 1.5rem;
  color: var(--light-text);
  text-align: center;
}

.hero__subtitle i {
  background-color: var(--light-text);
  color: black;
  padding: 6px;
  border-radius: 8px;
}

.call-button:hover {
  background-color: #ff0000a7;
  color: var(--light-text);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
  margin: 2rem 1rem;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
}

.hero-features i {
  color: var(--light-text);
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-height: 400px;
  transform: scale(1);
  transition: transform 0.5s;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* Discounts Section */
.discounts {
  background-color: var(--light-bg);
  padding: 2rem 0;
}

.discounts .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.discount-item {
  text-align: center;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.discount-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.discount-percent {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.discount-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.discount-item p {
  color: #666;
  font-size: 0.9rem;
}

/* Why Choose Us */
.why-choose {
  padding: 4rem 0;
  text-align: center;
}

.subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-weight: 500;
}

.description {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 2rem 0;
}

.service-item {
  padding: 1.5rem;
  background-color: var(--light-bg);
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.badge {
  margin: 2rem auto;
  max-width: 200px;
}

/* ZIP Code Checker */
.zip-checker {
  background-color: var(--light-bg);
  padding: 4rem 0;
  text-align: center;
}

.leak-detection-icon {
  margin: 1rem auto;
  max-width: 100px;
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.step {
  flex: 1;
  min-width: 250px;
  padding: 1rem;
  text-align: center;
}

.step-icon {
  margin: 0 auto 1rem;
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-icon i {
  font-size: 2.5rem;
}

.step:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  background-color: var(--accent-color);
}

.zip-form {
  max-width: 500px;
  margin: 2rem auto;
}

.search-box {
  display: flex;
  margin-bottom: 1rem;
}

.search-box input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}

.search-box button {
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-box button:hover {
  background-color: var(--secondary-color);
}

.progress {
  height: 20px;
  background-color: #e9ecef;
  border-radius: 10px;
  margin: 1rem 0;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--success-color);
  color: var(--light-text);
  text-align: center;
  line-height: 20px;
  font-size: 0.8rem;
  transition: width 0.5s;
}

.form-note {
  color: #666;
  font-size: 0.9rem;
  margin: 1rem 0;
}

.map {
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#interactive-map {
  height: 400px;
  width: 100%;
  border-radius: 10px;
}

.privacy-note {
  max-width: 600px;
  margin: 1rem auto;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Team & Services */
.team-services {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-services::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(1, 113, 57, 0.05);
  z-index: 0;
}

.team-services::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 119, 0, 0.05);
  z-index: 0;
}

.team-services .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-services h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  position: relative;
  display: block;
  z-index: 5;
}

.team-services h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  margin: 0 auto 2rem;
  max-width: 500px;
}

.rating p:first-child {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.rating p:nth-child(2) {
  color: var(--accent-color);
  font-weight: 600;
}

.team-description {
  max-width: 500px;
  margin: 2rem 0;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.team-flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 3rem 0;
}

.repair-team {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  flex: 0.8;
  max-width: 380px;
  margin: 0 auto;
}

.repair-team img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.features-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 3rem 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature i {
  color: var(--primary-color);
  font-size: 1.5rem;
  background-color: rgba(1, 113, 57, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Animal Welfare */
.animal-welfare {
  background-color: #f8e8d4;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.animal-welfare::before,
.animal-welfare::after,
.animal-welfare .paw-1,
.animal-welfare .paw-2,
.animal-welfare .paw-3 {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f1b0"; /* Иконка лапы из Font Awesome */
  position: absolute;
  z-index: 0;
}

.animal-welfare::before {
  top: -20px;
  left: 5%;
  font-size: 5rem;
  color: rgba(255, 119, 0, 0.1);
  transform: rotate(-15deg);
}

.animal-welfare::after {
  bottom: -20px;
  right: 5%;
  font-size: 5rem;
  color: rgba(255, 119, 0, 0.1);
  transform: rotate(15deg);
}

.animal-welfare .container {
  position: relative;
  z-index: 1;
}

.animal-welfare .container::before {
  content: "\f1b0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  font-size: 3rem;
  color: rgba(255, 119, 0, 0.1);
  left: 15%;
  top: 50%;
  transform: rotate(45deg);
  animation: float 4s infinite ease-in-out;
}

.animal-welfare .container::after {
  content: "\f1b0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  font-size: 2.5rem;
  color: rgba(255, 119, 0, 0.1);
  right: 15%;
  top: 30%;
  transform: rotate(-30deg);
  animation: float 5s infinite ease-in-out;
}

.animal-welfare h3 {
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.animal-welfare h3::before {
  content: "🐾";
  margin-right: 10px;
  font-size: 1.4rem;
}

.animal-welfare h3::after {
  content: "🐾";
  margin-left: 10px;
  font-size: 1.4rem;
  transform: scaleX(-1);
  display: inline-block;
}

.animal-welfare p {
  margin-bottom: 0.5rem;
  position: relative;
}

.animal-welfare p::before {
  content: "\f1b0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  font-size: 1.5rem;
  color: rgba(255, 119, 0, 0.15);
  left: 20%;
  bottom: -15px;
  transform: rotate(20deg);
  animation: pulse 3s infinite;
}

.animal-welfare p em {
  position: relative;
}

.animal-welfare p em::after {
  content: "🐱";
  font-size: 1.2rem;
  margin-left: 8px;
  animation: bounce 2s infinite;
  display: inline-block;
}

.animal-welfare p:last-child::before {
  content: "🐶";
  font-size: 1.2rem;
  margin-right: 5px;
  animation: wiggle 3s infinite;
  display: inline-block;
  position: static;
}

.animal-welfare.secondary {
  background-color: #f0f7ff;
}

.animal-welfare.secondary::before,
.animal-welfare.secondary::after,
.animal-welfare.secondary .container::before,
.animal-welfare.secondary .container::after,
.animal-welfare.secondary p::before {
  color: rgba(1, 113, 57, 0.1);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-10deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--rotation, 0deg));
  }
  50% {
    transform: translateY(-10px) rotate(var(--rotation, 0deg));
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1) rotate(20deg);
  }
  50% {
    transform: scale(1.1) rotate(20deg);
  }
}

/* Services Section */
.services {
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 2rem 0;
}

.service-box {
  background-color: var(--light-bg);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-box:hover img {
  transform: scale(1.05);
}

.service-box h3 {
  padding: 1rem;
  background-color: var(--primary-color);
  color: var(--light-text);
  margin-bottom: 0;
}

.service-box a {
  display: block;
  padding: 1rem;
  background-color: #fff;
  color: var(--primary-color);
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.service-box a:hover {
  background-color: var(--accent-color);
  color: var(--light-text);
}

/* Real Company */
.real-company {
  padding: 4rem 0;
  background-color: var(--light-bg);
}

.company-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-top: 2rem;
}

.ceo-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.ceo-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.ceo-image:hover img {
  transform: scale(1.03);
}

.ceo-message {
  flex: 2;
  min-width: 300px;
}

.ceo-sign {
  margin-top: 1.5rem;
  font-weight: bold;
}

.signature {
  margin-top: 1rem;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px;
  margin: 2rem 0;
}

.testimonial {
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.client-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-color);
}

.client-name {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.source {
  display: flex;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.source img {
  height: 20px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(20%);
  transition: all 0.3s ease;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.source img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Team Photos */
.team-photos {
  padding: 4rem 0;
  background-color: var(--light-bg);
}

.team-photos p {
  text-align: center;
  margin: 1rem auto;
  max-width: 800px;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 15px;
  margin: 2rem 0;
}

.photo-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.photo-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

/* More Than Professional */
.more-than-professional {
  padding: 4rem 0;
}

.team-photos-slider {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  gap: 20px;
  padding: 1rem 0;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.team-photos-slider::-webkit-scrollbar {
  display: none;
}

.team-photo {
  flex: 0 0 auto;
  width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.team-photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-photo:hover img {
  transform: scale(1.05);
}

.team-photo p {
  padding: 1rem;
  text-align: center;
  background-color: var(--light-bg);
  margin-bottom: 0;
}

/* Слайдер навигация */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.slider-dot:hover {
  background-color: var(--primary-color);
  transform: scale(1.1);
}

.slider-dot.active {
  background-color: var(--primary-color);
}

/* Reputation */
.reputation {
  padding: 3rem 0;
  background-color: var(--light-bg);
  text-align: center;
}

.reputation-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.reputation-icon {
  width: 120px;
  transition: transform 0.3s;
}

.reputation-icon:hover {
  transform: scale(1.1);
}

/* FAQ */
.faq {
  padding: 4rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 2rem auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.faq-question {
  font-weight: bold;
  padding: 1rem 0;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  transition: color 0.3s;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s;
}

.faq-question.active::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 0 1rem;
  transition: max-height 0.3s ease;
}

/* Privacy */
.privacy {
  display: flex;
  justify-content: center;
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 1rem 0;
  text-align: center;
}

.privacy .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.privacy h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.privacy p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(30, 30, 30, 0.95);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
  /* padding: 1rem 0; */
  z-index: 1000;
  backdrop-filter: blur(5px);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.sticky-cta.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sticky-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.sticky-message {
  display: flex;
  /* gap: 50px; */
  color: var(--light-text);
}

.cta-headline {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #fff;
}

.offer-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.highlight-date {
  color: var(--accent-color);
  font-weight: bold;
  text-decoration: underline;
  font-size: 1.1rem;
}

.call-link {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 4px 8px;
  background-color: #ff0000e4;
  color: var(--light-text);
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.call-link i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.call-link:hover {
  transform: scale(1.05) !important;
  background-color: #f57c00;
  color: #fff;
  transform: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.person-image {
  width: 80px;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 1rem 0;
  text-align: center;
}

footer p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-links {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: var(--light-text);
  transition: color 0.3s;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--accent-color);
}

/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  text-align: center;
  margin: 0 auto;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

section > .container > h2.animate-on-scroll {
  transform: translateY(-30px);
  margin-top: -20px;
  padding-top: 0;
  position: relative;
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
}

section > .container > h2.animate-on-scroll::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.discount-item.animate-on-scroll {
  transform: translateY(20px);
}

.service-box.animate-on-scroll {
  transform: translateY(20px);
}

.testimonial.animate-on-scroll {
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .company-info {
    flex-direction: column;
  }

  .team-flex-container {
    flex-direction: column;
  }

  .team-description {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .top-header .container {
    flex-direction: column;
    gap: 10px;
  }

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

  .authorization {
    text-align: center;
  }

  .main-nav .container {
    flex-direction: column;
    gap: 15px;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .repair-team {
    max-width: 320px;
    margin: 0 auto;
  }
}

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

  .hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    text-align: center;
  }

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

  .discount-item {
    padding: 1rem;
  }

  .sticky-cta .container {
    flex-direction: column;
    gap: 4px;
    padding: 10px;
  }

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

  .call-link {
    width: 100%;
    justify-content: center;
  }

  .person-image {
    display: none;
  }

  .repair-team {
    max-width: 280px;
  }
}

/* Мобильное меню */
.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: color 0.3s;
  padding: 8px;
}

.mobile-menu-toggle:hover {
  color: var(--accent-color);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-menu.active {
  max-height: 300px;
  padding: 1rem 0;
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s;
}

.mobile-menu-item:last-child {
  border-bottom: none;
}

.mobile-menu-item:hover {
  background-color: #f8f8f8;
  color: var(--accent-color);
}

.mobile-menu-item i {
  font-size: 1.2rem;
  color: var(--primary-color);
  width: 24px;
  text-align: center;
}

/* Адаптивная версия для мобильных устройств */
@media (max-width: 768px) {
  .main-nav .container {
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }

  .nav-center,
  .nav-right {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .logo img {
    height: 40px;
  }

  /* .hero {
    padding-top: 100px;
  } */
}

@media (max-width: 576px) {
  .logo img {
    height: 35px;
  }

  .main-nav {
    padding: 10px 0;
  }
}

/* Policy Pages */
.policy-page {
  padding: 6rem 0 3rem;
  background-color: var(--light-bg);
  min-height: 70vh;
}

.policy-page h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.policy-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.last-updated {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  text-align: right;
}

.policy-content h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.policy-content ul {
  margin-bottom: 1.5rem;
  margin-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .policy-content {
    padding: 1.5rem;
  }

  .policy-page h1 {
    font-size: 1.8rem;
  }

  .policy-content h2 {
    font-size: 1.3rem;
  }
}

.zip-success-message {
  background-color: #e6f7ff; /* Светло-голубой фон для выделения */
  border: 1px solid #91d5ff; /* Голубая рамка */
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem; /* Отступ сверху */
  text-align: left; /* Выравнивание текста по левому краю внутри блока */
  max-width: 700px; /* Ограничение ширины для лучшей читаемости */
  margin-left: auto;
  margin-right: auto;
}

.zip-success-message h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.zip-success-message p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.zip-success-message .hurry-up {
  font-weight: bold;
  color: var(--accent-color);
}

.zip-success-message .call-button {
  font-size: 1.2rem; /* Немного уменьшим кнопку */
  padding: 10px 20px;
  width: auto; /* Автоматическая ширина по содержимому */
}
