/* ============================================
   MODERN NAVBAR - COMPLETE REDESIGN
   ============================================ */

.ai-navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(6, 9, 23, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
}

.ai-navbar-modern.scrolled {
    background: rgba(6, 9, 23, 0.98);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    border-bottom-color: rgba(0, 212, 255, 0.3);
}

.ai-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    position: relative;
}

/* Logo */
.ai-logo {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
}

.ai-logo img {
    width: 180px;
    height: auto;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

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

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.ai-logo:hover .logo-glow {
    opacity: 1;
}

/* Navigation Menu */
.ai-nav-menu {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ai-nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-nav-link {
    position: relative;
    padding: 12px 24px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.link-text {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.link-underline {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    transition: width 0.3s ease;
}

.ai-nav-link:hover .link-text,
.ai-nav-link.active .link-text {
    color: #00d4ff;
}

.ai-nav-link:hover .link-underline,
.ai-nav-link.active .link-underline {
    width: 70%;
}

.ai-nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-nav-link:hover::before {
    opacity: 1;
}

/* CTA Button */
.ai-nav-cta {
    position: relative;
}

.ai-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
}

.ai-contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7c3aed 0%, #ff00ff 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(0, 212, 255, 0.6);
    text-decoration: none;
    color: #ffffff;
}

.ai-contact-btn:hover::before {
    opacity: 1;
}

.ai-contact-btn i,
.ai-contact-btn span {
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.ai-contact-btn:hover .btn-shine {
    left: 100%;
}

/* Mobile Toggle */
.ai-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.ai-mobile-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.ai-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
}

.ai-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.ai-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
}

/* ============================================
   SOLUTIONS SHOWCASE - REDESIGNED CARDS
   ============================================ */

.ai-solutions-showcase {
    background: linear-gradient(180deg, #0a0e27 0%, #1a1d3e 50%, #0a0e27 100%);
    position: relative;
}

.ai-solution-showcase-card {
    margin-bottom: 30px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    transition: all 0.5s ease;
    height: 100%;
    overflow: hidden;
}

.card-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 24px;
}

.ai-solution-showcase-card:hover .card-inner {
    transform: translateY(-15px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.25);
}

.ai-solution-showcase-card:hover .card-inner::before {
    opacity: 1;
}

.solution-icon-box {
    position: relative;
    margin-bottom: 30px;
    display: inline-flex;
}

.icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.ai-solution-showcase-card:hover .icon-wrapper {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(124, 58, 237, 0.25) 100%);
}

.icon-wrapper i {
    font-size: 42px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ai-solution-showcase-card:hover .icon-glow {
    opacity: 1;
}

.ai-solution-showcase-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ai-solution-showcase-card:hover h3 {
    background: linear-gradient(135deg, #00d4ff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-solution-showcase-card > .card-inner > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.solution-features li:last-child {
    border-bottom: none;
}

.solution-features i {
    color: #00d4ff;
    font-size: 16px;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00d4ff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.solution-link i {
    transition: transform 0.3s ease;
}

.solution-link:hover {
    gap: 14px;
    color: #ffffff;
    text-decoration: none;
}

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

/* Mobile Responsive */
@media (max-width: 991px) {
    .ai-mobile-toggle {
        display: flex;
    }

    .ai-nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(6, 9, 23, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .ai-nav-menu.active {
        transform: translateX(0);
    }

    .ai-nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .ai-nav-link {
        width: 100%;
        padding: 18px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .link-text {
        font-size: 16px;
    }

    .ai-nav-cta {
        width: 100%;
    }

    .ai-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   BASIS MEMBERSHIP BADGE
   ============================================ */

.basis-membership {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.membership-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.basis-logo-link {
    display: inline-block;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.basis-logo-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 1);
}

.basis-logo {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

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

@media (max-width: 767px) {
    .basis-membership {
        text-align: center;
    }

    .basis-logo {
        height: 45px;
    }
}
