/* Service Pages Specific Styles */

/* Service Hero Section */
.service-hero {
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.service-hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-hero-graphic {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    animation: float 6s ease-in-out infinite;
}

/* Service-specific hero backgrounds */
.telefonia-hero {
    background: linear-gradient(135deg, #0099FF 0%, #0066CC 100%);
}

.telefonia-hero .service-hero-graphic {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cancelleria-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.cancelleria-hero .service-hero-graphic {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.ecommerce-hero {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.ecommerce-hero .service-hero-graphic {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.made-in-italy-hero {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.made-in-italy-hero .service-hero-graphic {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.marchi-hero {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.marchi-hero .service-hero-graphic {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Service Details Section */
.service-details {
    padding: 80px 0;
    background: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #0099FF;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0099FF 0%, #0066CC 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-detail-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-detail-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-detail-features {
    list-style: none;
    padding: 0;
}

.service-detail-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.service-detail-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0099FF;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0099FF 0%, #0066CC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.benefit-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0099FF 0%, #0066CC 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: #0099FF;
    border: 2px solid white;
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: white;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #0099FF;
}

/* Service-specific contact sections */
.service-contact {
    background: #f8f9fa;
}

.service-contact .contact-form {
    background: white;
}

/* Additional Services Section */
.additional-services {
    padding: 80px 0;
    background: white;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.additional-service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.additional-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0099FF 0%, #0066CC 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.additional-service-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.additional-service-card p {
    color: #666;
    line-height: 1.6;
}

/* Platforms Section */
.platforms {
    padding: 80px 0;
    background: #f8f9fa;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.platform-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.platform-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.platform-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.platform-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.platform-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Made in Italy Services Section */
.made-in-italy-services {
    padding: 80px 0;
    background: white;
}

.made-in-italy-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.made-in-italy-service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.made-in-italy-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.made-in-italy-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.made-in-italy-service-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.made-in-italy-service-card p {
    color: #666;
    line-height: 1.6;
}

/* Work Process Section */
.work-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .service-hero-text h1 {
        font-size: 2.5rem;
    }

    .service-hero-graphic {
        width: 250px;
        height: 250px;
        font-size: 3rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-detail-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .service-hero-text h1 {
        font-size: 2rem;
    }

    .service-hero-graphic {
        width: 200px;
        height: 200px;
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .service-detail-card {
        padding: 1.5rem;
    }
}

/* Animation for service cards */
.service-detail-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-detail-card:nth-child(1) { animation-delay: 0.1s; }
.service-detail-card:nth-child(2) { animation-delay: 0.2s; }
.service-detail-card:nth-child(3) { animation-delay: 0.3s; }
.service-detail-card:nth-child(4) { animation-delay: 0.4s; }
.service-detail-card:nth-child(5) { animation-delay: 0.5s; }
.service-detail-card:nth-child(6) { animation-delay: 0.6s; }

/* Service-specific color variations */
.service-detail-card.telefonia:hover {
    border-color: #0099FF;
}

.service-detail-card.cancelleria:hover {
    border-color: #f093fb;
}

.service-detail-card.ecommerce:hover {
    border-color: #4facfe;
}

.service-detail-card.made-in-italy:hover {
    border-color: #43e97b;
}

.service-detail-card.marchi:hover {
    border-color: #fa709a;
}

/* Breadcrumb navigation */
.breadcrumb {
    padding: 1rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #0099FF;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #999;
}

/* Service page specific animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-hero-text {
    animation: slideInFromLeft 0.8s ease-out;
}

.service-hero-image {
    animation: slideInFromRight 0.8s ease-out;
} 