/* Спотлайты городских лендингов (Берлин, Кёльн, Дюссельдорф, Франкфурт, Мюнхен).
   Раньше этот же набор правил лежал внутри каждого из пяти шаблонов — по 7.8 КБ,
   почти дословно одинаковых. Отличались тремя мелочами, сведены здесь воедино.
   Подключается с версией BL_ASSET_VER: статика кэшируется на 10 лет. */

/* Ensure tab panes work correctly */
.tab-pane {
  display: none;
}

.tab-pane.active.show {
  display: block;
}

#spotlight-transfers-content.active.show .locations-grid {
  display: grid !important;
}

#spotlight-buses-content.active.show .locations-grid {
  display: grid !important;
}

.locations-tabs {
  margin-bottom: 30px;
  text-align: center;
}

.form-control.nameclass {
  max-width:95%
}


.locations-tabs .nav-pills {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.locations-tabs .nav-item {
  position: relative;
}

.locations-tabs .nav-link {
  background-color: #1a1a1a;
  color: white;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.locations-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #1b1b1b;
  z-index: 1;
  display: block;
}

.locations-tabs .nav-link.active::after {
  opacity: 1;
}


.form-highlight {
  background: linear-gradient(135deg, #000000, #333333);
  border-radius: 10px 10px 0 0;
  padding: 16px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.form-highlight::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.3));
}

.highlight-badge {
  display: inline-block;
  background-color: #d4af37;
  color: black;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.highlight-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

@keyframes card-pulse {
  0% {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(212, 175, 55, 0.5);
  }
  50% {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 0 10px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

#spotlightnew-custom-card,
#spotlightnew-custom-card-bus {
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 5;
  border: none !important;
  animation: card-pulse 3s infinite !important;
}

#spotlightnew-custom-card:hover,
#spotlightnew-custom-card-bus:hover {
  transform: translateY(-8px) !important;
  animation-play-state: paused !important;
}

.spotlightnew-full-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #d4af37 20%, 
    #d4af37 80%, 
    transparent 100%);
  z-index: 10;
}

.locations-tabs {
  margin-bottom: 30px;
  text-align: center;
}
.tab-bubble {

}

.locations-tabs .nav-pills {
   display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.locations-tabs .nav-link {
  background-color: #fff;
  border-radius: 10px;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  transition: all 0.3s ease;
}

.locations-tabs .nav-link svg {
  margin-right: 8px;
}

.locations-tabs .nav-link:hover {
  background-color: #e0e0e0;
}

.locations-tabs .nav-link.active {
  background-color: #000;
  color: #fff;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

.spotlightnew-booking-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
  width: 100%;
}

.spotlightnew-booking-btn {
  background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    align-content: center;
    gap: 4px;
}

.spotlightnew-booking-btn:hover {
  background-color: #e0e0e0;
  border-color: #ccc;
}

.form-check.spotlightcheck {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-left: 0;
}

.spotlightcheck .form-check-input {
  margin: 5px 8px 0 0;
  min-width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.spotlightcheck .form-check-label {
  font-size: 14px;
  line-height: 1.5;
  margin-left: 20px;
  padding-top: 2px;
}

.spotlightcheck .privacybutton {
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .form-check.spotlightcheck {
    padding-left: 5px;
  }
  
  .spotlightcheck .form-check-input {
    margin-top: 3px;
  }
  
  .spotlightcheck .form-check-label {
    font-size: 13px;
  }
}

.form-highlight {
  background: linear-gradient(135deg, #000000, #333333);
  border-radius: 10px 10px 0 0;
  padding: 16px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.form-highlight::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.3));
}

.highlight-badge {
  display: inline-block;
  background-color: #d4af37;
  color: black;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.highlight-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

@keyframes card-pulse {
  0% {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(212, 175, 55, 0.5);
  }
  50% {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 0 10px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

#spotlightnew-custom-card,
#spotlightnew-custom-card-bus {
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 5;
  border: none !important;
  animation: card-pulse 3s infinite !important;
}

#spotlightnew-custom-card:hover,
#spotlightnew-custom-card-bus:hover {
  transform: translateY(-8px) !important;
  animation-play-state: paused !important;
}

.spotlightnew-full-content {
  background: linear-gradient(to bottom, #ffffff, #f8f8f8) !important;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.spotlightnew-full-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #d4af37 20%, 
    #d4af37 80%, 
    transparent 100%);
  z-index: 10;
}

.view-more-container {
  text-align: center;
  margin-top: 30px;
}

.view-more-button {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: none;
  color: #333;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px 15px;
}

.view-more-button:hover {
  color: #000;
}

.view-more-button .arrow-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.view-more-button:hover .arrow-icon {
  transform: translateX(5px);
}

.hidden-card {
  display: none;
}


#transfers-content #spotlightnew-custom-card-bus {
  display: none;
}


#buses-content #spotlightnew-custom-card {
  display: none;
}



.booking-icon {
  width: 12px;
  height: 12px;
  stroke: #6b5d4a;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spotlightnew-booking-btn:hover .booking-icon {
  stroke: #7d725f; 
}


@media (max-width:767px) {
  .locations-tabs .nav-pills {
    gap: 0px;
}
}

@media (max-width:767px) {
  .form-control.nameclass {
  max-width:100%!important;
}

.locations-tabs .nav-pills{
      display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: nowrap;
}
}

.location-title {
    font-size: 2.5rem;
    font-weight: 400;
}
