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

/* Заголовки */
.page-header {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #333;
  padding: 70px 0;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="route" patternUnits="userSpaceOnUse" width="40" height="40"><text x="10" y="15" text-anchor="middle" font-size="12" fill="rgba(0,0,0,0.03)">🚕</text><text x="30" y="30" text-anchor="middle" font-size="12" fill="rgba(0,0,0,0.03)">✈️</text></pattern></defs><rect width="100" height="100" fill="url(%23route)"/></svg>');
  opacity: 0.2;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.page-subtitle {
  font-size: 1.4rem;
  opacity: 0.9;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

/* Введение */
.intro-section {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  position: relative;
}

.intro-section::before {
  content: "🛣️";
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 4rem;
  opacity: 0.1;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

/* Тарифные таблицы */
.pricing-section {
  margin: 60px 0;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 2px;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-button {
  background: #e9ecef;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #495057;
}

.tab-button.active {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #333;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.tab-content {
  display: none;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.tab-content.active {
  display: block;
}

.class-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.price-table th {
  background: linear-gradient(135deg, #343a40, #495057);
  color: white;
  padding: 15px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.price-table td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid #dee2e6;
  font-size: 0.9rem;
}

.price-table tr:nth-child(even) td {
  background: #f8f9fa;
}

.price-table tr:hover td {
  background: rgba(255, 215, 0, 0.1);
}

.city-cell {
  background: linear-gradient(135deg, #ffd700, #ffa500) !important;
  color: #333;
  font-weight: 700;
}

.price-cell {
  font-weight: 700;
  color: #dc3545;
  font-size: 1rem;
}

/* Преимущества */
.advantages-section {
  margin: 50px 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.advantage-card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #ffd700;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.advantage-card:hover::before {
  top: -50%;
  left: -50%;
}

.advantage-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffd700;
  position: relative;
  z-index: 1;
  text-align: center;
  display: block;
}

.advantage-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
  position: relative;
  z-index: 1;
  text-align: center;
}

.advantage-text {
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  text-align: left;
}

/* Дополнительные услуги */
.services-section {
  margin: 60px 0;
}

.services-block {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-block h3 {
  color: #333;
  margin-bottom: 25px;
  font-size: 1.6rem;
  text-align: center;
}

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

.service-category {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #ffd700;
}

.service-category h4 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.services-list {
  list-style: none;
  padding: 0;
}

.services-list li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 20px;
}

.services-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.services-list strong {
  color: #dc3545;
}

/* Дополнительные услуги - подробный список */
.detailed-services {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

.detailed-services h3 {
  color: #333;
  margin-bottom: 25px;
  font-size: 1.6rem;
  text-align: center;
}

.detailed-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
}

.detailed-list li {
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #ffd700;
  color: #555;
  position: relative;
  padding-left: 50px;
}

.detailed-list li::before {
  content: "💰";
  position: absolute;
  left: 20px;
  top: 15px;
  font-size: 1.2rem;
}

.detailed-list strong {
  color: #dc3545;
}

/* Блок заказа */
.order-section {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border-radius: 20px;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}

.order-section::before {
  content: "📱";
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  opacity: 0.2;
}

.order-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.order-subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.order-button {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #333;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  margin: 10px;
}

.order-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  color: #333;
}

.phone-number {
  display: block;
  font-size: 1.4rem;
  color: #dc3545;
  font-weight: 700;
  margin-top: 20px;
  text-decoration: none;
}

.phone-number:hover {
  color: #c82333;
}

/* Мобильная адаптивность */
@media (max-width: 768px) {
  .page-title {
    font-size: 2.2rem;
  }

  .page-subtitle {
    font-size: 1.1rem;
  }

  .intro-section {
    padding: 30px 25px;
  }

  .pricing-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-content {
    padding: 20px 15px;
  }

  .price-table {
    font-size: 0.8rem;
  }

  .price-table th,
  .price-table td {
    padding: 8px 5px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .detailed-list {
    grid-template-columns: 1fr;
  }

  .container-page {
    padding: 0 15px;
  }
}
