
#fromCity,
#toCity {
  color: #fff;
  font-weight: bold;
}

.route-selection input {
  width: 100%;
  padding: 10px 25px 10px 10px;
  border-radius: 6px;
  border: 2px solid #ff6200;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
  background-color: #262626;
}

.route-selection input:focus {
  border-color: #ff944d;
  box-shadow:
    0 0 3px #ff6200,
    0 0 6px #ff6200,
    0 0 8px #ff944d;
  background-color: #2e2e2e;
}


.route-selection input:focus + .reset-btn {
  z-index: 1002;
}


.route-selection input:disabled {
  background-color: #1a1a1a;
  border-color: #ff6200;
  cursor: not-allowed;
  color: #ff944d;
  box-shadow: none;
}

#orderModal .modal-content input {
  width: 100%;
  max-width: 100%;
  height: 50px;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #ff6200;
  border-radius: 6px;
  background-color: #262626;
  color: #fff;
  font-weight: bold;
  box-sizing: border-box;
  margin-bottom: 10px;
}


@media (max-width: 600px) {
  #orderModal .modal-content input {
    height: 60px;
    font-size: 18px;
  }

  #orderModal .modal-content {
    padding: 15px;
    margin: 20px 0;
  }


  #fromCity,
  #toCity {
    font-size: 16px; 
  }

  .top-bar {
    padding: 0 10px;
  }

  .logo {
    height: 100%;
  }

  .logo-text {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  }

  .hero {
    height: 100px;
    margin-top: 40px;
  }

  .hero-overlay {
    width: 90%;
    max-width: 350px;
    padding: 5px;
  }

  .hero-overlay h1 {
    font-size: clamp(1.2rem, 4vw, 2rem);
    padding: 5px 20px;
  }

  .language-dropbtn {
    font-size: 30px;
    padding: -10px 4px;
  }

  .language-dropdown-content li {
    padding: 0px;
    font-size: 30px;
  }

  .price-card {
    margin-bottom: 60px;
  }

  .route-selection {
    padding-bottom: 5px;
  }

  .price-card.hidden {
    display: none;
  }

  .price-card:not(.hidden) {
    display: block;
    animation: scrollToPrice 0.5s ease-out forwards;
  }

  .route-selection .big-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    min-width: 150px;
    margin: 5px;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .price-card {
    animation: fadeInUp 0.5s ease;
  }

  @keyframes scrollToPrice {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-10px);
    }
  }
}


body {
  font-family: 'Montserrat', sans-serif;
  background-color: #1a1a1a;
  color: #ff6200;
  margin: 0;
  padding: 0;
}

.top-bar {
  position: fixed;
  z-index: 10000;
  top: 0;
  background: #1a1a1a;
  padding: 0 20px;
  text-align: left;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  box-sizing: border-box;
  box-shadow: 0 2px 5px rgba(255, 98, 0, 0.2);
}

.logo {
  height: 108%;
  width: auto;
  margin-right: 10px;
  z-index: 10001;
}

.logo-text {
  font-style: italic;
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  width: calc(100% - 10px);
  padding: 0 2px;
  box-sizing: border-box;
}

.valencia {
  font-style: normal;
  font-weight: normal;
  color: #ff944d;
}

.hero {
  margin-top: 50px;
  background: url('https://ridevalencia.es/wp-content/uploads/2025/01/background.jpg') center/cover;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.7);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  background: rgba(255, 98, 0, 0.8);
  border-radius: 15px;
  color: rgba(26, 26, 26, 0.7);
  width: 80%;
  margin: 10px;
  padding: 5px;
  max-width: 400px;
  box-sizing: border-box;
}

.hero-overlay h1 {
  margin: 5px 0;
  padding: 0;
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  line-height: 1.2;
  word-wrap: break-word;
}


