/* ========================================
   FAUSTO TRANSPORTE - Página Pública
   Estilo profesional para captación clientes
   ======================================== */

:root {
    --primary: #00AA6C;
    --primary-light: #00C87A;
    --primary-dark: #008B57;
    --accent: #00AA6C;
    --accent-light: #00C87A;
    --success: #00AA6C;
    --warning: #f59e0b;
    --danger: #ef4444;
    --green-start: #00C87A;
    --green-end: #00AA6C;
    --blue-start: #00AA6C;
    --blue-end: #008B57;
    --gray-900: #1a202c;
    --gray-800: #2d3748;
    --gray-700: #4a5568;
    --gray-600: #718096;
    --gray-500: #a0aec0;
    --gray-400: #cbd5e0;
    --gray-300: #e2e8f0;
    --gray-200: #edf2f7;
    --gray-100: #f7fafc;
    --white: #ffffff;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - TripAdvisor Style */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.site-header.scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.header-brand {
    display: flex;
    align-items: center;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00AA6C;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00AA6C;
    transition: width 0.2s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Header Search */
.header-search {
    flex: 1;
    max-width: 450px;
    margin: 0 24px;
}

.search-box-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.search-box-header:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.15);
}

.search-box-header:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.2), 0 4px 16px rgba(49, 130, 206, 0.15);
    transform: translateY(-1px);
}

.search-box-header i {
    color: var(--accent);
    font-size: 18px;
    flex-shrink: 0;
}

.search-box-header input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
    outline: none;
    min-width: 0;
}

.search-box-header input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.btn-header {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    border-radius: 50px;
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--accent);
    box-shadow: none;
}

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

.btn-login {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid var(--gray-300);
    border-radius: 50px;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.btn-login:hover {
    border-color: #00AA6C;
    color: #00AA6C;
    background: rgba(0, 170, 108, 0.05);
}

/* User Auth Section */
.user-logged-in {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid #e2e8f0;
}

.user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Mobile User Auth Section */
.mobile-user-logged-in {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 8px;
    margin-top: 8px;
}

.mobile-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid #0EA5E9;
}

.mobile-user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-logout {
    padding: 0;
    background: transparent;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-logout:hover {
    color: var(--danger);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.btn-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-lang:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-lang i:first-child {
    font-size: 16px;
    color: var(--accent);
}

.btn-lang i:last-child {
    font-size: 10px;
    color: var(--gray-400);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 6px;
    min-width: 140px;
    max-height: 320px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1001;
}

.lang-dropdown.scrollbar-hover {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.lang-dropdown.scrollbar-hover::-webkit-scrollbar {
    display: none;
}

.lang-dropdown.scrollbar-hover:hover {
    scrollbar-width: auto;
    -ms-overflow-style: auto;
}

.lang-dropdown.scrollbar-hover:hover::-webkit-scrollbar {
    display: block;
    width: 4px;
}

.lang-dropdown.scrollbar-hover:hover::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 4px;
}

.lang-dropdown.scrollbar-hover:hover::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

.lang-dropdown::-webkit-scrollbar {
    width: 4px;
}

.lang-dropdown::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

.language-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 10px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 13px;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.lang-option:hover {
    background: var(--gray-100);
}

.lang-option.active {
    background: #e8f5e9;
    color: #00AA6C;
    font-weight: 600;
}

.lang-option .flag {
    font-size: 16px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-700);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    flex-direction: column;
    gap: 12px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: var(--radius);
    transition: background 0.2s;
    font-size: 16px;
}

.mobile-menu a:hover {
    background: var(--gray-100);
}

.mobile-menu-actions {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.btn-login-mobile {
    flex: 1;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid var(--gray-300);
    border-radius: 50px;
    color: var(--gray-700);
    text-align: center;
    justify-content: center;
}

.mobile-lang-selector {
    position: relative;
}

.lang-btn-mobile {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--gray-100);
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
}

.mobile-lang-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 6px;
    min-width: 140px;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    flex-direction: column;
    gap: 2px;
}

.mobile-lang-options.scrollbar-hover {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mobile-lang-options.scrollbar-hover::-webkit-scrollbar {
    display: none;
}

.mobile-lang-options.scrollbar-hover:hover {
    scrollbar-width: auto;
    -ms-overflow-style: auto;
}

.mobile-lang-options.scrollbar-hover:hover::-webkit-scrollbar {
    display: block;
    width: 4px;
}

.mobile-lang-options.scrollbar-hover:hover::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 4px;
}

.mobile-lang-options.scrollbar-hover:hover::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

.mobile-lang-options.active {
    display: flex;
}

.mobile-lang-options button {
    padding: 8px 12px;
    background: transparent;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
}

.mobile-lang-options button:hover {
    background: var(--gray-100);
}

.mobile-lang-options::-webkit-scrollbar {
    width: 4px;
}

.mobile-lang-options::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

