/* ===================================================================
   AIRPORT.BASE.CSS - Neutral Foundation Only
   NO LAYOUT | NO FLEX | NO MEDIA QUERIES | NO POSITIONING
   =================================================================== */

/* ===== COLOR VARIABLES ===== */
:root {
    --primary-blue: #4285f4;
    --secondary-blue: #2b579a;
    --accent-orange: #ff9f00;
    --success-green: #10b981;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-gray: #e5e7eb;
}

/* ===== FONT FAMILY ===== */
* {
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

ul {
    list-style: none;
}

/* ===== BUTTON STYLES ===== */
.compact-search-btn {
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compact-search-btn:hover {
    background: #e68e00;
    transform: translateY(-1px);
}

.widget-edit-btn {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.compact-close-btn {
    background: none;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.route-book-btn-v2 {
    background: #1e293b;
    color: white;
    font-weight: 700;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
    border: none;
}

.route-book-btn-v2:hover {
    background: #0f172a;
}

/* ===== INPUT & SELECT STYLES ===== */
.compact-input,
.compact-select {
    background: var(--white);
    border: none;
    border-radius: 6px;
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

.compact-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

/* ===== LABEL STYLES ===== */
.compact-lbl {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== SHADOWS ===== */
.shadow-custom-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.whatsapp-btn {
    animation: pulse 2s infinite;
}

/* ===== SCROLLBAR HIDING ===== */
.car-scroll::-webkit-scrollbar {
    display: none;
}

.car-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none !important;
}

.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #2563eb, #7c3aed);
}

/* ===== ICON COLOR CLASSES ===== */
.route-icon-blue {
    background-color: #eff6ff;
    color: #2563eb;
}

.route-icon-amber {
    background-color: #fffbeb;
    color: #d97706;
}

.route-icon-green {
    background-color: #f0fdf4;
    color: #16a34a;
}

.route-icon-purple {
    background-color: #faf5ff;
    color: #9333ea;
}

.route-icon-rose {
    background-color: #fff1f2;
    color: #e11d48;
}

.route-icon-indigo {
    background-color: #eef2ff;
    color: #4f46e5;
}

.route-icon-cyan {
    background-color: #ecfeff;
    color: #0891b2;
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 24px;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #ffffff;
}

.footer-contact i {
    color: #3b82f6;
    font-size: 1rem;
}

.footer-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.footer-social a:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-3px);
}

/* --- CUSTOM TIME PICKER STYLES --- */
.time-picker-popup {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 2000;
    width: 320px;
}

.time-picker-popup.active {
    display: block;
}

.tp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

#tp-display {
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text-dark);
}

#tp-apply {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.8rem;
}

.tp-columns {
    display: flex;
    height: 250px;
    overflow: hidden;
}

.tp-col {
    flex: 1;
    overflow-y: auto;
    border-right: 1px solid #eee;
    padding: 10px 0;
}

.tp-col:last-child {
    border-right: none;
}

.tp-col::-webkit-scrollbar {
    width: 6px;
}

.tp-col::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.tp-item {
    padding: 10px 0;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.2s;
}

.tp-item:hover {
    background: #f0f0f0;
}

.tp-item.selected {
    background: var(--primary-blue);
    color: white;
}