/* =========================================================
   MODELS HUB AEROCITY - ALIEN NEON MATRIX (CYBERPUNK UI)
   CORE WEB VITALS OPTIMIZED
   ========================================================= */

:root { 
    --bg-obsidian: #030407; 
    --bg-panel: rgba(10, 12, 20, 0.6); 
    --text-pure: #E0F7FA; 
    --text-muted: #648B9E;
    
    /* The Alien Neon Palette */
    --neon-cyan: #00F0FF; 
    --neon-purple: #9D00FF;
    --neon-magenta: #FF007F;
    
    --alien-gradient: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    --magenta-gradient: linear-gradient(135deg, var(--neon-magenta), var(--neon-purple));
    
    /* Deep Glow Effects */
    --glow-cyan: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 20px rgba(0, 240, 255, 0.3);
    --glow-magenta: 0 0 10px rgba(255, 0, 127, 0.5), 0 0 20px rgba(255, 0, 127, 0.3);
    --shadow-panel: 0 8px 32px 0 rgba(0, 240, 255, 0.15);
}

/* 1. GLOBAL RESETS & TYPOGRAPHY */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', system-ui, sans-serif; }
body { 
    background-color: var(--bg-obsidian); 
    color: var(--text-pure); 
    line-height: 1.6; 
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased;
    /* Subtle alien grid background */
    background-image: linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}
a { text-decoration: none; color: inherit; transition: 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }

/* 2. ELITE UTILITY BAR */
.top-bar { background: rgba(3, 4, 7, 0.9); padding: 8px 5%; display: flex; justify-content: space-between; font-size: 0.85rem; border-bottom: 1px solid var(--neon-cyan); box-shadow: var(--glow-cyan); position: fixed; width: 100%; top: 0; z-index: 1001; }
.top-bar a { color: var(--neon-cyan); font-weight: 700; letter-spacing: 1px; text-shadow: 0 0 5px rgba(0,240,255,0.5); }
.top-bar a:hover { color: var(--text-pure); text-shadow: var(--glow-cyan); }
.time-node { color: var(--neon-magenta); font-size: 0.85rem; font-weight: bold; text-shadow: 0 0 5px rgba(255,0,127,0.5); }

/* 3. MASTER HEADER & NAVIGATION */
header { position: fixed; top: 35px; width: 100%; z-index: 1000; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; background: rgba(3, 4, 7, 0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(0, 240, 255, 0.2); }
.logo { font-size: 1.8rem; font-weight: 900; color: var(--text-pure); text-transform: uppercase; letter-spacing: 2px; text-shadow: var(--glow-cyan); }
.logo span { color: var(--neon-magenta); text-shadow: var(--glow-magenta); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--neon-cyan); text-shadow: var(--glow-cyan); }

/* Mobile Menu Elements */
.mobile-btn { display: none; font-size: 1.5rem; color: var(--neon-cyan); text-shadow: var(--glow-cyan); background: none; border: none; cursor: pointer; }
.mobile-nav { position: fixed; top: 60px; left: 0; width: 100%; background: rgba(3, 4, 7, 0.95); backdrop-filter: blur(10px); flex-direction: column; padding: 20px 5%; gap: 20px; z-index: 999; display: none; border-bottom: 2px solid var(--neon-cyan); box-shadow: var(--glow-cyan); }
.mobile-nav.active { display: flex; }
.mobile-nav a { font-weight: 800; text-transform: uppercase; font-size: 1.1rem; color: var(--text-pure); border-bottom: 1px solid rgba(0,240,255,0.1); padding-bottom: 10px; }