/* Hero Section - Original Blue */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0EA5E9 0%, #1E40AF 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-image-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1589394815804-964ed0be2eb5?w=1200&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-image-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(0,0,0,0.1) 0%, 
        rgba(0,0,0,0.02) 30%, 
        rgba(14, 165, 233, 0.2) 45%, 
        rgba(14, 165, 233, 0.6) 55%,
        #1E40AF 65%,
        #1E40AF 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.6) 0%, rgba(30, 64, 175, 0.75) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr minmax(340px, 400px);
    gap: 40px;
    align-items: start;
    justify-content: center;
}

.hero-content {
    color: var(--white);
    padding-top: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge i {
    color: #4ADE80;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #4ADE80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #4ADE80 0%, #16A34A 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #22c55e 0%, #15803D 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.4);
}

.btn-large {
    padding: 14px 28px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    font-weight: 600;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.btn-white {
    background: var(--white);
    color: #16A34A;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-google {
    background: #fff;
    color: #757575;
    border: 1px solid #ddd;
}

.btn-google:hover {
    background: #f5f5f5;
}

.hero-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.hero-feature i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
}

/* Hero Search */
.hero-search {
    margin-bottom: 24px;
    max-width: 520px;
}

.search-box-hero {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.search-box-hero:focus-within {
    box-shadow: 0 8px 40px rgba(49, 130, 206, 0.3);
    transform: translateY(-2px);
}

.search-box-hero i {
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
}

.search-box-hero input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #1a202c !important;
    outline: none;
    min-width: 0;
}

.search-box-hero input::placeholder {
    color: #4a5568 !important;
    font-weight: 400;
}

/* Forzar color del texto del buscador dentro del hero-content */
.hero-content .search-box-hero input {
    color: #1a202c !important;
}

.hero-content .search-box-hero input::placeholder {
    color: #4a5568 !important;
}

.btn-search {
    padding: 10px 24px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-search:hover {
    background: var(--primary-light);
    transform: scale(1.02);
}

/* Destinos Section - TripAdvisor Style */
.destinos-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.destino-card {
    background: transparent;
    border-radius: 8px;
    overflow: visible;
    box-shadow: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    display: block;
}

.destino-card:hover {
    transform: translateY(-2px);
}

/* Destination Card Styles for Destinos Populares - Same as original transparent design */
.destination-card {
    background: transparent;
    border-radius: 8px;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.2s;
    cursor: pointer;
    border: none;
    display: block;
}

.destination-card:hover {
    transform: translateY(-2px);
}

.destination-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.destination-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #00AA6C;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.favorite-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.2s;
    color: #718096;
}

.favorite-heart:hover {
    color: #ef4444;
    transform: scale(1.1);
}

.favorite-heart.active {
    color: #ef4444;
}

.destination-content {
    padding: 0;
    background: transparent;
    overflow: hidden;
}

.destination-content h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a202c;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.destination-content p {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.4;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Fleet Carousel Styles */
.fleet-carousel-section {
    position: relative;
}

.fleet-carousel-wrapper {
    position: relative;
    padding: 0 20px;
}

.fleet-carousel-nav-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.fleet-carousel-nav-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: white;
    font-size: 16px;
}

.fleet-carousel-nav-btn:hover {
    background: rgba(255,255,255,0.4);
    transform: scale(1.1);
}

.fleet-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.fleet-carousel::-webkit-scrollbar {
    display: none;
}

.fleet-carousel-card {
    flex-shrink: 0;
    width: 400px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.fleet-carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.fleet-carousel-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.fleet-carousel-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #00AA6C;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.fleet-carousel-content {
    padding: 20px;
}

.fleet-carousel-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}

.fleet-carousel-content p {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.5;
}

.fleet-carousel-features {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.fleet-carousel-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #718096;
}

.fleet-carousel-feature i {
    color: #0EA5E9;
}

.fleet-carousel-btn {
    background: linear-gradient(135deg, #16A34A 0%, #0EA5E9 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.fleet-carousel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
}

.fleet-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s;
    z-index: 10;
    color: #1a202c;
    font-size: 18px;
}

.fleet-carousel-nav:hover {
    background: #0EA5E9;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.fleet-carousel-prev {
    left: 0;
}

.fleet-carousel-next {
    right: 0;
}

/* Carousel Item Modal Styles */
.carousel-item-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.carousel-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.carousel-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.carousel-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 10;
    font-size: 18px;
    color: #1a202c;
    transition: all 0.3s;
}

.carousel-modal-close:hover {
    background: #ef4444;
    color: white;
    transform: rotate(90deg);
}

.carousel-modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.carousel-modal-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-modal-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.carousel-modal-info {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
}

.carousel-modal-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.carousel-modal-info p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.carousel-modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.carousel-modal-btn {
    flex: 1;
    min-width: 200px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.carousel-modal-btn.primary {
    background: linear-gradient(135deg, #16A34A 0%, #0EA5E9 100%);
    color: white;
}

.carousel-modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
}

.carousel-modal-btn.secondary {
    background: #f3f4f6;
    color: #1a202c;
}

.carousel-modal-btn.secondary:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

/* Image Lightbox Styles */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

#lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.destino-image.blue {
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
    color: #2563eb;
}

