/* ======================
   Services Section
   ====================== */

.services-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

/* Solution Tabs */
.solution-tabs {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 60px;
}

.tabs-header {
    display: flex;
    background: linear-gradient(135deg, #002e5f, #004a99);
    padding: 0;
}

.tab-btn {
    flex: 1;
    padding: 20px 30px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border-bottom: 3px solid #00bfff;
}

.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: block;
}

/* Ready Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #00bfff;
}

.solution-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00bfff, #002e5f);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 46, 95, 0.1), rgba(0, 191, 255, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.solution-icon i {
    font-size: 3.5rem;
    color: #002e5f;
}

.solution-title {
    font-size: 2.2rem;
    color: #002e5f;
    margin-bottom: 15px;
    font-weight: 700;
}

.solution-description {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    background: #f0f7ff;
    color: #002e5f;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 500;
    border: 1px solid rgba(0, 46, 95, 0.1);
}

.solution-pricing {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.pricing-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #002e5f;
}

.license {
    font-size: 1.3rem;
    color: #00bfff;
    font-weight: 600;
    background: rgba(0, 191, 255, 0.1);
    padding: 5px 15px;
    border-radius: 15px;
}

.solution-actions {
    display: flex;
    gap: 15px;
}

.solution-actions .btn {
    flex: 1;
    padding: 16px 24px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.solution-actions .btn-primary {
    background: linear-gradient(135deg, 
        rgba(0, 46, 95, 0.9) 0%, 
        rgba(0, 191, 255, 0.9) 100%);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 46, 95, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.solution-actions .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-actions .btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(0, 46, 95, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        rgba(0, 191, 255, 0.95) 0%, 
        rgba(0, 46, 95, 0.95) 100%);
}

.solution-actions .btn-primary:hover::after {
    opacity: 1;
}

/* Neon Live Demo Button */
.solution-actions .btn-outline {
    background: transparent;
    color: #00bfff;
    border: 2px solid #00bfff;
    position: relative;
    box-shadow: 
        0 0 15px rgba(0, 191, 255, 0.2),
        inset 0 0 15px rgba(0, 191, 255, 0.1);
}

.solution-actions .btn-outline::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #00bfff, #002e5f, #00bfff, #002e5f);
    background-size: 400% 400%;
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradient-shift 3s ease infinite;
}

.solution-actions .btn-outline:hover {
    color: white;
    background: rgba(0, 191, 255, 0.1);
    border-color: transparent;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 0 30px rgba(0, 191, 255, 0.4),
        inset 0 0 20px rgba(0, 191, 255, 0.2);
}

.solution-actions .btn-outline:hover::before {
    opacity: 1;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #002e5f;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #002e5f, #004a99);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 3rem;
    color: white;
}

.service-title {
    font-size: 2rem;
    color: #002e5f;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-description {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.tech-tag {
    background: #f0f7ff;
    color: #002e5f;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 500;
    border: 1px solid rgba(0, 46, 95, 0.1);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #002e5f;
    font-weight: 600;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 25px;
    border-radius: 50px;
    background: rgba(0, 46, 95, 0.05);
}

.service-link:hover {
    color: white;
    background: #002e5f;
    transform: translateX(5px);
}

.service-link i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Solution Benefits */
.solution-benefits {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.benefits-title {
    text-align: center;
    font-size: 2.5rem;
    color: #002e5f;
    margin-bottom: 40px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #f8fafc;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #00bfff;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00bfff, #002e5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: white;
}

.benefit-item h4 {
    font-size: 1.8rem;
    color: #002e5f;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-item p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ======================
   Responsive Design
   ====================== */

/* Tablet */
@media (max-width: 991px) {
    .solutions-grid,
    .services-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-benefits {
        padding: 40px 30px;
    }
    
    .tab-btn {
        padding: 15px 20px;
        font-size: 1.6rem;
    }
    
    .tab-content {
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .services-section {
        padding: 60px 0;
    }
    
    .solutions-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        padding: 15px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .solution-actions {
        flex-direction: column;
    }
    
    .solution-card {
        padding: 25px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .solution-pricing {
        padding: 15px;
    }
    
    .pricing-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .solution-features {
        justify-content: center;
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}