.language-dropdown {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.language-dropbtn {
  background-color: transparent;
  border: 1px solid #ff6200;
  color: #ff6200;
  font-size: 30px;
  cursor: pointer;
  padding: -10px 5px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.language-dropbtn:hover {
  background-color: #ff6200;
  color: #1a1a1a;
}

.language-dropdown-content {
  display: none;
  position: absolute;
  bottom: -10px;
  right: 0;
  transform: translateY(100%);
  background-color: #1a1a1a;
  border: 1px solid #ff6200;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(255, 98, 0, 0.2);
  z-index: 10000;
  padding: 0px;
}

.language-dropdown-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.language-dropdown-content li {
  padding: 10px;
  font-size: 30px;
  cursor: pointer;
  color: #ff6200;
  transition: background-color 0.3s ease;
  border-radius: 5px;
}

.language-dropdown-content li:hover {
  background-color: #ff6200;
  color: #1a1a1a;
}

.language-dropdown-content.show {
  display: block;
}


.contact-section {
  position: sticky;
  top: 70px;
  z-index: 9999;
  text-align: center;
  margin-top: 10px;
  background: #1a1a1a;
  box-shadow: 0 4px 8px rgba(255, 98, 0, 0.1);
  border-radius: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: 0;
  font-weight: bold;
}

.contacts-center {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 0;
}

.why-us {
  margin-top: 10px;
  padding: 2px 20px;
  background: #1a1a1a;
  box-shadow: 0 4px 8px rgba(255, 98, 0, 0.1);
  border-radius: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 500;
}

.why-us-bold {
  font-weight: bold;
  font-size: 1.2rem;
  margin: 5px 0 10px;
}

.why-us-regular {
  font-weight: normal;
  font-size: 0.8rem;
}

.why-us ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 0;
}

.why-us ul li {
  display: flex;
  flex-direction: column;
  padding: 15px;
  font-size: 1rem;
  background-color: #262626;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid #ff6200;
  box-shadow: 0 2px 4px rgba(255, 98, 0, 0.1);
}

.why-us ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #ff6200;
  font-size: 1.2rem;
  margin-right: 15px;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 26, 0.9);
  color: #d4d4d4;
  padding: 15px;
  text-align: center;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-consent p {
  margin: 0;
  font-size: 14px;
}

.cookie-btn {
  background-color: #ff6200;
  color: #1a1a1a;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.cookie-btn:hover {
  background-color: #ff944d;
}

.prices {
  margin: 20px auto;
  max-width: 90%;
  text-align: center;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(255, 98, 0, 0.1);
}

.price-table th,
.price-table td {
  border: 1px solid #ff6200;
  padding: 12px;
  font-size: 16px;
  text-align: center;
}

.price-table th {
  background-color: #262626;
  color: #ffffff;
  font-weight: bold;
}

.price-table tbody tr:nth-child(even) {
  background-color: #1a1a1a;
}

.price-table tbody tr:hover {
  background-color: #ff6200;
  color: #1a1a1a;
  transition: background 0.3s ease;
}

#scrollUpBtn {
  position: fixed;
  bottom: 20px;
  right: 10px;
  width: 50px;
  height: 50px;
  background-color: #ff6200;
  color: #1a1a1a;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(255, 98, 0, 0.2);
  transition: opacity 0.5s, transform 0.3s;
  opacity: 0.7;
}

#scrollUpBtn:hover {
  background-color: #ff944d;
  opacity: 1;
}

#scrollUpBtn.show {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

#scrollUpBtn.hide {
  opacity: 0;
  transform: scale(0.9);
}

.footer {
  text-align: center;
  padding: 15px;
  background-color: #1a1a1a;
  font-size: 14px;
  margin-top: 20px;
}

.footer p {
  margin: 5px 0;
}

.price-table i,
.car-icon,
.minibus-icon {
  color: #ff6200;
  font-size: 60px;
  display: inline-block;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .car-icon,
  .minibus-icon {
    font-size: 18px;
  }
}

.reservation-steps {
  text-align: center;
  margin: 20px 0;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(255, 98, 0, 0.1);
}

.reservation-steps h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.steps {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 20px;
  margin-top: 10px;
}

.step {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #262626;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(255, 98, 0, 0.1);
  text-align: left;
}

.step i {
  font-size: 1.5rem;
  min-width: 40px;
  text-align: center;
}

.step p {
  margin: 0;
  font-size: 1rem;
}

.step p strong {
  color: #ff944d;
}

.steps-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.steps-cta .big-btn {
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.steps-cta .big-btn.whatsapp,
.steps-cta .big-btn.telegram {
  background-color: #ff6200;
}

.steps-cta .big-btn:hover {
  background-color: #ff944d;
  transform: scale(1.05);
  opacity: 0.9;
}

.prices-subtext,
.prices-subtext-two {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 30px 0 20px;
  text-align: center;
}


.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  overflow: auto;
}

