/* ===========================
   Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d9ff;
    --secondary-color: #0099ff;
    --accent-color: #6366f1;
    --dark-color: #0a0e27;
    --darker-color: #050816;
    --light-gray: #1a1f3a;
    --medium-gray: #2d3250;
    --text-dark: #0a0e27;
    --text-light: #ffffff;
    --text-gray: #b0b8d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --glow-cyan: rgba(0, 217, 255, 0.5);
    --glow-purple: rgba(99, 102, 241, 0.5);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
}

html {
    scroll-behavior: smooth;
}

/* ===========================
   Alert Bar
   =========================== */
.alert-bar {
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px var(--glow-purple);
}

.alert-bar a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.alert-bar a:hover {
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--primary-color);
}

.language-selector {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--text-light);
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.language-selector:hover {
    background-color: var(--primary-color);
    box-shadow: 0 0 15px var(--glow-cyan);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 217, 255, 0.2);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-brand i {
    color: var(--primary-color);
    font-size: 28px;
}

.logo-img {
    height: 150px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 5px 0;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--glow-cyan);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px var(--glow-cyan);
}

.btn-search {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--glow-cyan);
    font-weight: 600;
}

.btn-search:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 5px 30px var(--glow-cyan);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-item {
    height: 600px;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(99, 102, 241, 0.4) 100%);
}

.hero-slide-1 {
    background-image: linear-gradient(135deg, rgba(29, 29, 29, 0.8), rgba(255, 200, 68, 0.3)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231d1d1d" width="1200" height="600"/><path fill="%23ffc844" opacity="0.1" d="M0 300L100 250L200 350L300 300L400 400L500 350L600 450L700 400L800 500L900 450L1000 550L1100 500L1200 600V600H0Z"/></svg>');
}

.hero-slide-2 {
    background-image: linear-gradient(135deg, rgba(29, 29, 29, 0.8), rgba(255, 200, 68, 0.3)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232d2d2d" width="1200" height="600"/><circle fill="%23ffc844" opacity="0.1" cx="200" cy="200" r="150"/><circle fill="%23ffd04f" opacity="0.1" cx="800" cy="400" r="200"/></svg>');
}

.hero-slide-3 {
    background-image: linear-gradient(135deg, rgba(29, 29, 29, 0.8), rgba(255, 200, 68, 0.3)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a1a1a" width="1200" height="600"/><path fill="%23ffc844" opacity="0.1" d="M0 0L400 200L800 100L1200 300V0Z"/><path fill="%23ffd04f" opacity="0.1" d="M0 600L400 400L800 500L1200 300V600Z"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    animation: fadeInUp 1s ease;
}

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

.hero-content h1 {
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--glow-cyan), 0 0 40px var(--glow-purple);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: 3px;
}

.hero-content .lead {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: 2px solid var(--primary-color);
    color: var(--text-light);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px var(--glow-cyan);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--glow-cyan), 0 0 60px var(--glow-purple);
    color: var(--text-light);
    border-color: var(--accent-color);
}

/* ===========================
   Weather Section
   =========================== */
.weather-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--light-gray) 100%);
    padding: 40px 0;
}

.weather-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(45, 50, 80, 0.8));
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
    border: 1px solid rgba(0, 217, 255, 0.2);
    backdrop-filter: blur(10px);
}

.weather-icon {
    font-size: 80px;
    color: var(--primary-color);
}

.weather-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.weather-temp {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

.weather-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.weather-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.weather-details i {
    color: var(--primary-color);
    font-size: 20px;
}

/* ===========================
   Ad Banner Section
   =========================== */
.ad-banner-container {
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
    padding: 30px 0;
}

.ad-banner {
    position: relative;
    width: 100%;
    max-height: 180px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 217, 255, 0.2);
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.ad-banner-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    filter: brightness(0.6);
}

.ad-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 14, 39, 0.4);
    backdrop-filter: blur(2px);
}

.ad-banner-content {
    text-align: center;
}

.ad-banner-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--text-light);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow:
        0 0 20px var(--glow-cyan),
        0 0 40px var(--glow-purple),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0 0 8px 0;
    padding: 0 20px;
    animation: pulse 3s ease-in-out infinite;
}

