/* 
 * ===== VINICIO MORGONI WOW EFFECTS =====
 * Tutti gli effetti speciali per homepage e altre pagine
 * Compatibile con template Clapat Montoya
 */

/* ===== CTA BUTTON STYLE - CONSISTENT ACROSS ALL PAGES ===== */
.cta-primary {
    display: inline-block;
    padding: 20px 60px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #C9A961 0%, #E8D7B8 50%, #C9A961 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(201,169,97,0.4);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201,169,97,0.6);
    background-position: 100% 50%;
}

.cta-primary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* ===== PRELOADER CREATIVO - SOSTITUISCE QUELLO ORIGINALE ===== */
.preloader-creative {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2C3E50;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.reveal-curtain {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #34495E;
    z-index: 2;
}

.reveal-curtain.left {
    left: 0;
    animation: slideLeft 2s ease-in-out 1s forwards;
}

.reveal-curtain.right {
    right: 0;
    animation: slideRight 2s ease-in-out 1s forwards;
}

@keyframes slideLeft {
    to { transform: translateX(-100%); }
}

@keyframes slideRight {
    to { transform: translateX(100%); }
}

.loading-phrase {
    z-index: 3;
    text-align: center;
    color: #C9A961;
    font-size: 2rem;
    font-weight: 300;
}

.loading-phrase .word {
    display: inline-block;
    opacity: 0;
    animation: fadeInWord 0.6s ease forwards;
}

.loading-phrase .word:nth-child(1) { animation-delay: 0.2s; }
.loading-phrase .word:nth-child(2) { animation-delay: 0.5s; }
.loading-phrase .word:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeInWord {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BACKGROUND ANIMATO PARTICLES - UNIFIED FOR ALL PAGES ===== */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

/* Integrazione parallax particelle con sistema Clapat */
.parallax-wrap #particles-js {
    will-change: transform;
    transform-style: preserve-3d;
}

/* Parallax container per hero chi_sono */
#hero .parallax-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#hero .parallax-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Animazione sottile per le particelle */
@media (prefers-reduced-motion: no-preference) {
    .parallax-wrap #particles-js {
        animation: subtleFloat 25s ease-in-out infinite;
    }
}

@keyframes subtleFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    33% { transform: translateY(-8px) scale(1.02); }
    66% { transform: translateY(5px) scale(0.98); }
}

/* ===== STATISTICHE HERO ===== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    z-index: 10;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: rgba(201, 169, 97, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.3);
    transition: all 0.4s ease;
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C9A961;
    display: block;
    line-height: 1;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== EFFETTO HOVER 3D CARDS ===== */
.overlapping-gallery .overlapping-image .overlapping-image-inner.trigger-item {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.overlapping-gallery .overlapping-image .overlapping-image-inner.trigger-item:hover {
    transform: scale(1.1) rotateX(8deg) rotateY(8deg) !important;
    z-index: 100 !important;
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.4) !important;
}

/* Nascondi zoom-overlay globali sulla homepage per non interferire con overlapping gallery */
.overlapping-gallery .zoom-text,
.overlapping-gallery .zoom-overlay,
.overlapping-gallery .zoom-overlay-title,
.overlapping-gallery .zoom-overlay-subtitle {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Fix freccia hero-footer - evita sovrapposizione */
#hero-footer .button-wrap.right.scroll-down {
    display: flex;
    align-items: center;
    gap: 10px;
}

#hero-footer .button-wrap.right.scroll-down .icon-wrap {
    flex-shrink: 0;
}

#hero-footer .button-wrap.right.scroll-down .button-text {
    flex-shrink: 0;
}

/* ===== SOCIALS WRAP ===== */

.socials-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    top: -3px;
}

.socials-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #C9A961;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.socials-icon:hover {
    opacity: 1;
}

