.enterprise-section {
    position: relative;
    padding: 120px 0;
    background: var(--dark-bg);
    overflow: hidden;
}

.enterprise-section .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.enterprise-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.enterprise-section .section-header h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.enterprise-section .section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1), rgba(79, 172, 254, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-group:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 172, 254, 0.3);
}

.feature-group:hover::before {
    opacity: 1;
}

.feature-group .icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-group:hover .icon-wrapper {
    background: rgba(79, 172, 254, 0.2);
    transform: scale(1.1);
}

.feature-group i {
    font-size: 1.8rem;
    color: #4facfe;
    transition: all 0.3s ease;
}

.feature-group:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(79, 172, 254, 0.5));
}

.feature-group h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

.feature-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-group ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.feature-group:hover ul li {
    transform: translateX(5px);
}

.feature-group ul li i {
    font-size: 0.9rem;
    color: #4facfe;
}

.custom-solution {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.custom-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.05), rgba(79, 172, 254, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.custom-solution:hover::before {
    opacity: 1;
}

.custom-solution h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.request-quote {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.request-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.request-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.3);
}

.request-quote:hover::before {
    transform: translateX(100%);
}

.contact-info {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.contact-info strong {
    color: #4facfe;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .enterprise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .enterprise-section .section-header h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .enterprise-section {
        padding: 80px 0;
    }

    .enterprise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .enterprise-section .section-header h2 {
        font-size: 2.4rem;
    }

    .custom-solution {
        padding: 2rem;
        margin-top: 3rem;
    }
}

/* Animation keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(79, 172, 254, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(79, 172, 254, 0.8));
    }
} 