/* ==========================
   warranty.css
   Стили для страницы "Гарантия MUL"
   ========================== */

/* КНОПКА (как "Заказать звонок" в header), но переименованная */
.warranty-btn {
  background: linear-gradient(45deg, #f25c05, #ff8c33);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(242, 92, 5, 0.4), 0 0 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1.5;
  min-height: 40px;
  font-size: 1rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.warranty-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(242, 92, 5, 0.6), 0 0 5px rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, #d94a00, #ff8c33);
  animation: pulse 0.5s infinite;
}

/* Эффект пульсации при наведении */
@keyframes pulse {
  0% {
      box-shadow: 0 4px 15px rgba(242, 92, 5, 0.4), 0 0 5px rgba(0, 0, 0, 0.1);
  }
  50% {
      box-shadow: 0 6px 20px rgba(242, 92, 5, 0.6), 0 0 5px rgba(0, 0, 0, 0.2);
  }
  100% {
      box-shadow: 0 4px 15px rgba(242, 92, 5, 0.4), 0 0 5px rgba(0, 0, 0, 0.1);
  }
}

/* Hero-секция: фон синий, без затемняющей подложки */
.hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  background: #1a3c5e; /* Синий фон под стиль сайта */
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

/* Убираем полупрозрачный оверлей */
.hero::before {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Блок: Гарантия для новых автомобилей */
.warranty-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 2.2rem;
  color: #f25c05;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.warranty-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.warranty-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.warranty-card:hover {
  transform: translateY(-5px);
}

.warranty-card h3 {
  font-size: 1.2rem;
  color: #1a3c5e;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.warranty-card h3 .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #f25c05;
  border-radius: 50%;
}

.warranty-card h3 .icon-wrapper .material-icons {
  font-size: 1.8rem;
  color: #fff;
}

.warranty-card p {
  font-size: 0.95rem;
  color: #0d1b2a;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Стили для списка исключений */
.checklist {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.checklist li {
  font-size: 0.95rem;
  color: #0d1b2a;
  margin-bottom: 10px;
  line-height: 1.5;
  position: relative;
  padding-left: 25px;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f25c05;
  font-size: 1.2rem;
}

/* Стили для ссылки на полные условия гарантии */
.warranty-full-link {
  text-align: center;
  margin-top: 40px;
}

/* Стили для кнопки-ссылки в стиле карточки */
.warranty-action-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  color: #f25c05;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.warranty-action-link:hover {
  background: linear-gradient(45deg, #f25c05, #ff6e00);
  color: #fff;
  animation: pulse 1.5s infinite;
}

.warranty-action-link .material-icons {
  font-size: 18px;
  color: #f25c05;
  transition: color 0.3s ease;
}

.warranty-action-link:hover .material-icons {
  color: #fff;
}

/* Адаптивность */
@media screen and (max-width: 768px) {
  .hero h1 {
      font-size: 1.8rem;
  }

  .hero p {
      font-size: 1rem;
  }

  .section-title {
      font-size: 1.8rem;
  }

  .warranty-card h3 {
      font-size: 1.1rem;
  }

  .warranty-card p,
  .checklist li {
      font-size: 0.9rem;
  }

  .warranty-full-link {
      margin-top: 30px;
  }

  .warranty-action-link {
      font-size: 0.85rem;
      padding: 5px 10px;
  }
}

@media screen and (max-width: 480px) {
  .hero {
      min-height: 300px;
      padding: 40px 15px;
  }

  .hero h1 {
      font-size: 1.5rem;
  }

  .warranty-btn {
      padding: 10px 20px;
      font-size: 1rem;
  }

  .warranty-section {
      padding: 20px 15px;
  }

  .warranty-card h3 .icon-wrapper {
      width: 35px;
      height: 35px;
  }

  .warranty-card h3 .icon-wrapper .material-icons {
      font-size: 1.5rem;
  }

  .warranty-full-link {
      margin-top: 20px;
  }

  .warranty-action-link {
      font-size: 0.8rem;
      padding: 4px 8px;
  }
}