.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="special" patternUnits="userSpaceOnUse" width="30" height="30"><text x="8" y="12" text-anchor="middle" font-size="10" fill="rgba(0,0,0,0.04)">💰</text><text x="22" y="25" text-anchor="middle" font-size="10" fill="rgba(0,0,0,0.04)">🚐</text></pattern></defs><rect width="100" height="100" fill="url(%23special)"/></svg>');
  opacity: 0.3;
}

.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;
}

.special-badge {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(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;
}

.intro-highlight {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #ffc107;
  margin: 30px 0;
  text-align: center;
}

.intro-highlight p {
  margin: 0;
  color: #856404;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Информация об аэропорте */
.airport-info {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 40px;
  border-radius: 20px;
  margin: 50px 0;
  border-left: 5px solid #2196f3;
}

.airport-info h3 {
  color: #1565c0;
  margin-bottom: 20px;
  font-size: 1.6rem;
  text-align: center;
}

.airport-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.airport-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1565c0;
  display: block;
}

.stat-label {
  color: #1976d2;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Преимущества */
.advantages-section {
  margin: 50px 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;
}

.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;
}

/* Сервисные преимущества */
.service-advantages {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 50px 0;
}

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

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

.service-item {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 4px solid #28a745;
  position: relative;
  padding-left: 50px;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-3px);
}

.service-item::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

.service-item strong {
  color: #28a745;
}

/* Экономия */
.economy-section {
  background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
  padding: 50px;
  border-radius: 20px;
  margin: 50px 0;
  text-align: center;
  border-left: 5px solid #28a745;
}

.economy-title {
  color: #2e7d32;
  font-size: 2rem;
  margin-bottom: 30px;
}

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

.economy-item {
  background: rgba(255, 255, 255, 0.7);
  padding: 25px;
  border-radius: 15px;
}

.economy-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.economy-label {
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 10px;
}

.economy-value {
  font-size: 1.1rem;
  color: #1b5e20;
}

/* Заключение */
.conclusion-section {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 50px 0;
  text-align: center;
}

.conclusion-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.conclusion-highlight {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  padding: 25px;
  border-radius: 15px;
  margin: 25px 0;
  color: #7b1fa2;
  font-weight: 600;
}

/* Блок заказа */
.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;
  }

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

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

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

  .economy-comparison,
  .airport-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

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