/* Service Hero Styles - Using Same BG as Index */

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

/* Background layers (same as index) */
.voxa-service-hero-section .voxa-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.voxa-service-hero-section .voxa-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-section .container {
    position: relative;
    z-index: 2;
}

/* Service hero content */
.voxa-service-hero-content {
    padding: 100px 0;
    position: relative;
}

/* Badge styling */
.voxa-service-hero-section .voxa-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 15px;
    font-weight: 500;
    color: #c084fc;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.voxa-service-hero-section .voxa-hero-badge:hover {
    background: rgba(147, 51, 234, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.voxa-service-hero-section .voxa-badge-icon {
    font-size: 20px;
}

/* Title styling */
.voxa-service-hero-section .voxa-hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: white;
}

.voxa-service-hero-section .voxa-text-gradient {
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.voxa-service-hero-section .voxa-text-outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
    display: block;
    margin-top: 10px;
    font-size: 56px;
}

/* Description */
.voxa-service-hero-section .voxa-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.voxa-service-hero-section .voxa-hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.voxa-service-hero-section .voxa-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #9333ea, #c084fc);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.voxa-service-hero-section .voxa-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.5);
}

.voxa-service-hero-section .voxa-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.voxa-service-hero-section .voxa-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(192, 132, 252, 0.3);
}

/* Stats Grid */
.voxa-service-hero-section .voxa-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.voxa-service-hero-section .voxa-stat-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.voxa-service-hero-section .voxa-stat-item:hover {
    background: rgba(147, 51, 234, 0.05);
    border-color: rgba(147, 51, 234, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
}

.voxa-service-hero-section .voxa-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9333ea, #c084fc);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.voxa-service-hero-section .voxa-stat-content h3 {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #9333ea !important;
    margin: 0 0 5px 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #9333ea !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    display: block !important;
}

.voxa-service-hero-section .voxa-stat-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* Floating Elements */
.voxa-service-hero-section .voxa-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.voxa-service-hero-section .voxa-float-element {
    position: absolute;
}

.voxa-service-hero-section .voxa-float-1 {
    top: 10%;
    left: 10%;
    animation: float1 15s ease-in-out infinite;
}

.voxa-service-hero-section .voxa-float-2 {
    top: 20%;
    right: 10%;
    animation: float2 20s ease-in-out infinite;
}

.voxa-service-hero-section .voxa-float-3 {
    bottom: 30%;
    left: 5%;
    animation: float3 18s ease-in-out infinite;
}

.voxa-service-hero-section .voxa-float-4 {
    bottom: 20%;
    right: 15%;
    animation: float4 22s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    33% { transform: translateY(-30px) translateX(20px) rotate(120deg); }
    66% { transform: translateY(20px) translateX(-10px) rotate(240deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    33% { transform: translateY(30px) translateX(-20px) rotate(-120deg); }
    66% { transform: translateY(-20px) translateX(10px) rotate(-240deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(-40px) translateX(30px) rotate(180deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(40px) translateX(-30px) rotate(-180deg); }
}

.voxa-service-hero-section .voxa-tech-card {
    width: 60px !important;
    height: 60px !important;
    background: rgba(147, 51, 234, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(147, 51, 234, 0.2) !important;
    border-radius: 15px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    color: #c084fc !important;
    font-size: 24px !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: auto !important;
    overflow: visible !important;
}

.voxa-service-hero-section .voxa-tech-card i {
    font-size: 24px !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: currentColor !important;
    background-clip: unset !important;
    color: #c084fc !important;
}

/* Scroll indicator */
.voxa-service-hero-section .voxa-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.voxa-service-hero-section .voxa-scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    position: relative;
    transition: all 0.3s;
}

.voxa-service-hero-section .voxa-scroll-indicator:hover {
    border-color: #9333ea;
}

.voxa-service-hero-section .voxa-scroll-indicator span {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 10px;
    background: #9333ea;
    border-radius: 3px;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        top: 10px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 25px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .voxa-service-hero-section .voxa-hero-title {
        font-size: 48px;
    }
    
    .voxa-service-hero-section .voxa-text-outline {
        font-size: 40px;
    }
    
    .voxa-service-hero-section .voxa-hero-description {
        font-size: 18px;
    }
    
    .voxa-service-hero-section .voxa-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .voxa-service-hero-section .voxa-hero-cta {
        flex-direction: column;
    }
}