.ad-banner-contact {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    letter-spacing: 1px;
    text-shadow:
        0 0 15px var(--glow-cyan),
        1px 1px 3px rgba(0, 0, 0, 0.8);
    margin: 0;
    padding: 0 20px;
}

/* Responsive ad banner */
@media (max-width: 992px) {
    .ad-banner {
        max-height: 150px;
    }

    .ad-banner-image {
        height: 150px;
    }

    .ad-banner-text {
        font-size: 26px;
        letter-spacing: 2px;
        margin: 0 0 6px 0;
    }

    .ad-banner-contact {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .ad-banner-container {
        padding: 20px 0;
    }

    .ad-banner {
        max-height: 120px;
    }

    .ad-banner-image {
        height: 120px;
    }

    .ad-banner-text {
        font-size: 20px;
        letter-spacing: 1.5px;
        margin: 0 0 4px 0;
    }

    .ad-banner-contact {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .ad-banner {
        max-height: 100px;
    }

    .ad-banner-image {
        height: 100px;
    }

    .ad-banner-text {
        font-size: 14px;
        letter-spacing: 1px;
        margin: 0 0 3px 0;
    }

    .ad-banner-contact {
        font-size: 11px;
    }
}

/* ===========================
   Rent a Car Banner Styles
   =========================== */
.rentacar-banner .rentacar-image {
    filter: brightness(0.65);
}

.rentacar-banner-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.7),
        4px 4px 8px rgba(0, 0, 0, 0.6);
    margin: 0 0 15px 0;
    padding: 0 20px;
    line-height: 1.2;
}

.rentacar-banner-subtitle {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    letter-spacing: 1px;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(0, 0, 0, 0.7);
    margin: 0 0 8px 0;
    padding: 0 20px;
}

.rentacar-banner-contact {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    letter-spacing: 1px;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(0, 0, 0, 0.7),
        0 0 25px var(--glow-cyan);
    margin: 0;
    padding: 0 20px;
}

/* Responsive Rent a Car Banner */
@media (max-width: 992px) {
    .rentacar-banner-text {
        font-size: 28px;
        margin: 0 0 12px 0;
    }

    .rentacar-banner-subtitle {
        font-size: 18px;
        margin: 0 0 6px 0;
    }

    .rentacar-banner-contact {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .rentacar-banner-text {
        font-size: 22px;
        letter-spacing: 1.5px;
        margin: 0 0 10px 0;
    }

    .rentacar-banner-subtitle {
        font-size: 16px;
        margin: 0 0 5px 0;
    }

    .rentacar-banner-contact {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .rentacar-banner-text {
        font-size: 16px;
        letter-spacing: 1px;
        margin: 0 0 8px 0;
    }

    .rentacar-banner-subtitle {
        font-size: 13px;
        margin: 0 0 4px 0;
    }

    .rentacar-banner-contact {
        font-size: 12px;
    }
}

/* ===========================
   Rent a Car Table Styles
   =========================== */
.rentacar-table {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.95), rgba(45, 50, 80, 0.95));
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
    margin-bottom: 0;
}

.rentacar-table thead {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(99, 102, 241, 0.2));
    border-bottom: 2px solid rgba(0, 217, 255, 0.4);
}

.rentacar-table thead th {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 15px;
    border: none;
    text-shadow: 0 0 10px var(--glow-cyan);
}

.rentacar-table tbody tr {
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
}

.rentacar-table tbody tr:hover {
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.rentacar-table tbody tr:last-child {
    border-bottom: none;
}

.rentacar-table tbody td {
    color: var(--text-light);
    font-size: 14px;
    padding: 18px 15px;
    border: none;
    vertical-align: middle;
    line-height: 1.6;
}

.rentacar-table .company-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 15px;
    letter-spacing: 0.5px;
}

.rentacar-table .contact-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.rentacar-table .contact-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-cyan);
}

.rentacar-table .web-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.rentacar-table .web-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-cyan);
    text-decoration: underline;
}