.destino-image.green {
    background: linear-gradient(135deg, #d1fae5 0%, #6ee7b7 100%);
    color: #05944F;
}

.destino-image.purple {
    background: linear-gradient(135deg, #e9d5ff 0%, #c4b5fd 100%);
    color: #7c3aed;
}

/* Clase para imágenes reales de destinos */
.destino-image.photo {
    display: block !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .fleet-carousel-card {
        width: 280px;
    }

    .fleet-carousel-image {
        height: 180px;
    }

    .fleet-carousel-content h3 {
        font-size: 16px;
    }

    .fleet-carousel-content p {
        font-size: 13px;
    }

    .destination-image {
        height: 160px;
    }

    .destination-content h3 {
        font-size: 13px;
    }

    .destinos-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .fleet-carousel-card {
        width: 240px;
    }

    .fleet-carousel-image {
        height: 150px;
    }

    .fleet-carousel-content {
        padding: 16px;
    }

    .fleet-carousel-content h3 {
        font-size: 14px;
    }

    .fleet-carousel-content p {
        font-size: 12px;
    }

    .destination-image {
        height: 140px;
    }

    .destinos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .destination-content h3 {
        font-size: 12px;
    }
}

.destino-image.photo[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Badge para destinos destacados - TripAdvisor style */
.destination-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #00AA6C;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 10;
}

/* Heart icon for favorites - TripAdvisor style */
.favorite-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #00AA6C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.favorite-heart:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.favorite-heart i {
    color: #00AA6C;
    font-size: 14px;
    transition: all 0.2s;
}

.favorite-heart.active i {
    color: #ff0000;
}

.favorite-heart.active {
    background: rgba(255, 255, 255, 0.95);
    border-color: #ff0000;
}

.favorite-heart.active i {
    color: #ff0000;
}

.destino-info {
    padding: 0;
    background: transparent;
}

.destino-info h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
    line-height: 1.3;
}

.destino-info p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.destino-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.destino-rating-stars {
    display: flex;
    gap: 2px;
    color: #00AA6C;
}

.destino-rating-stars i {
    font-size: 14px;
}

.destino-rating-count {
    font-size: 13px;
    color: var(--gray-600);
}

.destino-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.destino-price {
    font-size: 16px;
    font-weight: 700;
    color: #00AA6C;
}

.destino-price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-600);
}

.destino-cta {
    background: #00AA6C;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.destino-cta:hover {
    background: #008B57;
}

/* Hero Form Card - CORREGIDO */
.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.form-card-header {
    text-align: center;
    margin-bottom: 16px;
}

.form-card-header i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--white);
    font-size: 18px;
}

.form-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.form-card-header p {
    font-size: 12px;
    color: var(--gray-500);
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    min-width: 0;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    white-space: nowrap;
}

.input-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius);
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.input-icon:focus-within {
    background: var(--white);
    border-color: #00AA6C;
}

.input-icon i {
    color: var(--gray-400);
    font-size: 14px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.input-icon input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--gray-800);
    outline: none;
    font-family: inherit;
    width: 100%;
    min-width: 0;
}

.input-icon input::placeholder {
    color: var(--gray-400);
}

.input-icon select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--gray-800);
    outline: none;
    font-family: inherit;
    width: 100%;
    min-width: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 12px 36px 12px 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%234a5568' d='M7 10.5L2 5.5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: all 0.3s ease;
}

.input-icon select:hover {
    background-color: rgba(0, 170, 108, 0.05);
}

.input-icon select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%2300AA6C' d='M7 10.5L2 5.5h10z'/%3E%3C/svg%3E");
    background-color: rgba(0, 170, 108, 0.08);
}

.input-icon select option {
    padding: 10px 12px;
    background: var(--white);
    color: var(--gray-800);
}

.input-icon select option:hover {
    background: var(--gray-100);
}

/* Estilos globales para selectores fuera de .input-icon */
select {
    width: 100%;
    padding: 12px 16px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--gray-800);
    outline: none;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%234a5568' d='M7 10.5L2 5.5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

select:hover {
    border-color: var(--gray-400);
    background-color: rgba(0, 170, 108, 0.02);
}

