        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background: #f0f2f5; }
        
        .booking-container {
            max-width: 1100px;
            margin: 100px auto 80px;
            padding: 20px;
            min-height: 200px;
        }
        
        .page-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .page-header h1 {
            color: #2c7da0;
            margin-bottom: 10px;
        }
        
        .page-header p {
            color: #6c757d;
        }
        
        /* Card Selezioni */
        .selection-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }
        
        .selection-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2c7da0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .selection-title .step-number {
            background: #2c7da0;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }
        
        .form-select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            background: white;
            transition: border-color 0.3s;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='2' fill='none'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
        }
        
        .form-select:focus {
            outline: none;
            border-color: #2c7da0;
        }
        
        .form-select:disabled {
            background-color: #f8f9fa;
            cursor: not-allowed;
        }
        
        /* Dettagli Prestazione */
        .prestazione-info {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            border-left: 4px solid #2c7da0;
            display: none;
        }
        
        .prestazione-info.show {
            display: block;
            animation: fadeIn 0.4s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .info-item {
            background: white;
            padding: 12px 15px;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        
        .info-item .label {
            font-size: 0.75rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        
        .info-item .value {
            font-size: 0.95rem;
            color: #2c3e50;
            margin-top: 4px;
            line-height: 1.4;
        }
        
        /* Opzioni Contatto */
        .opzioni-contatto {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .opzione-card {
            background: white;
            border-radius: 15px;
            padding: 30px 25px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .opzione-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }
        
        .opzione-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }
        
        .opzione-card h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .opzione-card p {
            font-size: 0.9rem;
            color: #6c757d;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .opzione-card .highlight {
            color: #2c7da0;
            font-weight: 600;
        }

        .step-3-container {
            display: none;
        }
        
        .step-3-container.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .btn-wa {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #25D366;
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-wa:hover {
            background: #1da851;
            transform: scale(1.02);
        }
        
        .btn-wa svg {
            fill: white;
        }
        
        .btn-telefono {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #2c7da0;
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-telefono:hover {
            background: #1f5068;
            transform: scale(1.02);
        }
        
        /* Form Email */
        .form-email {
            margin-top: 20px;
            text-align: left;
        }
        
        .form-email .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .form-email .form-group {
            margin-bottom: 15px;
        }
        
        .form-email .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #2c3e50;
        }
        
        .form-email .form-group label .required {
            color: #dc3545;
        }
        
        .form-email .form-group input,
        .form-email .form-group textarea {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: border-color 0.3s;
        }
        
        .form-email .form-group input:focus,
        .form-email .form-group textarea:focus {
            outline: none;
            border-color: #2c7da0;
            box-shadow: 0 0 0 3px rgba(44,125,160,0.1);
        }
        
        .form-email .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .privacy-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 15px 0;
        }
        
        .privacy-checkbox input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 3px;
            cursor: pointer;
        }
        
        .privacy-checkbox label {
            font-size: 0.9rem;
            color: #495057;
            cursor: pointer;
        }
        
        .privacy-checkbox label a {
            color: #2c7da0;
            text-decoration: none;
        }
        
        .privacy-checkbox label a:hover {
            text-decoration: underline;
        }
        
        .btn-submit-form {
            background: #28a745;
            color: white;
            padding: 12px 35px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .btn-submit-form:hover {
            background: #1e7e34;
            transform: scale(1.02);
        }
        
        /* Alert */
        .alert {
            padding: 15px 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        .alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .alert-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .alert-info {
            background: #cce5ff;
            color: #004085;
            border: 1px solid #b8daff;
        }
        
        /* Success Popup */
        .success-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .success-popup.show {
            display: flex;
        }
        
        .success-content {
            background: white;
            max-width: 450px;
            width: 90%;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            animation: popupFadeIn 0.3s ease;
        }
        
        @keyframes popupFadeIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }
        
        .success-icon {
            width: 70px;
            height: 70px;
            background: #28a745;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }
        
        .success-icon i {
            font-size: 2.5rem;
            color: white;
        }
        
        .success-content h2 {
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .success-content p {
            color: #6c757d;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .btn-close-popup {
            background: #2c7da0;
            color: white;
            padding: 10px 30px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
        }
        
        .btn-close-popup:hover {
            background: #1f5068;
        }
        
        @media (max-width: 768px) {
            .form-email .form-row {
                grid-template-columns: 1fr;
            }
            
            .opzioni-contatto {
                grid-template-columns: 1fr;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
        }
