/* ===========================================
   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;
    }
}

/* ===========================
   NAVEGACIÓN PREMIUM
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    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;
}

.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(--text-primary);
    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;
}

.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: var(--off-white);
}

.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: var(--spacing-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding: 0.5rem 1.5rem;
    background: rgba(46, 93, 127, 0.1);
    border-radius: var(--border-radius-full);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-description {
    font-size: var(--text-lg);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}
/* ===========================
   DESTINOS - CARDS PREMIUM
   =========================== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-2xl);
}

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

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

/* Featured card deshabilitado - todas las tarjetas son del mismo tamaño
.destination-card.featured {
    grid-column: span 2;
}

.destination-card.featured .destination-image {
    height: 400px;
}
*/

.destination-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

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

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

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(0,0,0,0.4) 100%);
    opacity: 0.7;
    transition: var(--transition-base);
}

.destination-card:hover .image-overlay {
    opacity: 0.8;
}

.destination-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    animation: pulse 2s ease-in-out infinite;
}

.destination-content {
    padding: 1.75rem 1.5rem 1.5rem;
}

.destination-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.destination-tag {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light);
    background: rgba(46, 93, 127, 0.08);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
}

.destination-price {
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--primary-navy);
    font-family: var(--font-display);
}

.destination-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.destination-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

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

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

.destination-features li::before {
    content: '✓';
    color: var(--accent-success);
    font-weight: 700;
    font-size: var(--text-lg);
}

.destination-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);
    padding: 0.75rem 1.5rem;
    background: rgba(46, 93, 127, 0.1);
    border-radius: var(--border-radius-md);
    width: 100%;
    justify-content: center;
}

.destination-link:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateX(5px);
}

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

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

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

.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);
}

/* ===========================
   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: 0;
    transition-property: opacity, transform;
}

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

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1200px) {
    .destination-card.featured {
        grid-column: span 1;
    }
    
    .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;
    }
    
    .destination-image {
        height: 250px;
    }
}

/* ===========================
   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);
}