.modal-content {
  background-color: #262626;
  padding: 25px;
  width: 90%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 98, 0, 0.3);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeIn 0.3s ease;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #ff944d;
}

.input-group {
  margin-bottom: 20px;
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.input-group div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-group input[type="radio"] {
  margin-right: 10px;
}

.input-group label[for="fromValencia"],
.input-group label[for="toValencia"] {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
}

.input-group label[for="fromValencia"]:hover,
.input-group label[for="toValencia"]:hover {
  color: #ff6200;
}

#cityInput,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ff6200;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition: border 0.3s;
  background-color: #1a1a1a;
  color: #ff6200;
}

#cityInput:focus,
textarea:focus {
  border-color: #ff944d;
}

#citySuggestions {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  background-color: #262626;
  border: 1px solid #ff6200;
  border-radius: 8px;
  max-height: 150px;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(255, 98, 0, 0.1);
}

#citySuggestions li {
  padding: 10px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s;
}

#citySuggestions li:hover {
  background-color: #ff6200;
  color: #1a1a1a;
}

#priceInfo {
  background: #ff944d; 
  padding: 15px;
  border-radius: 10px;
  font-size: 18px; 
  margin-top: 15px;
  color: #fff; 
  font-weight: bold;
  border: 2px solid #ff6200; 
  box-shadow: 0 4px 8px rgba(255, 98, 0, 0.3); 
  animation: fadeInHighlight 0.3s ease; 
  text-align: center;
}

@keyframes fadeInHighlight {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hidden {
  display: none;
}

.modal-contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.big-btn {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  color: #1a1a1a;
  transition: transform 0.3s, opacity 0.3s;
  margin: 5px;
  box-shadow: 0 2px 4px rgba(255, 98, 0, 0.1);
}

.telegram,
.whatsapp {
  background-color: #ff6200;
}

.telegram:hover,
.whatsapp:hover {
  background-color: #ff944d;
}

.direction-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.direction-btn {
  flex: 1;
  padding: 10px;
  border: 2px solid #ff6200;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.direction-btn.active {
  background-color: #ff6200;
  color: #1a1a1a;
}

.direction-btn:hover {
  background-color: #ff6200;
  color: #1a1a1a;
}

.direction-btn:active {
  transform: scale(0.95);
}


.route-selection {
  background: #262626;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(255, 98, 0, 0.1);
  max-width: 92%;
  margin: 20px auto;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: visible;
  box-shadow: 0 4px 8px rgba(255, 98, 0, 0.1);
}

.route-selection h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.route-input-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

@media (min-width: 600px) {
  .route-input-container {
    flex-direction: row;
    gap: 10px;
  }
}

.input-group {
  flex: 1;
  position: relative;
}

.input-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  text-align: left;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.reset-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: color 0.3s ease;
  color: #ff6200;
}

.reset-btn:hover {
  color: #ff944d;
}

.city-suggestions {
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
  background-color: #262626;
  border: 1px solid #ff6200;
  border-radius: 6px;
  max-height: 120px;
  overflow-y: auto;
  box-shadow: 0 2px 4px rgba(255, 98, 0, 0.1);
  position: relative;
  width: 100%;
  z-index: 10000;
}

.city-suggestions li {
  padding: 8px 10px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.3s;
}

.city-suggestions li:hover {
  background-color: #ff6200;
  color: #1a1a1a;
}

.price-card {
  background: #262626;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(255, 98, 0, 0.1);
  margin: 10px auto;
  max-width: 90%;
  border-left: 3px solid #ff6200;
  animation: fadeInUp 0.5s ease;
  position: relative;
}

.price-header h3 {
  font-size: 1rem;
  margin: 0 0 6px 0;
}

.route-text {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 5px 0;
  background: #1a1a1a;
  border-radius: 4px;
}

.price-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 8px;
  background: #1a1a1a;
  border-radius: 4px;
  transition: background 0.3s;
}

.price-item:hover {
  background: #ff6200;
  color: #1a1a1a;
}

.price-item i {
  font-size: 16px;
  margin-right: 6px;
}

.price-label {
  flex: 1;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  margin-right: 10px;
}

.price-value {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  margin-right: 10px;
}

.order-btn {
  background-color: #ff6200;
  color: #1a1a1a;
  border: none;
  padding: 20px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-left: 10px;
  animation: softPulse 1.8s infinite ease-in-out;
}

