/* ===========================================
   GOOD CALL TRAVEL - DISEÑO PREMIUM 2026
   Animaciones avanzadas | UI moderna | UX excepcional
   =========================================== */

/* ===========================
   VARIABLES - SISTEMA DE DISEÑO
   =========================== */
:root {
    /* Colores principales basados en el logo */
    --primary-navy: #1a3a52;
    --primary-light: #2e5d7f;
    --primary-dark: #0d2537;
    --primary-gradient: linear-gradient(135deg, #1a3a52 0%, #2e5d7f 100%);
    --primary-gradient-vibrant: linear-gradient(135deg, #1a3a52 0%, #3d6a8f 50%, #2e5d7f 100%);
    
    /* Blancos y grises */
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #e8f2f7;
    --medium-gray: #cbd5e0;
    --dark-gray: #2d3748;
    --border-color: rgba(26, 58, 82, 0.12);
    
    /* Colores de texto mejorados */
    --text-primary: #1a3a52;
    --text-secondary: #2e5d7f;
    --text-muted: #5a7a92;
    --text-white: #ffffff;
    
    /* Acentos y highlights */
    --accent-gold: #c4a050;
    --accent-success: #10b981;
    --accent-warning: #f59e0b;
    --accent-error: #ef4444;
    
    /* Gradientes adicionales */
    --gradient-shimmer: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    --gradient-overlay: linear-gradient(180deg, transparent 0%, rgba(26,58,82,0.8) 100%);
    
    /* Sombras profesionales */
    --shadow-xs: 0 1px 3px rgba(26, 58, 82, 0.08);
    --shadow-sm: 0 2px 8px rgba(26, 58, 82, 0.1);
    --shadow-md: 0 4px 20px rgba(26, 58, 82, 0.15);
    --shadow-lg: 0 10px 40px rgba(26, 58, 82, 0.2);
    --shadow-xl: 0 20px 60px rgba(26, 58, 82, 0.25);
    --shadow-glow: 0 0 20px rgba(46, 93, 127, 0.3);
    
    /* Tipografía mejorada */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Tamaños de fuente responsivos */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Transiciones suaves */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Bordes */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 50px;
    
    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-overlay: 500;
    --z-tooltip: 600;
}

/* ===========================
   RESET Y BASE
   =========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}

/* Asegurar que elementos con AOS sean visibles por defecto */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

body.loaded {
    opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Container dentro del hero necesita z-index */
.hero > .container {
    position: relative;
    z-index: 10;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ===========================
   LOADING SCREEN MEJORADO
   =========================== */
.loading-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #1a3a52 0%, #2e5d7f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.loaded .loading-screen {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: fadeInScale 0.8s ease-out;
}

.loader-logo img {
    width: 120px;
    height: auto;
    margin: 0 auto 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: white;
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    background: white;
    border-radius: 10px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===========================
   NAVEGACIÓN PREMIUM
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: var(--border-radius-md);
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
}

.logo:hover::before {
    opacity: 0.1;
}

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

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(26, 58, 82, 0.15));
    transition: var(--transition-fast);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 4px 12px rgba(26, 58, 82, 0.25));
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: 0.8px;
    font-family: var(--font-primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.navbar:not(.scrolled) .logo-name {
    -webkit-text-fill-color: white;
    background: none;
}

.navbar:not(.scrolled) .logo-tagline {
    color: rgba(255,255,255,0.8);
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.5rem 0;
}
.navbar.scrolled .nav-link {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-base);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active-link {
    color: var(--primary-light);
}

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

.btn-primary,
.btn-nav {
    background: var(--primary-gradient);
    color: white !important;
    padding: 0.75rem 1.8rem;
    border-radius: var(--border-radius-full);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.btn-nav:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover,
.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active,
.btn-nav:active {
    transform: translateY(0);
}

/* ===========================
   DROPDOWN MENUS
   =========================== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 24px rgba(26, 58, 82, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 0.5rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--primary-light);
    padding-left: 1.5rem;
}

.dropdown-item::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dropdown-item:hover::before {
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-xs);
    cursor: pointer;
    z-index: 10;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 3px;
    transition: var(--transition-base);
}

.mobile-menu-btn:hover span {
    background: var(--primary-light);
}

/* ===========================
   HERO SECTION - ANIMACIONES PREMIUM
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d2537;
    overflow: hidden;
    padding-top: 80px;
}

/* Imagen de fondo con parallax */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: parallaxZoom 20s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes parallaxZoom {
    0% { 
        transform: scale(1);
    }
    100% { 
        transform: scale(1.1);
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(26, 58, 82, 0.85) 0%, rgba(13, 37, 55, 0.75) 100%),
        radial-gradient(circle at 20% 30%, rgba(46, 93, 127, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 58, 82, 0.2) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(13, 37, 55, 0.2) 50%, rgba(13, 37, 55, 0.6) 100%);
    pointer-events: none;
}

/* Formas flotantes animadas - Efecto de profundidad */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 25s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    top: -15%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation-delay: -8s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(196, 160, 80, 0.1) 0%, transparent 70%);
    top: 40%;
    left: 60%;
    animation-delay: -12s;
}

.shape-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    top: 15%;
    right: 15%;
    animation-delay: -18s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(40px, -40px) scale(1.15) rotate(90deg);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.85) rotate(180deg);
    }
    75% {
        transform: translate(50px, 20px) scale(1.05) rotate(270deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: var(--spacing-2xl) 0;
}

/* Badge animado */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary-navy);
    border: 1px solid var(--border-color);
    animation: slideDown 0.8s ease-out, pulse 3s ease-in-out 1s infinite;
}