.socials-text {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.light-content .socials-text {
    color: #000;
}

.socials {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.socials li {
    margin: 0;
    padding: 0;
}

.socials .parallax-wrap {
    width: 50px;
    height: 60px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.socials a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    padding: 5px 10px;
}

.light-content .socials a {
    color: #000;
}

.socials a:hover {
    color: #C9A961;
    transform: translateY(-2px);
}

.socials .parallax-element {
    pointer-events: auto;
}

/* Responsive per statistiche */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .counter {
        font-size: 2rem;
    }
    
    /* CTA Button mobile responsive */
    .cta-primary {
        padding: 18px 40px !important;
        font-size: 1rem !important;
        letter-spacing: 1px !important;
        text-align: center !important;
        display: block !important;
        width: fit-content !important;
        margin: 0 auto !important;
    }
    
    .cta-primary span {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .loading-phrase {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .cta-primary {
        padding: 16px 30px !important;
        font-size: 0.9rem !important;
        letter-spacing: 0.5px !important;
    }
}

/* ===== HIDE ORIGINAL PRELOADER QUANDO WOW EFFECTS ATTIVI ===== */
.wow-effects-active .preloader-wrap {
    display: none !important;
    visibility: hidden !important;
}

/* ===== CHI SONO PAGE SPECIFIC EFFECTS ===== */

/* Glass Panel Effect */
.glass-panel {
    background: rgba(201, 169, 97, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

/* Timeline Biografica Animata */
.bio-timeline {
    position: relative;
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #C9A961, #E8D7B8, #C9A961);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin: 60px 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 30px;
    background: rgba(201, 169, 97, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    margin: 0 40px;
    transition: all 0.5s ease;
    transform: translateX(100px);
    opacity: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    transform: translateX(-100px);
}

.timeline-content.animate {
    transform: translateX(0);
    opacity: 1;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C9A961, #E8D7B8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

.timeline-title {
    color: #C9A961;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Experience Cards Flip */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 80px;
    margin: 80px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
}

.experience-card-flip {
    height: 280px;
    perspective: 1000px;
    margin: 20px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.experience-card-flip:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-front {
    background: rgba(201, 169, 97, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(201, 169, 97, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    margin: 0;
}

.card-back {
    background: linear-gradient(135deg, #C9A961, #E8D7B8);
    transform: rotateY(180deg);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.4);
}

.card-icon {
    font-size: 3rem;
    color: #C9A961;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #C9A961;
    margin-bottom: 15px;
    text-align: center;
}

.card-back .card-title {
    color: #2C3E50;
}

.card-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
}

.card-back .card-description {
    color: #2C3E50;
    font-weight: 500;
}

/* Magnetic Elements */
.magnetic {
    transition: transform 0.3s ease;
}

/* ===== RESPONSIVE DESIGN FOR CHI SONO ===== */

/* Timeline Responsive */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-content {
        margin: 20px 0 !important;
        transform: translateY(50px) !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        transform: translateY(50px) !important;
    }
    
    .timeline-content.animate {
        transform: translateY(0) !important;
    }
    
    .timeline-line {
        left: 20px;
        transform: none;
    }
    
    .timeline-year {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }
}

/* Experience Cards Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .experience-grid {
        gap: 60px;
        max-width: 900px;
        padding: 30px;
    }
    
    .experience-card-flip {
        height: 260px;
        margin: 15px;
    }
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 380px;
        padding: 20px;
    }
    
    .experience-card-flip {
        height: 260px;
        margin: 10px;
    }
}

/* ===== LIBRI PAGE EFFECTS ===== */

/* Zoom Gallery Overlay */
.zoom-img-wrapper {
    position: relative;
    overflow: hidden;
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(26,26,26,0.9) 100%);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    transition: opacity 0.4s ease;
    z-index: 100 !important;
    padding: 20px;
    text-align: center;
    pointer-events: none;
}

.zoom-center .zoom-overlay {
    opacity: 1 !important;
    display: flex !important;
}

.zoom-overlay-title {
    font-family: 'Six Caps', sans-serif !important;
    font-size: 3rem !important;
    color: #C9A961 !important;
    margin: 0 0 10px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8) !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
}

.zoom-overlay-subtitle {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.1rem !important;
    color: #ffffff !important;
    margin: 0 !important;
    opacity: 1 !important;
    line-height: 1.4 !important;
    max-width: 280px;
    font-weight: 400 !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8) !important;
}

/* Book Cover Hover Effect */
.content-row img[src*="copertina_libro"] {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.content-row a:hover img[src*="copertina_libro"] {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(201, 169, 97, 0.4);
}

/* Responsive Gallery Overlay */
@media (max-width: 768px) {
    .zoom-overlay {
        padding: 15px;
    }
    
    .zoom-overlay-title {
        font-size: 2.2rem !important;
        letter-spacing: 2px !important;
    }
    
    .zoom-overlay-subtitle {
        font-size: 0.95rem !important;
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .zoom-overlay-title {
        font-size: 1.8rem !important;
    }
    
    .zoom-overlay-subtitle {
        font-size: 0.85rem !important;
        max-width: 200px;
    }
}

/* ===== COACHING PAGE EFFECTS ===== */

/* Achievement Stats Cards */
.hero-stats .stat-item {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-stats .stat-item:hover {
    background: rgba(201, 169, 97, 0.2);
    transform: translateY(-8px) scale(1.05);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 10px;
}

/* Value Cards Section */
.value-card {
    transition: all 0.4s ease;
    position: relative;
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: -5px 5px 20px rgba(201, 169, 97, 0.2);
}

.value-card i {
    transition: transform 0.3s ease;
}

.value-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Method Cards Section */
.method-card {
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    transition: left 0.5s ease;
}

.method-card:hover::before {
    left: 100%;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

/* Step Boxes Process Section */
.step-box {
    transition: all 0.4s ease;
}

.step-number {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.step-box:hover .step-number {
    transform: translateX(-50%) scale(1.3) rotate(360deg) translateY(-15px) !important;
    box-shadow: 0 25px 60px rgba(201, 169, 97, 0.8);
    animation: pulse 0.6s ease-in-out;
}

/* Animazione pulse solo su hover */
@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1.3) rotate(360deg) translateY(-15px); }
    50% { transform: translateX(-50%) scale(1.35) rotate(360deg) translateY(-18px); }
}

/* Area Boxes Section */
.area-box {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.area-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(201, 169, 97, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.area-box:hover::before {
    width: 300px;
    height: 300px;
}

.area-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    border-color: #C9A961;
}

.area-box i {
    transition: all 0.3s ease;
}

.area-box:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Format Cards Section */
.format-card {
    transition: all 0.4s ease;
    position: relative;
}

.format-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(201, 169, 97, 0.3);
}

.format-card i {
    transition: transform 0.3s ease;
}

.format-card:hover i {
    transform: scale(1.15);
}

/* Responsive Coaching Page */
@media (max-width: 768px) {
    .value-card,
    .method-card,
    .area-box,
    .format-card {
        margin-bottom: 20px;
    }
    
    .step-box {
        margin-bottom: 30px;
    }
}

/* ===== VINICIO MORGONI SPECIFIC STYLES ===== */

/* Fix Hero Image Mobile - Evita troncatura in basso */
@media (max-width: 768px) {
    .home #hero-bg-image,
    #hero-bg-image {
        background-position: center top !important;
        background-size: cover !important;
        min-height: 100vh !important;
    }
}

@media (max-width: 480px) {
    .home #hero-bg-image,
    #hero-bg-image {
        background-position: center 20% !important;
        background-size: cover !important;
    }
}

/* Maggiore spazio sopra la sezione contatti */
.content-row.dark-section.text-align-center[data-bgcolor="#2C3E50"] {
    padding-top: 80px !important;
}

@media (max-width: 768px) {
    .content-row.dark-section.text-align-center[data-bgcolor="#2C3E50"] {
        padding-top: 60px !important;
    }
}

/* ===== SOCIOLOGIA PAGE EFFECTS ===== */

/* Benefici Cards Section */
.benefici-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0c0c0c 0%, #1a1a1a 100%);
}

.benefici-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.benefici-section .lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 60px;
}

.benefici-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,169,97,0.5);
    box-shadow: 0 10px 40px rgba(201,169,97,0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C9A961 0%, #E8D7B8 100%);
    border-radius: 50%;
    font-size: 2rem;
    color: #0c0c0c;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #C9A961;
}

.benefit-card p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* Come Funziona Timeline Section */
.come-funziona-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.come-funziona-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #0c0c0c;
}

.come-funziona-section .lead {
    font-size: 1.2rem;
    color: rgba(0,0,0,0.6);
    margin-bottom: 80px;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-line {
    display: none;
}

.process-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    opacity: 0;
    padding-left: 50%;
}

.process-step:nth-child(odd) {
    flex-direction: row;
    padding-left: 0;
    padding-right: 50%;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: 50%;
    padding-right: 0;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C9A961 0%, #E8D7B8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 5px 20px rgba(201,169,97,0.4);
    flex-shrink: 0;
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.step-content {
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.process-step:nth-child(odd) .step-content {
    margin-left: 0;
}

.process-step:nth-child(even) .step-content {
    margin-right: 0;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #C9A961;
}

.step-content p {
    font-size: 1rem;
    color: rgba(0,0,0,0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-duration {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(201,169,97,0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #C9A961;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0c0c0c 100%);
}

.faq-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.faq-section .lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 60px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.faq-item:hover {
    border-color: rgba(201,169,97,0.3);
}

.faq-item.active {
    border-color: rgba(201,169,97,0.5);
    background: rgba(255,255,255,0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255,255,255,0.03);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.3rem;
    color: #C9A961;
    font-weight: 600;
    flex: 1;
}

.faq-toggle {
    font-size: 2rem;
    color: #C9A961;
    font-weight: 300;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(201,169,97,0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-toggle {
    background: rgba(201,169,97,0.2);
    border-color: #C9A961;
    transform: rotate(90deg);
}

.faq-answer {
    height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    height: auto;
    opacity: 1;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(201,169,97,0.1);
    border-radius: 20px;
    border: 1px solid rgba(201,169,97,0.3);
}

.faq-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #C9A961;
}

.faq-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

/* Sociologia Responsive */
@media (max-width: 1024px) {
    .benefici-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .timeline-line {
        left: 35px;
    }
    
    .process-step {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 80px;
    }
    
    .step-number {
        left: 35px;
        transform: translateX(-50%);
    }
    
    .step-content {
        width: 100%;
        margin: 0 !important;
    }
}

@media (max-width: 768px) {
    .benefici-section h2,
    .come-funziona-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        left: 25px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-content h3 {
        font-size: 1.4rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

/* ===== STILI PERSONALIZZATI TESTIMONIANZE ===== */

/* Quote Wrap Styling */
.quote-wrap {
    background: rgba(201, 169, 97, 0.1);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #C9A961;
}

.quote-text {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.quote-author {
    font-weight: 600;
    color: #C9A961;
    text-align: right;
}

/* Counter Styling */
.counter-wrap {
    padding: 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.counter-wrap:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: #C9A961;
    display: block;
    margin-bottom: 10px;
}

.counter-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonial Quote Styling */
.testimonial-quote {
    background: rgba(201, 169, 97, 0.1);
    border-left: 6px solid #C9A961;
    padding: 30px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(201, 169, 97, 0.3);
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* Transformation Results */
.transformation-results {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.transformation-results h5 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.custom-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: #C9A961;
}

/* Testimonial Visual Card */
.testimonial-visual-card {
    background: linear-gradient(135deg, #C9A961 0%, #B8956A 100%);
    padding: 30px;
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonial-visual-card.light-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
}

.testimonial-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

.year-highlight {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.transformation-icon {
    font-size: 3rem;
    margin: 20px 0;
    display: block;
}

.key-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.dark-text {
    color: #2c3e50;
}

.impact-metrics {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
}

.metric {
    text-align: center;
}

.metric .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.metric .label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Testimonials Grid */
.modern-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.modern-testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.modern-testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}

.testimonial-header h4 {
    color: #C9A961;
    margin: 0;
    font-size: 1.2rem;
}

.testimonial-year {
    background: #C9A961;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.modern-testimonial-card blockquote {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0;
}

.transformation-outcome {
    background: rgba(201, 169, 97, 0.2);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.transformation-outcome strong {
    color: #C9A961;
}

/* Method Steps */
.method-steps {
    margin-top: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.method-steps .step-number {
    background: linear-gradient(135deg, #C9A961 0%, #B8956A 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    transform: none;
    left: auto;
}

.step-content h5 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.step-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* Wisdom Box */
.wisdom-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #C9A961;
    position: relative;
}

.wisdom-box h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.wisdom-quotes blockquote {
    background: white;
    padding: 20px;
    border-left: 4px solid #C9A961;
    margin: 15px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

/* CTA Buttons */
.cta-buttons {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.custom-button {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.custom-button.primary {
    background: linear-gradient(135deg, #C9A961 0%, #B8956A 100%);
    color: white;
}

.custom-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(201, 169, 97, 0.4);
}

.custom-button.secondary {
    background: transparent;
    color: #C9A961;
    border-color: #C9A961;
}

.custom-button.secondary:hover {
    background: #C9A961;
    color: white;
    transform: translateY(-3px);
}

/* Final Quote */
.final-quote {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
}

.final-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.quote-signature {
    color: #C9A961;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Design Testimonianze */
@media (max-width: 768px) {
    .modern-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 20px auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .custom-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .quote-wrap {
        padding: 25px;
    }
    
    .wisdom-box {
        padding: 25px;
    }
}

/* ===== STILI PERSONALIZZATI CONTATTI ===== */

/* Contact Info Box */
.contact-info-box {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #C9A961 0%, #E8D7B8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.contact-info-box h4 {
    color: #2C3E50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-box p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-info-box a {
    color: #C9A961;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-box a:hover {
    color: #B8956A;
}

/* Contact Form Styling */
#contact-form-main {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-field {
    margin-bottom: 20px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #C9A961;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-field select {
    cursor: pointer;
}

.form-field select option {
    background: #2C3E50;
    color: white;
}

.contact-benefits {
    background: rgba(201, 169, 97, 0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #C9A961;
}

.benefit-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* FAQ Styling */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 169, 97, 0.3);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question h4 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #C9A961 0%, #E8D7B8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    height: auto;
    opacity: 1;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* Map Container */
#map-container {
    width: 100%;
    height: 500px;
    background: #e0e0e0;
    position: relative;
}

/* Scroll to Section Smooth */
.scroll-to-section {
    cursor: pointer;
}

/* Responsive Contatti */
@media (max-width: 768px) {
    .contact-info-box {
        padding: 30px 15px;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    #contact-form-main {
        padding: 30px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    #map-container {
        height: 350px;
    }
}

/* ===== STILI PERSONALIZZATI PRENOTA ===== */

/* Service Card */
.service-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 80px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 60px rgba(0,0,0,0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C9A961 0%, #E8D7B8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 25px rgba(201,169,97,0.3);
}

.service-icon i {
    font-size: 2.5rem;
    color: #FFFFFF;
}

.price-tag {
    display: inline-block;
    background: #C9A961;
    color: #FFFFFF;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(201,169,97,0.3);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #E8E8E8;
    font-size: 1.1rem;
    color: #5A5A5A;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: #C9A961;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Cal.com embed container */
.cal-embed-container {
    width: 100%;
    height: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background: #FFFFFF;
    margin-top: 30px;
}

/* Responsive Prenota */
@media (max-width: 768px) {
    .service-card {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .price-tag {
        font-size: 1.1rem;
        padding: 8px 20px;
    }
    
    .feature-list li {
        font-size: 1rem;
    }
    
    .cal-embed-container {
        height: 600px;
    }
}

/* ============================================
   CHI SONO - TIMELINE BIOGRAFICA
   ============================================ */

.bio-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 0;
}

.timeline-line {
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        rgba(201, 169, 97, 0.8) 0%, 
        rgba(201, 169, 97, 0.4) 50%,
        rgba(201, 169, 97, 0.1) 100%);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 70px;
    padding-left: 160px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-year {
    position: absolute;
    left: 20px;
    top: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(201, 169, 97, 0.1) 100%);
    border: 3px solid #C9A961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #C9A961;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.25),
                inset 0 2px 10px rgba(201, 169, 97, 0.1);
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover .timeline-year {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.4),
                inset 0 2px 15px rgba(201, 169, 97, 0.2);
    border-width: 4px;
}

.timeline-content {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    padding: 32px 36px;
    border-radius: 16px;
    border-left: 4px solid #C9A961;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(201, 169, 97, 0.5) 50%, 
        transparent 100%);
}

.timeline-item:hover .timeline-content {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    border-left-width: 5px;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.timeline-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
}

@media screen and (max-width: 768px) {
    /* Process Timeline Mobile (Come Funziona) */
    .process-timeline {
        padding: 0 15px;
    }
    
    .process-step {
        flex-direction: row !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 50px;
    }
    
    .process-step .step-number {
        position: relative;
        left: 0;
        transform: none;
        margin-right: 20px;
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        flex-shrink: 0;
    }
    
    .process-step .step-content {
        width: calc(100% - 80px);
        max-width: none;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
    }
    
    .process-step .step-content h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .process-step .step-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .step-duration {
        font-size: 0.85rem;
        padding: 4px 12px;
    }
    
    /* Bio Timeline Mobile (Chi Sono) */
    .bio-timeline {
        padding: 40px 10px;
        max-width: 100%;
    }
    
    .bio-timeline .timeline-line {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .timeline-year {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        border: none;
        border-radius: 0;
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: #C9A961;
        text-align: left;
        margin-bottom: 12px;
        padding-left: 10px;
        box-shadow: none;
        transform: none !important;
    }
    
    .timeline-content {
        padding: 20px 18px;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-left: 0;
    }
    
    .timeline-title {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    
    .timeline-description {
        font-size: 0.92rem;
        line-height: 1.6;
    }
    
    .timeline-item:hover .timeline-content {
        transform: translateY(-2px);
    }
    
    .timeline-item:hover .timeline-year {
        transform: none !important;
    }
}

/* ============================================
   PAGINA ORGANIZZA PRESENTAZIONE
   ============================================ */

/* Benefit Box - Sezione Perché Organizzare */
.benefit-box {
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    background: rgba(201, 169, 97, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
}

.benefit-box i {
    font-size: 2.5rem;
    color: #C9A961;
    margin-bottom: 20px;
    display: block;
}

.benefit-box h4 {
    color: #C9A961;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-box p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin: 0;
}

/* Step Card - Sezione Come Funziona */
.step-card {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C9A961, #E8D7B8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.step-card h4 {
    color: #C9A961;
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 0;
}

.step-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin: 0;
}

/* Format Option - Sezione Formati */
.format-option {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.format-option:hover {
    border-color: #C9A961;
    background: rgba(201, 169, 97, 0.1);
}

.format-option h4 {
    color: #C9A961;
    font-size: 1.6rem;
    margin-bottom: 15px;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.format-option h4 i {
    font-size: 1.8rem;
}

.format-option p {
    margin: 0 0 10px 0;
}

.format-option ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.format-option ul li {
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    margin-bottom: 5px;
}

.format-option ul li::before {
    content: "✓";
    color: #C9A961;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Testimonial Event */
.testimonial-event {
    background: rgba(201, 169, 97, 0.1);
    border-left: 4px solid #C9A961;
    padding: 30px;
    border-radius: 0 15px 15px 0;
    margin: 30px 0;
}

.testimonial-event p {
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-event .author {
    color: #C9A961;
    font-weight: 600;
}

/* Form Presentazione */
.contact-form-presentation {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.contact-form-presentation input,
.contact-form-presentation textarea,
.contact-form-presentation select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form-presentation input:focus,
.contact-form-presentation textarea:focus,
.contact-form-presentation select:focus {
    outline: none;
    border-color: #C9A961;
    background: rgba(255,255,255,0.15);
}

.contact-form-presentation input::placeholder,
.contact-form-presentation textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.contact-form-presentation select option {
    background: #2C3E50;
    color: white;
}

.contact-form-presentation input[type="checkbox"] {
    width: auto;
    margin-bottom: 0;
}

/* Responsive Presentazione */
@media (max-width: 1024px) {
    .step-card {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .format-option {
        padding: 25px;
    }
    
    .contact-form-presentation {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .benefit-box {
        padding: 25px 20px;
    }
    
    .step-card h4 {
        font-size: 1.3rem;
    }
    
    .format-option h4 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .testimonial-event {
        padding: 20px;
    }
    
    .testimonial-event p {
        font-size: 1.1rem;
    }
    
    .contact-form-presentation {
        padding: 25px 20px;
    }
}
