/* Voxa Service Pages Styles */

/* Service Hero Section */
.voxa-service-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0118 0%, #16051e 100%);
}

.voxa-service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.voxa-service-hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(147, 51, 234, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(192, 132, 252, 0.2) 0%, transparent 50%);
}

.voxa-service-hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.voxa-service-hero .container {
    position: relative;
    z-index: 2;
}

.voxa-service-hero-content {
    text-align: center;
    padding: 120px 0 80px;
}

.voxa-service-badge {
    display: inline-block;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #9333ea;
}

.voxa-service-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.voxa-service-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 40px;
}

.voxa-service-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Features Section */
.voxa-service-features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #16051e 0%, #0a0118 100%);
    position: relative;
}

.voxa-service-feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(147, 51, 234, 0.1);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.voxa-service-feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #9333ea, #c084fc);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.voxa-service-feature-card:hover::before {
    opacity: 1;
}

.voxa-service-feature-card:hover {
    background: rgba(147, 51, 234, 0.05);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.3);
}

.voxa-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(192, 132, 252, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.voxa-service-feature-card:hover .voxa-feature-icon {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(192, 132, 252, 0.2) 100%);
    transform: rotate(5deg) scale(1.1);
}

.voxa-feature-icon i {
    font-size: 36px;
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.voxa-service-feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.voxa-service-feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

.voxa-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.voxa-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.voxa-feature-list li i {
    color: #c084fc;
    font-size: 14px;
}

/* Process Section */
.voxa-process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0118 0%, #16051e 100%);
    position: relative;
}

.voxa-process-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(147, 51, 234, 0.1);
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}

.voxa-process-card:hover {
    background: rgba(147, 51, 234, 0.05);
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-10px);
}

.voxa-process-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.voxa-process-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.voxa-process-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* CTA Section */
.voxa-service-cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #16051e 0%, #0a0118 100%);
    position: relative;
}

.voxa-cta-box {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(192, 132, 252, 0.05) 100%);
    border: 2px solid rgba(147, 51, 234, 0.2);
    border-radius: 30px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.voxa-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.voxa-cta-box h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.voxa-cta-box p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    position: relative;
}

.voxa-cta-box .voxa-btn-primary {
    position: relative;
}

/* Technologies Grid */
.voxa-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.voxa-tech-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(147, 51, 234, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.voxa-tech-item:hover {
    background: rgba(147, 51, 234, 0.05);
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-5px);
}

.voxa-tech-item i {
    font-size: 32px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.voxa-tech-item span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Pricing Cards */
.voxa-pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(147, 51, 234, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}

.voxa-pricing-card.featured {
    border: 2px solid rgba(147, 51, 234, 0.3);
    background: rgba(147, 51, 234, 0.05);
}

.voxa-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.voxa-pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 100%);
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.voxa-pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.voxa-pricing-price {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.voxa-pricing-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.voxa-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.voxa-pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

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

.voxa-pricing-features li i {
    color: #c084fc;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .voxa-service-title {
        font-size: 42px;
    }
    
    .voxa-service-description {
        font-size: 18px;
    }
    
    .voxa-cta-box {
        padding: 60px 40px;
    }
    
    .voxa-cta-box h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .voxa-service-hero-content {
        padding: 100px 0 60px;
    }
    
    .voxa-service-title {
        font-size: 32px;
    }
    
    .voxa-service-description {
        font-size: 16px;
    }
    
    .voxa-service-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .voxa-service-cta a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .voxa-cta-box {
        padding: 40px 30px;
    }
    
    .voxa-cta-box h2 {
        font-size: 28px;
    }
    
    .voxa-cta-box p {
        font-size: 16px;
    }
    
    .voxa-tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}
