.travel57-container {
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Фон: замените ссылку на ваш файл */
.travel57-container {
  background-image: url('ССЫЛКА_НА_ВАШ_ФОН_ЗИМНИЙ_ШАР_С_ЛУПОЙ');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Затемнение фона для читаемости текста */
.travel57-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(75, 0, 130, 0.85); /* глубокий фиолетовый с прозрачностью */
  z-index: 1;
}

.travel57-container > * {
  position: relative;
  z-index: 2;
}

.travel57-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.travel57-logo {
  font-size: 24px;
  font-weight: 700;
  color: #f5e6ff; /* светлый сиреневый */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.travel57-phone {
  font-size: 14px;
  color: #e0d0ff;
}

.travel57-banner {
  background: linear-gradient(135deg, #9b59b6 0%, #6a1b9a 100%); /* фиолетово-сиреневый градиент */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.travel57-banner h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
  color: #ffffff;
  font-weight: 600;
}

.travel57-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.travel57-tab {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #8e44ad;
  background: #f0f0f0;
  transition: all 0.3s ease;
}

.travel57-tab.active {
  background: linear-gradient(135deg, #9b59b6 0%, #6a1b9a 100%);
  color: #ffffff;
}

.travel57-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.travel57-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.travel57-field {
  flex: 1;
}

.travel57-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.travel57-field input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  background: #fff;
  box-sizing: border-box;
}

.travel57-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff9800 0%, #e65100 100%); /* оранжевая кнопка как в оригинале */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.travel57-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(230, 81, 0, 0.4);
}

.travel57-partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.travel57-partner-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-size: 12px;
  color: #444;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.travel57-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.travel57-footer {
  text-align: center;
  font-size: 13px;
  color: #dcd0ff;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Адаптив для мобильных */
@media (max-width: 600px) {
  .travel57-row {
    flex-direction: column;
    gap: 0;
  }
  .travel57-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}