/* Responsive Table */
@media (max-width: 992px) {
    .rentacar-table {
        font-size: 13px;
    }

    .rentacar-table thead th {
        font-size: 12px;
        padding: 15px 10px;
    }

    .rentacar-table tbody td {
        font-size: 13px;
        padding: 15px 10px;
    }

    .rentacar-table .company-name {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .rentacar-table thead th {
        font-size: 11px;
        padding: 12px 8px;
    }

    .rentacar-table tbody td {
        font-size: 12px;
        padding: 12px 8px;
    }

    .rentacar-table .company-name {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .table-responsive {
        border-radius: 15px;
        overflow-x: auto;
    }

    .rentacar-table {
        min-width: 700px;
    }

    .rentacar-table thead th {
        font-size: 10px;
        padding: 10px 6px;
    }

    .rentacar-table tbody td {
        font-size: 11px;
        padding: 10px 6px;
    }

    .rentacar-table .company-name {
        font-size: 12px;
    }
}

/* ===========================
   Flights Section
   =========================== */
.flights-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px var(--glow-cyan);
}

.flight-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.9), rgba(45, 50, 80, 0.9));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.flight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4), 0 0 40px var(--glow-cyan);
}

.flight-header {
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.flight-header.arrivals {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.flight-header.departures {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.flight-header i {
    font-size: 32px;
}

.flight-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.flight-table {
    padding: 20px;
}

.flight-widget {
    background: rgba(10, 14, 39, 0.5);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.flight-widget iframe {
    display: block;
    width: 100%;
    min-height: 450px;
    border: none;
}

.flight-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--medium-gray);
    transition: background-color 0.3s ease;
}

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

.flight-row:hover {
    background-color: var(--light-gray);
}

.flight-info {
    display: flex;
    flex-direction: column;
}

.flight-number {
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-color);
}

.flight-origin {
    color: #666;
    font-size: 14px;
}

.flight-time {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.time {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
}

.status {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 5px;
}

.status.on-time {
    background-color: #d4edda;
    color: #155724;
}

.status.delayed {
    background-color: #f8d7da;
    color: #721c24;
}

.status.boarding {
    background-color: #fff3cd;
    color: #856404;
}

/* ===========================
   Services Section
   =========================== */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--light-gray) 50%, var(--dark-color) 100%);
}

.service-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.95), rgba(45, 50, 80, 0.95));
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0, 217, 255, 0.15);
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.4), 0 0 30px var(--glow-cyan);
    border-color: var(--primary-color);
}

.service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 0 30px var(--glow-cyan);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 36px;
    color: var(--text-light);
}

.service-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ===========================
   Info Section
   =========================== */
.info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
}

.info-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.info-card:hover {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 10px 30px rgba(255, 200, 68, 0.2);
}

.info-icon {
    background: var(--primary-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    font-size: 32px;
    color: var(--text-dark);
}

.info-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateX(5px);
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--light-gray) 100%);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 200, 68, 0.25);
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--medium-gray);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    min-width: 30px;
}

.contact-item h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.4);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: linear-gradient(135deg, var(--darker-color) 0%, rgba(10, 14, 39, 0.98) 100%);
    color: var(--text-light);
    padding: 60px 0 20px;
    border-top: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 -10px 40px rgba(0, 217, 255, 0.2);
}

