/* Futuristic Travel App Aesthetics */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #070B19;
    --bg-glass: rgba(15, 23, 42, 0.6);
    --border-glass: rgba(255, 255, 255, 0.08);
    --neon-cyan: #00f0ff;
    --neon-purple: #8a2be2;
    --neon-pink: #ff0055;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glow-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

html, body {
    overflow-x: hidden;
    width: 100%;
}
body {
    font-family: 'Outfit', sans-serif !important;
    background-color: var(--bg-dark) !important;
    color: var(--text-main) !important;
}

/* Preloader */
.preloader {
    background-color: var(--bg-dark) !important;
}
.spinner-grow {
    color: var(--neon-cyan) !important;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6, .title, .section-title {
    font-family: 'Outfit', sans-serif !important;
    color: var(--text-main) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
}

p, .txt {
    color: var(--text-muted) !important;
    line-height: 1.6;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--bg-glass) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid var(--border-glass) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    color: var(--text-main) !important;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3) !important;
    box-shadow: var(--glow-shadow) !important;
}

/* Banner Section */
.banner-section {
    background: radial-gradient(circle at 50% 10%, rgba(138, 43, 226, 0.15), transparent 60%),
                radial-gradient(circle at 80% 90%, rgba(0, 240, 255, 0.1), transparent 50%) !important;
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
}

.banner-wrapper {
    background: transparent !important; /* Remove old bg */
    border-radius: 30px;
    padding: 40px 20px;
}

.banner-wrapper.bg__img {
    background-image: none !important; /* Will add a futuristic overlay instead */
}

.banner-content .title {
    font-size: 3.5rem !important;
    background: linear-gradient(90deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .banner-content .title {
        font-size: 2.2rem !important;
    }
}

/* Buttons */
.cmn--btn {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan)) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cmn--btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.cmn--btn:hover::before {
    opacity: 1;
}

.cmn--btn:hover {
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.6) !important;
    transform: translateY(-2px) !important;
}

.cmn--btn.btn-white {
    background: rgba(255,255,255,0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: var(--text-main) !important;
    box-shadow: none !important;
}

.cmn--btn.btn-white:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.2) !important;
}

/* Header Navbar */
header .navbar-bottom {
    position: fixed !important;
    width: 100%;
    max-width: 100vw;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
    background: rgba(7, 11, 25, 0.3) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease;
    padding: 10px 0 !important;
}
@media (max-width: 991.9px) {
    .navbar-bottom-wrapper .menu {
        background: rgba(7, 11, 25, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
        width: 100% !important;
        max-width: 100vw !important;
        right: 0 !important;
        left: auto !important;
    }
}

header .navbar-bottom-wrapper .menu li a {
    color: var(--text-muted) !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

header .navbar-bottom-wrapper .menu li a:hover,
header .navbar-bottom-wrapper .menu li a.active {
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* Background overrides for sections */
.basic-info-section, .platform-section, .service-section, .gallery-section, .app-download-section, .earn-money-section, .testimonial-section {
    background-color: transparent !important;
    background: none !important;
    position: relative;
    z-index: 2;
}
.bg-light {
    background-color: rgba(255,255,255,0.02) !important;
}
.bg-fafafa {
    background: var(--bg-glass) !important;
    border: 1px solid var(--border-glass) !important;
}
.bg-white {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Force Bootstrap text colors for dark mode */
.text-dark {
    color: var(--text-main) !important;
}
.text-muted {
    color: var(--text-muted) !important;
}
.text--base {
    color: var(--neon-cyan) !important;
}
.text-black {
    color: var(--text-main) !important;
}
p.text-dark {
    color: var(--text-muted) !important;
}

/* Fix WYSIWYG editor content colors */
.editor-content,
.editor-content * {
    color: var(--text-muted) !important;
}

/* Fix mobile toggle */
header .navbar-bottom-wrapper .nav-toggle span {
    background-color: var(--neon-cyan) !important;
}

/* Fix Wrapper Background */
.basic-info-wrapper {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Basic info items and other cards */
.basic-info-item,
.ourSolution__item,
.testimonial__item,
.app-download-section .bg-fafafa,
.earn-money-section .bg-fafafa,
.service-section .editor-content {
    background: var(--bg-glass) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05) !important;
    border-radius: 20px !important;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    color: var(--text-main) !important;
}

.basic-info-item:hover,
.ourSolution__item:hover,
.testimonial__item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3) !important;
    box-shadow: var(--glow-shadow) !important;
}

/* Image rounding */
.w-200.aspect-1 img, .w-475.aspect-1 img, .testimonial__item-img img {
    border-radius: 20px !important;
    border: 2px solid rgba(255,255,255,0.1);
}

/* Override text color functions output */
span[style*="color"], p[style*="color"], h1[style*="color"], h2[style*="color"], h3[style*="color"], h4[style*="color"], h5[style*="color"] {
    color: inherit !important; /* Force text to use our theme colors if inline styles are injected */
}

/* Tabs */
.nav--tabs .nav-link {
    background: transparent !important;
    color: var(--text-muted) !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    font-weight: 600;
}
.nav--tabs .nav-link.active {
    color: var(--neon-cyan) !important;
    border-bottom: 2px solid var(--neon-cyan) !important;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

/* Footer */
footer {
    background: rgba(15, 23, 42, 0.8) !important;
    border-top: 1px solid var(--border-glass);
    backdrop-filter: blur(20px);
}
footer .footer-title {
    color: #fff !important;
}
footer ul li a {
    color: var(--text-muted) !important;
}
footer ul li a:hover {
    color: var(--neon-cyan) !important;
}
.social-icons a {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: var(--neon-cyan) !important;
}
.social-icons a:hover {
    background: var(--neon-cyan) !important;
    color: #000 !important;
    box-shadow: 0 0 15px var(--neon-cyan);
}

    .banner-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .banner-content .title {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    .banner-content p {
        font-size: 14px !important;
    }
    .glass-card {
        padding: 15px !important;
        margin-bottom: 15px;
    }
}
