/* Общие стили */
* {
    box-sizing: border-box;
}

body { 
    font-family: Arial, sans-serif; 
    line-height: 1.5; 
    margin: 0; 
    padding: 0; 
    color: #0b1524; 
    background: #fff; 
}

a { 
    text-decoration: none; 
    color: #f5a81c; 
}
a:hover { 
    text-decoration: underline; 
}

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

/* Контакты */
.transfer-contacts {
    text-align: center;
    background: #f8f8f8;
    padding: 25px 20px;
    margin: 40px 0; /* отступ сверху и снизу */
    border-radius: 10px;
}

.transfer-contacts h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Список контактов */
.transfer-contacts .contact-item {
    display: inline-block;
    margin: 5px 15px;
    font-weight: bold;
    font-size: 16px;
    color: #0b1524;
}

/* Отдельные иконки для разных способов */
.transfer-contacts .contact-item.call::before {
    content: "📞 ";
}
.transfer-contacts .contact-item.whatsapp::before {
    content: "💬 ";
}
.transfer-contacts .contact-item.telegram::before {
    content: "💬 ";
}

/* Адаптив контактов */
@media (max-width: 767px) {
    .transfer-contacts .contact-item {
        display: block;
        margin: 8px 0;
    }
}

/* Заголовок и подзаголовок */
.header-title { 
    text-align: center; 
    margin: 30px 0 15px 0; 
    font-size: 28px; 
    font-weight: bold; 
}
.header-subtitle { 
    text-align: center; 
    max-width: 700px; 
    margin: 0 auto 30px auto; 
    font-size: 18px; 
    color: #666; 
}

/* Преимущества */
.benefits { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 10px; 
    margin-bottom: 30px; 
}

.benefit-item { 
    background: #f5f5f5; 
    padding: 15px 20px; 
    border-radius: 10px; 
    flex: 1 1 220px; 
    max-width: 280px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.benefit-item span { 
    font-size: 22px; 
}

/* Информация о заказе */
.order-info { 
    max-width: 700px; 
    margin: 0 auto 30px auto; 
    font-size: 16px; 
    text-align: center; 
}

/* Скрытые SEO слова (спрятаны за экраном) */
.seo-keywords { 
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* FAQ */
.faq { 
    max-width: 800px; 
    margin: 0 auto 40px auto; 
}

.faq-item { 
    border-bottom: 1px solid #ddd; 
    padding: 10px 0; 
}

.faq-item button { 
    width: 100%; 
    text-align: left; 
    background: none; 
    border: none; 
    font-size: 18px; 
    font-weight: bold; 
    padding: 10px 0; 
    cursor: pointer; 
    outline: none; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.faq-item button::after {
    content: '▼'; 
    transition: transform 0.3s ease; 
}

.faq-item.active button::after {
    transform: rotate(-180deg); 
}

.faq-item .faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s ease, padding 0.4s ease; 
    padding: 0 0; 
    font-size: 16px; 
    color: #333; 
}

.faq-item.active .faq-answer { 
    max-height: 500px; 
    padding: 10px 0 0 0; 
}

/* Адаптив */
@media (max-width: 767px) { 
    .benefits { 
        flex-direction: column; 
        align-items: stretch; /* растягиваем все элементы */
        gap: 12px; 
    } 
    .benefit-item { 
        flex: 1 1 auto; 
        max-width: 100%; 
        width: 100%; 
        padding: 12px 15px; 
        gap: 6px; 
    }
    .header-title { 
        font-size: 24px; 
    }
    .header-subtitle { 
        font-size: 16px; 
        max-width: 100%; 
    }
    .order-info { 
        font-size: 15px; 
        padding: 0 10px; 
    }
    .faq-item button { 
        font-size: 16px; 
    }
    .faq-item .faq-answer { 
        font-size: 15px; 
    }
}
/* --- Regular ride card (Version B) --- */
.regular-ride {
  margin: 18px 0 10px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(6px);
}

.regular-ride__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.regular-ride__subtitle {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 12px;
}

.ride-card {
  border-radius: 16px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.ride-card__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 10px;
}

.ride-card__route {
  font-weight: 800;
  font-size: 16px;
}

.ride-card__date {
  font-size: 12px;
  opacity: 0.7;
  white-space: nowrap;
}

.ride-card__time-main {
  font-size: 16px;
  font-weight: 800;
}

.ride-card__time-note {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 2px;
}

.ride-card__points {
  margin: 10px 0 10px;
  display: grid;
  gap: 6px;
}

.ride-card__point {
  font-size: 13px;
}

.ride-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,0.035);
  margin-bottom: 12px;
}

.ride-card__seats, .ride-card__price {
  font-size: 13px;
}

.ride-card__btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  background: #ffb000;
  color: #111;
}

.ride-card__fine {
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.75;
  line-height: 1.35;
}