.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="mytischi" patternUnits="userSpaceOnUse" width="30" height="30"><text x="15" y="20" text-anchor="middle" font-size="16" fill="rgba(0,0,0,0.05)">🏘️</text></pattern></defs><rect width="100" height="100" fill="url(%23mytischi)"/></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;
}

.intro-highlight {
  background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #28a745;
  margin: 30px 0;
}

.intro-highlight h3 {
  color: #2e7d32;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.intro-highlight p {
  margin: 0;
  color: #2e7d32;
  line-height: 1.7;
}

/* Преимущества */
.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(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.advantage-card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  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;
}

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

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

/* Классы автомобилей */
.classes-section {
  margin: 60px 0;
}

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

.class-card {
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.class-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
}

.class-card.economy::before {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.class-card.comfort::before {
  background: linear-gradient(135deg, #ffd700, #ffa500);
}

.class-card.business::before {
  background: linear-gradient(135deg, #6f42c1, #495057);
}

.class-card.universal::before {
  background: linear-gradient(135deg, #17a2b8, #20c997);
}

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

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

.class-card.economy .class-icon {
  color: #28a745;
}

.class-card.comfort .class-icon {
  color: #ffd700;
}

.class-card.business .class-icon {
  color: #6f42c1;
}

.class-card.universal .class-icon {
  color: #17a2b8;
}

.class-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.class-description {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Информационные блоки */
.info-section {
  margin: 60px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.info-block {
  background: white;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.info-block:hover {
  transform: translateY(-5px);
}

.info-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 20px 20px 0 0;
}

.info-block h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-block p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.info-block ul {
  margin-top: 15px;
  padding-left: 0;
  color: #666;
  list-style: none;
}

.info-block li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

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

/* Специальные блоки */
.services-block {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  border-left: 5px solid #9c27b0;
}

.services-block h3 {
  color: #7b1fa2;
}

.transport-block {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-left: 5px solid #2196f3;
}

.transport-block h3 {
  color: #1565c0;
}

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

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

  .info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .info-block {
    padding: 25px 20px;
  }

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