/* Services Hero Section */
.services-hero {
    min-height: 50vh;
    padding: 12rem 2rem 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-hero-container {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.services-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.services-hero p {
    font-size: 1.5rem;
    color: #94a3b8;
    line-height: 1.8;
}

/* Services Detailed Section */
.services-detailed {
    padding: 4rem 2rem;
}

.services-detailed-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detailed-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 30px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease both;
}

.service-detailed-card:nth-child(1) { animation-delay: 0.1s; }
.service-detailed-card:nth-child(2) { animation-delay: 0.2s; }
.service-detailed-card:nth-child(3) { animation-delay: 0.3s; }
.service-detailed-card:nth-child(4) { animation-delay: 0.4s; }
.service-detailed-card:nth-child(5) { animation-delay: 0.5s; }
.service-detailed-card:nth-child(6) { animation-delay: 0.6s; }

.service-detailed-card:hover {
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.3);
}

.card-right:hover {
    transform: translateX(-10px);
}

.service-detailed-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.service-detailed-card:hover .service-detailed-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.service-detailed-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e4e7eb;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-detailed-card:hover .service-detailed-content h2 {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detailed-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    font-weight: 600;
    color: #e4e7eb;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateX(5px);
}

[dir="rtl"] .feature-item:hover {
    transform: translateX(-5px);
}

.feature-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

/* CTA Section */
.services-cta-section {
    padding: 6rem 2rem;
    text-align: center;
}

.services-cta-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.services-cta-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-cta-container p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: rgba(99, 102, 241, 0.1);
    color: #e4e7eb;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .service-detailed-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .service-detailed-icon {
        margin: 0 auto;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 10rem 1.5rem 4rem;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-hero p {
        font-size: 1.2rem;
    }

    .services-detailed {
        padding: 3rem 1.5rem;
    }

    .service-detailed-card {
        padding: 2rem;
    }

    .service-detailed-content h2 {
        font-size: 1.8rem;
    }

    .service-detailed-content p {
        font-size: 1rem;
    }

    .services-cta-section {
        padding: 4rem 1.5rem;
    }

    .services-cta-container {
        padding: 3rem 2rem;
    }

    .services-cta-container h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-detailed-icon {
        width: 80px;
        height: 80px;
    }

    .service-detailed-icon svg {
        width: 48px;
        height: 48px;
    }
}