.footer h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--glow-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer p {
    color: #ccc;
    line-height: 1.8;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 110px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-logo h4 {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 18px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.social-links a:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 30px var(--glow-cyan), 0 0 50px var(--glow-purple);
    border-color: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links i {
    font-size: 10px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--dark-color);
    border: 2px solid var(--primary-color);
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.app-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    transform: scale(1.05);
}

.app-btn i {
    font-size: 28px;
}

.app-btn small {
    display: block;
    font-size: 10px;
}

.app-btn strong {
    display: block;
    font-size: 14px;
}

.footer-divider {
    border-color: rgba(255, 200, 68, 0.3);
    margin: 40px 0 20px;
}

.footer-bottom {
    text-align: center;
    color: #999;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 14px;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 992px) {
    .hero {
        height: 500px;
    }

    .carousel-item {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content .lead {
        font-size: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .logo-img {
        height: 85px;
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .alert-bar .col-md-8,
    .alert-bar .col-md-4 {
        text-align: center !important;
        margin-bottom: 10px;
    }

    .hero {
        height: 400px;
    }

    .carousel-item {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content .lead {
        font-size: 18px;
    }

    .weather-icon {
        font-size: 60px;
    }

    .weather-temp {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px !important;
    }

    .flights-section,
    .services-section,
    .info-section,
    .contact-section {
        padding: 50px 0;
    }

    .service-card,
    .info-card {
        margin-bottom: 20px;
    }

    .flight-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .flight-time {
        align-items: flex-start;
        flex-direction: row;
        gap: 10px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer h4,
    .footer h5 {
        margin-top: 20px;
    }

    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo-img {
        height: 90px;
        max-width: 160px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 350px;
    }

    .carousel-item {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content .lead {
        font-size: 16px;
    }

    .weather-card {
        padding: 20px;
    }

    .weather-card .row > div {
        text-align: center;
        margin-bottom: 15px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .navbar-brand span {
        font-size: 16px;
    }

    .logo-img {
        height: 70px;
        max-width: 130px;
    }

    .navbar {
        padding: 10px 0;
    }

    .footer-logo-img {
        height: 75px;
        max-width: 140px;
    }

    .app-buttons {
        margin-top: 20px;
    }
}

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

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

.service-card:nth-child(even) .service-icon {
    animation-delay: 0.5s;
}

/* Smooth scroll offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}

/* ===========================
   Taxi Page Styles
   =========================== */

/* Taxi Hero Section */
.taxi-hero {
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.taxi-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Taxi Services Section */
.taxi-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
}

/* Taxi Card */
.taxi-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.95), rgba(45, 50, 80, 0.95));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.taxi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4), 0 0 40px var(--glow-cyan);
    border-color: var(--primary-color);
}

.taxi-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
    display: flex;
    align-items: center;
    justify-content: center;
}

.taxi-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 10px;
}

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

.taxi-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.taxi-card-body h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.taxi-card-body p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.taxi-badge {
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.badge-img {
    max-width: 220px;
    height: auto;
    max-height: 90px;
    object-fit: contain;
}

/* Taxi Card Promo (Publicidad) */
.taxi-card-promo {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(0, 217, 255, 0.2));
    border: 2px dashed var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.taxi-card-promo:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(0, 217, 255, 0.3));
    border-style: solid;
}

.taxi-card-promo-content {
    padding: 30px;
    text-align: center;
}

.promo-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.taxi-card-promo h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px var(--glow-cyan);
}

.promo-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.price-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 30px var(--glow-cyan);
    line-height: 1;
    margin-bottom: 10px;
}

.price-period {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 600;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.promo-features li {
    color: var(--text-light);
    padding: 10px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-features li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Taxi Info Section */
.taxi-info-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
}

.info-box {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(45, 50, 80, 0.8));
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
    border-color: var(--primary-color);
}

.info-box i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.info-box h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-box p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive - Taxi Page */
@media (max-width: 992px) {
    .taxi-hero {
        padding: 60px 0;
    }

    .taxi-card-image {
        height: 200px;
    }

    .taxi-card-promo {
        min-height: 400px;
    }

    .promo-icon {
        font-size: 50px;
    }

    .taxi-card-promo h3 {
        font-size: 20px;
    }

    .price-amount {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .taxi-hero {
        padding: 50px 0;
    }

    .taxi-hero h1 {
        font-size: 36px !important;
    }

    .taxi-services-section {
        padding: 60px 0;
    }

    .taxi-card-image {
        height: 220px;
    }

    .taxi-card-promo {
        min-height: 380px;
    }

    .promo-icon {
        font-size: 45px;
    }

    .taxi-card-promo h3 {
        font-size: 18px;
    }

    .price-amount {
        font-size: 32px;
    }

    .price-period {
        font-size: 14px;
    }

    .info-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .taxi-hero h1 {
        font-size: 28px !important;
    }

    .taxi-hero .lead {
        font-size: 16px;
    }

    .taxi-card-image {
        height: 200px;
    }

    .taxi-card-body {
        padding: 20px;
    }

    .taxi-card-body h4 {
        font-size: 18px;
    }

    .badge-img {
        max-width: 180px;
        max-height: 75px;
    }

    .taxi-card-promo {
        min-height: 350px;
    }

    .taxi-card-promo-content {
        padding: 20px;
    }

    .promo-icon {
        font-size: 40px;
    }

    .taxi-card-promo h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .price-amount {
        font-size: 28px;
    }

    .price-period {
        font-size: 13px;
    }

    .promo-features li {
        font-size: 13px;
        padding: 8px 0;
    }

    .info-box i {
        font-size: 40px;
    }

    .info-box h4 {
        font-size: 18px;
    }

    .info-box p {
        font-size: 13px;
    }
}
