/* ===================================
   BAT - Bilbao Airport Taxi
   Premium CSS Stylesheet
   =================================== */

/* === Variables === */
:root {
    /* Paleta de Colores Premium */
    --gold-primary: #D4AF37;
    --gold-light: #F4E6C3;
    --gold-dark: #B8941E;
    --gold-glow: rgba(212, 175, 55, 0.3);
    
    --black-primary: #0A0A0A;
    --black-secondary: #1A1A1A;
    --black-tertiary: #2A2A2A;
    
    --white-primary: #FFFFFF;
    --white-secondary: #F8F8F8;
    --white-tertiary: #E0E0E0;
    
    --gray-light: #CCCCCC;
    --gray-medium: #888888;
    --gray-dark: #444444;
    
    /* Tipografía */
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 0 20px var(--gold-glow);
    
    /* Z-index */
    --z-background: -1;
    --z-normal: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-modal: 1000;
}

/* === Reset y Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--white-primary);
    background-color: var(--black-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
    width: 100%;
}

/* Prevent horizontal scroll globally */
body * {
    max-width: 100%;
}

/* Allow specific elements to exceed if needed */
.hero-overlay,
body::before {
    max-width: none;
}

/* === MARCA DE AGUA DEL AEROPUERTO (SUTIL) === */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/airport-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.04; /* MUY SUTIL */
    filter: grayscale(100%);
    z-index: var(--z-background);
    pointer-events: none;
}

/* === Navegación === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: var(--z-sticky);
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-md);
    padding: 0.7rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    min-width: 120px;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--gold-glow));
    transition: filter var(--transition-normal);
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px var(--gold-primary));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: 0 0 10px var(--gold-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: calc(var(--z-sticky) + 1);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: nowrap;
    margin-left: auto;
}

.nav-link {
    color: var(--white-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width var(--transition-normal);
}

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

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

.nav-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-primary);
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--gold-glow);
}

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

.language-selector {
    position: relative;
}

.lang-btn {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-primary);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.lang-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
}

.lang-current {
    font-weight: 700;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--black-secondary);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 0.5rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.lang-option {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--white-primary);
    padding: 0.7rem 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    text-align: left;
}

.lang-option:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
}

.lang-option .flag {
    font-size: 1.3rem;
}

.lang-option .flag img {
    width: 1.2em;
    height: 0.9em;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
    display: inline-block;
}

.lang-option.active {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
    font-weight: 600;
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(26, 26, 26, 0.9) 50%, 
        rgba(10, 10, 10, 0.95) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        transparent 0%, 
        rgba(212, 175, 55, 0.05) 50%, 
        transparent 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 30px;
    filter: drop-shadow(0 0 30px var(--gold-glow));
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* === WEATHER WIDGET COMPACT === */
.weather-widget-compact {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.9), rgba(99, 179, 237, 0.9));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    position: relative;
    transition: all 0.3s ease;
}

.weather-compact-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.weather-location {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.weather-location i {
    font-size: 0.8rem;
}

.weather-compact-icon {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.weather-compact-temp {
    font-size: 1.3rem;
    font-weight: 700;
}

.weather-compact-desc {
    font-size: 0.95rem;
    font-weight: 500;
}

.weather-compact-wind {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.95;
}

.weather-compact-wind i {
    font-size: 0.85rem;
}

.weather-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    margin-left: auto;
}

.weather-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.weather-widget-compact.expanded .weather-toggle i {
    transform: rotate(180deg);
}

.weather-compact-forecast {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    margin-top: 0;
}

.weather-widget-compact.expanded .weather-compact-forecast {
    max-height: 300px;
    opacity: 1;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.forecast-item-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.forecast-item-compact:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.forecast-day {
    font-weight: 600;
    min-width: 40px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.forecast-icon {
    font-size: 1.5rem;
    min-width: 35px;
    text-align: center;
}

.forecast-temp {
    font-weight: 600;
    min-width: 70px;
    text-align: center;
}

.forecast-wind {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.9;
    min-width: 50px;
    justify-content: flex-end;
}

.forecast-wind i {
    font-size: 0.75rem;
}

/* Weather widget color variations */
.weather-widget-compact.sunny {
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.9), rgba(255, 154, 86, 0.9));
}

.weather-widget-compact.cloudy {
    background: linear-gradient(135deg, rgba(127, 140, 141, 0.9), rgba(149, 165, 166, 0.9));
}

.weather-widget-compact.rainy {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.9), rgba(84, 110, 122, 0.9));
}

.weather-widget-compact.snowy {
    background: linear-gradient(135deg, rgba(236, 240, 241, 0.95), rgba(189, 195, 199, 0.95));
}