.hero-badge svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.hero-title {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.hero-subtitle-text {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-main-text {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0.5rem 0;
}

.text-gradient {
    color: #ff7a7a;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 15px rgba(255, 122, 122, 0.5);
}

.text-gradient::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--gradient-shimmer);
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.hero-accent-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: var(--text-base);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

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

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

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.btn-hero-secondary {
    background: white;
    color: var(--primary-navy);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
}

.btn-hero-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.btn-hero-primary svg,
.btn-hero-secondary svg {
    transition: transform 0.3s;
}

.btn-hero-primary:hover svg,
.btn-hero-secondary:hover svg {
    transform: translateX(5px);
}

/* Buscador Hero Mejorado */
.hero-search-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: var(--spacing-xl);
    transition: var(--transition-base);
}

.hero-search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3), 0 6px 24px rgba(0, 0, 0, 0.15);
}

.hero-search {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    align-items: end;
}

.search-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-label svg {
    width: 20px;
    height: 20px;
    color: var(--primary-light);
}

.search-input,
select.search-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: var(--text-base);
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    background: white;
    color: var(--text-primary);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(46, 93, 127, 0.1);
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: var(--text-base);
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

/* Stats Mini Hero */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-display);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    display: none !important; /* Completamente oculto */
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-navy);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-navy);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.scroll-indicator p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* ===========================
   TRUST BADGES SECTION
   =========================== */
.trust-badges {
    padding: var(--spacing-2xl) 0;
    background: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.badges-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--off-white);
    border-radius: var(--border-radius-md);
    transition: var(--transition-base);
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: white;
}

.badge-item svg {
    width: 40px;
    height: 40px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.badge-item strong {
    display: block;
    color: var(--primary-navy);
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.badge-item p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin: 0;
}

/* ===========================
   SECCIONES GENERALES
   =========================== */
.destinations,
.services,
.about,
.testimonials,
.hiring,
.contact {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.destinations {
    background: transparent;
    padding: 0 !important;
}

.services {
    background: white;
}

.about {
    background: var(--light-gray);
}

.testimonials {
    background: white;
}

.hiring {
    background: var(--off-white);
}

.contact {
    background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary-light);
    background: transparent;
    padding: 0;
    margin-bottom: 1.2rem;
}
.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 35px;
    height: 1px;
    background: currentColor;
    opacity: 0.4;
}
.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 35px;
    height: 1px;
    background: currentColor;
    opacity: 0.4;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
    position: relative;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 400;
}