select:focus {
    border-color: #00AA6C;
    box-shadow: 0 0 0 3px rgba(0, 170, 108, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%2300AA6C' d='M7 10.5L2 5.5h10z'/%3E%3C/svg%3E");
    background-color: rgba(0, 170, 108, 0.05);
}

select option {
    padding: 12px 16px;
    background: var(--white);
    color: var(--gray-800);
    font-size: 14px;
    font-weight: 500;
    border: none;
    min-height: 44px;
}

select option:hover,
select option:focus {
    background: linear-gradient(135deg, rgba(0, 170, 108, 0.1) 0%, rgba(0, 170, 108, 0.05) 100%);
    color: #00AA6C;
    font-weight: 600;
}

select option:checked {
    background: linear-gradient(135deg, rgba(0, 170, 108, 0.15) 0%, rgba(0, 170, 108, 0.08) 100%);
    color: #00AA6C;
    font-weight: 700;
}

select option:disabled {
    background: var(--gray-100);
    color: var(--gray-400);
    cursor: not-allowed;
    font-style: italic;
}

select:disabled {
    background-color: var(--gray-100);
    cursor: not-allowed;
    opacity: 0.6;
}

/* ========================================
   Custom Select (Selector Personalizado)
   ======================================== */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--gray-800);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.custom-select-trigger:hover {
    border-color: var(--gray-400);
    background-color: rgba(0, 170, 108, 0.02);
}

.custom-select-trigger.open {
    border-color: #00AA6C;
    box-shadow: 0 0 0 3px rgba(0, 170, 108, 0.1);
    background-color: rgba(0, 170, 108, 0.05);
}

.custom-select-trigger::after {
    content: '';
    position: absolute;
    right: 14px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--gray-500);
    transition: transform 0.3s ease;
}

.custom-select-trigger.open::after {
    transform: rotate(180deg);
    border-top-color: #00AA6C;
}

.custom-select-trigger .selected-value {
    flex: 1;
    font-weight: 500;
}