.weather-widget-compact.snowy .weather-compact-main,
.weather-widget-compact.snowy .forecast-item-compact {
    color: #333 !important;
}

.weather-widget-compact.stormy {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9));
}

/* === Flights Panel === */
.flights-panel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    width: 420px;
    height: 200px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.flights-panel-top-left {
    left: 2rem;
    top: 8rem;
}

.flights-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.flights-header-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.flights-header i {
    font-size: 1.3rem;
    color: var(--gold-primary);
}

.flights-header h3 {
    font-size: 1rem;
    color: var(--white-primary);
    margin: 0;
    font-weight: 600;
}

.flights-tabs {
    display: flex;
    gap: 0.4rem;
}

.flights-tab {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gray-light);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.flights-tab:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
}

.flights-tab.active {
    background: var(--gold-primary);
    color: var(--black-primary);
    border-color: var(--gold-primary);
}

.flights-tab i {
    font-size: 0.7rem;
}

.flights-content {
    height: 110px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.flights-content::-webkit-scrollbar {
    width: 6px;
}

.flights-content::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.flights-content::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 10px;
}

.flights-loading {
    text-align: center;
    padding: 1rem;
    color: var(--gray-light);
    font-size: 0.85rem;
}

.flights-loading i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.flight-item {
    background: rgba(42, 42, 42, 0.5);
    border-left: 3px solid var(--gold-primary);
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.flight-item:hover {
    background: rgba(42, 42, 42, 0.8);
    transform: translateX(3px);
}

.flight-item.arrival {
    border-left-color: #4CAF50;
}

.flight-item.departure {
    border-left-color: #2196F3;
}

.flight-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.2rem;
}

.flight-destination {
    font-size: 0.75rem;
    color: var(--white-primary);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.flight-destination i {
    font-size: 0.65rem;
    color: var(--gray-medium);
}

.flight-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
}

.flight-time {
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.flight-time i {
    color: var(--gold-primary);
}

.flight-status {
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.flight-status.on-time {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.flight-status.delayed {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
}

.flight-status.boarding {
    background: rgba(33, 150, 243, 0.2);
    color: #2196F3;
}

.flight-status.departed {
    background: rgba(158, 158, 158, 0.2);
    color: #9E9E9E;
}

/* === Weather Widget (Compact) === */
.weather-widget {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #4A90E2 0%, #63B3ED 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 0.8rem 1.2rem;
    min-width: 200px;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    backdrop-filter: blur(10px);
}

.weather-widget-loading {
    text-align: center;
    color: white;
}

.weather-widget-loading i {
    font-size: 1.5rem;
}

.weather-widget-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
}

.weather-widget-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.weather-widget-info {
    flex: 1;
}

.weather-widget-temp {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.weather-widget-desc {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: capitalize;
}

/* Weather Widget Colors */
.weather-widget.sunny {
    background: linear-gradient(135deg, #FDB813 0%, #FF9A56 100%);
}

.weather-widget.cloudy {
    background: linear-gradient(135deg, #7F8C8D 0%, #95A5A6 100%);
}

.weather-widget.rainy {
    background: linear-gradient(135deg, #34495E 0%, #546E7A 100%);
}

.weather-widget.snowy {
    background: linear-gradient(135deg, #ECF0F1 0%, #BDC3C7 100%);
    color: #2C3E50 !important;
}

.weather-widget.stormy {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
}

/* === Flights Section === */
.flights-section {
    background: var(--black-secondary);
    position: relative;
    overflow: hidden;
}

.flights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.03) 100%);
    pointer-events: none;
}

.section-description {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.flights-tabs-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.flights-tab-btn {
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--gray-light);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-primary);
}

.flights-tab-btn:hover {
    background: rgba(26, 26, 26, 0.9);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--gold-glow);
}

.flights-tab-btn.active {
    background: var(--gold-primary);
    color: var(--black-primary);
    border-color: var(--gold-primary);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.flights-tab-btn i {
    font-size: 1.3rem;
}

.flights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    min-height: 200px;
}

.flights-grid.hidden {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flights-loading-section {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-light);
}

.flights-initial-message {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--gray-light);
}

.flights-initial-message i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.flights-initial-message h3 {
    font-size: 1.3rem;
    color: var(--white-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.flights-initial-message p {
    font-size: 1rem;
    line-height: 1.6;
}

.flights-loading-section i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.flights-loading-section p {
    font-size: 1.1rem;
}

.flight-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.6));
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.flight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gold-primary);
    transition: width var(--transition-normal);
}

.flight-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.flight-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.flight-card.arrival::before {
    background: #4CAF50;
}

.flight-card.departure::before {
    background: #2196F3;
}

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

.flight-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-display);
}