.section-description {
    font-size: var(--text-lg);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}
/* ===========================
   SERVICIOS - NUEVO LAYOUT
   =========================== */
.services { padding: 2rem 0 5rem; background: #f7f9fc; }

.services-row-h {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 22px;
}

.services-row-v {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* --- Card Horizontal --- */
.svc-h {
    display: flex;
    border-radius: 20px;
    background: white;
    overflow: hidden;
    border: 1px solid rgba(26,58,82,0.07);
    transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
    cursor: pointer;
    min-height: 230px;
}
.svc-h:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(26,58,82,0.2);
    border-color: transparent;
}
.svc-h-img {
    width: 42%; flex-shrink: 0;
    overflow: hidden; position: relative;
}
.svc-h-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.svc-h:hover .svc-h-img img { transform: scale(1.08); }
.svc-h-gold {
    width: 3px; flex-shrink: 0;
    background: linear-gradient(180deg, #c4a050, #f0d080, #c4a050);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.svc-h:hover .svc-h-gold { transform: scaleY(1); }
.svc-h-body {
    padding: 28px 26px;
    display: flex; flex-direction: column;
    justify-content: center; gap: 10px; flex: 1;
}

/* --- Card Vertical --- */
.svc-v {
    border-radius: 20px;
    background: white;
    overflow: hidden;
    border: 1px solid rgba(26,58,82,0.07);
    transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
    cursor: pointer;
}
.svc-v:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(26,58,82,0.2);
    border-color: transparent;
}
.svc-v-img {
    height: 165px; overflow: hidden; position: relative;
}
.svc-v-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.svc-v:hover .svc-v-img img { transform: scale(1.08); }
.svc-v-gold {
    height: 3px;
    background: linear-gradient(90deg, #c4a050, #f0d080, #c4a050);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.svc-v:hover .svc-v-gold { transform: scaleX(1); }
.svc-v-body { padding: 20px 20px 22px; }

/* --- Elementos compartidos --- */
.svc-tag {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.62rem; font-weight: 800; letter-spacing: 1.5px;
    text-transform: uppercase; color: #2e5d7f;
    background: rgba(46,93,127,0.08);
    padding: 4px 10px; border-radius: 50px;
    width: fit-content; margin-bottom: 6px;
}
.svc-h-body h3, .svc-v-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; color: #1a3a52;
    font-weight: 700; line-height: 1.3;
    transition: color 0.3s;
}
.svc-v-body h3 { font-size: 1rem; }
.svc-h-body p, .svc-v-body p {
    font-size: 0.82rem; color: #5a7a92; line-height: 1.75;
}
.svc-v-body p { margin-bottom: 14px; }
.svc-features {
    list-style: none; display: flex;
    flex-direction: column; gap: 6px;
    border-top: 1px solid rgba(26,58,82,0.07);
    padding-top: 12px;
}
.svc-features li {
    font-size: 0.77rem; color: #2e5d7f;
    display: flex; align-items: center; gap: 8px;
}
.svc-features li::before {
    content: '✓';
    width: 17px; height: 17px;
    background: linear-gradient(135deg, #1a3a52, #2e5d7f);
    color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.55rem; font-weight: 900; flex-shrink: 0;
}
.svc-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 800; color: #1a3a52;
    text-transform: uppercase; letter-spacing: 1px;
    padding: 9px 18px; border: 2px solid rgba(26,58,82,0.2);
    border-radius: 50px; transition: all 0.3s ease;
    width: fit-content; text-decoration: none; margin-top: 10px;
}
.svc-h:hover .svc-cta, .svc-v:hover .svc-cta {
    background: #1a3a52; color: white; border-color: #1a3a52;
}

/* Responsive */
@media (max-width: 900px) {
    .services-row-h { grid-template-columns: 1fr; }
    .services-row-v { grid-template-columns: repeat(2, 1fr); }
    .svc-h { flex-direction: column; min-height: auto; }
    .svc-h-img { width: 100%; height: 200px; }
    .svc-h-gold { width: 100%; height: 3px; }
}
@media (max-width: 600px) {
    .services-row-v { grid-template-columns: 1fr; }
}
/* ===========================
   DESTINOS - SLIDER MAGAZINE
   =========================== */
.destinations { 
    padding: 0 0 0; 
    background: #f7f9fc;
}

/* ===== DEST HEADER - FONDO OSCURO LUJO ===== */
.dest-header {
    background: #ffffff !important;
    position: relative;
    overflow: hidden;
    padding: 3rem 2rem 2.5rem !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 0;
}

/* Efecto decorativo de fondo */
.dest-header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,93,127,0.35) 0%, transparent 70%);
    pointer-events: none;
}

