:root {
    --primary-color: #061520;
    --secondary-color: #044D6E;
    --accent-color: #00d2ff;
    --light-color: #f0f8ff;
    --dark-color: #0a2d5a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
}

/* Estilos Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

/* Desktop (transparente hasta hacer scroll) */
@media (min-width: 992px) { /* Bootstrap's lg breakpoint */
  .navbar {
    background-color: transparent !important;
  }
  .navbar.scrolled {
    background-color: #0A2D5A !important;
  }
}

/* Móvil/Tablet (siempre con color #0A2D5A) */
@media (max-width: 991.98px) {
  .navbar {
    background-color: #0A2D5A !important;
  }
}

/* Texto blanco SIEMPRE (en todos los dispositivos) */
.navbar-brand,
.navbar-nav .nav-link,
.navbar-toggler-icon {
  color: white !important;
}

/* Color del botón toggler en móvil (Bootstrap) */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Banner principal */
.hero-banner {
    background-image: url("../img/banner.jpg");
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    margin-bottom: 30px;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background-color: var(--secondary-color);
     border: none;
   text-transform: uppercase;
    font-weight: 700;
   color: #fff;
   padding:15px 18px;
 margin-right: 15px;
 transition: all ease .7s;
}

.btn-primary:hover {
    background-color:var(--accent-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--accent-color);
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    padding:15px 18px;
    transition: all ease .7s;
   color: #fff;
}

.btn-secondary:hover {
    background-color:var(--secondary-color);
    transform: translateY(-2px);
}

/* Formulario de búsqueda */
.search-form {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--secondary-color);
}

.form-control, .form-select {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(58, 123, 213, 0.25);
}

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Sección de servicios */
.services-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    border-top: 4px solid var(--secondary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(58, 123, 213, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Sección de destinos populares */
.destinations-section {
    padding: 60px 0;
    background-color: white;
}

.destination-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
    border: 1px solid #e1e8ed;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(58, 123, 213, 0.2);
}

.destination-img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-card:hover .destination-img {
    transform: scale(1.05);
}

.destination-info {
    padding: 20px;
}

.price-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

/* Testimonios */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Newsletter */
.bg-light {
    background-color: var(--light-color) !important;
}

/* Estilos para los botones de horario */
.btn-time {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
    margin: 0 5px;
    padding: 5px 10px;
    transition: all 0.3s;
}

.btn-time:hover {
    background-color: #e9ecef;
}

.btn-time-active {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.travel-date {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.schedule-buttons {
    display: flex;
    justify-content: center;
    gap: 5px;
}

/* Estilos para la información de horarios y fecha */
.schedule-info {
    background-color: #f8f9fa;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.travel-date-info {
    background-color: #f1f8fe;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 10px;
    border-left: 3px solid var(--secondary-color);
}

.schedule-info small, .travel-date-info small {
    font-size: 0.75rem;
    display: block;
    margin-bottom: 5px;
    color: #6c757d !important;
}

.travel-date {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-links h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-banner {
        height: auto;
        padding: 100px 0;
    }
    
    .btn-primary, .btn-secondary {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .search-form {
        padding: 20px;
    }
}

/* Animaciones para SweetAlert2 */
.animate__animated {
    animation-duration: 0.5s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }
}

.animate__fadeOutUp {
    animation-name: fadeOutUp;
}

/* Estilo personalizado para los alerts */
.swal2-popup {
    border-radius: 15px !important;
    border: 2px solid #044D6E !important;
}

.swal2-title {
    color: #044D6E !important;
    font-size: 1.5rem !important;
}

.swal2-html-container {
    font-size: 1.1rem !important;
    color: #333 !important;
}











/* Estilos generales para la página de rutas */
.reserva-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
}

/* Hero Banner */
.reserva-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
}

.reserva-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.reserva-hero:hover .reserva-hero-image {
    transform: scale(1.05);
}

.reserva-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.reserva-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.reserva-hero-text {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.reserva-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reserva-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
}

/* Proceso de reserva */
.reserva-process {
    padding: 2rem 0;
}

.process-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 150px;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 20px;
    left: 100%;
    width: 2rem;
    height: 2px;
    background: #ddd;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 700;
}

.step.active .step-number {
    background: #3498db;
    color: white;
}

