/* Taxi Manacor - Modern Design System */
:root {
    --taxi-yellow: #FFD700;
    --taxi-yellow-dark: #F0C000;
    --taxi-black: #1a1a1a;
    --taxi-gray: #6c757d;
    --taxi-light: #f8f9fa;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--taxi-black);
    background-color: #fff;
}

/* Header */
.navbar {
    background: white;
    box-shadow: var(--shadow);
    padding: 1rem 0;
    z-index: 1030;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--taxi-black) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--taxi-black) !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--taxi-yellow-dark) !important;
}

.btn-taxi {
    background: var(--taxi-yellow);
    border: none;
    color: var(--taxi-black);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-taxi:hover {
    background: var(--taxi-yellow-dark);
    color: var(--taxi-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Selector de idioma */
.language-selector .language-select {
    background: white;
    border: 2px solid var(--taxi-yellow);
    color: var(--taxi-black);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    min-width: 120px;
    cursor: pointer;
}

.language-selector .language-select:hover {
    border-color: var(--taxi-yellow-dark);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.language-selector .language-select:focus {
    border-color: var(--taxi-yellow-dark);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    outline: none;
}

.language-selector .language-select option {
    background: white;
    color: var(--taxi-black);
    font-weight: 500;
    padding: 0.5rem;
}

/* Asegurar que el selector de idioma sea visible */
.language-selector {
    position: relative;
    z-index: 1000;
}

.language-selector .dropdown-menu {
    z-index: 1001;
    display: none;
}

.language-selector .dropdown-menu.show {
    display: block;
}

/* Mejorar la visibilidad del botón */
.language-selector .btn {
    background: transparent;
    border: 2px solid var(--taxi-yellow);
    color: var(--taxi-black);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.language-selector .btn:hover {
    background: var(--taxi-yellow);
    border-color: var(--taxi-yellow-dark);
    color: var(--taxi-black);
}

.language-selector .btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

/* Responsive para el selector de idioma */
@media (max-width: 768px) {
    .language-selector {
        margin-bottom: 0.5rem;
    }
    
    .language-selector .language-select {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        min-width: 100px;
    }
}

@media (max-width: 576px) {
    .language-selector .language-select {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
        min-width: 90px;
    }
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(33, 37, 41, 0.8) 50%, rgba(255, 193, 7, 0.3) 100%),
        url('https://cdn.pixabay.com/photo/2017/08/07/00/33/taxi-2598105_1920.jpg') center/cover,
        url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover,
        linear-gradient(135deg, #212529 0%, #343a40 100%);
    padding: 4rem 0;
    margin-top: 76px;
    color: white;
    min-height: 60vh;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero .lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.phone-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--taxi-yellow);
    margin-top: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.phone-display .phone-link {
    color: var(--taxi-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.phone-display .phone-link:hover {
    color: var(--taxi-yellow-dark);
    transform: scale(1.02);
    text-shadow: 0 3px 6px rgba(0,0,0,0.6);
}



/* Cards */
.card-modern {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-modern .card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-modern .card-title {
    color: var(--taxi-black);
    font-weight: 600;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.card-modern .card-text {
    color: var(--taxi-gray);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 0;
}

/* Estilos específicos para tarjetas de servicios */
#servicios .card-modern {
    min-height: 280px;
}

#servicios .card-modern .card-body {
    justify-content: space-between;
}

#servicios .card-modern .card-text {
    display: flex;
    align-items: flex-start;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--taxi-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--taxi-black);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Form */
.form-modern {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.form-modern h3 {
    color: var(--taxi-black) !important;
    font-weight: 600;
}

.form-label {
    color: var(--taxi-black) !important;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white !important;
    color: var(--taxi-black) !important;
}

.form-control:focus {
    border-color: var(--taxi-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    outline: none;
    background: white !important;
    color: var(--taxi-black) !important;
}

.form-control::placeholder {
    color: #6c757d !important;
    opacity: 1;
}

.form-select {
    background: white !important;
    color: var(--taxi-black) !important;
}

.invalid-feedback {
    color: #dc3545 !important;
    font-weight: 500;
}

.valid-feedback {
    color: #198754 !important;
    font-weight: 500;
}

.form-modern .btn-taxi {
    margin-top: 0.5rem;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--taxi-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.form-select {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-select:focus {
    border-color: var(--taxi-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

/* Forzar que los selects se abran hacia abajo */
.form-select {
    /* Asegurar que el dropdown se abra hacia abajo */
    position: relative;
}

/* Estilo específico para el contenedor del formulario */
.form-modern .row {
    /* Reducir espacio entre filas para un formulario más compacto */
    margin-bottom: 1rem;
}

/* Altura mínima para el contenedor del formulario para evitar que los selects se abran hacia arriba */
.form-modern {
    min-height: auto;
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Asegurar espacio suficiente en la sección hero para dropdowns */
.hero {
    min-height: 85vh;
    padding-bottom: 2rem;
}

/* Espacio adicional en dispositivos móviles */
@media (max-width: 768px) {
    .form-modern {
        margin-bottom: 3rem;
        padding: 1.5rem;
    }
    
    .hero {
        min-height: 80vh;
        padding-bottom: 3rem;
    }
    
    .form-modern .row {
        margin-bottom: 0.75rem;
    }
    
    /* Botón de intercambio en móviles */
    #swapButtonHome {
        margin: 0.5rem auto;
        display: flex !important;
    }
    
    #swapButtonHomeMobile {
        margin: 0.5rem auto;
        padding: 0.5rem 1rem;
        border-radius: var(--border-radius);
        border: 2px solid var(--taxi-yellow-dark);
        background: white;
        color: var(--taxi-yellow-dark);
        transition: all 0.3s ease;
    }
    
    #swapButtonHomeMobile:hover {
        background: var(--taxi-yellow);
        border-color: var(--taxi-yellow);
        color: white;
    }
}

/* Botón de intercambio en formulario */
#swapButtonHome {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--taxi-yellow-dark);
    background: white;
    color: var(--taxi-yellow-dark);
    transition: all 0.3s ease;
    margin-bottom: 0.3rem;
}

#swapButtonHome:hover {
    background: var(--taxi-yellow);
    border-color: var(--taxi-yellow);
    color: white;
    transform: scale(1.05);
}

#swapButtonHome:active {
    transform: scale(0.95);
}

#swapButtonHome i {
    font-size: 1rem;
}

/* Zones Grid */
.zone-item {
    background: var(--taxi-light);
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.zone-item:hover {
    background: var(--taxi-yellow);
    border-color: var(--taxi-yellow-dark);
}

/* Zone items clickeables */
.zone-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.zone-link:hover {
    text-decoration: none;
    color: inherit;
}

.zone-item.clickable {
    cursor: pointer;
    background: white;
    border: 2px solid var(--taxi-light);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
}

.zone-item.clickable:hover {
    background: var(--taxi-yellow);
    border-color: var(--taxi-yellow-dark);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.zone-item.clickable i {
    font-size: 1.5rem;
    color: var(--taxi-yellow-dark);
}

.zone-item.clickable:hover i {
    color: var(--taxi-black);
}

.zone-item.clickable small {
    margin-top: 0.25rem;
    font-size: 0.75rem;
}

/* Table */
.table-modern {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.table-modern th {
    background: var(--taxi-yellow);
    color: var(--taxi-black);
    font-weight: 600;
    border: none;
}

.table-modern td {
    border-color: #e9ecef;
    padding: 1rem;
}

/* Responsive table adjustments */
@media (max-width: 767.98px) {
    .table-modern {
        font-size: 0.9rem;
    }
    
    .table-modern th,
    .table-modern td {
        padding: 0.75rem 0.5rem;
    }
    
    .table-modern .clickable-row td:first-child {
        min-width: 200px;
    }
    
    /* Ensure proper spacing when columns are hidden */
    .table-modern .d-none.d-md-table-cell {
        display: none !important;
    }
    
    .table-modern .d-none.d-md-inline {
        display: none !important;
    }
}

/* Testimonials */
.testimonial-section {
    background: var(--taxi-light);
    padding: 4rem 0;
}

.stars {
    color: var(--taxi-yellow-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Reviews Carousel Section */
.reviews-carousel-section {
    background: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.reviews-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 1;
    pointer-events: none;
}

/* Rating Column */
.rating-column {
    background: linear-gradient(135deg, var(--taxi-black) 0%, #2c2c2c 100%);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--taxi-black);
    height: 100%;
    position: relative;
    overflow: hidden;
    color: white;
}

.rating-column::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--taxi-yellow);
    text-shadow: 0 4px 8px rgba(255, 193, 7, 0.4);
    line-height: 1;
    position: relative;
}

.rating-number::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 4px;
    background: linear-gradient(90deg, var(--taxi-yellow) 0%, #ffd54f 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.rating-stars {
    font-size: 1.5rem;
    color: var(--taxi-yellow);
    display: flex;
    gap: 0.25rem;
}

.rating-stars .fas.fa-star {
    color: var(--taxi-black);
    -webkit-text-stroke: 1px var(--taxi-black);
    text-stroke: 1px var(--taxi-black);
}

.rating-stars .far.fa-star {
    color: transparent;
    -webkit-text-stroke: 1px var(--taxi-black);
    text-stroke: 1px var(--taxi-black);
}

.rating-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Rating Stats */
.rating-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    min-width: 60px;
}

.stat-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--taxi-yellow) 0%, #ffd54f 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.stat-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    min-width: 30px;
    text-align: right;
}

/* Carousel */
.reviews-carousel {
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--taxi-black);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.02);
    padding: 1rem;
    box-shadow: inset 0 4px 15px rgba(0, 0, 0, 0.05);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1rem;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: white;
    border: 2px solid var(--taxi-black);
    color: var(--taxi-black);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--taxi-black);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.carousel-btn:hover {
    background: var(--taxi-black);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover::before {
    transform: scale(1);
}

.carousel-btn i {
    position: relative;
    z-index: 1;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e9ecef;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--taxi-black);
    opacity: 0;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--taxi-black);
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dot.active::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
}

.dot:hover {
    background: var(--taxi-black);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Overall rating display (legacy) */
.overall-rating {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--taxi-yellow);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.rating-stars {
    font-size: 2rem;
    color: var(--taxi-yellow);
    display: flex;
    gap: 0.25rem;
}

.rating-label {
    color: var(--taxi-gray);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

/* Review cards */
.review-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--taxi-black);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--taxi-black);
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--taxi-black);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.reviewer-avatar {
    flex-shrink: 0;
}

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--taxi-black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--taxi-black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    border: 3px solid var(--taxi-black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--taxi-black);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.review-rating {
    display: flex;
    gap: 0.2rem;
    font-size: 0.9rem;
    color: var(--taxi-yellow);
}

.review-rating .fas.fa-star {
    color: var(--taxi-black);
    -webkit-text-stroke: 1px var(--taxi-black);
    text-stroke: 1px var(--taxi-black);
}

.review-rating .far.fa-star {
    color: transparent;
    -webkit-text-stroke: 1px var(--taxi-black);
    text-stroke: 1px var(--taxi-black);
}

.review-date {
    color: var(--taxi-gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.review-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.review-text {
    color: var(--taxi-black);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.review-text::before {
    content: '"';
    font-size: 2rem;
    color: var(--taxi-black);
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
    font-family: serif;
    font-weight: bold;
}

.review-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--taxi-black);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--taxi-black);
}

.google-badge i {
    color: white;
}

/* Google Maps button */
.btn-google-maps {
    background: linear-gradient(135deg, var(--taxi-black) 0%, #2c2c2c 100%);
    color: white;
    border: 2px solid var(--taxi-black);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.btn-google-maps::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-google-maps:hover {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    border-color: var(--taxi-yellow);
}

.btn-google-maps:hover::before {
    left: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .review-date {
        align-self: flex-end;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    .rating-stars {
        font-size: 1.8rem;
    }
}

/* CTA Section */
.cta-section {
    background: var(--taxi-black);
    color: white;
    padding: 4rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
    background: var(--taxi-black);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--taxi-yellow);
    margin-bottom: 1rem;
}

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

.footer a:hover {
    color: var(--taxi-yellow);
}

/* Botones específicos del footer */
.footer .contact-buttons {
    margin-top: 1.5rem;
    gap: 0.75rem;
}

.footer .btn-taxi {
    background: var(--taxi-yellow);
    color: var(--taxi-black) !important;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
    min-width: 100px;
    justify-content: center;
}

.footer .btn-taxi:hover {
    background: var(--taxi-yellow-dark);
    color: var(--taxi-black) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.footer .btn-whatsapp {
    background: #25D366;
    color: white !important;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    min-width: 100px;
    justify-content: center;
}

.footer .btn-whatsapp:hover {
    background: #128C7E;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Section spacing */
.section {
    padding: 4rem 0;
    background: white;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--taxi-black) 0%, #2c2c2c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--taxi-yellow) 0%, #ffd54f 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--taxi-gray);
    text-align: center;
    margin-bottom: 3rem;
}

/* Success/Confirmation pages */
.success-container {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--taxi-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--taxi-black);
    font-size: 2rem;
}

.contact-info {
    background: var(--taxi-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
}

.next-steps {
    text-align: left;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--taxi-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    color: var(--taxi-black);
}

/* Timeline for reservations */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--taxi-yellow);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-icon {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.timeline-content h5 {
    margin-bottom: 0.5rem;
    color: var(--taxi-black);
}

/* Lists styling */
.list-styled {
    list-style: none;
    padding: 0;
}

.list-styled li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
}

.list-styled li:last-child {
    border-bottom: none;
}

.list-styled li i {
    color: var(--taxi-yellow-dark);
    width: 20px;
    margin-right: 0.5rem;
}

/* Map container */
.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Badges */
.badge-taxi {
    background: var(--taxi-yellow);
    color: var(--taxi-black);
    font-weight: 600;
}

/* Alerts */
.alert-taxi {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--taxi-yellow);
    color: var(--taxi-black);
    border-radius: var(--border-radius);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
        margin-top: 60px;
        min-height: 50vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .info-item {
        margin-bottom: 1rem;
    }
    
    .phone-display {
        font-size: 2rem;
    }
    
    .contact-buttons {
        justify-content: center;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-modern {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    /* Trayecto detail responsive - SIEMPRE TÍTULO PRIMERO */
    .hero .row {
        flex-direction: column !important;
    }
    
    .hero .col-lg-6:first-child {
        margin-top: 0 !important;
        margin-bottom: 2rem !important;
    }
    
    /* Hero con imagen - Mobile first */
    .hero-with-image {
        min-height: 50vh !important;
        padding: 2rem 0 !important;
    }
    
    .hero-with-image .row {
        min-height: 45vh;
        align-items: flex-start !important;
        padding-top: 1rem;
    }
    
    .hero-with-image h1 {
        font-size: 2.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-with-image .lead {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-with-image .info-item {
        margin-bottom: 1rem !important;
    }
    
    /* Forzar color blanco en todos los textos pequeños */
    .hero-with-image small {
        color: white !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 1.5rem 0;
        min-height: 40vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .card-modern {
        margin-bottom: 1rem;
    }
    
    /* Botones del footer en móvil */
    .footer .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .footer .btn-taxi,
    .footer .btn-whatsapp {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Animation classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.hero .container {
    animation: fadeInUp 1s ease-out;
}

.card-modern {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.card-modern:nth-child(1) { animation-delay: 0.1s; }
.card-modern:nth-child(2) { animation-delay: 0.2s; }
.card-modern:nth-child(3) { animation-delay: 0.3s; }

.btn-taxi {
    position: relative;
    overflow: hidden;
}

.btn-taxi::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.btn-taxi:hover::before {
    left: 100%;
}

.card-icon {
    animation: float 3s ease-in-out infinite;
}

/* Taxi background pattern */
.hero::after {
    content: '🚖';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 4rem;
    opacity: 0.2;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.6));
}

/* Hero con imagen de fondo */
.hero-with-image {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-with-image .container {
    position: relative;
    z-index: 2;
}

.hero-with-image h1,
.hero-with-image p,
.hero-with-image .lead {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.6);
    color: white !important;
}

.hero-with-image .badge {
    background: rgba(255, 215, 0, 0.95) !important;
    color: var(--taxi-black) !important;
    text-shadow: none;
    backdrop-filter: blur(10px);
}

.hero-with-image .info-item h5 {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7);
    color: white !important;
}

.hero-with-image .info-item small {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-with-image .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.hero-with-image .phone-display {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-with-image .phone-display .phone-link {
    color: var(--taxi-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-with-image .phone-display .phone-link:hover {
    color: var(--taxi-yellow-dark);
    transform: scale(1.02);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.8);
}

/* Ocultar el emoji cuando hay imagen */
.hero-with-image::after {
    display: none;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner-border-taxi {
    border-color: var(--taxi-yellow);
    border-right-color: transparent;
}

/* Focus states for accessibility */
.btn-taxi:focus,
.btn-whatsapp:focus {
    outline: 2px solid var(--taxi-yellow);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .cta-section {
        display: none !important;
    }
    
    .hero {
        margin-top: 0;
    }
    
    * {
        box-shadow: none !important;
    }
}

/* Paginación personalizada - Colores no azules (más específico para sobrescribir Bootstrap) */
.pagination.justify-content-center {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.pagination .page-item .page-link,
.pagination .page-item .page-link:focus {
    color: var(--taxi-black) !important;
    background-color: white !important;
    border: 2px solid #e9ecef !important;
    border-radius: var(--border-radius) !important;
    margin: 0 0.25rem;
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pagination .page-item .page-link:hover,
.pagination .page-item .page-link:focus:hover {
    color: white !important;
    background-color: var(--taxi-black) !important;
    border-color: var(--taxi-black) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.4);
}

.pagination .page-item.active .page-link,
.pagination .page-item.active .page-link:focus {
    color: white !important;
    background-color: var(--taxi-black) !important;
    border-color: var(--taxi-black) !important;
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.4);
}

.pagination .page-item.disabled .page-link,
.pagination .page-item.disabled .page-link:focus {
    color: #6c757d !important;
    background-color: #f8f9fa !important;
    border-color: #e9ecef !important;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination .page-item.disabled .page-link:hover,
.pagination .page-item.disabled .page-link:focus:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive pagination */
@media (max-width: 768px) {
    .pagination .page-item .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        margin: 0 0.1rem;
    }
}

/* Enlaces de ordenamiento de tabla */
.sort-link {
    color: var(--taxi-black) !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    border-radius: var(--border-radius);
}

.sort-link:hover {
    color: white !important;
    background-color: var(--taxi-black);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(26, 26, 26, 0.2);
}

.sort-link i {
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.sort-link:hover i {
    color: white !important;
}

/* Responsive para ordenamiento */
@media (max-width: 768px) {
    .sort-link {
        font-size: 0.9rem;
        padding: 0.25rem;
    }
    
    .sort-link i {

/* ===== ESTILOS PARA EL MAPA DE RUTA ===== */
.route-map-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#route-map {
    transition: all 0.3s ease;
}

#route-map:hover {
    transform: scale(1.01);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Controles del mapa */
.gm-style-moc {
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.gm-style-mtc {
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Marcadores personalizados */
.gm-style-iw {
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.gm-style-iw-c {
    border-radius: 8px !important;
    padding: 0 !important;
}

.gm-style-iw-d {
    border-radius: 8px !important;
    overflow: hidden !important;
}

/* Footer del mapa con estadísticas */
.route-map-container .card-footer {
    border-top: 1px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.route-map-container .card-footer .col-md-4 {
    padding: 1rem 0.5rem;
    border-right: 1px solid #e9ecef;
}

.route-map-container .card-footer .col-md-4:last-child {
    border-right: none;
}

.route-map-container .card-footer i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.route-map-container .card-footer strong {
    font-size: 1.2rem;
    color: var(--taxi-black);
    display: block;
    margin-bottom: 0.25rem;
}

.route-map-container .card-footer small {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Responsive para el mapa */
@media (max-width: 768px) {
    #route-map {
        height: 300px !important;
    }
    
    .route-map-container .card-footer .col-md-4 {
        padding: 0.75rem 0.25rem;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .route-map-container .card-footer .col-md-4:last-child {
        border-bottom: none;
    }
    
    .route-map-container .card-footer i {
        font-size: 1.2rem;
    }
    
    .route-map-container .card-footer strong {
        font-size: 1rem;
    }
    
    .route-map-container .card-footer small {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    #route-map {
        height: 250px !important;
    }
}
        font-size: 0.7rem;
    }
}

/* Estilos para selects de filtros */
.form-select {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-select:focus {
    border-color: var(--taxi-yellow);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    outline: none;
}

.form-select:hover {
    border-color: var(--taxi-yellow-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Estilo para opciones del select */
.form-select option {
    padding: 0.5rem;
    font-weight: 500;
}

/* Responsive para selects */
@media (max-width: 768px) {
    .form-select {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
}

/* Estilos para badges de ubicaciones */
.badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
}

.badge-success {
    background-color: #28a745 !important;
    color: white !important;
}

.badge-secondary {
    background-color: #6c757d !important;
    color: white !important;
}

.badge-primary {
    background-color: #007bff !important;
    color: white !important;
}

.badge-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.badge-danger {
    background-color: #dc3545 !important;
    color: white !important;
}

.badge-info {
    background-color: #17a2b8 !important;
    color: white !important;
}

/* Iconos de ubicaciones */
.table-modern .fa-plane {
    color: #007bff !important;
}

.table-modern .fa-train {
    color: #28a745 !important;
}

.table-modern .fa-hospital {
    color: #dc3545 !important;
}

.table-modern .fa-hotel {
    color: #ffc107 !important;
}

.table-modern .fa-umbrella-beach {
    color: #17a2b8 !important;
}

.table-modern .fa-ship {
    color: #007bff !important;
}

.table-modern .fa-map-marker-alt {
    color: #6c757d !important;
}

.table-modern .fa-star {
    color: #ffc107 !important;
}

.table-modern .fa-check-circle {
    color: #28a745 !important;
}

/* Estilos para cards de trayectos y ubicaciones */
.trayecto-card, .ubicacion-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trayecto-card:hover, .ubicacion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--taxi-yellow);
}

.feature-item {
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: rgba(255, 193, 7, 0.1);
    transform: scale(1.05);
}

.feature-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-item h6 {
    font-weight: 600;
    color: var(--taxi-black);
}

/* Breadcrumb personalizado */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--taxi-yellow);
    font-weight: 600;
}

.breadcrumb-item a {
    color: var(--taxi-yellow);
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--taxi-black);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--taxi-black);
    font-weight: 600;
}

/* Estilos para filas de tabla clickeables */
.table-modern .clickable-row {
    transition: all 0.3s ease;
    cursor: pointer;
}

.table-modern .clickable-row:hover {
    background-color: rgba(255, 193, 7, 0.1) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.table-modern .clickable-row:hover td {
    border-color: var(--taxi-yellow);
}

.table-modern .clickable-row:hover .fa-chevron-right {
    color: var(--taxi-yellow) !important;
    transform: translateX(3px);
}

.table-modern .clickable-row:hover .badge {
    transform: scale(1.05);
}

/* Animación para iconos en hover */
.table-modern .clickable-row:hover .fa-arrow-right,
.table-modern .clickable-row:hover .fa-arrow-left {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Efecto hover para badges destacados */
.table-modern .clickable-row:hover .badge-warning {
    background-color: #e0a800 !important;
    box-shadow: 0 2px 8px rgba(224, 168, 0, 0.3);
}

/* Clase text-muted personalizada */
.text-muted {
    color: white !important;
}

/* Responsive para información del trayecto en móvil */
@media (max-width: 768px) {
    .info-item {
        margin-bottom: 0.5rem;
        padding: 0.25rem;
    }
    
    .info-item i {
        font-size: 1rem !important;
        margin-bottom: 0.25rem;
    }
    
    .info-item h5 {
        font-size: 0.85rem;
        margin-bottom: 0.1rem;
        line-height: 1.2;
    }
    
    .info-item small {
        font-size: 0.65rem;
        line-height: 1.1;
    }
}

/* Estilos para información del trayecto en desktop */
@media (min-width: 769px) {
    .d-flex.justify-content-between .flex-fill i {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem;
    }
    
    .d-flex.justify-content-between .flex-fill h6 {
        font-size: 1.1rem !important;
        margin-bottom: 0.25rem;
    }
    
    .d-flex.justify-content-between .flex-fill small {
        font-size: 0.85rem !important;
    }
}