.dest-header::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,95,0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Label encima del título */
.dest-header .section-label {
    color: var(--primary-light) !important;
    letter-spacing: 6px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.dest-header .section-label::before,
.dest-header .section-label::after {
    background: rgba(212,175,95,0.5);
    opacity: 1;
}

/* Título principal */
.dest-header-left .section-title {
   font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
    line-height: 1.05;
    margin-bottom: 0;
    color: var(--primary-navy) !important;
    text-shadow: none;
}

/* "Inspiran" en degradado dorado */
.dest-header-left .section-title .text-gradient {
    background: linear-gradient(135deg, #d4af5f 0%, #f0d080 50%, #c9963e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Texto descripción */
.dest-header-right p {
    color: var(--text-muted) !important;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Línea separadora elegante */
.dest-header-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #d4af5f, transparent);
    margin: 1rem auto;
    position: relative;
    z-index: 1;
}

/* CTA link */
.dest-header-cta {
   color: var(--primary-navy) !important;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-bottom: 2px solid var(--primary-navy) !important;
}

.dest-header-cta:hover {
    color: #f0d080 !important;
    border-color: #f0d080 !important;
}

/* Transición suave hacia las cards */
.mag-slider-wrap {
    margin-top: 0 !important;
}

/* Mobile */
@media (max-width: 768px) {
    .dest-header {
        padding: 3.5rem 1.25rem 3rem !important;
    }
}
.mag-slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
}

.mag-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.destination-card {
    min-width: 70%;
    max-width: 70%;
    height: 420px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    flex-shrink: 0;
    cursor: pointer;
    margin-right: 2px;
    background: #1a3a52;
}

.destination-card:first-child { margin-left: 3%; }
.destination-card { border-radius: 12px; margin-right: 16px; }

.destination-image {
    position: absolute;
    inset: 0;
    height: 100%;
}

.destination-image .dest-img,
.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destination-card:hover .dest-img,
.destination-card:hover .destination-image img {
    transform: scale(1.06);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 25, 40, 0.88) 0%,
        rgba(10, 25, 40, 0.55) 40%,
        rgba(10, 25, 40, 0.05) 70%,
        transparent 100%
    );
    z-index: 1;
}


.destination-badge {
    position: absolute;
    top: 2rem;
    left: 3.5rem;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}

.destination-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.destination-content h3 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.destination-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 1.5rem;
}

.destination-features { display: none; }

.destination-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 4px;
    width: fit-content;
    transition: all 0.3s ease;
}

.destination-link:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    gap: 14px;
}

.destination-link svg { transition: transform 0.3s; }
.destination-link:hover svg { transform: translateX(4px); }

/* Controles del slider */
.mag-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 1.5rem 0 2rem;
    background: var(--off-white);
}

.mag-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-color);
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.mag-btn:hover {
    background: var(--primary-navy);
    color: white;
    border-color: var(--primary-navy);
    transform: scale(1.08);
}

.mag-dots { display: flex; gap: 8px; align-items: center; }

