/**
 * УПРОЩЕННЫЙ CSS ДЛЯ "ТРАНСФЕР НА ВОКЗАЛ"
 * Файл: css/to-station-simple.css
 */

.to-station-content {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.intro-section {
  background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  border-left: 5px solid #4caf50;
}

.intro-section p {
  margin-bottom: 15px;
}

.intro-section strong {
  color: #2e7d32;
  font-weight: 600;
}

.tariff-class {
  margin-bottom: 40px;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #f5f5f5;
}

.class-title {
  color: #2e7d32;
  font-size: 24px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 3px solid #4caf50;
}

.class-description {
  background: #f1f8e9;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-style: italic;
  border-left: 4px solid #4caf50;
  color: #2e7d32;
}

/* Система почасовых тарифов */
.time-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}

.pricing-block {
  display: flex;
  gap: 20px;
}

.base-price,
.additional-price {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  flex: 1;
  border: 1px solid #e0e0e0;
}

.base-price {
  border-left: 4px solid #4caf50;
}

.additional-price {
  border-left: 4px solid #ff9800;
}

.base-price h4,
.additional-price h4 {
  color: #555;
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  font-size: 28px;
  font-weight: bold;
  color: #2e7d32;
  margin-bottom: 5px;
}

.additional-price .price-value {
  color: #ef6c00;
}

.time-period {
  color: #666;
  font-size: 14px;
  font-style: italic;
}

.pricing-examples {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}

.pricing-examples h4 {
  color: #2e7d32;
  margin-bottom: 15px;
  font-size: 16px;
}

.pricing-examples ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-examples li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-examples li:last-child {
  border-bottom: none;
}

.pricing-examples strong {
  color: #333;
}

.additional-services-section {
  background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
  border-left: 5px solid #ff9800;
}

.additional-services-section h2 {
  color: #ef6c00;
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
}

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

.service-category {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #ff9800;
}

.service-category h3 {
  color: #ef6c00;
  margin-bottom: 15px;
  font-size: 18px;
}

.service-category ul {
  list-style: none;
  padding: 0;
}

.service-category li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.service-category li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

.station-info {
  background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
  border-left: 5px solid #2196f3;
}

.station-info h2 {
  color: #1976d2;
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
}

.info-content {
  margin-top: 25px;
}

.info-highlight {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #2196f3;
}

.info-highlight h3 {
  color: #1976d2;
  margin-bottom: 15px;
  font-size: 20px;
}

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

.benefit {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 6px;
  border-left: 3px solid #2196f3;
}

.benefit strong {
  display: block;
  color: #1976d2;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 14px;
}

.benefit span {
  color: #666;
  font-size: 13px;
}

.timing-info {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #f44336;
}

.timing-info h3 {
  color: #d32f2f;
  margin-bottom: 15px;
  font-size: 20px;
}

.timing-info ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.timing-info li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.5;
}

.timing-info li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  color: #f44336;
}

.popular-routes {
  background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
  border-left: 5px solid #ff9800;
}

.popular-routes h2 {
  color: #ef6c00;
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
}

.routes-info {
  margin-top: 25px;
}

.route-section {
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.center {
  background: #e8f5e8;
  border-left: 4px solid #4caf50;
}

.center h3 {
  color: #2e7d32;
}

.other {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
}

.other h3 {
  color: #1976d2;
}

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

.route-example {
  background: rgba(255, 255, 255, 0.7);
  padding: 12px;
  border-radius: 6px;
  border-left: 3px solid #4caf50;
}

.other .route-example {
  border-left: 3px solid #2196f3;
}

.route-example strong {
  display: block;
  color: #2e7d32;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 14px;
}

.other .route-example strong {
  color: #1976d2;
}

.route-example span {
  color: #666;
  font-size: 13px;
}

.advantages-section {
  background: linear-gradient(135deg, #fce4ec 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
  border-left: 5px solid #e91e63;
}

.advantages-section h2 {
  color: #c2185b;
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
}

.advantages-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 25px;
}

.vs-section {
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.problems {
  background: #ffebee;
  border-left: 4px solid #f44336;
}

.problems h3 {
  color: #d32f2f;
  margin-bottom: 15px;
  font-size: 20px;
}

.solutions {
  background: #e8f5e8;
  border-left: 4px solid #4caf50;
}

.solutions h3 {
  color: #2e7d32;
  margin-bottom: 15px;
  font-size: 20px;
}

.vs-section ul {
  list-style: none;
  padding: 0;
}

.vs-section li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  line-height: 1.5;
}

.problems li::before {
  content: "❌";
  position: absolute;
  left: 0;
}

.solutions li::before {
  content: "✅";
  position: absolute;
  left: 0;
}

.conclusion-section {
  background: linear-gradient(135deg, #f3e5f5 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
  text-align: center;
  border-left: 5px solid #9c27b0;
}

.conclusion-section h2 {
  color: #7b1fa2;
  margin-bottom: 20px;
  font-size: 28px;
}

.conclusion-section > p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

.final-cta {
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
  color: white;
  padding: 30px;
  border-radius: 10px;
  margin-top: 25px;
}

.final-cta h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 24px;
}

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

.cta-method {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-method h4 {
  color: white;
  margin-bottom: 10px;
  font-size: 18px;
}

.cta-method p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .to-station-content {
    padding: 15px;
  }

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

  .pricing-block {
    flex-direction: column;
    gap: 15px;
  }

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

  .services-grid,
  .station-benefits,
  .cta-options,
  .route-examples {
    grid-template-columns: 1fr;
  }

  .tariff-class,
  .additional-services-section,
  .advantages-section,
  .conclusion-section,
  .station-info,
  .popular-routes {
    padding: 20px;
    margin: 25px 0;
  }

  .intro-section {
    padding: 20px;
    margin-bottom: 25px;
  }

  .class-title {
    font-size: 20px;
  }

  .additional-services-section h2,
  .advantages-section h2,
  .conclusion-section h2,
  .station-info h2,
  .popular-routes h2 {
    font-size: 24px;
  }

  .final-cta h3 {
    font-size: 20px;
  }

  .price-value {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .intro-section,
  .tariff-class,
  .additional-services-section,
  .advantages-section,
  .conclusion-section,
  .station-info,
  .popular-routes {
    padding: 15px;
  }

  .class-title {
    font-size: 18px;
  }

  .price-value {
    font-size: 20px;
  }

  .service-category,
  .info-highlight,
  .timing-info,
  .route-section,
  .vs-section {
    padding: 15px;
  }

  .pricing-examples li {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