.step-title {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.step.active .step-title {
    color: #2c3e50;
    font-weight: 600;
}

/* Contenedor de información */
.resumen-info {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-card i {
    font-size: 1.5rem;
    color: #3498db;
}

.info-card small {
    display: block;
    color: #7f8c8d;
    font-size: 0.8rem;
}

.info-card p {
    margin: 0;
    font-weight: 600;
}

/* Diagrama de la camioneta Urvan */
.urvan-diagram {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    position: relative;
}

.urvan-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.urvan-front {
    width: 100%;
    height: 40px;
    background: #2c3e50;
    border-radius: 50% 50% 0 0;
    margin-bottom: 15px;
    position: relative;
}

.urvan-front:after {
    content: "FRONTAL";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 600;
}

.urvan-title {
    font-weight: 700;
    color: #2c3e50;
}

.urvan-puerta {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.urvan-puerta i {
    margin-right: 5px;
}

.asientos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 0 auto;
    max-width: 400px;
}

/* Estilos de los asientos */
.asiento {
    position: relative;
    background: #fff;
    border-radius: 8px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    border: 2px solid #e0e0e0;
    margin: 0 auto;
}

.asiento.asiento-frontal {
    background: #f1c40f;
    border-color: #f39c12;
}

.asiento.asiento-frontal .seat-number {
    color: #2c3e50;
}

.seat-number {
    font-size: 14px;
    font-weight: bold;
    color: #2c3e50;
}

.asiento.disponible {
    background: #f8f9fa;
    border-color: #3498db;
}

.asiento.disponible:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(52, 152, 219, 0.3);
    background: #e3f2fd;
}

.asiento.selected {
    background: #3498db;
    border-color: #2980b9;
}

.asiento.selected .seat-number {
    color: white;
}

.asiento.ocupado {
    background: #e74c3c;
    border-color: #c0392b;
    cursor: not-allowed;
}

.asiento.ocupado .seat-number {
    color: white;
}

/* Leyenda de asientos */
.asiento-legend {
    margin: 2rem 0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.legend-color.disponible {
    background: #f8f9fa;
    border-color: #3498db;
}

.legend-color.selected {
    background: #3498db;
    border-color: #2980b9;
}

.legend-color.ocupado {
    background: #e74c3c;
    border-color: #c0392b;
}

/* Información de asientos seleccionados */
.selected-seats-info {
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    max-width: 600px;
    margin: 0 auto;
}

.selected-seats-info.border-success {
    border-color: #2ecc71 !important;
    box-shadow: 0 0 0 0.25rem rgba(46, 204, 113, 0.25);
}

/* Botones */
.btn-outline-secondary {
    border-color: #7f8c8d;
    color: #7f8c8d;
}

.btn-outline-secondary:hover {
    background: #7f8c8d;
    color: white;
}

.btn-next {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-next:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(41, 128, 185, 0.3);
}

.btn-next:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-confirmar {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-confirmar:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(46, 204, 113, 0.3);
}

/* Estilos para el resumen */
.resumen-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.resumen-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.resumen-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.resumen-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.resumen-label {
    font-weight: 600;
    color: #7f8c8d;
}

.resumen-value {
    font-weight: 600;
    color: #2c3e50;
}

.resumen-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #eee;
}

/* Responsividad */
@media (max-width: 768px) {
    .reserva-hero {
        height: 300px;
    }
    
    .reserva-hero-title {
        font-size: 2rem;
    }
    
    .reserva-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .process-steps {
        gap: 1rem;
    }
    
    .step {
        max-width: 100px;
    }
    
    .step:not(:last-child):after {
        width: 1rem;
    }
    
    .asientos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .asiento {
        height: 45px;
        width: 45px;
    }
    
    .seat-number {
        font-size: 12px;
    }
    
    .urvan-diagram {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .reserva-hero {
        height: 250px;
    }
    
    .reserva-hero-title {
        font-size: 1.8rem;
    }
    
    .step {
        max-width: 80px;
    }
    
    .step-title {
        font-size: 0.8rem;
    }
    
    .asiento {
        height: 40px;
        width: 40px;
    }
    
    .seat-number {
        font-size: 11px;
    }
    
    .urvan-diagram {
        padding: 1rem;
    }
    
    .resumen-grid {
        grid-template-columns: 1fr;
    }
}












/* Estilos para la página de contacto */

/* Hero Banner */
.contact-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
    overflow: hidden;
    margin-bottom: 50px;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact-hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.contact-hero:hover .contact-hero-image {
    transform: scale(1.05);
}

.contact-hero-text {
    max-width: 600px;
    margin-top: 6em;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Sección de Contacto */
.contact-section {
    padding: 0 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-card-text {
    color: #7f8c8d;
    line-height: 1.6;
}

.contact-link {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #2980b9;
}

/* Formulario de Contacto */
.contact-form-container {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: white;
    padding: 0 10px;
    font-size: 0.9rem;
    color: #7f8c8d;
    z-index: 1;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    background: transparent;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Mapa */
.map-container {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsividad */
@media (max-width: 1199.98px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .contact-hero {
        height: auto;
        padding: 100px 0;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-card {
        flex: 1 1 300px;
    }
}

@media (max-width: 767.98px) {
    .form-title {
        font-size: 1.8rem;
    }
    
    .contact-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .contact-hero {
        padding: 80px 0;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .contact-card {
        flex: 1 1 100%;
    }
}

































/* Estilos para la página de reserva */


/* Hero Banner */
.reserva-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
    overflow: hidden;
   
}

.reserva-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.reserva-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.reserva-hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.reserva-hero-text {
    max-width: 800px;
}

.reserva-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reserva-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Proceso de Reserva */
.reserva-process {
    padding: 3rem 0;
}

.process-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 1.5rem;
    position: relative;
    opacity: 0.5;
    transition: all 0.3s;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.step.active .step-number {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.step::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 100%;
    width: 3rem;
    height: 2px;
    background: #e0e0e0;
}

.step:last-child::after {
    display: none;
}

/* Formulario de Reserva */
.reserva-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    outline: none;
}

.select-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232c3e50' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.date-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232c3e50' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.btn-next {
    padding: 12px 30px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
}

.btn-next:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Selección de Asientos */
.asientos-section {
    display: none;
}

.asientos-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.bus-diagram {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    border-radius: 12px;
    padding: 2rem;
}

.asientos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.asiento {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    border: 2px solid #ddd;
}

.asiento:hover {
    background: #e0e0e0;
}

.asiento.selected {
    background: #2ecc71;
    color: white;
    border-color: #27ae60;
}

.asiento.pasillo {
    visibility: hidden;
}

.asiento::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7f8c8d;
}

.asiento.selected::before {
    background: white;
}

.asiento-label {
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #7f8c8d;
}

.asiento-info {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: center;
}

.info-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
}

.info-icon.disponible {
    background: #f5f5f5;
    color: #2c3e50;
}

.info-icon.selected {
    background: #2ecc71;
}







/* Resumen de Reserva */
.resumen-section {
    display: none;
}

.resumen-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.resumen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resumen-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.5rem;
}

.resumen-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.resumen-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.resumen-label {
    color: #7f8c8d;
}

.resumen-value {
    font-weight: 600;
    color: #2c3e50;
}

.resumen-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.btn-confirmar {
    padding: 15px 40px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
}

.btn-confirmar:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

/* Responsividad */
@media (max-width: 1199.98px) {
    .reserva-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .reserva-hero {
        height: auto;
        padding: 100px 0;
    }
    
    .asientos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .step {
        margin: 0 0.8rem;
    }
    
    .step::after {
        width: 1.5rem;
    }
    
    .asiento-info {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 575.98px) {

 
    .reserva-hero {
        padding: 80px 0;
        
    }
    
    .reserva-hero-title {
        font-size: 2rem;
    }
    
    .reserva-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .step {
        margin: 0 0.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step::after {
        top: 20px;
        width: 1rem;
    }
    
    .step-title {
        font-size: 0.9rem;
    }
    
    .asientos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .asiento {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    .asiento-label {
        font-size: 0.7rem;
        bottom: -20px;
    }
}

/* Estilos para la selección de asientos */
.reserva-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-bottom: 30px;
}

.reserva-hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.reserva-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.reserva-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.reserva-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reserva-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Info cards */
.info-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.info-card i {
    font-size: 1.5rem;
    color: #044D6E;
    margin-right: 15px;
}

.info-card small {
    color: #7f8c8d;
    font-size: 0.8rem;
}

.info-card p {
    font-weight: 600;
    margin-bottom: 0;
    color: #2c3e50;
}

/* Bus diagram */
.bus-diagram {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
    position: relative;
}

.bus-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.bus-front {
    width: 40px;
    height: 40px;
    background: #044D6E;
    border-radius: 50% 0 0 50%;
    position: relative;
}

.bus-front::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #044D6E;
}

.bus-title {
    background: #044D6E;
    color: white;
    padding: 10px 20px;
    border-radius: 0 20px 20px 0;
    font-weight: 600;
}

.asientos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.asiento {
    width: 60px;
    height: 60px;
    background: #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid #dee2e6;
}

.asiento:hover {
    background: #d1e7ff;
    border-color: #044D6E;
}

.asiento.selected {
    background: #044D6E;
    color: white;
    border-color: #03314d;
}

.asiento.ocupado {
    background: #f8d7da;
    color: #842029;
    border-color: #f5c2c7;
    cursor: not-allowed;
}

.asiento.pasillo {
    visibility: hidden;
}

.asiento-label {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #6c757d;
}

.asiento-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: center;
}

.info-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
}

.info-icon.disponible {
    background: #e9ecef;
    color: #212529;
}

.info-icon.selected {
    background: #044D6E;
}

.info-icon.ocupado {
    background: #dc3545;
}

.selected-seats-info {
    margin-top: 30px;
}

/* Responsividad */
@media (max-width: 767.98px) {
    .reserva-hero-title {
        font-size: 2rem;
    }
    
    .reserva-hero-subtitle {
        font-size: 1rem;
    }
    
    .asientos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .asiento {
        width: 50px;
        height: 50px;
    }
    
    .asiento-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}





