.mag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26,58,82,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.mag-dot.active {
    background: var(--primary-navy);
    width: 28px;
    border-radius: 4px;
}

.view-all-section {
    text-align: center;
    margin-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-3xl);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: var(--text-lg);
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-all:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-view-all svg { transition: transform 0.3s; }
.btn-view-all:hover svg { transform: translateX(5px); }

@media (max-width: 768px) {
    .destination-card { 
        min-width: 90%; 
        max-width: 90%; 
        height: 420px; 
    }
    .destination-card:first-child { margin-left: 2%; }
    .destination-content { padding: 2rem; }
    .destination-badge { left: 2rem; top: 1.5rem; }
    .destination-content h3 { font-size: 1.8rem; }
}

/* ===========================
   SERVICIOS - GRID MODERNO
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.service-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-card.featured-service {
    background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
    border: 2px solid var(--primary-light);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gold);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-card:hover .service-icon::before {
    width: 120px;
    height: 120px;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--primary-navy);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.service-card p {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    font-size: var(--text-sm);
    color: var(--text-primary);
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-weight: 700;
    font-size: var(--text-base);
    transition: var(--transition-fast);
    margin-top: auto;
}

.service-link:hover {
    color: var(--primary-navy);
    gap: 1rem;
}

.service-link svg {
    transition: transform 0.3s;
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* ===========================
   SOBRE NOSOTROS
   =========================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    height: 600px;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26,58,82,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-xl);
}

.about-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-lg);
}

.about-badge svg {
    width: 40px;
    height: 40px;
    color: var(--accent-gold);
}

.about-badge strong {
    display: block;
    font-size: var(--text-2xl);
    color: var(--primary-navy);
    font-family: var(--font-display);
}

.about-badge span {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: var(--text-5xl);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--primary-navy);
    font-family: var(--font-display);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.value-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent-success);
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item strong {
    display: block;
    font-size: var(--text-lg);
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.value-item p {
    color: var(--text-muted);
    font-size: var(--text-base);
    margin: 0;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: var(--text-base);
    transition: var(--transition-base);
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-about:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-about svg {
    transition: transform 0.3s;
}

.btn-about:hover svg {
    transform: translateX(5px);
}

/* ===========================
   TESTIMONIOS
   =========================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    position: relative;
    border: 1px solid var(--border-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    font-family: var(--font-display);
    color: rgba(46, 93, 127, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card.featured-testimonial {
    background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
    border: 2px solid var(--primary-light);
}

.testimonial-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gold);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
}

.testimonial-text {
    font-size: var(--text-lg);
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
}

.testimonial-author strong {
    display: block;
    font-size: var(--text-lg);
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.testimonial-destination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-size: var(--text-sm);
    font-weight: 600;
}

.testimonial-destination svg {
    width: 16px;
    height: 16px;
}

/* ===========================
   HIRING SECTION
   =========================== */
.hiring-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-xl);
}

.hiring-info h3 {
    font-size: var(--text-2xl);
    color: var(--primary-navy);
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-display);
}

.hiring-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.hiring-benefits li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    font-size: var(--text-lg);
    color: var(--text-primary);
    line-height: 1.6;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.hiring-benefits li:hover {
    background: rgba(46, 93, 127, 0.05);
    transform: translateX(5px);
}

.hiring-benefits svg {
    width: 24px;
    height: 24px;
    color: var(--accent-success);
    flex-shrink: 0;
    margin-top: 2px;
}