.flight-type-badge {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flight-destination {
    font-size: 1.2rem;
    color: var(--white-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flight-destination i {
    color: var(--gold-primary);
}

.flight-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.flight-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.flight-detail-label {
    font-size: 0.75rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flight-detail-value {
    font-size: 1rem;
    color: var(--white-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.flight-detail-value i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.flight-status {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.flight-status.on-time {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.flight-status.boarding {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.flight-status.delayed {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
}

.flight-status.cancelled {
    background: rgba(158, 158, 158, 0.2);
    color: #9E9E9E;
}

.flights-info {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.flights-info i {
    color: var(--gold-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.flights-info p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Old weather panel styles - keeping for compatibility */
.weather-panel {
    position: absolute;
    background: linear-gradient(135deg, #4A90E2 0%, #63B3ED 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    z-index: 2;
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.4);
    overflow: hidden;
}

.weather-panel-top-right {
    top: 8rem;
    right: 2rem;
    width: 520px;
    height: auto;
    min-height: 200px;
}

.weather-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: weatherRotate 15s linear infinite;
}

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

.weather-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.weather-header i {
    font-size: 1.3rem;
    color: #FFD700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

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

.weather-header h3 {
    font-size: 1rem;
    color: white;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.weather-content {
    position: relative;
    z-index: 1;
}

.weather-forecast-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
}

.forecast-day {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.8rem 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.forecast-day:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.forecast-day-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.forecast-icon {
    font-size: 2.5rem;
    margin: 0.3rem 0;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.forecast-temp {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0.4rem 0;
}

.forecast-desc {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    margin-top: 0.3rem;
}

.weather-loading {
    text-align: center;
    padding: 1rem;
    width: 100%;
}

.weather-loading i {
    font-size: 2rem;
    color: white;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.weather-icon-big {
    font-size: 4rem;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
}

.weather-temp-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.weather-temp {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.weather-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-transform: capitalize;
}

.weather-details {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 130px;
}

.weather-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.weather-detail-item i {
    font-size: 1.1rem;
    color: #FFD700;
    width: 20px;
    text-align: center;
}

.weather-detail-content {
    display: flex;
    flex-direction: column;
}

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

.weather-detail-value {
    font-size: 0.85rem;
    color: white;
    font-weight: 700;
}

/* Weather conditions colors */
.weather-panel.sunny {
    background: linear-gradient(135deg, #FDB813 0%, #FF9A56 100%);
}

.weather-panel.cloudy {
    background: linear-gradient(135deg, #7F8C8D 0%, #95A5A6 100%);
}

.weather-panel.rainy {
    background: linear-gradient(135deg, #34495E 0%, #546E7A 100%);
}

.weather-panel.snowy {
    background: linear-gradient(135deg, #ECF0F1 0%, #BDC3C7 100%);
}

.weather-panel.stormy {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-primary);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--gold-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white-primary);
}

.hero-feature i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.hero-feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down {
    color: var(--gold-primary);
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
    text-decoration: none;
}

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

/* === Section Base === */
.section {
    padding: 6rem 0;
    position: relative;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--gold-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 0 auto 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* === About Section === */
.about-section {
    background: var(--black-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    padding-right: 2rem;
}

.about-heading {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-values {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition-normal);
}

.value-item:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: var(--gold-primary);
    transform: translateX(10px);
}

.value-item i {
    font-size: 2rem;
    color: var(--gold-primary);
    min-width: 40px;
}

.value-item h4 {
    font-size: 1.2rem;
    color: var(--white-primary);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--gray-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.9));
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, var(--gold-glow));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.stat-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--white-primary);
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === Services Section === */
.services-section {
    background: var(--black-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--black-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, var(--gold-glow));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, var(--black-secondary), var(--black-tertiary));
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-primary);
    color: var(--black-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--black-primary);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--gray-light);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-features li i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.service-btn {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

.service-btn:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: translateX(5px);
}

/* === Options Section === */
.options-section {
    background: var(--black-secondary);
}

.options-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.options-group {
    background: rgba(10, 10, 10, 0.5);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.options-heading {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.options-heading i {
    font-size: 2rem;
}

.options-intro {
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.payment-item {
    background: var(--black-secondary);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.payment-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.payment-item i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 0.8rem;
}

.payment-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--white-primary);
    font-weight: 500;
}

.special-needs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.need-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--black-secondary);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all var(--transition-normal);
}

.need-item:hover {
    border-color: var(--gold-primary);
    transform: translateX(10px);
}

.need-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.need-icon i {
    font-size: 1.8rem;
    color: var(--black-primary);
}

.need-content h4 {
    font-size: 1.2rem;
    color: var(--white-primary);
    margin-bottom: 0.5rem;
}

.need-content p {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-bottom: 0.8rem;
}

.need-badge {
    background: var(--gold-primary);
    color: var(--black-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.need-badge.sobrecoste {
    background: #FF9800;
    color: var(--white-primary);
}

.options-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold-primary);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.options-note i {
    color: var(--gold-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.options-note p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* === Calculator Section === */
.calculator-section {
    background: linear-gradient(135deg, var(--black-primary), var(--black-secondary));
    padding: 4rem 0;
}

.calculator-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.8));
    padding: 4rem;
    border-radius: 30px;
    border: 3px solid var(--gold-primary);
    text-align: center;
    box-shadow: 0 0 50px var(--gold-glow);
    position: relative;
    overflow: hidden;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    animation: rotate 10s linear infinite;
}

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

.calculator-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-gold);
    position: relative;
    z-index: 1;
}

.calculator-icon i {
    font-size: 3rem;
    color: var(--black-primary);
}

.calculator-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.calculator-description {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.calculator-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.calc-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white-primary);
}

.calc-feature i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.btn-calculator {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-primary);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px var(--gold-glow);
    position: relative;
    z-index: 1;
}

.btn-calculator:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px var(--gold-glow);
}

/* === Routes Section === */
.routes-section {
    background: var(--black-secondary);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.route-card {
    background: var(--black-primary);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition-normal);
}

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

.route-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.route-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-primary);
    color: var(--black-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.route-badge.popular {
    background: #FF9800;
    color: white;
}

.route-content {
    padding: 2rem;
}

.route-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.route-description {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.route-highlights {
    list-style: none;
    margin-bottom: 1.5rem;
}

.route-highlights li {
    font-size: 0.9rem;
    color: var(--gray-light);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.route-highlights li i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.route-btn {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all var(--transition-normal);
}

.route-btn:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: translateX(5px);
}

.routes-note {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold-primary);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.routes-note i {
    color: var(--gold-primary);
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.routes-note p {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.8;
}

.routes-note strong {
    color: var(--gold-primary);
}

/* ===================================
   VIDEO ROUTES SECTION
   =================================== */

.video-routes-section {
    background: linear-gradient(180deg, var(--black-primary) 0%, var(--black-secondary) 50%, var(--black-primary) 100%);
    position: relative;
    overflow: hidden;
}

.video-routes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.1), transparent);
    pointer-events: none;
}

/* Hero Visual */
.video-routes-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    position: relative;
}

.video-routes-hero-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.video-routes-hero-content p {
    font-size: 1.1rem;
    color: var(--white-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.video-routes-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-primary);
    color: var(--black-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-routes-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 3px solid var(--gold-primary);
}

.stat-item i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.stat-item strong {
    display: block;
    color: var(--white-primary);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.stat-item span {
    display: block;
    color: var(--white-secondary);
    font-size: 0.9rem;
}

.video-routes-hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-routes-hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
    cursor: pointer;
}

.video-routes-hero-image:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 5rem;
    color: var(--gold-primary);
    transition: transform var(--transition-normal);
}

.video-routes-hero-image:hover .play-overlay i {
    transform: scale(1.2);
}

.play-overlay span {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Section Subtitle Alternative */
.section-subtitle-alt {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-subtitle-alt i {
    font-size: 2rem;
}

/* Includes Grid */
.video-routes-includes {
    margin: 5rem 0;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.include-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
}

.include-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.include-card.featured {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.4));
}

.include-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: var(--black-primary);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.include-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.include-icon i {
    font-size: 2.5rem;
    color: var(--black-primary);
}

.include-card h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white-primary);
    margin-bottom: 1.5rem;
}

.include-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.include-card ul li {
    color: var(--white-secondary);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.include-card ul li:last-child {
    border-bottom: none;
}

.include-card ul li i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

/* Process Timeline */
.video-routes-process {
    margin: 5rem 0;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 2px;
    height: calc(100% + 30px);
    background: linear-gradient(180deg, var(--gold-primary), transparent);
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black-primary);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.step-content h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--white-secondary);
    line-height: 1.8;
}

.step-content strong {
    color: var(--gold-primary);
}

/* Video Routes Grid */
.video-routes-examples {
    margin: 5rem 0;
}

.video-routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.video-route-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.video-route-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.video-route-card.featured {
    border-color: var(--gold-primary);
}

.video-route-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: pulse 2s infinite;
}

.video-route-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.video-route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.video-route-card:hover .video-route-image img {
    transform: scale(1.1);
}

.video-route-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.video-route-card:hover .video-route-overlay {
    opacity: 1;
}

.video-route-overlay i {
    font-size: 4rem;
    color: var(--gold-primary);
}

.video-route-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-route-duration i {
    color: var(--gold-primary);
}

.video-route-content {
    padding: 2rem;
}

.video-route-content h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white-primary);
    margin-bottom: 1rem;
}