@keyframes softPulse {
  0%, 100% {
    background-color: #cf5103;
  }
  50% {
    background-color: #ff9440; 
  }
}

.order-btn:hover {
  background-color: #cf5103;
  animation-play-state: paused; 
}


.success-modal {
  padding: 25px;
  width: 90%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 98, 0, 0.3);
  text-align: center;
  border-left: 4px solid #25d366;
}

.success-modal h2 {
  color: #25d366;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.success-modal p {
  font-size: 1rem;
  margin: 10px 0;
}

.success-modal strong,
.success-modal #orderNumber {
  font-weight: bold;
}

.success-modal .big-btn {
  margin-top: 15px;
  background-color: #25d366;
}

.success-modal .big-btn:hover {
  background-color: #1da851;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.wizard-container {
  max-width: 90%;
  margin: 20px auto;
  padding: 20px;
  background: #262626;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(255, 98, 0, 0.1);
  margin-top: 60px;
}

.wizard-progress {
  margin-bottom: 20px;
}

.wizard-steps-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.wizard-step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #ff6200;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2px solid #ff6200;
  transition: background-color 0.3s, color 0.3s;
}

.wizard-step-circle.active {
  background: #ff6200;
  color: #1a1a1a;
}

.wizard-progress-bar {
  height: 4px;
  background: #1a1a1a;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.wizard-progress-bar-fill {
  height: 100%;
  background: #ff6200;
  width: 0;
  transition: width 0.3s ease;
}

.wizard-steps-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #ff944d;
  margin-top: 5px;
}

.wizard-step-block {
  display: none;
}

.wizard-step-block.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.wizard-step-block h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ff6200;
}

.wizard-input {
  width: 95%;
  padding: 10px;
  border: 2px solid #ff6200;
  border-radius: 6px;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.wizard-input:focus {
  border-color: #ff944d;
  box-shadow: 0 0 3px #ff6200, 0 0 6px #ff6200, 0 0 8px #ff944d;
}

.wizard-options-row {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.wizard-options-row label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #ff944d;
}

.wizard-vehicles-row {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.vehicle-card {
  background: #1a1a1a;
  padding: 15px;
  border-radius: 8px;
  border: 2px solid #ff6200;
  text-align: center;
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.vehicle-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(255, 98, 0, 0.3);
}

.vehicle-title {
  margin: 2px 0 0;
  font-size: clamp(18px, 2vw, 24px);
}

.vehicle-capacity {
  font-size: 0.9rem;
  color: #ff944d;
  margin: 5px 0;
}

.vehicle-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
}

.wizard-btn {
  background: #ff6200;
  color: #1a1a1a;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.wizard-btn:hover {
  background: #ff944d;
  transform: scale(1.05);
}

.wizard-btn.secondary {
  background: transparent;
  border: 2px solid #ff6200;
  color: #ff6200;
}

.wizard-btn.secondary:hover {
  background: #ff6200;
  color: #1a1a1a;
}

.wizard-btn.select {
  margin-top: 10px;
}

.wizard-btn:disabled {
  background: #1a1a1a;
  color: #ff944d;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .wizard-container {
    padding: 15px;
  }

  .wizard-steps-row {
    gap: 5px;
  }

  .wizard-step-circle {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }

  .wizard-steps-labels {
    font-size: 10px;
  }

  .wizard-vehicles-row {
    flex-direction: column;
    align-items: center;
  }

  .vehicle-card {
    max-width: 100%;
  }

  .wizard-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}


