/* Servizi Page Styles 2023 */
.servizi-page {
    background: linear-gradient(135deg, rgba(92, 42, 157, 0.03) 0%, rgba(138, 79, 255, 0.03) 100%);
    padding: 0 0 80px;
    position: relative;
    overflow: hidden;
}

/* Header Section */
.servizi-header {
    background: linear-gradient(135deg, #5c2a9d, #8a4fff);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
    margin-top: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    min-height: 300px;
}

.servizi-header .header-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.servizi-header h1 {
    margin-bottom: 15px;
    width: 100%;
}

.servizi-header p {
    max-width: 600px;
    margin: 0 auto;
}

.servizi-header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.servizi-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
}

.servizi-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.servizi-container {
    margin-top: -40px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.servizi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.servizio-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(92, 42, 157, 0.1);
    box-shadow: 0 10px 30px rgba(92, 42, 157, 0.1);
}

.servizio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #5c2a9d, #8a4fff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.servizio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(92, 42, 157, 0.15);
    border-color: rgba(92, 42, 157, 0.2);
}

.servizio-item:hover::before {
    transform: scaleX(1);
}

.servizio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5c2a9d, #8a4fff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.servizio-item:hover .servizio-icon {
    transform: rotate(10deg) scale(1.1);
    border-radius: 50%;
}

.servizio-icon i {
    font-size: 2rem;
    color: white;
}

.servizio-item h3 {
    color: #5c2a9d;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.servizio-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.servizio-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.servizio-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #555;
}

.servizio-features li i {
    color: #8a4fff;
    margin-right: 10px;
    font-size: 1.1rem;
}

/* CTA Section */
.servizi-cta {
    background: linear-gradient(135deg, #5c2a9d, #8a4fff);
    padding: 80px 0;
    margin-top: 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.servizi-cta::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.2;
}

.servizi-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.servizi-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.servizi-cta .btn {
    background: white;
    color: #5c2a9d;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.servizi-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #5c2a9d;
}

@media (max-width: 1200px) {
    .servizi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .servizi-header {
        padding: 80px 0 160px;
    }

    .servizi-header h1 {
        font-size: 2.5rem;
    }

    .servizi-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .servizio-item {
        padding: 30px;
    }

    .servizio-icon {
        width: 70px;
        height: 70px;
    }

    .servizi-cta {
        padding: 60px 0;
    }

    .servizi-cta h2 {
        font-size: 2rem;
    }
}