.video-route-content p {
    color: var(--white-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.video-route-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.video-route-includes span {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--white-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.video-route-includes i {
    color: var(--gold-primary);
}

.video-route-price {
    text-align: center;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 0 0 20px 20px;
    margin: 0 -2rem -2rem;
}

.video-route-price strong {
    font-size: 2rem;
    color: var(--gold-primary);
    font-family: var(--font-display);
}

.price-note {
    display: block;
    font-size: 0.8rem;
    color: var(--white-secondary);
    margin-top: 0.5rem;
}

/* Video Gallery */
.video-routes-gallery {
    margin: 5rem 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.video-item {
    position: relative;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
    background: var(--black-secondary);
    border: 2px solid rgba(212, 175, 55, 0.2);
    text-decoration: none;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-primary);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.video-item:hover .video-play-overlay {
    background: var(--gold-primary);
    transform: translate(-50%, -50%) scale(1.15);
}

.video-play-overlay i {
    font-size: 1.5rem;
    color: var(--black-primary);
    margin-left: 3px;
}

.video-info {
    padding: 1rem;
}

.video-info h5 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--white-primary);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.video-info p {
    font-size: 0.75rem;
    color: var(--gold-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.video-info p i {
    font-size: 0.9rem;
}

/* CTA Final */
.video-routes-cta {
    margin: 5rem 0 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
}

.video-routes-cta h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white-primary);
    margin-bottom: 1.5rem;
}

.video-routes-cta > p {
    font-size: 1.2rem;
    color: var(--white-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.video-routes-cta strong {
    color: var(--gold-primary);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--black-primary);
    border: 2px solid var(--gold-primary);
}

.btn-primary:hover {
    background: var(--gold-secondary);
    border-color: var(--gold-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white-primary);
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.cta-note {
    font-size: 0.9rem;
    color: var(--white-secondary);
    font-style: italic;
}

.cta-note i {
    color: var(--gold-primary);
    margin-right: 0.5rem;
}

/* === News Section === */
.news-section {
    background: var(--black-primary);
}

.news-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--black-secondary);
    color: var(--white-primary);
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-primary);
}

.filter-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gold-primary);
    color: var(--black-primary);
    border-color: var(--gold-primary);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: var(--black-secondary);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition-normal);
}

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

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.news-badge.aeropuerto {
    background: #2196F3;
    color: white;
}