.hiring-positions {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.hiring-positions h4 {
    font-size: var(--text-lg);
    color: var(--primary-navy);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.position-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.position-badge {
    padding: 0.5rem 1rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--border-radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    transition: var(--transition-fast);
}

.position-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hiring-form-wrapper {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.hiring-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: var(--text-base);
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    background: white;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(46, 93, 127, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    font-weight: 600;
    color: var(--primary-navy);
    border: 2px dashed var(--border-color);
}

.file-upload-label:hover {
    background: var(--medium-gray);
    border-color: var(--primary-light);
}

.file-upload-label svg {
    width: 20px;
    height: 20px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: var(--text-lg);
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

/* ===========================
   CONTACTO
   =========================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-card h4 {
    font-size: var(--text-lg);
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-card p {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.contact-card a {
    color: var(--primary-light);
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--primary-gradient);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-about {
    padding-right: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-name {
    font-size: var(--text-xl);
    font-weight: 800;
    color: white;
    font-family: var(--font-primary);
    letter-spacing: 0.8px;
}

.footer-logo-tagline {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: var(--text-base);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-md);
    color: white;
    font-weight: 800;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: var(--text-base);
    font-weight: 500;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-legal-text {
    font-size: var(--text-xs);
    opacity: 0.8;
}

/* ===========================
   BACK TO TOP & ADMIN PANEL
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: var(--z-sticky);
}

.back-to-top.visible {
    opacity: 0.8;
    visibility: visible;
}

.back-to-top:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

.admin-toggle {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a3a52 0%, #2e5d7f 100%);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(26, 58, 82, 0.3);
    transition: var(--transition-base);
    z-index: var(--z-sticky);
    opacity: 0.75;
}

.admin-toggle:hover {
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(26, 58, 82, 0.4);
}

.admin-toggle svg {
    width: 24px;
    height: 24px;
}

.admin-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: var(--z-modal);
    overflow-y: auto;
}

.admin-panel.active {
    right: 0;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    background: var(--primary-gradient);
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.admin-header h3 {
    font-size: var(--text-xl);
    color: white;
    margin: 0;
}

.admin-close {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: var(--text-2xl);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.admin-content {
    padding: var(--spacing-lg);
}

.admin-info {
    background: var(--light-gray);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-lg);
    font-size: var(--text-sm);
    line-height: 1.6;
    border-left: 4px solid var(--primary-light);
}

.admin-destination {
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-md);
}

.admin-destination h4 {
    font-size: var(--text-lg);
    color: var(--primary-navy);
    margin-bottom: var(--spacing-sm);
}

.admin-price-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: var(--text-base);
    font-family: var(--font-primary);
    transition: var(--transition-fast);
}

.admin-price-input:focus {
    outline: none;
    border-color: var(--primary-light);
}

.admin-save {
    width: 100%;
    padding: 1rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: var(--text-base);
    cursor: pointer;
    transition: var(--transition-base);
    margin-top: var(--spacing-md);
}

.admin-save:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===========================
   ANIMACIONES AOS
   =========================== */
[data-aos] {
    opacity: 1;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1200px) {
    .about-content,
    .hiring-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xs: 0.4rem;
        --spacing-sm: 0.8rem;
        --spacing-md: 1.2rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
        --spacing-3xl: 4rem;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--spacing-xl);
        gap: var(--spacing-md);
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        animation: slideDown 0.3s ease;
    }
    
    /* Dropdowns en móvil */
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        margin-top: 0.5rem;
        box-shadow: none;
        border-left: 3px solid var(--primary-light);
        background: var(--light-gray);
    }
    
    .dropdown-item {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .hero-search {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: var(--spacing-md);
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .badges-slider {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .admin-panel {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-main-text {
        font-size: 2.5rem;
    }
    


/* ===========================
   UTILIDADES Y ACCESIBILIDAD
   =========================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .btn-primary,
    .btn-hero-primary,
    .btn-submit {
        border: 2px solid var(--primary-dark);
    }
}

::selection {
    background: var(--primary-light);
    color: white;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-navy);
}
/* ============================================ */
/* MODAL DE COTIZACIÓN - ESTILO PROFESIONAL */
/* Basado en estructura clara de precios */
/* ============================================ */

.quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.quote-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.quote-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.quote-content {
    position: relative;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    border-radius: 24px;
    padding: 40px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Botón cerrar */
.quote-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
}

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

/* Loading */
.loading-spinner {
    text-align: center;
    padding: 60px 20px;
    color: white;
}

.loading-spinner h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.loading-spinner p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    margin: 0 auto 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.quote-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.header-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.3));
}

.quote-header h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.quote-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Detalles del viaje */
.quote-details {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-row:last-child {
    border-bottom: none;
}

.quote-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.quote-value {
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: right;
}

/* Información del vuelo */
.flight-info-box {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.flight-info-box h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.flight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.flight-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.flight-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flight-value {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

/* Desglose de precios */
.price-breakdown {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-breakdown h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-item:last-of-type {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
}

.price-label {
    flex: 1;
}

.price-value {
    font-weight: 600;
    color: white;
    font-size: 1.05rem;
}

/* Descuentos destacados */
.price-item.highlight-green .price-value {
    color: #4ade80;
    font-weight: 700;
}

.price-item.highlight-red .price-value {
    color: #ff6b6b;
    font-weight: 700;
}

/* Precio total */
.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.total-label {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.total-sublabel {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 2px;
}

.total-amount {
    color: #FFD700;
    font-size: 2.25rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Nota de precio */
.price-note {
    background: rgba(59, 130, 246, 0.15);
    border-radius: 10px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.price-note strong {
    color: white;
}

.price-note span {
    font-weight: 700;
    color: #93c5fd;
    font-size: 1.1rem;
}

/* Incluye */
.includes-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.includes-box h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.includes-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-box li {
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    font-size: 0.95rem;
}

/* Botones */
.quote-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.quote-btn {
    padding: 16px 28px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quote-btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1e3a5f;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.quote-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 215, 0, 0.4);
}

.quote-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.quote-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Scrollbar personalizado */
.quote-content::-webkit-scrollbar {
    width: 10px;
}

.quote-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.quote-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.quote-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .quote-content {
        padding: 30px 20px;
        max-width: 95%;
    }

    .quote-header h2 {
        font-size: 1.5rem;
    }

    .header-icon {
        font-size: 2.5rem;
    }

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

    .total-amount {
        font-size: 1.75rem;
    }

    .quote-actions {
        grid-template-columns: 1fr;
    }

    .price-note {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .quote-content {
        padding: 24px 16px;
    }

    .quote-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .quote-value {
        text-align: left;
    }
}



/* ============================================
   MODERNIZACIÓN PREMIUM - MINIMALISTA COOL
   ============================================ */

/* Partículas hero sutiles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.hero-particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(40px); opacity: 0; }
}

/* Cards destinos - hover glassmorphism */


.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.section-header.in-view .section-title::after { width: 60%; }

/* Número contador animado */
.hero-stat-number {
    transition: transform 0.3s ease;
}
.hero-stat-item:hover .hero-stat-number {
    transform: scale(1.1);
}

/* Botón buscar - efecto shimmer */
.btn-buscar {
    position: relative;
    overflow: hidden;
}
.btn-buscar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmerBtn 2.5s ease-in-out infinite;
}
@keyframes shimmerBtn {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Inputs - borde animado al focus */
.input-with-icon input:focus,
.input-field select:focus,
.input-field input:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255,255,255,0.15), 0 0 0 2px rgba(255,255,255,0.3) !important;
}

/* Trust badges - hover lift */
.badge-item {
    position: relative;
    overflow: hidden;
}
.badge-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--primary-gradient);
    border-radius: 2px 0 0 2px;
    transition: height 0.4s ease;
}
.badge-item:hover::before { height: 100%; }

/* Service cards - borde top animado */
.service-card {
    position: relative;
}

/* Cursor minimalista */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-navy);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
    background: white;
}
.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(26,58,82,0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: all 0.15s ease;
}
.cursor-ring.hovering {
    transform: scale(1.5);
    border-color: var(--primary-navy);
    background: rgba(26,58,82,0.05);
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-navy), var(--accent-gold));
    z-index: 9999;
    transition: width 0.1s linear;
}
}