/* 4. MASTER FOOTER */
.master-footer { padding: 60px 5% 30px; background: rgba(3, 4, 7, 0.9); border-top: 2px solid var(--neon-purple); box-shadow: 0 -5px 20px rgba(157, 0, 255, 0.3); margin-top: 60px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer-col h4 { color: var(--neon-cyan); margin-bottom: 20px; text-transform: uppercase; font-size: 1.1rem; text-shadow: 0 0 5px rgba(0,240,255,0.4); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col ul a:hover { color: var(--neon-magenta); padding-left: 8px; text-shadow: var(--glow-magenta); }
.footer-copyright { text-align: center; border-top: 1px solid rgba(0,240,255,0.1); padding-top: 20px; margin-top: 40px; color: rgba(224, 247, 250, 0.3); font-size: 0.8rem; letter-spacing: 1px; }

/* 5. FLOATING CONTACT MATRIX (Alien Pulses) */
.contact-matrix { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 9999; }
.cm-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 28px; color: #FFF; transition: 0.3s; }
.cm-call { background: var(--alien-gradient); box-shadow: var(--glow-cyan); animation: pulse-alien 2s infinite; color: #000; }
.cm-wa { background: #25D366; box-shadow: 0 0 15px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.4); animation: pulse-green 2s infinite; }
.cm-btn:hover { transform: scale(1.15) rotate(5deg); }
@keyframes pulse-alien { 
    0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); } 
    70% { box-shadow: 0 0 0 20px rgba(0, 240, 255, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); } 
}
@keyframes pulse-green { 
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } 
}

/* 6. UI COMPONENTS (Neon Buttons, Glass Panels) */
.btn-primary { padding: 18px 30px; border-radius: 4px; background: transparent; color: var(--neon-cyan); font-weight: 900; text-transform: uppercase; letter-spacing: 2px; border: 2px solid var(--neon-cyan); cursor: pointer; transition: 0.3s ease; display: inline-flex; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 0 10px rgba(0,240,255,0.2) inset, 0 0 10px rgba(0,240,255,0.2); text-shadow: 0 0 5px rgba(0,240,255,0.5); }
.btn-primary:hover { background: var(--neon-cyan); color: #000; box-shadow: var(--glow-cyan); transform: translateY(-3px); }

.btn-whatsapp { border-color: #25D366; color: #25D366; box-shadow: 0 0 10px rgba(37,211,102,0.2) inset, 0 0 10px rgba(37,211,102,0.2); text-shadow: 0 0 5px rgba(37,211,102,0.5); }
.btn-whatsapp:hover { background: #25D366; color: #000; box-shadow: 0 0 20px rgba(37,211,102,0.6); }

/* Glassmorphism Overhaul */
.glass-panel { background: var(--bg-panel); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 40px; border-radius: 12px; box-shadow: var(--shadow-panel); border: 1px solid rgba(0, 240, 255, 0.2); border-top: 3px solid var(--neon-cyan); transition: transform 0.3s, border-color 0.3s; }
.glass-panel:hover { border-color: var(--neon-magenta); box-shadow: var(--glow-magenta); transform: translateY(-5px); }

.form-input, .form-select { width: 100%; padding: 15px; background: rgba(0,0,0,0.5); border: 1px solid rgba(0, 240, 255, 0.3); color: var(--neon-cyan); font-size: 1rem; border-radius: 4px; outline: none; transition: 0.3s; box-shadow: inset 0 0 10px rgba(0,0,0,0.8); }
.form-input:focus, .form-select:focus { border-color: var(--neon-magenta); box-shadow: var(--glow-magenta), inset 0 0 10px rgba(0,0,0,0.8); color: var(--text-pure); }

/* 7. DYNAMIC SEO CONTENT BLOCK */
.seo-content-block { max-width: 900px; margin: 40px auto; padding: 30px; background: rgba(10, 12, 20, 0.8); border-radius: 8px; border-left: 4px solid var(--neon-purple); box-shadow: -5px 0 15px rgba(157, 0, 255, 0.2); }
.seo-content-block h3 { color: var(--neon-cyan); margin-bottom: 15px; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; text-shadow: 0 0 5px rgba(0,240,255,0.3); }
.seo-content-block p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 15px; line-height: 1.8; }
.seo-content-block a { color: var(--neon-magenta); font-weight: bold; text-decoration: underline; text-decoration-color: rgba(255,0,127,0.3); }
.seo-content-block a:hover { text-shadow: var(--glow-magenta); }

/* 8. MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-btn { display: block; }
    .top-bar { flex-direction: column; text-align: center; padding: 10px; position: relative; }
    header { top: 0; padding: 15px 20px; }
    .contact-matrix { bottom: 20px; right: 20px; }
    .cm-btn { width: 50px; height: 50px; font-size: 24px; }
    .glass-panel { padding: 30px 20px; }
}

/* 10. BOOKING PORTAL UI (NEON TERMINAL) */
.booking-portal { 
    padding: 130px 5% 70px; 
    min-height: 80vh; 
    background: radial-gradient(circle at 50% 10%, rgba(0, 240, 255, 0.1) 0%, var(--bg-obsidian) 70%); 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}
.portal-header { text-align: center; max-width: 700px; margin-bottom: 40px; }
.portal-header h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900; text-transform: uppercase; margin-bottom: 12px; text-shadow: var(--glow-cyan); }
.portal-header h1 span { color: var(--neon-magenta); text-shadow: var(--glow-magenta); }
.portal-header p { color: var(--text-muted); font-size: 1.05rem; }

.booking-card { 
    background: rgba(10, 12, 20, 0.8);
    backdrop-filter: blur(20px);
    width: 100%; 
    max-width: 620px; 
    padding: 45px 40px; 
    border-radius: 8px; 
    border: 1px solid rgba(0, 240, 255, 0.3); 
    border-top: 4px solid var(--neon-cyan); 
    box-shadow: var(--glow-cyan); 
    text-align: left; 
}
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 800; color: var(--neon-cyan); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; text-shadow: 0 0 5px rgba(0,240,255,0.4); }
.form-control { width: 100%; padding: 16px 18px; background: #000; border: 1px solid rgba(0, 240, 255, 0.2); color: var(--text-pure); font-size: 1rem; border-radius: 4px; outline: none; transition: 0.3s; cursor: pointer; box-shadow: inset 0 0 10px rgba(0,0,0,0.8); }
.form-control:focus { border-color: var(--neon-magenta); box-shadow: var(--glow-magenta); }

.btn-dispatch { 
    width: 100%; padding: 18px; border-radius: 4px; background: #25D366; color: #000; font-weight: 900; text-transform: uppercase; font-size: 1.05rem; letter-spacing: 2px; border: none; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 12px; box-shadow: 0 0 15px rgba(37, 211, 102, 0.6); transition: 0.3s; margin-top: 10px; text-shadow: none; 
}
.btn-dispatch:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(37, 211, 102, 0.8); background: #20b858; }


/* =========================================================
   11. THE ALIEN OVERRIDE ENGINE (FIXES OLD INLINE PHP STYLES)
   ========================================================= */

/* Force all text in the CTA strips and grids to be visible */
section[style*="background: var(--rose-gradient)"],
section[style*="background: var(--rose-gold)"] {
    background: rgba(10, 12, 20, 0.95) !important;
    border-top: 2px solid var(--neon-cyan) !important;
    border-bottom: 2px solid var(--neon-purple) !important;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1) inset !important;
}

/* Force text colors to ignore old black/gray inline styles */
section h1, section h2, section h3 { 
    color: var(--text-pure) !important; 
    text-shadow: var(--glow-cyan) !important; 
}
section p { color: var(--text-pure) !important; font-weight: 500 !important; }
section span[style*="color: var(--rose-gold)"] { 
    color: var(--neon-magenta) !important; 
    text-shadow: var(--glow-magenta) !important; 
}

/* Force old buttons into the Neon aesthetic */
a[style*="background: #000"], 
a[style*="background: transparent"] {
    background: rgba(0,0,0,0.6) !important;
    color: var(--neon-cyan) !important;
    border: 2px solid var(--neon-cyan) !important;
    box-shadow: 0 0 10px rgba(0,240,255,0.2) inset, 0 0 10px rgba(0,240,255,0.2) !important;
    text-shadow: 0 0 5px rgba(0,240,255,0.5) !important;
}
a[style*="background: #fff"] {
    background: var(--neon-cyan) !important;
    color: #000 !important;
    border: none !important;
    box-shadow: var(--glow-cyan) !important;
    text-shadow: none !important;
}

/* =========================================================
   12. ADVANCED HOLOGRAPHIC FLOATING ICONS
   ========================================================= */
.floating-contact, .contact-matrix { 
    bottom: 30px; right: 30px; gap: 20px; z-index: 10000; 
}

/* Cyber-Green WhatsApp */
.float-wa, .cm-wa { 
    width: 65px !important; height: 65px !important; 
    background: #000 !important;
    border: 2px solid #25D366 !important;
    color: #25D366 !important;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5), inset 0 0 15px rgba(37, 211, 102, 0.4) !important;
    border-radius: 50% !important;
    display: flex; justify-content: center; align-items: center; 
    font-size: 32px !important;
    position: relative;
}
.float-wa::after {
    content: ''; position: absolute; top: -6px; left: -6px; right: -6px; bottom: -6px;
    border-radius: 50%; border: 2px dashed #25D366; 
    animation: spin-alien 10s linear infinite; opacity: 0.6;
}

/* Neon-Magenta Call Button */
.float-call, .cm-call {
    width: 65px !important; height: 65px !important; 
    background: #000 !important;
    border: 2px solid var(--neon-magenta) !important;
    color: var(--neon-magenta) !important;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.5), inset 0 0 15px rgba(255, 0, 127, 0.4) !important;
    border-radius: 50% !important;
    display: flex; justify-content: center; align-items: center; 
    font-size: 26px !important;
    position: relative;
}
.float-call::after {
    content: ''; position: absolute; top: -6px; left: -6px; right: -6px; bottom: -6px;
    border-radius: 50%; border: 2px dashed var(--neon-magenta); 
    animation: spin-alien-reverse 10s linear infinite; opacity: 0.6;
}

.float-wa:hover, .float-call:hover { transform: scale(1.1); background: rgba(0,0,0,0.8) !important; }

@keyframes spin-alien { 100% { transform: rotate(360deg); } }
@keyframes spin-alien-reverse { 100% { transform: rotate(-360deg); } }

/* =========================================================
   13. MOBILE SMOOTH HANDLING OVERRIDES
   ========================================================= */
@media (max-width: 768px) {
    .floating-contact, .contact-matrix { bottom: 20px; right: 20px; gap: 15px; }
    .float-wa, .cm-wa, .float-call, .cm-call { 
        width: 55px !important; height: 55px !important; font-size: 24px !important; 
    }
    .float-wa::after, .float-call::after { top: -4px; left: -4px; right: -4px; bottom: -4px; }
    section { padding-left: 5% !important; padding-right: 5% !important; }
}