* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  color: #333;
}

.hero {
  background-image: url('/car.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: #ff9900; 
}

.cta-button {
  padding: 15px 30px;
  font-size: 1.2rem;
  background-color: #e74c3c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #c0392b;
}

.services {
  padding: 4rem 2rem;
  background-image: url('/orig.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.services h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.price-list {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
}

.price-list h2 {
  font-size: 1.8rem;
  margin: 1.5rem 0 1rem 0;
  color: #049dde;

}

.price-list ul {
  list-style: none;
  padding-left: 0;
  color: white
 ;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 1.1rem;
}

.service {
  font-weight: 600;
}

.price {
  font-weight: bold;
  color: #e74c3c;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* Шапка */
.header {
  background-color: #1a1a1a;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #333;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Логотип */
.logo h1 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Меню */
.nav-menu {
  display: flex;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-menu a {
  color: #ddd;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #fff;
}

/* Контакты */
.contact-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  gap: 0.5rem;
}

.cta-button {
  padding: 1rem 1.5rem;
  background-color: #e74c3c;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s;

}

.cta-button:hover {
  background-color: #c0392b;
}

/* Кнопка мобильного меню */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

/* Адаптивность */
@media (max-width: 992px) {
  .header-container {
    padding: 1rem 3%;
  }

  .logo h1 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    width: 100%;
    text-align: center;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }

  .contact-info {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Для мобильных (до 480px) */
@media (max-width: 480px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .logo h1 {
    font-size: 1.2rem;
  }

  .menu-toggle {
    align-self: flex-end;
  }
}

.cta-button {
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
}
.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
}

.phone-container {
  margin-top: 30px;
  position: relative;
  z-index: 10;
}

.big-phone {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  background: linear-gradient(45deg, #007bff, #0056b3);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  text-transform: none;
  border: none;
  cursor: pointer;
  text-align: center;
}

.big-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
  background: linear-gradient(45deg, #0056b3, #003d7a);
}

.big-phone:active {
  transform: translateY(1px);
}