.custom-select-trigger .selected-value.placeholder {
    color: var(--gray-400);
    font-style: italic;
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.custom-select-options.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-options::-webkit-scrollbar {
    width: 6px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 3px;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

.custom-select-options::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

.custom-select-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background: linear-gradient(135deg, rgba(0, 170, 108, 0.1) 0%, rgba(0, 170, 108, 0.05) 100%);
    color: #00AA6C;
    font-weight: 600;
}

.custom-select-option.selected {
    background: linear-gradient(135deg, rgba(0, 170, 108, 0.15) 0%, rgba(0, 170, 108, 0.08) 100%);
    color: #00AA6C;
    font-weight: 700;
}

.custom-select-option.selected::before {
    content: '✓';
    color: #00AA6C;
    font-weight: 700;
    font-size: 16px;
}

.custom-select-option.disabled {
    background: var(--gray-100);
    color: var(--gray-400);
    cursor: not-allowed;
    font-style: italic;
}

.custom-select-option.disabled:hover {
    background: var(--gray-100);
    color: var(--gray-400);
}

/* Custom select dentro de input-icon */
.input-icon .custom-select-trigger {
    background: transparent;
    border: none;
    padding: 0;
    flex: 1;
}

.input-icon .custom-select-trigger:hover {
    background: transparent;
    border: none;
}

.input-icon .custom-select-trigger.open {
    background: transparent;
    border: none;
    box-shadow: none;
}

.input-icon .custom-select-trigger::after {
    right: 0;
}

.input-icon .custom-select-options {
    left: -12px;
    right: -12px;
}

/* Fleet Gallery Styles */
.fleet-gallery {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.fleet-gallery::-webkit-scrollbar {
    display: none;
}

.fleet-gallery:hover {
    scrollbar-width: auto;
    -ms-overflow-style: auto;
}

.fleet-gallery:hover::-webkit-scrollbar {
    display: block;
    height: 6px;
}

.fleet-gallery:hover::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 3px;
}

.fleet-gallery:hover::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

.fleet-gallery:hover::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

.gallery-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.gallery-thumbnail:hover {
    border-color: #00AA6C;
    transform: scale(1.05);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f7fafc;
}

.gallery-indicator {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
}

.gallery-indicator i {
    font-size: 14px;
}

/* Gallery Modal */
.gallery-modal {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery-modal.active {
    display: flex !important;
}

.gallery-modal-content {
    position: relative;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.gallery-close:hover {
    opacity: 0.7;
}

.gallery-main-image {
    width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gallery-main-image img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 24px;
    padding: 16px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
    z-index: 10;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.gallery-prev {
    left: -60px;
}

.gallery-next {
    right: -60px;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-thumbnails::-webkit-scrollbar {
    display: none;
}

.gallery-thumbnails:hover {
    scrollbar-width: auto;
    -ms-overflow-style: auto;
}

.gallery-thumbnails:hover::-webkit-scrollbar {
    display: block;
    height: 6px;
}

.gallery-thumbnails:hover::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.gallery-thumbnails:hover::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.gallery-thumbnails:hover::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.gallery-thumb {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s;
    flex-shrink: 0;
}

.gallery-thumb:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.gallery-thumb.active {
    border-color: var(--accent);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-info {
    text-align: center;
    color: white;
    margin-top: 16px;
}

.gallery-info h3 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 600;
}

.gallery-info p {
    margin: 0;
    font-size: 16px;
    opacity: 0.8;
}

/* Responsive Gallery Modal */
@media (max-width: 768px) {
    .gallery-nav {
        padding: 12px 16px;
        font-size: 20px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-main-image img {
        max-height: 50vh;
    }

    .gallery-thumb {
        width: 60px;
        height: 45px;
    }

    .gallery-info h3 {
        font-size: 20px;
    }

    .gallery-info p {
        font-size: 14px;
    }
}

textarea {
    width: 100%;
    padding: 10px 12px;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 14px;
    color: var(--gray-800);
    resize: vertical;
    min-height: 60px;
    outline: none;
    transition: all 0.2s;
}

textarea:focus {
    background: var(--white);
    border-color: #00AA6C;
}

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.service-option {
    cursor: pointer;
}

.service-option input {
    display: none;
}

.option-card {
    padding: 10px 4px;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.2s;
}

.service-option:hover .option-card {
    background: var(--gray-200);
}

.service-option input:checked + .option-card {
    background: #e8f5e9;
    border-color: #00AA6C;
}

.option-card i {
    display: block;
    font-size: 18px;
    color: #00AA6C;
    margin-bottom: 4px;
}

.option-card span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 2px;
}

.option-card small {
    font-size: 10px;
    color: var(--gray-500);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 6px;
}

/* Sections Common */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #00AA6C;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Services Section - TripAdvisor Style */
.services-section {
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.service-icon.blue { background: #dbeafe; color: #2563eb; }
.service-icon.green { background: #d1fae5; color: #05944F; }
.service-icon.purple { background: #e9d5ff; color: #7c3aed; }
.service-icon.orange { background: #ffedd5; color: #ea580c; }
.service-icon.red { background: #fee2e2; color: #dc2626; }
.service-icon.cyan { background: #cffafe; color: #0891b2; }

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 12px;
}

.service-price {
    display: inline-block;
    background: #e8f5e9;
    color: #00AA6C;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

/* Fleet Section - TripAdvisor Style */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.fleet-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.fleet-category {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.fleet-category-header {
    text-align: center;
    margin-bottom: 24px;
}

.fleet-category-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.fleet-category-header p {
    color: var(--gray-600);
    font-size: 14px;
}

.fleet-category .fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.fleet-category-footer {
    text-align: center;
}

/* Mixed Tours and Destinations Section */
.mixed-grid {
    display: flex;
    gap: 16px;
    padding: 40px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-timeline: auto;
}

.mixed-grid::-webkit-scrollbar {
    display: none;
}

.mixed-card {
    background: transparent;
    border-radius: 8px;
    overflow: visible;
    box-shadow: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    display: block;
    flex-shrink: 0;
    width: 300px;
}

.mixed-card:hover {
    transform: translateY(-2px);
}

.mixed-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.mixed-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #00AA6C;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.mixed-badge.tour {
    background: #8B5CF6;
}

.mixed-content {
    padding: 0;
    background: transparent;
}

.mixed-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--gray-900);
    line-height: 1.3;
}

.mixed-content p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mixed-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-500);
}

.mixed-meta i {
    color: var(--accent);
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 0;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--gray-600);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: scale(1.1);
}

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

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

.fleet-card {
    background: transparent;
    border-radius: 8px;
    overflow: visible;
    box-shadow: none;
    transition: all 0.2s;
    position: relative;
    min-height: auto;
    display: block;
    border: none;
    cursor: pointer;
}

.fleet-card:hover {
    transform: translateY(-2px);
}

.fleet-card.featured {
    border: none;
}

.fleet-badge-popular {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #00AA6C;
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.fleet-image {
    height: 200px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: var(--gray-400);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.fleet-image.blue { background: #dbeafe; color: #2563eb; }
.fleet-image.purple { background: #e9d5ff; color: #7c3aed; }
.fleet-image.green { background: #d1fae5; color: #05944F; }

/* Clase para imágenes reales de vehículos */
.fleet-image.photo {
    display: block !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.gallery-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 1;
    backdrop-filter: blur(4px);
}

.gallery-indicator i {
    font-size: 12px;
}

.fleet-info {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: transparent;
}

.fleet-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.fleet-badge.economy { background: #dbeafe; color: #2563eb; }
.fleet-badge.executive { background: #e9d5ff; color: #7c3aed; }
.fleet-badge.vip { background: #fef3c7; color: #d69e2e; }
.fleet-badge.van { background: #d1fae5; color: #05944F; }

.fleet-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
    line-height: 1.3;
    word-wrap: break-word;
}

.fleet-info > p {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 8px;
    line-height: 1.5;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fleet-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 0;
}

.fleet-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--gray-600);
    word-wrap: break-word;
}

.fleet-features li i {
    color: var(--accent);
    font-size: 10px;
}

/* Why Section - TripAdvisor Style */
.why-section {
    background: #f8f9fa;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content .section-badge,
.why-content .section-title,
.why-content .section-subtitle {
    text-align: left;
}

.why-content .section-subtitle {
    margin-bottom: 32px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature {
    display: flex;
    gap: 14px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-icon.blue { background: #dbeafe; color: #2563eb; }
.feature-icon.green { background: #d1fae5; color: #05944F; }
.feature-icon.purple { background: #e9d5ff; color: #7c3aed; }
.feature-icon.orange { background: #ffedd5; color: #ea580c; }

.feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-box .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 6px;
}

.stat-box .stat-label {
    font-size: 14px;
    color: var(--gray-600);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.testimonial-rating i {
    color: #FFC107;
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

/* Testimonials Carousel Styles */
.testimonials-carousel {
    position: relative;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: visible;
    min-height: auto;
}

.carousel-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    transition: none;
}

.carousel-item {
    padding: 0;
    box-sizing: border-box;
    opacity: 1 !important;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-indicators {
    display: none;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--accent);
    transform: scale(1.3);
}

.carousel-indicator:hover {
    background: var(--accent-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
}

.author-info p {
    font-size: 12px;
    color: var(--gray-500);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
    padding: 70px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info .section-badge,
.contact-info .section-title,
.contact-info .section-subtitle {
    text-align: left;
}

.contact-info .section-subtitle {
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    gap: 14px;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.method-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.method-info a,
.method-info p {
    font-size: 14px;
    color: var(--gray-600);
    text-decoration: none;
    display: block;
    line-height: 1.6;
}

.method-info a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--accent);
    color: var(--white);
}

.contact-map {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.rd-map-container {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.rd-map {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.map-caption {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
}

.map-placeholder {
    text-align: center;
    color: var(--gray-500);
}

.map-placeholder i {
    font-size: 56px;
    margin-bottom: 14px;
}

.map-placeholder p {
    font-size: 15px;
}

/* Footer */
.site-footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
    max-width: 380px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid var(--danger);
}

.toast i {
    font-size: 18px;
}

.toast.success i {
    color: var(--success);
}

.toast.error i {
    color: var(--danger);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
        padding-top: 0;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    /* En tablets grandes, mantener imagen oscura con contenido encima */
    .hero-bg {
        display: block;
    }
    
    .hero-overlay {
        display: block;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(30, 64, 175, 0.7) 100%);
    }
    
    .hero-image-left {
        background-position: center center;
    }
    
    .hero-image-left::after {
        background: linear-gradient(to right,
            rgba(0,0,0,0.3) 0%,
            rgba(0,0,0,0.1) 30%,
            rgba(14, 165, 233, 0.3) 50%,
            rgba(14, 165, 233, 0.6) 70%,
            #1E40AF 100%);
    }
    
    .hero-form-card {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fleet-grid,
    .destinos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-content .section-badge,
    .why-content .section-title,
    .why-content .section-subtitle {
        text-align: center;
    }
    
    .why-features {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .why-stats {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 250px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .header-nav,
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-search {
        max-width: 100%;
    }
    
    .search-box-hero {
        padding: 12px 16px;
    }
    
    .search-box-hero input {
        font-size: 14px;
        color: #1a202c !important;
    }
    
    .hero-content .search-box-hero input {
        color: #1a202c !important;
    }
    
    .hero-content .search-box-hero input::placeholder {
        color: #4a5568 !important;
    }
    
    .btn-search {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    
    .hero-form-card {
        padding: 20px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .option-card {
        padding: 12px 4px;
    }
    
    .option-card i {
        font-size: 20px;
    }
    
    .services-grid,
    .fleet-grid,
    .destinos-grid {
        grid-template-columns: 1fr;
    }
    
    .why-stats {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Reviews Section */
.reviews-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.reviews-stats {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto 48px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.rating-summary {
    text-align: center;
}

.rating-big {
    font-size: 64px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.rating-summary .rating-stars {
    color: #fbbf24;
    font-size: 24px;
    margin: 12px 0;
}

.rating-summary p {
    font-size: 14px;
    color: var(--gray-600);
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar {
    display: grid;
    grid-template-columns: 90px 1fr 40px;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.rating-bar span:first-child {
    color: var(--gray-600);
}

.rating-bar .bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar .fill {
    height: 100%;
    background: #fbbf24;
    border-radius: 4px;
}

.rating-bar span:last-child {
    text-align: right;
    color: var(--gray-700);
    font-weight: 600;
}

/* Add Review Card */
.add-review-card {
    max-width: 800px;
    margin: 0 auto 48px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.review-form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.review-form-header .user-avatar {
    width: 56px;
    height: 56px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gray-500);
}

.review-form-header .user-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.review-form-header .user-info p {
    font-size: 14px;
    color: var(--gray-600);
}

.star-rating-input {
    margin-bottom: 20px;
}

.star-rating-input p {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.stars-select {
    display: flex;
    gap: 8px;
}

.star-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    font-size: 28px;
    color: #e5e7eb;
    cursor: pointer;
    transition: all 0.2s;
}

.star-btn:hover,
.star-btn.active {
    color: #fbbf24;
    transform: scale(1.1);
}

.review-form .form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
}

.review-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.review-form .form-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* Reviews List */
.reviews-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-item {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.review-date {
    font-size: 13px;
    color: var(--gray-500);
}

.review-rating {
    color: #fbbf24;
    font-size: 16px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.review-actions {
    display: flex;
    gap: 16px;
}

.btn-like {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--gray-100);
    border: none;
    border-radius: 20px;
    font-size: 13px;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-like:hover {
    background: var(--gray-200);
    color: var(--accent);
}

.reviews-load-more {
    text-align: center;
    margin-top: 32px;
}

/* Reviews Responsive */
@media (max-width: 768px) {
    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .rating-big {
        font-size: 48px;
    }
    
    .add-review-card {
        padding: 20px;
    }
    
    .review-form .form-actions {
        flex-direction: column;
    }
    
    .stars-select {
        justify-content: center;
    }
    
    .star-btn {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .review-rating {
        align-self: flex-start;
    }
}

/* ========================================
   MEJORAS RESPONSIVE ADICIONALES
   ======================================== */

/* Tablets pequeñas y móviles grandes (481px - 768px) */
@media (max-width: 768px) {
    .site-header .container {
        height: 60px;
    }
    
    .brand-logo-img {
        height: 36px;
    }
    
    .mobile-menu {
        top: 60px;
    }
    
    /* Hero en tablets: imagen de fondo oscura con contenido encima */
    .hero {
        padding: 90px 0 50px;
        min-height: auto;
        position: relative;
    }
    
    .hero-bg {
        display: block;
    }
    
    .hero-overlay {
        display: block;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(30, 64, 175, 0.75) 100%);
    }
    
    .hero-image-left {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background-image: url('../fondo responsive.jpg');
        background-position: top center;
        background-size: cover;
    }

    .hero-image-left::after {
        display: block;
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(30, 64, 175, 0.5);
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
        color: #ffffff;
        background: rgba(0, 0, 0, 0.5);
    }

    .hero-badge i {
        color: #4ADE80;
    }

    .hero-title {
        font-size: 32px;
        color: #ffffff;
    }

    .hero-description {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.9);
    }

    .hero-buttons .btn {
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .hero-buttons .btn-primary {
        background: linear-gradient(135deg, #4ADE80 0%, #16A34A 100%);
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(74, 222, 128, 0.5);
    }

    .hero-buttons .btn-secondary {
        background: rgba(255, 255, 255, 0.95);
        color: #1a202c;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .hero-buttons .btn-secondary:hover {
        background: #ffffff;
        border-color: #ffffff;
    }

    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .destino-card {
        padding: 16px;
    }
    
    .destino-image {
        height: 140px;
    }
    
    .fleet-card {
        padding: 20px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 16px; /* Previene zoom en iOS */
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-logo-img {
        margin: 0 auto;
    }
}

/* Móviles pequeños (hasta 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Mixed carousel cards smaller in mobile */
    .mixed-card {
        width: 220px;
    }

    .mixed-image {
        height: 220px;
    }

    .mixed-content h3 {
        font-size: 14px;
    }

    .mixed-content p {
        font-size: 12px;
    }

    .mixed-badge {
        font-size: 10px;
        padding: 3px 6px;
    }

    /* Hero como en desktop - imagen de fondo oscura con contenido encima */
    .hero {
        padding: 80px 0 60px;
        min-height: 100vh;
        position: relative;
        overflow: hidden;
    }

    .hero-bg {
        display: none;
    }

    .hero-overlay {
        display: none;
    }

    .hero-image-left {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        background-image: url('../fondo responsive.jpg');
        background-position: top center;
        background-size: cover;
        z-index: 0;
    }

    .hero-image-left::after {
        display: block;
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(30, 64, 175, 0.5);
    }
    
    .hero .container {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    
    .hero-content {
        padding-top: 20px;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
        color: #ffffff;
        background: rgba(0, 0, 0, 0.5);
    }

    .hero-badge i {
        color: #4ADE80;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.2;
        color: #ffffff;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .hero-buttons .btn-primary {
        background: linear-gradient(135deg, #4ADE80 0%, #16A34A 100%);
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(74, 222, 128, 0.5);
    }

    .hero-buttons .btn-secondary {
        background: rgba(255, 255, 255, 0.95);
        color: #1a202c;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .hero-buttons .btn-secondary:hover {
        background: #ffffff;
        border-color: #ffffff;
    }
    
    .hero-feature {
        font-size: 12px;
    }
    
    .hero-feature i {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .search-box-hero {
        flex-direction: column;
        padding: 12px;
        gap: 10px;
    }
    
    .search-box-hero input {
        width: 100%;
        text-align: center;
    }
    
    .btn-search {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .section-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .destinos-section,
    .services-section,
    .fleet-section,
    .why-us,
    .testimonials-section,
    .reviews-section,
    .contact-section {
        padding: 48px 0;
    }
    
    .destino-card {
        padding: 12px;
    }
    
    .destino-image {
        height: 120px;
    }
    
    .destino-info h3 {
        font-size: 16px;
    }
    
    .destino-info p {
        font-size: 13px;
    }
    
    .destino-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .option-card {
        flex-direction: row;
        align-items: center;
        padding: 12px;
        gap: 12px;
    }
    
    .option-card i {
        font-size: 24px;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-image {
        height: 160px;
    }
    
    .why-feature {
        padding: 12px;
    }
    
    .why-feature i {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .why-feature h4 {
        font-size: 14px;
    }
    
    .why-feature p {
        font-size: 13px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .contact-card {
        padding: 16px;
    }
    
    .contact-card i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .contact-card h4 {
        font-size: 14px;
    }
    
    .contact-card p {
        font-size: 13px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 22px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 12px;
    }
    
    .toast {
        max-width: calc(100vw - 32px);
        font-size: 13px;
    }
}

/* Móviles muy pequeños (hasta 360px) */
@media (max-width: 360px) {
    .hero {
        padding: 90px 0 50px;
        min-height: auto;
    }
    
    .hero-bg {
        display: block;
    }
    
    .hero-overlay {
        display: block;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(30, 64, 175, 0.85) 100%);
    }
    
    .hero-image-left {
        height: 100%;
        background-image: url('../fondo responsive.jpg');
        background-position: center center;
    }

    .hero-image-left::after {
        display: block;
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(30, 64, 175, 0.5);
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .hero-form-card {
        padding: 16px;
    }
    
    .form-card-header h3 {
        font-size: 18px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Orientación landscape en móviles */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }
    
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .hero-form-card {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
}

/* iPhone notch y safe areas */
@supports (padding-top: env(safe-area-inset-top)) {
    .site-header {
        padding-top: env(safe-area-inset-top);
    }
    
    .mobile-menu {
        padding-top: calc(env(safe-area-inset-top) + 60px);
    }
}

/* Mejoras para touch en móviles */
@media (hover: none) and (pointer: coarse) {
    .btn:active {
        transform: scale(0.98);
    }
    
    .destino-card:active,
    .service-card:active,
    .fleet-card:active {
        transform: scale(0.98);
    }
    
    .nav-link {
        padding: 12px 16px;
    }
}

/* Prevenir zoom en inputs en iOS */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
input[type="time"],
textarea,
select {
    font-size: 16px;
}

/* Scroll suave en móviles */
@supports (scroll-behavior: smooth) {
    html {
        scroll-behavior: smooth;
    }
}

/* Ocultar scrollbar pero mantener funcionalidad */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Ocultar scrollbar por defecto y mostrar al hover */
.scrollbar-hover {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hover::-webkit-scrollbar {
    display: none;
}

.scrollbar-hover:hover {
    -ms-overflow-style: auto;
    scrollbar-width: auto;
}

.scrollbar-hover:hover::-webkit-scrollbar {
    display: block;
    width: 6px;
    height: 6px;
}

.scrollbar-hover:hover::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 3px;
}

.scrollbar-hover:hover::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

.scrollbar-hover:hover::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Floating Social Icons */
#floating-social-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.3);
    padding: 10px 5px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.floating-social-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-social-icon.facebook {
    width: 45px;
    height: 45px;
}

.floating-social-icon.facebook img {
    width: 40px;
    height: 45px;
    object-fit: contain;
}

.floating-social-icon.instagram {
    width: 45px;
    height: 45px;
}

.floating-social-icon.instagram img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.floating-social-icon.whatsapp {
    width: 45px;
    height: 45px;
}

.floating-social-icon.whatsapp img {
    width: 70px;
    height: 45px;
    object-fit: contain;
}

.floating-social-icon:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    #floating-social-icons {
        left: 20px;
        right: auto;
        bottom: 20px;
        top: auto;
        transform: none;
        flex-direction: row;
        gap: 12px;
        background: rgba(8, 8, 8, 0.3);
        backdrop-filter: blur(10px);
        padding: 10px 5px;
        border-radius: 30px;
    }

    .floating-social-icon.facebook,
    .floating-social-icon.instagram,
    .floating-social-icon.whatsapp {
        width: 35px;
        height: 35px;
    }

    .floating-social-icon.facebook img {
        width: 30px;
        height: 35px;
    }

    .floating-social-icon.instagram img {
        width: 35px;
        height: 35px;
    }

    .floating-social-icon.whatsapp img {
        width: 55px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    #floating-social-icons {
        left: 15px;
        right: auto;
        bottom: 15px;
        top: auto;
        transform: none;
        flex-direction: row;
        gap: 10px;
        background: rgba(8, 8, 8, 0.3);
        backdrop-filter: blur(10px);
        padding: 10px 5px;
        border-radius: 30px;
    }

    .floating-social-icon.facebook,
    .floating-social-icon.instagram,
    .floating-social-icon.whatsapp {
        width: 30px;
        height: 30px;
    }

    .floating-social-icon.facebook img {
        width: 25px;
        height: 30px;
    }

    .floating-social-icon.instagram img {
        width: 30px;
        height: 30px;
    }

    .floating-social-icon.whatsapp img {
        width: 45px;
        height: 30px;
    }
}
