        /* Footer Styles */
        .site-footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            color: #ffffff;
            margin-top: 0;
            position: relative;
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
        }
        
        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                var(--verde-bosco) 30%,
                var(--blu-lago) 50%,
                var(--verde-bosco) 70%,
                transparent 100%);
            border-radius: 1px;
            box-shadow: 0 2px 10px rgba(78, 195, 236, 0.2);
        }
        
        /* Container */
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        /* Footer Main Content */
        .footer-main {
            padding: 80px 0 70px 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
            gap: 50px;
            justify-content: center;
            align-items: start;
        }
        
        /* Company Column */
        .footer-company {
            text-align: center;
            padding: 0 20px;
        }
        
        .footer-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .footer-logo img {
            height: 60px;
            width: auto;
        }
        
        .footer-tagline {
            color: var(--blu-lago);
            font-style: italic;
            margin-bottom: 15px;
            font-size: 14px;
            font-family: 'Lato', sans-serif;
            font-weight: 400;
            text-align: center;
        }
        
        .footer-description {
            color: #ffffff !important;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 14px;
            font-family: 'Lato', sans-serif;
            font-weight: 400;
            text-align: center;
            max-width: 350px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* G Tech Group Reference */
        .gtech-reference {
            margin-top: 30px;
            text-align: center;
        }
        
        .gtech-label {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7) !important;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        
        .gtech-logo-link {
            display: inline-block;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        
        .gtech-logo-link:hover {
            transform: translateY(-3px);
            opacity: 0.9;
        }
        
        .gtech-logo {
            height: 40px;
            width: auto;
            filter: brightness(1);
            transition: filter 0.3s ease;
        }
        
        .gtech-logo-link:hover .gtech-logo {
            filter: brightness(1.2);
        }
        
        /* Footer Columns */
        .footer-column {
            text-align: center;
        }
        
        .footer-column h4 {
            color: #ffffff !important;
            font-size: 18px;
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
            text-align: center;
        }
        
        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 2px;
            background: var(--blu-lago);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: center;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.9) !important;
            text-decoration: none;
            font-size: 14px;
            font-family: 'Lato', sans-serif;
            font-weight: 400;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            position: relative;
            padding: 2px 0;
        }
        
        .footer-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 100%;
            height: 1px;
            background: var(--blu-lago);
            transition: transform 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #ffffff !important;
            transform: translateY(-2px);
        }
        
        .footer-links a:hover::before {
            transform: translateX(-50%) scaleX(0.8);
        }
        
        .footer-links a i {
            font-size: 10px;
            margin-left: 3px;
        }
        
        /* Contact Column - Special Styling */
        .footer-contact {
            text-align: center;
        }
        
        .footer-contact h4 {
            text-align: center;
            color: #ffffff !important;
        }
        
        .footer-contact h4::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 280px;
            margin: 0 auto;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #ffffff !important;
            text-decoration: none;
            font-family: 'Lato', sans-serif;
            transition: all 0.3s ease;
            text-align: left;
        }
        
        .contact-item > div {
            flex: 1;
            text-align: left;
        }
        
        a.contact-item:hover {
            color: #ffffff !important;
            transform: translateX(3px);
        }
        
        a.contact-item:hover i {
            transform: scale(1.1);
        }
        
        .contact-item i {
            font-size: 16px;
            width: 24px;
            text-align: center;
            color: var(--verde-bosco);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        
        .contact-item .fa-whatsapp {
            color: #25D366;
        }
        
        .contact-item .fa-envelope {
            color: var(--blu-lago);
        }
        
        .contact-item .fa-headset {
            color: #FF6B6B;
        }
        
        .contact-item .fa-map-marker-alt {
            color: #FFD93D;
        }
        
        .contact-label {
            display: block;
            font-size: 11px;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 3px;
            color: rgba(255, 255, 255, 0.7) !important;
            font-weight: 500;
        }
        
        .contact-value {
            display: block;
            font-size: 14px;
            font-family: 'Lato', sans-serif;
            font-weight: 500;
            line-height: 1.4;
            color: #ffffff !important;
        }
        
        /* Footer Bottom */
        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-legal {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-align: center;
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            font-family: 'Lato', sans-serif;
            font-weight: 400;
            margin: 0;
            line-height: 2;
            text-align: center;
            max-width: 1000px;
            letter-spacing: 0.3px;
        }
        
        .copyright strong {
            color: var(--bianco);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        /* Ensure proper font hierarchy */
        .site-footer p {
            font-family: 'Lato', sans-serif;
        }
        
        .site-footer a {
            font-family: 'Lato', sans-serif;
        }
        
        .site-footer strong {
            font-family: inherit;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--verde-bosco);
            color: var(--bianco);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-family: 'Lato', sans-serif;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 135, 85, 0.3);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--blu-lago);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(78, 195, 236, 0.4);
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .container {
                padding: 0 20px;
            }
            
            .footer-grid {
                gap: 40px;
            }
        }
        
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 50px;
            }
            
            .footer-company {
                grid-column: 1 / -1;
                padding-right: 0;
                text-align: center;
                margin-bottom: 30px;
                padding-bottom: 30px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .footer-description {
                max-width: 500px;
            }
            
            .footer-contact {
                text-align: center;
            }
            
            .footer-contact h4 {
                text-align: center;
            }
            
            .footer-contact h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .contact-items {
                max-width: 320px;
                margin: 0 auto;
            }
            
            .contact-item {
                text-align: left;
            }
            
            .contact-item > div {
                text-align: left;
            }
        }
        
        @media (max-width: 768px) {
            .footer-main {
                padding: 50px 0;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
                text-align: center;
            }
            
            .footer-description {
                max-width: 100%;
                padding: 0 10px;
            }
            
            .footer-column h4 {
                font-size: 17px;
                margin-bottom: 15px;
            }
            
            .footer-links a {
                font-size: 14px;
                padding: 4px 0;
            }
            
            .contact-items {
                align-items: center;
                padding-left: 0;
                gap: 15px;
                max-width: 100%;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-item > div {
                text-align: center;
            }
            
            .copyright {
                font-size: 12px;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }
        
        @media (max-width: 480px) {
            .footer-logo img {
                height: 50px;
            }
            
            .footer-column h4 {
                font-size: 16px;
            }
            
            .copyright {
                font-size: 11px;
                line-height: 1.8;
            }
        }
        
        @media (max-width: 320px) {
            /* Nessun riferimento ai badge qui */
        }