/* ===== SERVICES HERO SECTION - COMPLETELY REDESIGNED ===== */

.services-hero-section {
    min-height: 70vh;
    height: 70vh;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #1e293b 75%, #0f172a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
}

/* Beautiful Animated Background */
.services-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 85%, rgba(59, 130, 246, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(30, 58, 138, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(51, 65, 85, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(148, 163, 184, 0.08) 0%, transparent 30%);
    background-size: 400% 400%, 350% 350%, 500% 500%, 300% 300%;
    animation: servicesFlowAnimation 30s ease-in-out infinite;
    z-index: 1;
}

@keyframes servicesFlowAnimation {
    0% { 
        background-position: 0% 0%, 100% 100%, 50% 0%, 0% 100%;
        transform: rotate(0deg) scale(1);
    }
    25% { 
        background-position: 50% 50%, 50% 50%, 100% 50%, 50% 50%;
        transform: rotate(1deg) scale(1.02);
    }
    50% { 
        background-position: 100% 100%, 0% 0%, 0% 100%, 100% 0%;
        transform: rotate(0deg) scale(1.01);
    }
    75% { 
        background-position: 50% 100%, 100% 50%, 50% 50%, 0% 50%;
        transform: rotate(-1deg) scale(1.02);
    }
    100% { 
        background-position: 0% 0%, 100% 100%, 50% 0%, 0% 100%;
        transform: rotate(0deg) scale(1);
    }
}

/* Floating Particles Animation */
.services-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(148, 163, 184, 0.4), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(59, 130, 246, 0.3), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(148, 163, 184, 0.5), transparent),
        radial-gradient(1px 1px at 60% 10%, rgba(30, 58, 138, 0.4), transparent);
    background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px;
    animation: floatingParticles 40s linear infinite;
    z-index: 1;
}

@keyframes floatingParticles {
    0% { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
    100% { background-position: 200px 200px, -300px 300px, 150px -150px, -250px 250px; }
}

/* Services Components Container */
.services-components-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.services-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    align-items: center;
    height: 100%;
}

/* Left Panel Styling */
.services-left-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    justify-content: flex-start;
}

.services-header {
    margin-bottom: 0;
}

.services-title-section {
    margin-bottom: 0.8rem;
}

.services-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 30px rgba(59, 130, 246, 0.4); }
    100% { text-shadow: 0 0 40px rgba(59, 130, 246, 0.6), 0 0 60px rgba(30, 58, 138, 0.3); }
}

.services-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    max-width: 90%;
    margin: 0;
}

/* Features List */
.services-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    animation: featureSlideIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes featureSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.5rem 0;
}

.feature-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* Stats Row */
.services-stats-row {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    justify-content: flex-start;
}

.stat-item {
    text-align: center;
    animation: statCountUp 1s ease-out 1s both;
}

@keyframes statCountUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Actions */
.services-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.services-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.services-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.services-btn:hover::before {
    left: 100%;
}

.services-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.services-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    color: white;
}

.services-btn-secondary {
    background: transparent;
    color: #60a5fa;
    border: 2px solid #60a5fa;
}

.services-btn-secondary:hover {
    background: #60a5fa;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3);
}

/* Right Panel Styling */
.services-right-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem 0;
}

.services-image-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: auto;
}

.services-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-main-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .services-main-title {
        font-size: 3rem;
    }
    
    .services-stats-row {
        justify-content: center;
    }
    
    .services-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .services-main-content {
        padding: 2rem 1rem;
        gap: 3rem;
    }
    
    .services-main-title {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .services-stats-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .services-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-btn {
        width: 100%;
        justify-content: center;
    }
}