.news-badge.turismo {
    background: #4CAF50;
    color: white;
}

.news-badge.eventos {
    background: #FF9800;
    color: white;
}

.news-content {
    padding: 2rem;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.news-title {
    font-size: 1.3rem;
    color: var(--white-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.news-excerpt {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.news-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.news-link:hover {
    gap: 0.8rem;
}

/* === Gallery Section === */
.gallery-section {
    background: var(--black-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition-normal);
}

.gallery-item:hover {
    border-color: var(--gold-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    color: var(--white-primary);
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.95rem;
    color: var(--gold-primary);
}

/* === Testimonials Section === */
.testimonials-section {
    background: var(--black-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 100%;
}

.testimonial-card {
    background: var(--black-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition-normal);
    position: relative;
}

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

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--black-primary);
}

.author-info h4 {
    font-size: 1rem;
    color: var(--white-primary);
    margin-bottom: 0.3rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.testimonials-footer {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.testimonials-footer p {
    font-size: 0.95rem;
    color: var(--gray-light);
    margin: 0;
}

.testimonials-footer i {
    color: var(--gold-primary);
    margin-right: 0.5rem;
}

.testimonials-footer a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
}

.testimonials-footer a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* === Testimonials Toggle === */
.testimonials-toggle-container {
    text-align: center;
    margin: 2rem 0;
}

.btn-toggle-testimonials {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-primary);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-toggle-testimonials:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
}

.btn-toggle-testimonials:active {
    transform: translateY(0);
}

.btn-toggle-testimonials i {
    font-size: 1.1rem;
    transition: transform var(--transition-normal);
}

.testimonials-visible {
    margin-bottom: 1rem;
}

.testimonials-hidden {
    margin-top: 2rem;
}

/* === Contact Section === */
.contact-section {
    background: var(--black-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: var(--black-primary);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    color: var(--gray-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--gold-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--black-secondary);
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 1rem;
    border-radius: 10px;
    color: var(--white-primary);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: all var(--transition-normal);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px var(--gold-glow);
}

.form-group textarea {
    resize: vertical;
}

.booking-hours-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin: 1.5rem 0 1rem 0;
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.booking-hours-notice i {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.booking-hours-notice strong {
    color: var(--gold-primary);
    font-weight: 600;
}

.booking-hours-notice small {
    display: block;
    margin-top: 0.3rem;
    opacity: 0.85;
    font-size: 0.85rem;
}

.btn-submit {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-primary);
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    margin-top: 1rem;
    align-self: flex-start;
    box-shadow: 0 8px 25px var(--gold-glow);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--gold-glow);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    display: none;
    font-size: 0.95rem;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #F44336;
    color: #F44336;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--black-primary);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--black-primary);
}

.info-content h4 {
    font-size: 1rem;
    color: var(--white-primary);
    margin-bottom: 0.5rem;
}

.info-content a,
.info-content p {
    font-size: 0.95rem;
    color: var(--gray-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.info-content a:hover {
    color: var(--gold-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--black-secondary);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

/* === Footer === */
.footer {
    background: var(--black-primary);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.footer-description {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--black-secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--gray-light);
}

.footer-contact i {
    color: var(--gold-primary);
    margin-top: 0.2rem;
}

.footer-contact a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: var(--gray-medium);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--gold-primary);
}

.footer-legal span {
    color: var(--gray-dark);
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: var(--z-sticky);
    transition: all var(--transition-normal);
    animation: pulse 2s ease-in-out infinite;
}

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

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* === Scroll to Top === */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border: none;
    border-radius: 50%;
    color: var(--black-primary);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: var(--z-sticky);
    box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--gold-glow);
}

/* ===================================
   NEWS MODAL & URGENT NEWS
   =================================== */

/* Sección de noticias urgentes */
.urgent-news-section {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.urgent-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 68, 68, 0.3);
}

.urgent-header i {
    font-size: 1.8rem;
    color: #ff4444;
    animation: pulse 2s infinite;
}

.urgent-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white-primary);
    margin: 0;
}

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

