.elementor-7943 .elementor-element.elementor-element-5fb6f7a7{--display:flex;}.elementor-7943 .elementor-element.elementor-element-dd552a0{margin:30px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}/* Start custom CSS for shortcode, class: .elementor-element-607cbeb9 */.form-container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            animation: slideIn 0.6s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-header {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .form-header h1 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .form-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .form-content {
            padding: 40px;
        }

        /* CF7 Form Group Styling */
        .wpcf7 .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .wpcf7 .form-group label {
            display: block;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .wpcf7 .asterisk-right::after {
            content: ' *';
            color: #e74c3c;
            font-weight: bold;
        }

        /* CF7 Input Styling */
        .wpcf7 input[type="text"],
        .wpcf7 input[type="email"],
        .wpcf7 input[type="tel"],
        .wpcf7 input[type="file"],
        .wpcf7 select,
        .wpcf7 textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e1e8ed;
            border-radius: 10px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .wpcf7 input:focus,
        .wpcf7 select:focus,
        .wpcf7 textarea:focus {
            outline: none;
            border-color: #4facfe;
            background: white;
            box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
            transform: translateY(-2px);
        }

        .wpcf7 select {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 12px center;
            background-repeat: no-repeat;
            background-size: 16px;
            padding-right: 40px;
            appearance: none;
        }

        /* Private Parking Info Styling */
        #private-parking-info {
            background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
            color: #2d3436;
            padding: 15px;
            border-radius: 10px;
            margin-top: 10px;
            border-left: 4px solid #fdcb6e;
            font-size: 14px;
            line-height: 1.5;
            display: none;
            animation: fadeInDown 0.4s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #private-parking-info.show {
            display: block !important;
        }

        /* Signature Section */
        .signature-section {
            background: #f8f9fa;
            border: 2px dashed #dee2e6;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            margin: 25px 0;
        }

        /* Privacy Section */
        .wpcf7 .acceptance {
            background: #e8f5e8;
            border: 1px solid #c3e6c3;
            border-radius: 10px;
            padding: 15px;
            margin: 25px 0;
        }

        .wpcf7 .acceptance input[type="checkbox"] {
            width: auto;
            margin-right: 10px;
            accent-color: #4facfe;
        }

        .wpcf7 .acceptance label {
            display: flex;
            align-items: flex-start;
            font-size: 14px;
            line-height: 1.5;
            cursor: pointer;
            margin-bottom: 0;
        }

        /* Submit Button */
        .wpcf7 input[type="submit"] {
            width: 100%;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .wpcf7 input[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
        }

        .wpcf7 input[type="submit"]:active {
            transform: translateY(0);
        }

        /* File Upload Styling */
        .wpcf7 input[type="file"] {
            border: 2px dashed #4facfe;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #4facfe;
            font-weight: 500;
        }

        .wpcf7 input[type="file"]:hover {
            background: #e3f2fd;
            border-color: #2196f3;
        }

        /* Validation Messages */
        .wpcf7-not-valid-tip {
            color: #e74c3c;
            font-size: 12px;
            margin-top: 5px;
        }

        .wpcf7-validation-errors {
            background: #ffe6e6;
            border: 1px solid #ff4444;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
            color: #cc0000;
        }

        .wpcf7-mail-sent-ok {
            background: #e6ffe6;
            border: 1px solid #44ff44;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
            color: #008800;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .form-container {
                margin: 10px;
                border-radius: 15px;
            }
            
            .form-content {
                padding: 20px;
            }
            
            .form-header {
                padding: 20px;
            }
            
            .form-header h1 {
                font-size: 1.5rem;
            }
        }

        /* Loading State */
        .wpcf7 form.submitting {
            opacity: 0.7;
            pointer-events: none;
        }

        .wpcf7 form.submitting input[type="submit"] {
            background: #ccc;
            cursor: not-allowed;
        }/* End custom CSS */