.confirmation-container {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.confirmation-message {
    font-size: 1.2em;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.confirmation-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.detail-row strong {
    color: #34495e;
    font-weight: 600;
}


@media (max-width: 600px) {
    .confirmation-container {
        padding: 15px;
    }

    .detail-row {
        flex-direction: column;
        text-align: left;
        padding: 6px 10px;
    }

    .detail-row strong {
        margin-bottom: 4px;
    }
}

@media (max-width: 600px) {
    .wizard-container {
        padding: 15px;
        margin-top: 60px; 
    }

    .wizard-input {
        font-size: 16px;
        padding: 12px;
    }

    body {
        padding-bottom: 60px; 
        overflow-x: hidden; 
    }

    .route-input-container {
        flex-direction: column;
        gap: 10px;
    }

    .wizard-step-block {
        padding-bottom: 20px; 
    }
}

.wizard-vehicle-options{
  display: grid !important;
  grid-template-columns: 1fr !important;    /* 1 column on mobile */
  gap: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
}


.wizard-vehicle-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(255, 98, 0, 0.3);
}

.wizard-vehicle-card.selected{
  border-color:#ff944d; box-shadow:0 0 0 3px rgba(255,148,77,.25) inset;
}

.wizard-vehicle-card h3 {
  margin: 0 0 5px;
  font-size: 1.1em;
  color: #ff6200;
  font-weight: bold;
}

.wizard-vehicle-card p {
  margin: 5px 0;
  color: #ff944d;
  font-size: 0.9rem;
}

.wizard-vehicle-card button {
  padding: 8px 15px;
  background-color: #ff6200;
  color: #1a1a1a;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

.wizard-vehicle-card button:hover {
  background-color: #ff944d;
  transform: scale(1.05);
}


:root { --vehicle-aspect: 16/9; }
.vehicle-image-wrap{
  position: relative;
  aspect-ratio: var(--vehicle-aspect);
  border-radius: 12px;
  overflow: hidden;
  background:#0f0f0f;
}

.vehicle-image{ width:100%; height:100%; object-fit: contain; display:block; }
.vehicle-image-wrap.cover .vehicle-image{ object-fit: cover; object-position:50% 55%; }

.vehicle-info{
  display: grid;
  grid-template-rows: auto 1fr auto; /* title | space | button */
  align-items: start;
}

.vehicle-price-big{
  margin: 6px 0 0;
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.1;
}

.vehicle-price-big .currency { opacity: .9; font-weight: 700; font-size: .8em; margin-left: 6px; }
.wizard-vehicle-card .wizard-select-vehicle { width: 100%; margin-top: 12px; }


@media (max-width: 720px) { .wizard-vehicle-card { grid-template-columns: 1fr; } }


/* Kill any old float/flex widths from legacy CSS */
.wizard-vehicle-card{
  box-sizing: border-box !important;
  width: 100% !important;
  float: none !important;

  /* Left image | right info */
  display: grid !important;
  grid-template-columns: 42% 1fr !important;
  gap: 14px !important;
  padding: 14px !important;
  border-radius: 14px;
}

/* Two columns only on wider screens */
@media (min-width: 960px){
  .wizard-vehicle-options{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px){
  .wizard-vehicle-card{ gap:10px; padding:12px; }
  .vehicle-title{ margin:0 0 4px; font-size:20px; }
  .vehicle-price-big{ font-size:28px; margin-top:2px; }
  .wizard-vehicle-card .wizard-select-vehicle{ padding:12px; }
}

/* === Google Places autocomplete (legacy) theming === */
/* the dropdown is appended to <body>, so we can't scope to a parent.
   If you want scoping, prefix all rules with `body.rv-theme` and add that class to <body>. */

.pac-container {
  position: absolute !important;      /* we'll control left/top with JS */
  width: auto !important;             /* JS sets the exact width */
  max-width: 640px !important;        /* desktop cap */
  background: #1f1f1f !important;
  border: 1px solid #ff6a00 !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.55) !important;
  z-index: 20000 !important;
  padding: 4px 0 !important;
  font-family: inherit !important;
  color: #eee !important;
}

@media (max-width: 600px) {
  .pac-container {
    max-width: 92vw !important;       /* mobile cap */
  }
}

.pac-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 14px !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
  color: #cfcfcf !important;
}


.pac-item:first-child { border-top: 0 !important; }

.pac-item:hover,
.pac-item.pac-item-selected {
  background: #262626 !important;
}

.pac-item .pac-item-query {
  color: #fff !important;              /* main place text */
  font-weight: 700 !important;
}

.pac-item span {                       /* secondary text (city, region, etc.) */
  color: #a7a7a7 !important;
}

/* Replace the default gray pin with your own accent icon */
.pac-icon {
  display: none !important;
}
.pac-item {
  position: relative;
  padding-left: 40px !important;       /* room for our custom icon */
}
.pac-item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  /* tiny inline SVG map-pin tinted to your orange */
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="%23ff6a00"><path d="M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z"/></svg>') center/contain no-repeat;
  opacity: .9;
}

/* “powered by Google” line – keep visible per ToS; just adjust spacing/colors */
.pac-container:after,
.pac-logo:after {
  /* leave Google’s logo intact; only ensure it’s readable on dark bg */
  filter: none !important;
  opacity: .9 !important;
}