/* Tarjeta de noticia urgente */
.urgent-card {
    border: 2px solid rgba(255, 68, 68, 0.5) !important;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.05), rgba(0, 0, 0, 0.3));
}

.urgent-card:hover {
    border-color: #ff4444 !important;
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.3);
}

.urgent-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4444;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: urgentBlink 2s infinite;
}

@keyframes urgentBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.urgent-badge i {
    animation: rotate 2s linear infinite;
}

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

/* Modal de noticias */
.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.news-modal.active {
    display: flex;
}

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

.news-modal-container {
    position: relative;
    background: var(--black-secondary);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Scrollbar del modal */
.news-modal-container::-webkit-scrollbar {
    width: 10px;
}

.news-modal-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.news-modal-container::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 10px;
}

.news-modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--gold-secondary);
}

.news-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-modal-close:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: rotate(90deg);
}

.news-modal-content {
    padding: 3rem;
}

.news-modal-content h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--white-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-modal-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.news-modal-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white-secondary);
    font-size: 0.9rem;
}

.news-modal-meta i {
    color: var(--gold-primary);
}

.news-modal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.news-modal-body {
    color: var(--white-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.news-modal-body h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold-primary);
    margin: 2rem 0 1rem;
}

.news-modal-body p {
    margin-bottom: 1.5rem;
}

.news-modal-body ul,
.news-modal-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.news-modal-body li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.news-modal-body ul li::marker {
    color: var(--gold-primary);
}

.news-modal-body ol li::marker {
    color: var(--gold-primary);
    font-weight: 700;
}

.news-modal-body strong {
    color: var(--white-primary);
}

.news-modal-body em {
    color: var(--gold-primary);
    font-style: italic;
}

.news-modal-body a {
    color: var(--gold-primary);
    text-decoration: underline;
}

.news-modal-body a:hover {
    color: var(--gold-secondary);
}

/* Botón de leer más mejorado */
.news-link {
    background: none;
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-link:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    border-color: var(--gold-primary);
    transform: translateX(5px);
}

.news-link i {
    transition: transform var(--transition-normal);
}

