/* Stili specifici per la pagina Collaborazioni */

/* Hero CTA Button */
.collaboration-hero-cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.collaboration-hero-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Gill Sans', 'Gill Sans Nova', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.collaboration-hero-btn:hover {
    background: rgba(255, 215, 0, 0.95);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.5);
}

.collaboration-hero-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .collaboration-hero-btn {
        font-size: 16px;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .collaboration-hero-btn {
        font-size: 14px;
        padding: 12px 25px;
        letter-spacing: 1px;
    }
}

/* Hero section con video di sfondo */
.collaboration-hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.collaboration-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}

.hero-title {
    position: absolute !important;
    bottom: 120px !important;
    left: 55px !important;
    font-size: 78px !important;
    font-weight: 300 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    font-family: 'Gill Sans Light', 'Gill Sans Nova', sans-serif !important;
    animation: fadeUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.5s both !important;
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    z-index: 100 !important;
}

/* Sezione contenuto */
.collaboration-content {
    background: #000;
    color: #fff;
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-family: 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 3rem;
    font-weight: 100;
    color: #FFD700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
}

.intro-text {
    font-family: 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

/* Sezione benefici */
.benefits-section {
    margin-bottom: 100px;
}

.benefits-section h3 {
    font-family: 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 2.5rem;
    font-weight: 100;
    color: #FFD700;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.benefits-section h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    transform: translateY(-8px) scale(1.02);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15), 0 0 0 1px rgba(255, 215, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: block;
    color: #FFD700;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-weight: 100;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.05);
    opacity: 1;
}

.benefit-item h4 {
    font-family: 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 1.3rem;
    font-weight: 100;
    color: #FFD700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.benefit-item h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: #FFD700;
    opacity: 0.6;
}

.benefit-item p {
    font-family: 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Sezione servizi */
.services-section {
    margin-bottom: 100px;
}

.services-section h3 {
    font-family: 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 2.5rem;
    font-weight: 100;
    color: #FFD700;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.services-section h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 35px 30px;
    border-radius: 15px;
    border-left: 5px solid #FFD700;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #FFD700 0%, rgba(255, 215, 0, 0.3) 100%);
    border-radius: 0 0 0 15px;
}

.service-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
    transform: translateX(8px) translateY(-2px);
    border-color: #FFD700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.1), 0 0 0 1px rgba(255, 215, 0, 0.2);
}

.service-item h4 {
    font-family: 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 1.1rem;
    font-weight: 100;
    color: #FFD700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-item h4 svg {
    color: #FFD700;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.service-item:hover h4 svg {
    opacity: 1;
    transform: scale(1.1);
}



.service-item p {
    font-family: 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    padding-left: 18px;
}

/* Sezione contatti */
.contact-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.contact-section:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.1);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    opacity: 0.6;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    opacity: 0.6;
}

.contact-section h3 {
    font-family: 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 2.2rem;
    font-weight: 100;
    color: #FFD700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    opacity: 0.9;
}

.contact-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    opacity: 0.7;
}

.contact-section p {
    font-family: 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 100;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    font-family: 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.03);
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 100;
}

.contact-item strong {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 100;
}

.contact-item strong svg {
    color: #FFD700;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.contact-item:hover strong svg {
    opacity: 1;
    transform: scale(1.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.08);
}

.contact-item a {
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px !important;
        left: 30px !important;
        bottom: 100px !important;
    }
    
    .collaboration-content {
        padding: 60px 0;
    }
    
    .content-wrapper h2 {
        font-size: 2.2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .benefits-section h3,
    .services-section h3 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-item {
        padding: 30px 25px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-item {
        padding: 25px 20px;
    }
    
    .contact-section {
        padding: 35px 25px;
    }
    
    .contact-section h3 {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .contact-item {
        padding: 15px 18px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px !important;
        left: 20px !important;
        bottom: 80px !important;
    }
    
    .collaboration-content {
        padding: 40px 0;
    }
    
    .content-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .benefits-section h3,
    .services-section h3 {
        font-size: 1.6rem;
    }
    
    .benefit-item {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        font-size: 3rem;
    }
    
    .service-item {
        padding: 20px 15px;
    }
    
    .contact-section {
        padding: 25px 20px;
    }
    
    .contact-section h3 {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .contact-item {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

/* Animazioni */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-item,
.service-item {
    animation: fadeUp 0.8s ease-out;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

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