  /* Wow Contact Section - Stile completamente diverso dal form in fondo */
        .wow-contact-section {
            background: linear-gradient(135deg, #2a6e7c 0%, #1d4e58 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .wow-contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            animation: moveGrid 20s linear infinite;
        }

        @keyframes moveGrid {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(10px, 10px);
            }
        }

        .wow-contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .contact-visual {
            position: relative;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .floating-icon {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(245, 236, 224, 0.1);
            border: 2px solid rgba(245, 236, 224, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f5ece0;
            font-size: 24px;
            animation: floatIcon 6s ease-in-out infinite;
        }

        .floating-icon:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-icon:nth-child(2) {
            top: 20%;
            right: 15%;
            animation-delay: 1.5s;
        }

        .floating-icon:nth-child(3) {
            bottom: 30%;
            left: 5%;
            animation-delay: 3s;
        }

        .floating-icon:nth-child(4) {
            bottom: 10%;
            right: 10%;
            animation-delay: 4.5s;
        }

        @keyframes floatIcon {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            25% {
                transform: translateY(-20px) rotate(90deg);
            }

            50% {
                transform: translateY(-10px) rotate(180deg);
            }

            75% {
                transform: translateY(-30px) rotate(270deg);
            }
        }

        .contact-illustration {
            position: relative;
            padding: 40px;
        }

        .circle-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle, rgba(245, 236, 224, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.5;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        .contact-content-left {
            position: relative;
            z-index: 2;
        }

        .contact-content-left h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .contact-content-left p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
            color: white;
            font-size: 1.1rem;
        }

        .benefit-item i {
            color: #f5ece0;
            font-size: 1.3rem;
            width: 20px;
        }

        .contact-form-wrapper {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .contact-form-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #2a6e7c, #f5ece0, #2a6e7c);
            background-size: 200% 100%;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .form-header h3 {
            color: #2a6e7c;
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .form-header p {
            color: #666;
            font-size: 1.1rem;
        }

        .wow-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .input-group {
            position: relative;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .input-wrapper:focus-within {
            border-color: #2a6e7c;
            box-shadow: 0 0 0 4px rgba(42, 110, 124, 0.1);
            transform: translateY(-2px);
        }

        .input-wrapper i {
            color: #2a6e7c;
            font-size: 18px;
            margin: 0 15px;
            min-width: 20px;
        }

        .input-wrapper input,
        .input-wrapper select,
        .input-wrapper textarea {
            flex: 1;
            border: none;
            outline: none;
            padding: 18px 15px 18px 0;
            font-size: 16px;
            font-family: 'Montserrat', sans-serif;
            background: transparent;
            color: #333;
        }

        .input-wrapper input::placeholder,
        .input-wrapper textarea::placeholder {
            color: #999;
        }

        .input-wrapper select {
            cursor: pointer;
        }

        .textarea-wrapper {
            align-items: flex-start;
        }

        .textarea-wrapper i {
            margin-top: 18px;
        }

        .textarea-wrapper textarea {
            resize: vertical;
            min-height: 120px;
        }

        .wow-submit-btn {
            background: linear-gradient(135deg, #2a6e7c 0%, #1d4e58 100%);
            color: white;
            border: none;
            padding: 20px 40px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
        }

        .wow-submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .wow-submit-btn:hover::before {
            left: 100%;
        }

        .wow-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(42, 110, 124, 0.4);
        }

        .wow-submit-btn:active {
            transform: translateY(-1px);
        }

        .btn-text {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-icon {
            transition: transform 0.3s ease;
        }

        .wow-submit-btn:hover .btn-icon {
            transform: translateX(5px);
        }

        .form-footer {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 15px;
            color: #666;
            font-size: 14px;
        }

        .form-footer i {
            color: #2a6e7c;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .wow-contact-container {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }

            .contact-content-left h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .wow-contact-section {
                padding: 80px 0;
            }

            .contact-form-wrapper {
                padding: 30px 20px;
            }

            .contact-content-left h2 {
                font-size: 1.8rem;
            }

            .floating-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .form-header h3 {
                font-size: 1.6rem;
            }

            .input-wrapper {
                flex-direction: column;
                align-items: stretch;
            }

            .input-wrapper i {
                margin: 15px 15px 5px 15px;
            }

            .input-wrapper input,
            .input-wrapper select,
            .input-wrapper textarea {
                padding: 15px;
            }

            .textarea-wrapper i {
                margin-top: 15px;
            }
        }