.news-link:hover i {
    transform: translateX(5px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Navbar adjustment for large screens */
@media (min-width: 993px) and (max-width: 1400px) {
    .nav-container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .nav-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* === Desktop Large - Estadísticas mejoradas y Navbar optimizado === */
@media (min-width: 1200px) {
    /* Navbar optimizado para pantallas grandes */
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Estadísticas */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        position: sticky;
        top: 120px;
    }
    
    .stat-card {
        min-height: 200px;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
}

/* === Navbar compacto para pantallas medianas-grandes === */
@media (min-width: 993px) and (max-width: 1400px) {
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }
    
    .nav-btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .nav-btn i {
        font-size: 0.85rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .lang-current {
        font-size: 0.8rem;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    /* Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1rem;
        transition: right var(--transition-normal);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hide panels on tablets and below */
    .flights-panel,
    .weather-panel {
        display: none;
    }
    
    /* Sections */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .options-content {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Video Routes Responsive */
    .video-routes-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hide old weather panels on mobile */
    .weather-panel-top-right,
    .flights-panel {
        display: none !important;
    }
    
    /* Weather Widget - Responsive Mobile */
    .weather-widget-compact {
        max-width: 95%;
        padding: 0.7rem 1rem;
        margin-bottom: 1rem;
    }
    
    .weather-compact-main {
        gap: 0.6rem;
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
    
    .weather-location {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
        flex-basis: 100%;
        justify-content: center;
        margin-bottom: 0.3rem;
    }
    
    .weather-compact-icon {
        font-size: 1.8rem;
    }
    
    .weather-compact-temp {
        font-size: 1.1rem;
    }
    
    .weather-compact-desc {
        font-size: 0.85rem;
    }
    
    .weather-compact-wind {
        font-size: 0.8rem;
    }
    
    .weather-toggle {
        width: 26px;
        height: 26px;
    }
    
    .forecast-item-compact {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .forecast-day {
        min-width: 35px;
        font-size: 0.8rem;
    }
    
    .forecast-icon {
        font-size: 1.3rem;
        min-width: 30px;
    }
    
    .forecast-temp {
        min-width: 60px;
        font-size: 0.85rem;
    }
    
    .forecast-wind {
        font-size: 0.75rem;
        min-width: 45px;
    }
    
    /* Flights Section - Compact Mobile Layout */
    .flights-tabs-container {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .flights-tab-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .flights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Compact one-line flight card for mobile */
    .flight-card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .flight-header {
        margin-bottom: 0.5rem;
    }
    
    .flight-number {
        font-size: 1.1rem;
    }
    
    .flight-type-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
    
    .flight-destination {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .flight-details {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding-top: 0.5rem;
        border-top: none;
    }
    
    .flight-detail-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .flight-detail-label {
        font-size: 0.7rem;
    }
    
    .flight-detail-value {
        font-size: 0.85rem;
    }
    
    .flight-status {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
        margin-top: 0.3rem;
    }
    
    /* Language Selector - Mobile Responsive */
    .language-selector {
        position: static;
    }
    
    .lang-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    .lang-dropdown {
        position: fixed;
        top: auto;
        right: 1rem;
        left: 1rem;
        bottom: 1rem;
        min-width: auto;
        width: calc(100% - 2rem);
        max-height: 60vh;
        overflow-y: auto;
        z-index: 9999;
    }
    
    .lang-dropdown.active {
        transform: translateY(0);
    }
    
    .lang-option {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
    
    .lang-option .flag {
        font-size: 1.5rem;
    }
    
    .lang-option .flag img {
        width: 1.5em;
        height: 1.1em;
        object-fit: cover;
        border-radius: 2px;
        vertical-align: middle;
        display: inline-block;
    }
    
    /* Typography */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* About Section - Fix text overflow */
    .about-section {
        overflow-x: hidden;
        width: 100%;
    }
    
    .about-content {
        overflow-x: hidden;
        width: 100%;
    }
    
    .about-heading {
        font-size: 1.6rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        white-space: normal;
    }
    
    .about-description {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        white-space: normal;
    }
    
    .about-text {
        padding-right: 0;
        padding-left: 0;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }
    
    .about-text p {
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
    
    .value-item h4 {
        font-size: 1.1rem;
        word-wrap: break-word;
    }
    
    .value-item p {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    /* Hero */
    .hero-logo {
        width: 150px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        gap: 2rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats */
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    /* Payment */
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* News */
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .urgent-news-section {
        padding: 1.5rem;
    }
    
    .urgent-header h3 {
        font-size: 1.3rem;
    }
    
    .news-filters {
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .news-filters::-webkit-scrollbar {
        height: 4px;
    }
    
    .news-filters::-webkit-scrollbar-thumb {
        background: var(--gold-primary);
        border-radius: 4px;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
    
    /* Video Routes Responsive 768px */
    .video-routes-hero {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .video-routes-hero-content h3 {
        font-size: 1.5rem;
    }
    
    .video-routes-hero-image {
        order: -1;
    }
    
    .video-routes-hero-image img {
        height: 300px;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .video-routes-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .video-play-overlay {
        width: 50px;
        height: 50px;
    }
    
    .video-play-overlay i {
        font-size: 1.2rem;
    }
    
    .video-info {
        padding: 0.8rem;
    }
    
    .video-info h5 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .video-info p {
        font-size: 0.7rem;
    }
    
    .video-routes-cta {
        padding: 2rem 1.5rem;
    }
    
    .video-routes-cta h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .news-modal-image {
        height: 250px;
    }
    
    .news-modal-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .news-modal-body h3 {
        font-size: 1.3rem;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Floats */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .scroll-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Mobile Landscape (Horizontal) */
@media (max-width: 768px) and (orientation: landscape) {
    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .video-play-overlay {
        width: 45px;
        height: 45px;
    }
    
    .video-play-overlay i {
        font-size: 1rem;
    }
    
    .video-info h5 {
        font-size: 0.8rem;
    }
    
    .video-info p {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 1.5rem;
        max-width: 100%;
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Contact Section - Mobile Fix */
    .contact-section {
        overflow-x: hidden;
        width: 100%;
    }
    
    .contact-content {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-form {
        width: 100%;
        max-width: 100%;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        padding: 0.8rem;
        font-size: 0.85rem;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    /* Hero */
    .hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-logo {
        width: 120px;
    }
    
    /* About Section - Critical fixes for text overflow */
    .about-section {
        overflow-x: hidden;
        width: 100%;
    }
    
    .about-content {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .about-heading {
        font-size: 1.4rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        white-space: normal;
    }
    
    .about-description {
        font-size: 0.9rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        white-space: normal;
        line-height: 1.6;
    }
    
    .about-text {
        padding: 0 !important;
        margin: 0;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }
    
    .about-text p {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .value-item h4 {
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    .value-item p {
        font-size: 0.85rem;
        word-wrap: break-word;
    }
    
    /* Sections */
    .section {
        padding: 4rem 0;
        overflow-x: hidden;
    }
    
    .section-title {
        font-size: 1.8rem;
        word-wrap: break-word;
    }
    
    /* Calculator */
    .calculator-card {
        padding: 2.5rem 1.5rem;
    }
    
    .calculator-title {
        font-size: 2rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Payment */
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    /* Floats */
    .whatsapp-float,
    .scroll-top {
        width: 50px;
        height: 50px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.text-gold {
    color: var(--gold-primary);
}

.bg-gold {
    background: var(--gold-primary);
}

.hidden {
    display: none !important;
}

/* ===================================
   LOADING & ANIMATIONS
   =================================== */

.loading {
    opacity: 0.5;
    pointer-events: none;
}

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

/* ===================================
   NEWS MODAL
   =================================== */

.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    padding: 2rem;
}

.news-modal.active {
    opacity: 1;
    visibility: visible;
}

.news-modal-content {
    background: var(--black-secondary);
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.news-modal.active .news-modal-content {
    transform: scale(1);
}

.news-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gold-primary);
    color: var(--black-primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
    z-index: 1;
}

.news-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px var(--gold-glow);
}

.news-modal-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white-primary);
    margin-bottom: 1.5rem;
    padding-right: 3rem;
    line-height: 1.3;
}

.news-modal-body {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.news-modal-body p {
    margin-bottom: 1.5rem;
}

.news-modal-body p:last-child {
    margin-bottom: 0;
}

/* Scrollbar for modal */
.news-modal-content::-webkit-scrollbar {
    width: 8px;
}

.news-modal-content::-webkit-scrollbar-track {
    background: var(--black-primary);
    border-radius: 10px;
}

.news-modal-content::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 10px;
}

.news-modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* === CEO Section === */
.ceo-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.ceo-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2.5rem;
    align-items: center;
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--gold-primary);
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.ceo-image {
    position: relative;
}

.ceo-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.ceo-image img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.ceo-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: var(--black-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.ceo-content {
    padding: 1rem 0;
}

.ceo-title {
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.ceo-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white-primary);
    margin-bottom: 1.5rem;
}

.ceo-quote {
    position: relative;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    font-style: italic;
    color: var(--white-secondary);
    line-height: 1.8;
}

.ceo-quote i {
    color: var(--gold-primary);
    font-size: 1.2rem;
    opacity: 0.5;
}

.ceo-quote .fa-quote-left {
    position: absolute;
    top: 10px;
    left: 10px;
}

.ceo-quote .fa-quote-right {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.ceo-quote p {
    margin: 0;
    padding: 0 1rem;
}


@media (max-width: 768px) {
    .news-modal {
        padding: 1rem;
    }
    
    .news-modal-content {
        padding: 2rem 1.5rem;
        max-height: 85vh;
    }
    
    .news-modal-content h2 {
        font-size: 1.5rem;
    }
    
    .news-modal-body {
        font-size: 1rem;
    }
    
    /* CEO Section - Mobile */
    .ceo-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .ceo-image {
        text-align: center;
    }
    
    .ceo-image img {
        max-width: 250px;
    }
    
    .ceo-name {
        font-size: 1.5rem;
    }
    
    .ceo-quote {
        padding: 1rem 1.5rem;
    }
}